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     moveIndex : function(data, type)
5425     {
5426         var index = this.indexOf(data);
5427         
5428         var newIndex = index + type;
5429         
5430         this.remove(data);
5431         
5432         this.insert(newIndex, data);
5433         
5434     }
5435 });/*
5436  * Based on:
5437  * Ext JS Library 1.1.1
5438  * Copyright(c) 2006-2007, Ext JS, LLC.
5439  *
5440  * Originally Released Under LGPL - original licence link has changed is not relivant.
5441  *
5442  * Fork - LGPL
5443  * <script type="text/javascript">
5444  */
5445
5446 /**
5447  * @class Roo.data.SimpleStore
5448  * @extends Roo.data.Store
5449  * Small helper class to make creating Stores from Array data easier.
5450  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
5451  * @cfg {Array} fields An array of field definition objects, or field name strings.
5452  * @cfg {Array} data The multi-dimensional array of data
5453  * @constructor
5454  * @param {Object} config
5455  */
5456 Roo.data.SimpleStore = function(config){
5457     Roo.data.SimpleStore.superclass.constructor.call(this, {
5458         isLocal : true,
5459         reader: new Roo.data.ArrayReader({
5460                 id: config.id
5461             },
5462             Roo.data.Record.create(config.fields)
5463         ),
5464         proxy : new Roo.data.MemoryProxy(config.data)
5465     });
5466     this.load();
5467 };
5468 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
5469  * Based on:
5470  * Ext JS Library 1.1.1
5471  * Copyright(c) 2006-2007, Ext JS, LLC.
5472  *
5473  * Originally Released Under LGPL - original licence link has changed is not relivant.
5474  *
5475  * Fork - LGPL
5476  * <script type="text/javascript">
5477  */
5478
5479 /**
5480 /**
5481  * @extends Roo.data.Store
5482  * @class Roo.data.JsonStore
5483  * Small helper class to make creating Stores for JSON data easier. <br/>
5484 <pre><code>
5485 var store = new Roo.data.JsonStore({
5486     url: 'get-images.php',
5487     root: 'images',
5488     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
5489 });
5490 </code></pre>
5491  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
5492  * JsonReader and HttpProxy (unless inline data is provided).</b>
5493  * @cfg {Array} fields An array of field definition objects, or field name strings.
5494  * @constructor
5495  * @param {Object} config
5496  */
5497 Roo.data.JsonStore = function(c){
5498     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
5499         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
5500         reader: new Roo.data.JsonReader(c, c.fields)
5501     }));
5502 };
5503 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
5504  * Based on:
5505  * Ext JS Library 1.1.1
5506  * Copyright(c) 2006-2007, Ext JS, LLC.
5507  *
5508  * Originally Released Under LGPL - original licence link has changed is not relivant.
5509  *
5510  * Fork - LGPL
5511  * <script type="text/javascript">
5512  */
5513
5514  
5515 Roo.data.Field = function(config){
5516     if(typeof config == "string"){
5517         config = {name: config};
5518     }
5519     Roo.apply(this, config);
5520     
5521     if(!this.type){
5522         this.type = "auto";
5523     }
5524     
5525     var st = Roo.data.SortTypes;
5526     // named sortTypes are supported, here we look them up
5527     if(typeof this.sortType == "string"){
5528         this.sortType = st[this.sortType];
5529     }
5530     
5531     // set default sortType for strings and dates
5532     if(!this.sortType){
5533         switch(this.type){
5534             case "string":
5535                 this.sortType = st.asUCString;
5536                 break;
5537             case "date":
5538                 this.sortType = st.asDate;
5539                 break;
5540             default:
5541                 this.sortType = st.none;
5542         }
5543     }
5544
5545     // define once
5546     var stripRe = /[\$,%]/g;
5547
5548     // prebuilt conversion function for this field, instead of
5549     // switching every time we're reading a value
5550     if(!this.convert){
5551         var cv, dateFormat = this.dateFormat;
5552         switch(this.type){
5553             case "":
5554             case "auto":
5555             case undefined:
5556                 cv = function(v){ return v; };
5557                 break;
5558             case "string":
5559                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
5560                 break;
5561             case "int":
5562                 cv = function(v){
5563                     return v !== undefined && v !== null && v !== '' ?
5564                            parseInt(String(v).replace(stripRe, ""), 10) : '';
5565                     };
5566                 break;
5567             case "float":
5568                 cv = function(v){
5569                     return v !== undefined && v !== null && v !== '' ?
5570                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
5571                     };
5572                 break;
5573             case "bool":
5574             case "boolean":
5575                 cv = function(v){ return v === true || v === "true" || v == 1; };
5576                 break;
5577             case "date":
5578                 cv = function(v){
5579                     if(!v){
5580                         return '';
5581                     }
5582                     if(v instanceof Date){
5583                         return v;
5584                     }
5585                     if(dateFormat){
5586                         if(dateFormat == "timestamp"){
5587                             return new Date(v*1000);
5588                         }
5589                         return Date.parseDate(v, dateFormat);
5590                     }
5591                     var parsed = Date.parse(v);
5592                     return parsed ? new Date(parsed) : null;
5593                 };
5594              break;
5595             
5596         }
5597         this.convert = cv;
5598     }
5599 };
5600
5601 Roo.data.Field.prototype = {
5602     dateFormat: null,
5603     defaultValue: "",
5604     mapping: null,
5605     sortType : null,
5606     sortDir : "ASC"
5607 };/*
5608  * Based on:
5609  * Ext JS Library 1.1.1
5610  * Copyright(c) 2006-2007, Ext JS, LLC.
5611  *
5612  * Originally Released Under LGPL - original licence link has changed is not relivant.
5613  *
5614  * Fork - LGPL
5615  * <script type="text/javascript">
5616  */
5617  
5618 // Base class for reading structured data from a data source.  This class is intended to be
5619 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
5620
5621 /**
5622  * @class Roo.data.DataReader
5623  * Base class for reading structured data from a data source.  This class is intended to be
5624  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
5625  */
5626
5627 Roo.data.DataReader = function(meta, recordType){
5628     
5629     this.meta = meta;
5630     
5631     this.recordType = recordType instanceof Array ? 
5632         Roo.data.Record.create(recordType) : recordType;
5633 };
5634
5635 Roo.data.DataReader.prototype = {
5636      /**
5637      * Create an empty record
5638      * @param {Object} data (optional) - overlay some values
5639      * @return {Roo.data.Record} record created.
5640      */
5641     newRow :  function(d) {
5642         var da =  {};
5643         this.recordType.prototype.fields.each(function(c) {
5644             switch( c.type) {
5645                 case 'int' : da[c.name] = 0; break;
5646                 case 'date' : da[c.name] = new Date(); break;
5647                 case 'float' : da[c.name] = 0.0; break;
5648                 case 'boolean' : da[c.name] = false; break;
5649                 case 'array' : da[c.name] = []; break;
5650                 default : da[c.name] = ""; break;
5651             }
5652             
5653         });
5654         return new this.recordType(Roo.apply(da, d));
5655     }
5656     
5657 };/*
5658  * Based on:
5659  * Ext JS Library 1.1.1
5660  * Copyright(c) 2006-2007, Ext JS, LLC.
5661  *
5662  * Originally Released Under LGPL - original licence link has changed is not relivant.
5663  *
5664  * Fork - LGPL
5665  * <script type="text/javascript">
5666  */
5667
5668 /**
5669  * @class Roo.data.DataProxy
5670  * @extends Roo.data.Observable
5671  * This class is an abstract base class for implementations which provide retrieval of
5672  * unformatted data objects.<br>
5673  * <p>
5674  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
5675  * (of the appropriate type which knows how to parse the data object) to provide a block of
5676  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
5677  * <p>
5678  * Custom implementations must implement the load method as described in
5679  * {@link Roo.data.HttpProxy#load}.
5680  */
5681 Roo.data.DataProxy = function(){
5682     this.addEvents({
5683         /**
5684          * @event beforeload
5685          * Fires before a network request is made to retrieve a data object.
5686          * @param {Object} This DataProxy object.
5687          * @param {Object} params The params parameter to the load function.
5688          */
5689         beforeload : true,
5690         /**
5691          * @event load
5692          * Fires before the load method's callback is called.
5693          * @param {Object} This DataProxy object.
5694          * @param {Object} o The data object.
5695          * @param {Object} arg The callback argument object passed to the load function.
5696          */
5697         load : true,
5698         /**
5699          * @event loadexception
5700          * Fires if an Exception occurs during data retrieval.
5701          * @param {Object} This DataProxy object.
5702          * @param {Object} o The data object.
5703          * @param {Object} arg The callback argument object passed to the load function.
5704          * @param {Object} e The Exception.
5705          */
5706         loadexception : true
5707     });
5708     Roo.data.DataProxy.superclass.constructor.call(this);
5709 };
5710
5711 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
5712
5713     /**
5714      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
5715      */
5716 /*
5717  * Based on:
5718  * Ext JS Library 1.1.1
5719  * Copyright(c) 2006-2007, Ext JS, LLC.
5720  *
5721  * Originally Released Under LGPL - original licence link has changed is not relivant.
5722  *
5723  * Fork - LGPL
5724  * <script type="text/javascript">
5725  */
5726 /**
5727  * @class Roo.data.MemoryProxy
5728  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
5729  * to the Reader when its load method is called.
5730  * @constructor
5731  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
5732  */
5733 Roo.data.MemoryProxy = function(data){
5734     if (data.data) {
5735         data = data.data;
5736     }
5737     Roo.data.MemoryProxy.superclass.constructor.call(this);
5738     this.data = data;
5739 };
5740
5741 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
5742     /**
5743      * Load data from the requested source (in this case an in-memory
5744      * data object passed to the constructor), read the data object into
5745      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
5746      * process that block using the passed callback.
5747      * @param {Object} params This parameter is not used by the MemoryProxy class.
5748      * @param {Roo.data.DataReader} reader The Reader object which converts the data
5749      * object into a block of Roo.data.Records.
5750      * @param {Function} callback The function into which to pass the block of Roo.data.records.
5751      * The function must be passed <ul>
5752      * <li>The Record block object</li>
5753      * <li>The "arg" argument from the load function</li>
5754      * <li>A boolean success indicator</li>
5755      * </ul>
5756      * @param {Object} scope The scope in which to call the callback
5757      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
5758      */
5759     load : function(params, reader, callback, scope, arg){
5760         params = params || {};
5761         var result;
5762         try {
5763             result = reader.readRecords(this.data);
5764         }catch(e){
5765             this.fireEvent("loadexception", this, arg, null, e);
5766             callback.call(scope, null, arg, false);
5767             return;
5768         }
5769         callback.call(scope, result, arg, true);
5770     },
5771     
5772     // private
5773     update : function(params, records){
5774         
5775     }
5776 });/*
5777  * Based on:
5778  * Ext JS Library 1.1.1
5779  * Copyright(c) 2006-2007, Ext JS, LLC.
5780  *
5781  * Originally Released Under LGPL - original licence link has changed is not relivant.
5782  *
5783  * Fork - LGPL
5784  * <script type="text/javascript">
5785  */
5786 /**
5787  * @class Roo.data.HttpProxy
5788  * @extends Roo.data.DataProxy
5789  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
5790  * configured to reference a certain URL.<br><br>
5791  * <p>
5792  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
5793  * from which the running page was served.<br><br>
5794  * <p>
5795  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
5796  * <p>
5797  * Be aware that to enable the browser to parse an XML document, the server must set
5798  * the Content-Type header in the HTTP response to "text/xml".
5799  * @constructor
5800  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
5801  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
5802  * will be used to make the request.
5803  */
5804 Roo.data.HttpProxy = function(conn){
5805     Roo.data.HttpProxy.superclass.constructor.call(this);
5806     // is conn a conn config or a real conn?
5807     this.conn = conn;
5808     this.useAjax = !conn || !conn.events;
5809   
5810 };
5811
5812 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
5813     // thse are take from connection...
5814     
5815     /**
5816      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
5817      */
5818     /**
5819      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
5820      * extra parameters to each request made by this object. (defaults to undefined)
5821      */
5822     /**
5823      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
5824      *  to each request made by this object. (defaults to undefined)
5825      */
5826     /**
5827      * @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)
5828      */
5829     /**
5830      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
5831      */
5832      /**
5833      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
5834      * @type Boolean
5835      */
5836   
5837
5838     /**
5839      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
5840      * @type Boolean
5841      */
5842     /**
5843      * Return the {@link Roo.data.Connection} object being used by this Proxy.
5844      * @return {Connection} The Connection object. This object may be used to subscribe to events on
5845      * a finer-grained basis than the DataProxy events.
5846      */
5847     getConnection : function(){
5848         return this.useAjax ? Roo.Ajax : this.conn;
5849     },
5850
5851     /**
5852      * Load data from the configured {@link Roo.data.Connection}, read the data object into
5853      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
5854      * process that block using the passed callback.
5855      * @param {Object} params An object containing properties which are to be used as HTTP parameters
5856      * for the request to the remote server.
5857      * @param {Roo.data.DataReader} reader The Reader object which converts the data
5858      * object into a block of Roo.data.Records.
5859      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
5860      * The function must be passed <ul>
5861      * <li>The Record block object</li>
5862      * <li>The "arg" argument from the load function</li>
5863      * <li>A boolean success indicator</li>
5864      * </ul>
5865      * @param {Object} scope The scope in which to call the callback
5866      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
5867      */
5868     load : function(params, reader, callback, scope, arg){
5869         if(this.fireEvent("beforeload", this, params) !== false){
5870             var  o = {
5871                 params : params || {},
5872                 request: {
5873                     callback : callback,
5874                     scope : scope,
5875                     arg : arg
5876                 },
5877                 reader: reader,
5878                 callback : this.loadResponse,
5879                 scope: this
5880             };
5881             if(this.useAjax){
5882                 Roo.applyIf(o, this.conn);
5883                 if(this.activeRequest){
5884                     Roo.Ajax.abort(this.activeRequest);
5885                 }
5886                 this.activeRequest = Roo.Ajax.request(o);
5887             }else{
5888                 this.conn.request(o);
5889             }
5890         }else{
5891             callback.call(scope||this, null, arg, false);
5892         }
5893     },
5894
5895     // private
5896     loadResponse : function(o, success, response){
5897         delete this.activeRequest;
5898         if(!success){
5899             this.fireEvent("loadexception", this, o, response);
5900             o.request.callback.call(o.request.scope, null, o.request.arg, false);
5901             return;
5902         }
5903         var result;
5904         try {
5905             result = o.reader.read(response);
5906         }catch(e){
5907             this.fireEvent("loadexception", this, o, response, e);
5908             o.request.callback.call(o.request.scope, null, o.request.arg, false);
5909             return;
5910         }
5911         
5912         this.fireEvent("load", this, o, o.request.arg);
5913         o.request.callback.call(o.request.scope, result, o.request.arg, true);
5914     },
5915
5916     // private
5917     update : function(dataSet){
5918
5919     },
5920
5921     // private
5922     updateResponse : function(dataSet){
5923
5924     }
5925 });/*
5926  * Based on:
5927  * Ext JS Library 1.1.1
5928  * Copyright(c) 2006-2007, Ext JS, LLC.
5929  *
5930  * Originally Released Under LGPL - original licence link has changed is not relivant.
5931  *
5932  * Fork - LGPL
5933  * <script type="text/javascript">
5934  */
5935
5936 /**
5937  * @class Roo.data.ScriptTagProxy
5938  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
5939  * other than the originating domain of the running page.<br><br>
5940  * <p>
5941  * <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
5942  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
5943  * <p>
5944  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
5945  * source code that is used as the source inside a &lt;script> tag.<br><br>
5946  * <p>
5947  * In order for the browser to process the returned data, the server must wrap the data object
5948  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
5949  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
5950  * depending on whether the callback name was passed:
5951  * <p>
5952  * <pre><code>
5953 boolean scriptTag = false;
5954 String cb = request.getParameter("callback");
5955 if (cb != null) {
5956     scriptTag = true;
5957     response.setContentType("text/javascript");
5958 } else {
5959     response.setContentType("application/x-json");
5960 }
5961 Writer out = response.getWriter();
5962 if (scriptTag) {
5963     out.write(cb + "(");
5964 }
5965 out.print(dataBlock.toJsonString());
5966 if (scriptTag) {
5967     out.write(");");
5968 }
5969 </pre></code>
5970  *
5971  * @constructor
5972  * @param {Object} config A configuration object.
5973  */
5974 Roo.data.ScriptTagProxy = function(config){
5975     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
5976     Roo.apply(this, config);
5977     this.head = document.getElementsByTagName("head")[0];
5978 };
5979
5980 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
5981
5982 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
5983     /**
5984      * @cfg {String} url The URL from which to request the data object.
5985      */
5986     /**
5987      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
5988      */
5989     timeout : 30000,
5990     /**
5991      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
5992      * the server the name of the callback function set up by the load call to process the returned data object.
5993      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
5994      * javascript output which calls this named function passing the data object as its only parameter.
5995      */
5996     callbackParam : "callback",
5997     /**
5998      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
5999      * name to the request.
6000      */
6001     nocache : true,
6002
6003     /**
6004      * Load data from the configured URL, read the data object into
6005      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
6006      * process that block using the passed callback.
6007      * @param {Object} params An object containing properties which are to be used as HTTP parameters
6008      * for the request to the remote server.
6009      * @param {Roo.data.DataReader} reader The Reader object which converts the data
6010      * object into a block of Roo.data.Records.
6011      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
6012      * The function must be passed <ul>
6013      * <li>The Record block object</li>
6014      * <li>The "arg" argument from the load function</li>
6015      * <li>A boolean success indicator</li>
6016      * </ul>
6017      * @param {Object} scope The scope in which to call the callback
6018      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
6019      */
6020     load : function(params, reader, callback, scope, arg){
6021         if(this.fireEvent("beforeload", this, params) !== false){
6022
6023             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
6024
6025             var url = this.url;
6026             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
6027             if(this.nocache){
6028                 url += "&_dc=" + (new Date().getTime());
6029             }
6030             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
6031             var trans = {
6032                 id : transId,
6033                 cb : "stcCallback"+transId,
6034                 scriptId : "stcScript"+transId,
6035                 params : params,
6036                 arg : arg,
6037                 url : url,
6038                 callback : callback,
6039                 scope : scope,
6040                 reader : reader
6041             };
6042             var conn = this;
6043
6044             window[trans.cb] = function(o){
6045                 conn.handleResponse(o, trans);
6046             };
6047
6048             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
6049
6050             if(this.autoAbort !== false){
6051                 this.abort();
6052             }
6053
6054             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
6055
6056             var script = document.createElement("script");
6057             script.setAttribute("src", url);
6058             script.setAttribute("type", "text/javascript");
6059             script.setAttribute("id", trans.scriptId);
6060             this.head.appendChild(script);
6061
6062             this.trans = trans;
6063         }else{
6064             callback.call(scope||this, null, arg, false);
6065         }
6066     },
6067
6068     // private
6069     isLoading : function(){
6070         return this.trans ? true : false;
6071     },
6072
6073     /**
6074      * Abort the current server request.
6075      */
6076     abort : function(){
6077         if(this.isLoading()){
6078             this.destroyTrans(this.trans);
6079         }
6080     },
6081
6082     // private
6083     destroyTrans : function(trans, isLoaded){
6084         this.head.removeChild(document.getElementById(trans.scriptId));
6085         clearTimeout(trans.timeoutId);
6086         if(isLoaded){
6087             window[trans.cb] = undefined;
6088             try{
6089                 delete window[trans.cb];
6090             }catch(e){}
6091         }else{
6092             // if hasn't been loaded, wait for load to remove it to prevent script error
6093             window[trans.cb] = function(){
6094                 window[trans.cb] = undefined;
6095                 try{
6096                     delete window[trans.cb];
6097                 }catch(e){}
6098             };
6099         }
6100     },
6101
6102     // private
6103     handleResponse : function(o, trans){
6104         this.trans = false;
6105         this.destroyTrans(trans, true);
6106         var result;
6107         try {
6108             result = trans.reader.readRecords(o);
6109         }catch(e){
6110             this.fireEvent("loadexception", this, o, trans.arg, e);
6111             trans.callback.call(trans.scope||window, null, trans.arg, false);
6112             return;
6113         }
6114         this.fireEvent("load", this, o, trans.arg);
6115         trans.callback.call(trans.scope||window, result, trans.arg, true);
6116     },
6117
6118     // private
6119     handleFailure : function(trans){
6120         this.trans = false;
6121         this.destroyTrans(trans, false);
6122         this.fireEvent("loadexception", this, null, trans.arg);
6123         trans.callback.call(trans.scope||window, null, trans.arg, false);
6124     }
6125 });/*
6126  * Based on:
6127  * Ext JS Library 1.1.1
6128  * Copyright(c) 2006-2007, Ext JS, LLC.
6129  *
6130  * Originally Released Under LGPL - original licence link has changed is not relivant.
6131  *
6132  * Fork - LGPL
6133  * <script type="text/javascript">
6134  */
6135
6136 /**
6137  * @class Roo.data.JsonReader
6138  * @extends Roo.data.DataReader
6139  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
6140  * based on mappings in a provided Roo.data.Record constructor.
6141  * 
6142  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
6143  * in the reply previously. 
6144  * 
6145  * <p>
6146  * Example code:
6147  * <pre><code>
6148 var RecordDef = Roo.data.Record.create([
6149     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
6150     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
6151 ]);
6152 var myReader = new Roo.data.JsonReader({
6153     totalProperty: "results",    // The property which contains the total dataset size (optional)
6154     root: "rows",                // The property which contains an Array of row objects
6155     id: "id"                     // The property within each row object that provides an ID for the record (optional)
6156 }, RecordDef);
6157 </code></pre>
6158  * <p>
6159  * This would consume a JSON file like this:
6160  * <pre><code>
6161 { 'results': 2, 'rows': [
6162     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
6163     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
6164 }
6165 </code></pre>
6166  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
6167  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
6168  * paged from the remote server.
6169  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
6170  * @cfg {String} root name of the property which contains the Array of row objects.
6171  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
6172  * @constructor
6173  * Create a new JsonReader
6174  * @param {Object} meta Metadata configuration options
6175  * @param {Object} recordType Either an Array of field definition objects,
6176  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
6177  */
6178 Roo.data.JsonReader = function(meta, recordType){
6179     
6180     meta = meta || {};
6181     // set some defaults:
6182     Roo.applyIf(meta, {
6183         totalProperty: 'total',
6184         successProperty : 'success',
6185         root : 'data',
6186         id : 'id'
6187     });
6188     
6189     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
6190 };
6191 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
6192     
6193     /**
6194      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
6195      * Used by Store query builder to append _requestMeta to params.
6196      * 
6197      */
6198     metaFromRemote : false,
6199     /**
6200      * This method is only used by a DataProxy which has retrieved data from a remote server.
6201      * @param {Object} response The XHR object which contains the JSON data in its responseText.
6202      * @return {Object} data A data block which is used by an Roo.data.Store object as
6203      * a cache of Roo.data.Records.
6204      */
6205     read : function(response){
6206         var json = response.responseText;
6207        
6208         var o = /* eval:var:o */ eval("("+json+")");
6209         if(!o) {
6210             throw {message: "JsonReader.read: Json object not found"};
6211         }
6212         
6213         if(o.metaData){
6214             
6215             delete this.ef;
6216             this.metaFromRemote = true;
6217             this.meta = o.metaData;
6218             this.recordType = Roo.data.Record.create(o.metaData.fields);
6219             this.onMetaChange(this.meta, this.recordType, o);
6220         }
6221         return this.readRecords(o);
6222     },
6223
6224     // private function a store will implement
6225     onMetaChange : function(meta, recordType, o){
6226
6227     },
6228
6229     /**
6230          * @ignore
6231          */
6232     simpleAccess: function(obj, subsc) {
6233         return obj[subsc];
6234     },
6235
6236         /**
6237          * @ignore
6238          */
6239     getJsonAccessor: function(){
6240         var re = /[\[\.]/;
6241         return function(expr) {
6242             try {
6243                 return(re.test(expr))
6244                     ? new Function("obj", "return obj." + expr)
6245                     : function(obj){
6246                         return obj[expr];
6247                     };
6248             } catch(e){}
6249             return Roo.emptyFn;
6250         };
6251     }(),
6252
6253     /**
6254      * Create a data block containing Roo.data.Records from an XML document.
6255      * @param {Object} o An object which contains an Array of row objects in the property specified
6256      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
6257      * which contains the total size of the dataset.
6258      * @return {Object} data A data block which is used by an Roo.data.Store object as
6259      * a cache of Roo.data.Records.
6260      */
6261     readRecords : function(o){
6262         /**
6263          * After any data loads, the raw JSON data is available for further custom processing.
6264          * @type Object
6265          */
6266         this.o = o;
6267         var s = this.meta, Record = this.recordType,
6268             f = Record.prototype.fields, fi = f.items, fl = f.length;
6269
6270 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
6271         if (!this.ef) {
6272             if(s.totalProperty) {
6273                     this.getTotal = this.getJsonAccessor(s.totalProperty);
6274                 }
6275                 if(s.successProperty) {
6276                     this.getSuccess = this.getJsonAccessor(s.successProperty);
6277                 }
6278                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
6279                 if (s.id) {
6280                         var g = this.getJsonAccessor(s.id);
6281                         this.getId = function(rec) {
6282                                 var r = g(rec);
6283                                 return (r === undefined || r === "") ? null : r;
6284                         };
6285                 } else {
6286                         this.getId = function(){return null;};
6287                 }
6288             this.ef = [];
6289             for(var jj = 0; jj < fl; jj++){
6290                 f = fi[jj];
6291                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
6292                 this.ef[jj] = this.getJsonAccessor(map);
6293             }
6294         }
6295
6296         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
6297         if(s.totalProperty){
6298             var vt = parseInt(this.getTotal(o), 10);
6299             if(!isNaN(vt)){
6300                 totalRecords = vt;
6301             }
6302         }
6303         if(s.successProperty){
6304             var vs = this.getSuccess(o);
6305             if(vs === false || vs === 'false'){
6306                 success = false;
6307             }
6308         }
6309         var records = [];
6310             for(var i = 0; i < c; i++){
6311                     var n = root[i];
6312                 var values = {};
6313                 var id = this.getId(n);
6314                 for(var j = 0; j < fl; j++){
6315                     f = fi[j];
6316                 var v = this.ef[j](n);
6317                 if (!f.convert) {
6318                     Roo.log('missing convert for ' + f.name);
6319                     Roo.log(f);
6320                     continue;
6321                 }
6322                 values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
6323                 }
6324                 var record = new Record(values, id);
6325                 record.json = n;
6326                 records[i] = record;
6327             }
6328             return {
6329             raw : o,
6330                 success : success,
6331                 records : records,
6332                 totalRecords : totalRecords
6333             };
6334     }
6335 });/*
6336  * Based on:
6337  * Ext JS Library 1.1.1
6338  * Copyright(c) 2006-2007, Ext JS, LLC.
6339  *
6340  * Originally Released Under LGPL - original licence link has changed is not relivant.
6341  *
6342  * Fork - LGPL
6343  * <script type="text/javascript">
6344  */
6345
6346 /**
6347  * @class Roo.data.XmlReader
6348  * @extends Roo.data.DataReader
6349  * Data reader class to create an Array of {@link Roo.data.Record} objects from an XML document
6350  * based on mappings in a provided Roo.data.Record constructor.<br><br>
6351  * <p>
6352  * <em>Note that in order for the browser to parse a returned XML document, the Content-Type
6353  * header in the HTTP response must be set to "text/xml".</em>
6354  * <p>
6355  * Example code:
6356  * <pre><code>
6357 var RecordDef = Roo.data.Record.create([
6358    {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
6359    {name: 'occupation'}                 // This field will use "occupation" as the mapping.
6360 ]);
6361 var myReader = new Roo.data.XmlReader({
6362    totalRecords: "results", // The element which contains the total dataset size (optional)
6363    record: "row",           // The repeated element which contains row information
6364    id: "id"                 // The element within the row that provides an ID for the record (optional)
6365 }, RecordDef);
6366 </code></pre>
6367  * <p>
6368  * This would consume an XML file like this:
6369  * <pre><code>
6370 &lt;?xml?>
6371 &lt;dataset>
6372  &lt;results>2&lt;/results>
6373  &lt;row>
6374    &lt;id>1&lt;/id>
6375    &lt;name>Bill&lt;/name>
6376    &lt;occupation>Gardener&lt;/occupation>
6377  &lt;/row>
6378  &lt;row>
6379    &lt;id>2&lt;/id>
6380    &lt;name>Ben&lt;/name>
6381    &lt;occupation>Horticulturalist&lt;/occupation>
6382  &lt;/row>
6383 &lt;/dataset>
6384 </code></pre>
6385  * @cfg {String} totalRecords The DomQuery path from which to retrieve the total number of records
6386  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
6387  * paged from the remote server.
6388  * @cfg {String} record The DomQuery path to the repeated element which contains record information.
6389  * @cfg {String} success The DomQuery path to the success attribute used by forms.
6390  * @cfg {String} id The DomQuery path relative from the record element to the element that contains
6391  * a record identifier value.
6392  * @constructor
6393  * Create a new XmlReader
6394  * @param {Object} meta Metadata configuration options
6395  * @param {Mixed} recordType The definition of the data record type to produce.  This can be either a valid
6396  * Record subclass created with {@link Roo.data.Record#create}, or an array of objects with which to call
6397  * Roo.data.Record.create.  See the {@link Roo.data.Record} class for more details.
6398  */
6399 Roo.data.XmlReader = function(meta, recordType){
6400     meta = meta || {};
6401     Roo.data.XmlReader.superclass.constructor.call(this, meta, recordType||meta.fields);
6402 };
6403 Roo.extend(Roo.data.XmlReader, Roo.data.DataReader, {
6404     /**
6405      * This method is only used by a DataProxy which has retrieved data from a remote server.
6406          * @param {Object} response The XHR object which contains the parsed XML document.  The response is expected
6407          * to contain a method called 'responseXML' that returns an XML document object.
6408      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
6409      * a cache of Roo.data.Records.
6410      */
6411     read : function(response){
6412         var doc = response.responseXML;
6413         if(!doc) {
6414             throw {message: "XmlReader.read: XML Document not available"};
6415         }
6416         return this.readRecords(doc);
6417     },
6418
6419     /**
6420      * Create a data block containing Roo.data.Records from an XML document.
6421          * @param {Object} doc A parsed XML document.
6422      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
6423      * a cache of Roo.data.Records.
6424      */
6425     readRecords : function(doc){
6426         /**
6427          * After any data loads/reads, the raw XML Document is available for further custom processing.
6428          * @type XMLDocument
6429          */
6430         this.xmlData = doc;
6431         var root = doc.documentElement || doc;
6432         var q = Roo.DomQuery;
6433         var recordType = this.recordType, fields = recordType.prototype.fields;
6434         var sid = this.meta.id;
6435         var totalRecords = 0, success = true;
6436         if(this.meta.totalRecords){
6437             totalRecords = q.selectNumber(this.meta.totalRecords, root, 0);
6438         }
6439         
6440         if(this.meta.success){
6441             var sv = q.selectValue(this.meta.success, root, true);
6442             success = sv !== false && sv !== 'false';
6443         }
6444         var records = [];
6445         var ns = q.select(this.meta.record, root);
6446         for(var i = 0, len = ns.length; i < len; i++) {
6447                 var n = ns[i];
6448                 var values = {};
6449                 var id = sid ? q.selectValue(sid, n) : undefined;
6450                 for(var j = 0, jlen = fields.length; j < jlen; j++){
6451                     var f = fields.items[j];
6452                 var v = q.selectValue(f.mapping || f.name, n, f.defaultValue);
6453                     v = f.convert(v);
6454                     values[f.name] = v;
6455                 }
6456                 var record = new recordType(values, id);
6457                 record.node = n;
6458                 records[records.length] = record;
6459             }
6460
6461             return {
6462                 success : success,
6463                 records : records,
6464                 totalRecords : totalRecords || records.length
6465             };
6466     }
6467 });/*
6468  * Based on:
6469  * Ext JS Library 1.1.1
6470  * Copyright(c) 2006-2007, Ext JS, LLC.
6471  *
6472  * Originally Released Under LGPL - original licence link has changed is not relivant.
6473  *
6474  * Fork - LGPL
6475  * <script type="text/javascript">
6476  */
6477
6478 /**
6479  * @class Roo.data.ArrayReader
6480  * @extends Roo.data.DataReader
6481  * Data reader class to create an Array of Roo.data.Record objects from an Array.
6482  * Each element of that Array represents a row of data fields. The
6483  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
6484  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
6485  * <p>
6486  * Example code:.
6487  * <pre><code>
6488 var RecordDef = Roo.data.Record.create([
6489     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
6490     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
6491 ]);
6492 var myReader = new Roo.data.ArrayReader({
6493     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
6494 }, RecordDef);
6495 </code></pre>
6496  * <p>
6497  * This would consume an Array like this:
6498  * <pre><code>
6499 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
6500   </code></pre>
6501  * @cfg {String} id (optional) The subscript within row Array that provides an ID for the Record
6502  * @constructor
6503  * Create a new JsonReader
6504  * @param {Object} meta Metadata configuration options.
6505  * @param {Object} recordType Either an Array of field definition objects
6506  * as specified to {@link Roo.data.Record#create},
6507  * or an {@link Roo.data.Record} object
6508  * created using {@link Roo.data.Record#create}.
6509  */
6510 Roo.data.ArrayReader = function(meta, recordType){
6511     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType);
6512 };
6513
6514 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
6515     /**
6516      * Create a data block containing Roo.data.Records from an XML document.
6517      * @param {Object} o An Array of row objects which represents the dataset.
6518      * @return {Object} data A data block which is used by an Roo.data.Store object as
6519      * a cache of Roo.data.Records.
6520      */
6521     readRecords : function(o){
6522         var sid = this.meta ? this.meta.id : null;
6523         var recordType = this.recordType, fields = recordType.prototype.fields;
6524         var records = [];
6525         var root = o;
6526             for(var i = 0; i < root.length; i++){
6527                     var n = root[i];
6528                 var values = {};
6529                 var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
6530                 for(var j = 0, jlen = fields.length; j < jlen; j++){
6531                 var f = fields.items[j];
6532                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
6533                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
6534                 v = f.convert(v);
6535                 values[f.name] = v;
6536             }
6537                 var record = new recordType(values, id);
6538                 record.json = n;
6539                 records[records.length] = record;
6540             }
6541             return {
6542                 records : records,
6543                 totalRecords : records.length
6544             };
6545     }
6546 });/*
6547  * Based on:
6548  * Ext JS Library 1.1.1
6549  * Copyright(c) 2006-2007, Ext JS, LLC.
6550  *
6551  * Originally Released Under LGPL - original licence link has changed is not relivant.
6552  *
6553  * Fork - LGPL
6554  * <script type="text/javascript">
6555  */
6556
6557
6558 /**
6559  * @class Roo.data.Tree
6560  * @extends Roo.util.Observable
6561  * Represents a tree data structure and bubbles all the events for its nodes. The nodes
6562  * in the tree have most standard DOM functionality.
6563  * @constructor
6564  * @param {Node} root (optional) The root node
6565  */
6566 Roo.data.Tree = function(root){
6567    this.nodeHash = {};
6568    /**
6569     * The root node for this tree
6570     * @type Node
6571     */
6572    this.root = null;
6573    if(root){
6574        this.setRootNode(root);
6575    }
6576    this.addEvents({
6577        /**
6578         * @event append
6579         * Fires when a new child node is appended to a node in this tree.
6580         * @param {Tree} tree The owner tree
6581         * @param {Node} parent The parent node
6582         * @param {Node} node The newly appended node
6583         * @param {Number} index The index of the newly appended node
6584         */
6585        "append" : true,
6586        /**
6587         * @event remove
6588         * Fires when a child node is removed from a node in this tree.
6589         * @param {Tree} tree The owner tree
6590         * @param {Node} parent The parent node
6591         * @param {Node} node The child node removed
6592         */
6593        "remove" : true,
6594        /**
6595         * @event move
6596         * Fires when a node is moved to a new location in the tree
6597         * @param {Tree} tree The owner tree
6598         * @param {Node} node The node moved
6599         * @param {Node} oldParent The old parent of this node
6600         * @param {Node} newParent The new parent of this node
6601         * @param {Number} index The index it was moved to
6602         */
6603        "move" : true,
6604        /**
6605         * @event insert
6606         * Fires when a new child node is inserted in a node in this tree.
6607         * @param {Tree} tree The owner tree
6608         * @param {Node} parent The parent node
6609         * @param {Node} node The child node inserted
6610         * @param {Node} refNode The child node the node was inserted before
6611         */
6612        "insert" : true,
6613        /**
6614         * @event beforeappend
6615         * Fires before a new child is appended to a node in this tree, return false to cancel the append.
6616         * @param {Tree} tree The owner tree
6617         * @param {Node} parent The parent node
6618         * @param {Node} node The child node to be appended
6619         */
6620        "beforeappend" : true,
6621        /**
6622         * @event beforeremove
6623         * Fires before a child is removed from a node in this tree, return false to cancel the remove.
6624         * @param {Tree} tree The owner tree
6625         * @param {Node} parent The parent node
6626         * @param {Node} node The child node to be removed
6627         */
6628        "beforeremove" : true,
6629        /**
6630         * @event beforemove
6631         * Fires before a node is moved to a new location in the tree. Return false to cancel the move.
6632         * @param {Tree} tree The owner tree
6633         * @param {Node} node The node being moved
6634         * @param {Node} oldParent The parent of the node
6635         * @param {Node} newParent The new parent the node is moving to
6636         * @param {Number} index The index it is being moved to
6637         */
6638        "beforemove" : true,
6639        /**
6640         * @event beforeinsert
6641         * Fires before a new child is inserted in a node in this tree, return false to cancel the insert.
6642         * @param {Tree} tree The owner tree
6643         * @param {Node} parent The parent node
6644         * @param {Node} node The child node to be inserted
6645         * @param {Node} refNode The child node the node is being inserted before
6646         */
6647        "beforeinsert" : true
6648    });
6649
6650     Roo.data.Tree.superclass.constructor.call(this);
6651 };
6652
6653 Roo.extend(Roo.data.Tree, Roo.util.Observable, {
6654     pathSeparator: "/",
6655
6656     proxyNodeEvent : function(){
6657         return this.fireEvent.apply(this, arguments);
6658     },
6659
6660     /**
6661      * Returns the root node for this tree.
6662      * @return {Node}
6663      */
6664     getRootNode : function(){
6665         return this.root;
6666     },
6667
6668     /**
6669      * Sets the root node for this tree.
6670      * @param {Node} node
6671      * @return {Node}
6672      */
6673     setRootNode : function(node){
6674         this.root = node;
6675         node.ownerTree = this;
6676         node.isRoot = true;
6677         this.registerNode(node);
6678         return node;
6679     },
6680
6681     /**
6682      * Gets a node in this tree by its id.
6683      * @param {String} id
6684      * @return {Node}
6685      */
6686     getNodeById : function(id){
6687         return this.nodeHash[id];
6688     },
6689
6690     registerNode : function(node){
6691         this.nodeHash[node.id] = node;
6692     },
6693
6694     unregisterNode : function(node){
6695         delete this.nodeHash[node.id];
6696     },
6697
6698     toString : function(){
6699         return "[Tree"+(this.id?" "+this.id:"")+"]";
6700     }
6701 });
6702
6703 /**
6704  * @class Roo.data.Node
6705  * @extends Roo.util.Observable
6706  * @cfg {Boolean} leaf true if this node is a leaf and does not have children
6707  * @cfg {String} id The id for this node. If one is not specified, one is generated.
6708  * @constructor
6709  * @param {Object} attributes The attributes/config for the node
6710  */
6711 Roo.data.Node = function(attributes){
6712     /**
6713      * The attributes supplied for the node. You can use this property to access any custom attributes you supplied.
6714      * @type {Object}
6715      */
6716     this.attributes = attributes || {};
6717     this.leaf = this.attributes.leaf;
6718     /**
6719      * The node id. @type String
6720      */
6721     this.id = this.attributes.id;
6722     if(!this.id){
6723         this.id = Roo.id(null, "ynode-");
6724         this.attributes.id = this.id;
6725     }
6726      
6727     
6728     /**
6729      * All child nodes of this node. @type Array
6730      */
6731     this.childNodes = [];
6732     if(!this.childNodes.indexOf){ // indexOf is a must
6733         this.childNodes.indexOf = function(o){
6734             for(var i = 0, len = this.length; i < len; i++){
6735                 if(this[i] == o) {
6736                     return i;
6737                 }
6738             }
6739             return -1;
6740         };
6741     }
6742     /**
6743      * The parent node for this node. @type Node
6744      */
6745     this.parentNode = null;
6746     /**
6747      * The first direct child node of this node, or null if this node has no child nodes. @type Node
6748      */
6749     this.firstChild = null;
6750     /**
6751      * The last direct child node of this node, or null if this node has no child nodes. @type Node
6752      */
6753     this.lastChild = null;
6754     /**
6755      * The node immediately preceding this node in the tree, or null if there is no sibling node. @type Node
6756      */
6757     this.previousSibling = null;
6758     /**
6759      * The node immediately following this node in the tree, or null if there is no sibling node. @type Node
6760      */
6761     this.nextSibling = null;
6762
6763     this.addEvents({
6764        /**
6765         * @event append
6766         * Fires when a new child node is appended
6767         * @param {Tree} tree The owner tree
6768         * @param {Node} this This node
6769         * @param {Node} node The newly appended node
6770         * @param {Number} index The index of the newly appended node
6771         */
6772        "append" : true,
6773        /**
6774         * @event remove
6775         * Fires when a child node is removed
6776         * @param {Tree} tree The owner tree
6777         * @param {Node} this This node
6778         * @param {Node} node The removed node
6779         */
6780        "remove" : true,
6781        /**
6782         * @event move
6783         * Fires when this node is moved to a new location in the tree
6784         * @param {Tree} tree The owner tree
6785         * @param {Node} this This node
6786         * @param {Node} oldParent The old parent of this node
6787         * @param {Node} newParent The new parent of this node
6788         * @param {Number} index The index it was moved to
6789         */
6790        "move" : true,
6791        /**
6792         * @event insert
6793         * Fires when a new child node is inserted.
6794         * @param {Tree} tree The owner tree
6795         * @param {Node} this This node
6796         * @param {Node} node The child node inserted
6797         * @param {Node} refNode The child node the node was inserted before
6798         */
6799        "insert" : true,
6800        /**
6801         * @event beforeappend
6802         * Fires before a new child is appended, return false to cancel the append.
6803         * @param {Tree} tree The owner tree
6804         * @param {Node} this This node
6805         * @param {Node} node The child node to be appended
6806         */
6807        "beforeappend" : true,
6808        /**
6809         * @event beforeremove
6810         * Fires before a child is removed, return false to cancel the remove.
6811         * @param {Tree} tree The owner tree
6812         * @param {Node} this This node
6813         * @param {Node} node The child node to be removed
6814         */
6815        "beforeremove" : true,
6816        /**
6817         * @event beforemove
6818         * Fires before this node is moved to a new location in the tree. Return false to cancel the move.
6819         * @param {Tree} tree The owner tree
6820         * @param {Node} this This node
6821         * @param {Node} oldParent The parent of this node
6822         * @param {Node} newParent The new parent this node is moving to
6823         * @param {Number} index The index it is being moved to
6824         */
6825        "beforemove" : true,
6826        /**
6827         * @event beforeinsert
6828         * Fires before a new child is inserted, return false to cancel the insert.
6829         * @param {Tree} tree The owner tree
6830         * @param {Node} this This node
6831         * @param {Node} node The child node to be inserted
6832         * @param {Node} refNode The child node the node is being inserted before
6833         */
6834        "beforeinsert" : true
6835    });
6836     this.listeners = this.attributes.listeners;
6837     Roo.data.Node.superclass.constructor.call(this);
6838 };
6839
6840 Roo.extend(Roo.data.Node, Roo.util.Observable, {
6841     fireEvent : function(evtName){
6842         // first do standard event for this node
6843         if(Roo.data.Node.superclass.fireEvent.apply(this, arguments) === false){
6844             return false;
6845         }
6846         // then bubble it up to the tree if the event wasn't cancelled
6847         var ot = this.getOwnerTree();
6848         if(ot){
6849             if(ot.proxyNodeEvent.apply(ot, arguments) === false){
6850                 return false;
6851             }
6852         }
6853         return true;
6854     },
6855
6856     /**
6857      * Returns true if this node is a leaf
6858      * @return {Boolean}
6859      */
6860     isLeaf : function(){
6861         return this.leaf === true;
6862     },
6863
6864     // private
6865     setFirstChild : function(node){
6866         this.firstChild = node;
6867     },
6868
6869     //private
6870     setLastChild : function(node){
6871         this.lastChild = node;
6872     },
6873
6874
6875     /**
6876      * Returns true if this node is the last child of its parent
6877      * @return {Boolean}
6878      */
6879     isLast : function(){
6880        return (!this.parentNode ? true : this.parentNode.lastChild == this);
6881     },
6882
6883     /**
6884      * Returns true if this node is the first child of its parent
6885      * @return {Boolean}
6886      */
6887     isFirst : function(){
6888        return (!this.parentNode ? true : this.parentNode.firstChild == this);
6889     },
6890
6891     hasChildNodes : function(){
6892         return !this.isLeaf() && this.childNodes.length > 0;
6893     },
6894
6895     /**
6896      * Insert node(s) as the last child node of this node.
6897      * @param {Node/Array} node The node or Array of nodes to append
6898      * @return {Node} The appended node if single append, or null if an array was passed
6899      */
6900     appendChild : function(node){
6901         var multi = false;
6902         if(node instanceof Array){
6903             multi = node;
6904         }else if(arguments.length > 1){
6905             multi = arguments;
6906         }
6907         // if passed an array or multiple args do them one by one
6908         if(multi){
6909             for(var i = 0, len = multi.length; i < len; i++) {
6910                 this.appendChild(multi[i]);
6911             }
6912         }else{
6913             if(this.fireEvent("beforeappend", this.ownerTree, this, node) === false){
6914                 return false;
6915             }
6916             var index = this.childNodes.length;
6917             var oldParent = node.parentNode;
6918             // it's a move, make sure we move it cleanly
6919             if(oldParent){
6920                 if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index) === false){
6921                     return false;
6922                 }
6923                 oldParent.removeChild(node);
6924             }
6925             index = this.childNodes.length;
6926             if(index == 0){
6927                 this.setFirstChild(node);
6928             }
6929             this.childNodes.push(node);
6930             node.parentNode = this;
6931             var ps = this.childNodes[index-1];
6932             if(ps){
6933                 node.previousSibling = ps;
6934                 ps.nextSibling = node;
6935             }else{
6936                 node.previousSibling = null;
6937             }
6938             node.nextSibling = null;
6939             this.setLastChild(node);
6940             node.setOwnerTree(this.getOwnerTree());
6941             this.fireEvent("append", this.ownerTree, this, node, index);
6942             if(oldParent){
6943                 node.fireEvent("move", this.ownerTree, node, oldParent, this, index);
6944             }
6945             return node;
6946         }
6947     },
6948
6949     /**
6950      * Removes a child node from this node.
6951      * @param {Node} node The node to remove
6952      * @return {Node} The removed node
6953      */
6954     removeChild : function(node){
6955         var index = this.childNodes.indexOf(node);
6956         if(index == -1){
6957             return false;
6958         }
6959         if(this.fireEvent("beforeremove", this.ownerTree, this, node) === false){
6960             return false;
6961         }
6962
6963         // remove it from childNodes collection
6964         this.childNodes.splice(index, 1);
6965
6966         // update siblings
6967         if(node.previousSibling){
6968             node.previousSibling.nextSibling = node.nextSibling;
6969         }
6970         if(node.nextSibling){
6971             node.nextSibling.previousSibling = node.previousSibling;
6972         }
6973
6974         // update child refs
6975         if(this.firstChild == node){
6976             this.setFirstChild(node.nextSibling);
6977         }
6978         if(this.lastChild == node){
6979             this.setLastChild(node.previousSibling);
6980         }
6981
6982         node.setOwnerTree(null);
6983         // clear any references from the node
6984         node.parentNode = null;
6985         node.previousSibling = null;
6986         node.nextSibling = null;
6987         this.fireEvent("remove", this.ownerTree, this, node);
6988         return node;
6989     },
6990
6991     /**
6992      * Inserts the first node before the second node in this nodes childNodes collection.
6993      * @param {Node} node The node to insert
6994      * @param {Node} refNode The node to insert before (if null the node is appended)
6995      * @return {Node} The inserted node
6996      */
6997     insertBefore : function(node, refNode){
6998         if(!refNode){ // like standard Dom, refNode can be null for append
6999             return this.appendChild(node);
7000         }
7001         // nothing to do
7002         if(node == refNode){
7003             return false;
7004         }
7005
7006         if(this.fireEvent("beforeinsert", this.ownerTree, this, node, refNode) === false){
7007             return false;
7008         }
7009         var index = this.childNodes.indexOf(refNode);
7010         var oldParent = node.parentNode;
7011         var refIndex = index;
7012
7013         // when moving internally, indexes will change after remove
7014         if(oldParent == this && this.childNodes.indexOf(node) < index){
7015             refIndex--;
7016         }
7017
7018         // it's a move, make sure we move it cleanly
7019         if(oldParent){
7020             if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index, refNode) === false){
7021                 return false;
7022             }
7023             oldParent.removeChild(node);
7024         }
7025         if(refIndex == 0){
7026             this.setFirstChild(node);
7027         }
7028         this.childNodes.splice(refIndex, 0, node);
7029         node.parentNode = this;
7030         var ps = this.childNodes[refIndex-1];
7031         if(ps){
7032             node.previousSibling = ps;
7033             ps.nextSibling = node;
7034         }else{
7035             node.previousSibling = null;
7036         }
7037         node.nextSibling = refNode;
7038         refNode.previousSibling = node;
7039         node.setOwnerTree(this.getOwnerTree());
7040         this.fireEvent("insert", this.ownerTree, this, node, refNode);
7041         if(oldParent){
7042             node.fireEvent("move", this.ownerTree, node, oldParent, this, refIndex, refNode);
7043         }
7044         return node;
7045     },
7046
7047     /**
7048      * Returns the child node at the specified index.
7049      * @param {Number} index
7050      * @return {Node}
7051      */
7052     item : function(index){
7053         return this.childNodes[index];
7054     },
7055
7056     /**
7057      * Replaces one child node in this node with another.
7058      * @param {Node} newChild The replacement node
7059      * @param {Node} oldChild The node to replace
7060      * @return {Node} The replaced node
7061      */
7062     replaceChild : function(newChild, oldChild){
7063         this.insertBefore(newChild, oldChild);
7064         this.removeChild(oldChild);
7065         return oldChild;
7066     },
7067
7068     /**
7069      * Returns the index of a child node
7070      * @param {Node} node
7071      * @return {Number} The index of the node or -1 if it was not found
7072      */
7073     indexOf : function(child){
7074         return this.childNodes.indexOf(child);
7075     },
7076
7077     /**
7078      * Returns the tree this node is in.
7079      * @return {Tree}
7080      */
7081     getOwnerTree : function(){
7082         // if it doesn't have one, look for one
7083         if(!this.ownerTree){
7084             var p = this;
7085             while(p){
7086                 if(p.ownerTree){
7087                     this.ownerTree = p.ownerTree;
7088                     break;
7089                 }
7090                 p = p.parentNode;
7091             }
7092         }
7093         return this.ownerTree;
7094     },
7095
7096     /**
7097      * Returns depth of this node (the root node has a depth of 0)
7098      * @return {Number}
7099      */
7100     getDepth : function(){
7101         var depth = 0;
7102         var p = this;
7103         while(p.parentNode){
7104             ++depth;
7105             p = p.parentNode;
7106         }
7107         return depth;
7108     },
7109
7110     // private
7111     setOwnerTree : function(tree){
7112         // if it's move, we need to update everyone
7113         if(tree != this.ownerTree){
7114             if(this.ownerTree){
7115                 this.ownerTree.unregisterNode(this);
7116             }
7117             this.ownerTree = tree;
7118             var cs = this.childNodes;
7119             for(var i = 0, len = cs.length; i < len; i++) {
7120                 cs[i].setOwnerTree(tree);
7121             }
7122             if(tree){
7123                 tree.registerNode(this);
7124             }
7125         }
7126     },
7127
7128     /**
7129      * Returns the path for this node. The path can be used to expand or select this node programmatically.
7130      * @param {String} attr (optional) The attr to use for the path (defaults to the node's id)
7131      * @return {String} The path
7132      */
7133     getPath : function(attr){
7134         attr = attr || "id";
7135         var p = this.parentNode;
7136         var b = [this.attributes[attr]];
7137         while(p){
7138             b.unshift(p.attributes[attr]);
7139             p = p.parentNode;
7140         }
7141         var sep = this.getOwnerTree().pathSeparator;
7142         return sep + b.join(sep);
7143     },
7144
7145     /**
7146      * Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
7147      * function call will be the scope provided or the current node. The arguments to the function
7148      * will be the args provided or the current node. If the function returns false at any point,
7149      * the bubble is stopped.
7150      * @param {Function} fn The function to call
7151      * @param {Object} scope (optional) The scope of the function (defaults to current node)
7152      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
7153      */
7154     bubble : function(fn, scope, args){
7155         var p = this;
7156         while(p){
7157             if(fn.call(scope || p, args || p) === false){
7158                 break;
7159             }
7160             p = p.parentNode;
7161         }
7162     },
7163
7164     /**
7165      * Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
7166      * function call will be the scope provided or the current node. The arguments to the function
7167      * will be the args provided or the current node. If the function returns false at any point,
7168      * the cascade is stopped on that branch.
7169      * @param {Function} fn The function to call
7170      * @param {Object} scope (optional) The scope of the function (defaults to current node)
7171      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
7172      */
7173     cascade : function(fn, scope, args){
7174         if(fn.call(scope || this, args || this) !== false){
7175             var cs = this.childNodes;
7176             for(var i = 0, len = cs.length; i < len; i++) {
7177                 cs[i].cascade(fn, scope, args);
7178             }
7179         }
7180     },
7181
7182     /**
7183      * Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of
7184      * function call will be the scope provided or the current node. The arguments to the function
7185      * will be the args provided or the current node. If the function returns false at any point,
7186      * the iteration stops.
7187      * @param {Function} fn The function to call
7188      * @param {Object} scope (optional) The scope of the function (defaults to current node)
7189      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
7190      */
7191     eachChild : function(fn, scope, args){
7192         var cs = this.childNodes;
7193         for(var i = 0, len = cs.length; i < len; i++) {
7194                 if(fn.call(scope || this, args || cs[i]) === false){
7195                     break;
7196                 }
7197         }
7198     },
7199
7200     /**
7201      * Finds the first child that has the attribute with the specified value.
7202      * @param {String} attribute The attribute name
7203      * @param {Mixed} value The value to search for
7204      * @return {Node} The found child or null if none was found
7205      */
7206     findChild : function(attribute, value){
7207         var cs = this.childNodes;
7208         for(var i = 0, len = cs.length; i < len; i++) {
7209                 if(cs[i].attributes[attribute] == value){
7210                     return cs[i];
7211                 }
7212         }
7213         return null;
7214     },
7215
7216     /**
7217      * Finds the first child by a custom function. The child matches if the function passed
7218      * returns true.
7219      * @param {Function} fn
7220      * @param {Object} scope (optional)
7221      * @return {Node} The found child or null if none was found
7222      */
7223     findChildBy : function(fn, scope){
7224         var cs = this.childNodes;
7225         for(var i = 0, len = cs.length; i < len; i++) {
7226                 if(fn.call(scope||cs[i], cs[i]) === true){
7227                     return cs[i];
7228                 }
7229         }
7230         return null;
7231     },
7232
7233     /**
7234      * Sorts this nodes children using the supplied sort function
7235      * @param {Function} fn
7236      * @param {Object} scope (optional)
7237      */
7238     sort : function(fn, scope){
7239         var cs = this.childNodes;
7240         var len = cs.length;
7241         if(len > 0){
7242             var sortFn = scope ? function(){fn.apply(scope, arguments);} : fn;
7243             cs.sort(sortFn);
7244             for(var i = 0; i < len; i++){
7245                 var n = cs[i];
7246                 n.previousSibling = cs[i-1];
7247                 n.nextSibling = cs[i+1];
7248                 if(i == 0){
7249                     this.setFirstChild(n);
7250                 }
7251                 if(i == len-1){
7252                     this.setLastChild(n);
7253                 }
7254             }
7255         }
7256     },
7257
7258     /**
7259      * Returns true if this node is an ancestor (at any point) of the passed node.
7260      * @param {Node} node
7261      * @return {Boolean}
7262      */
7263     contains : function(node){
7264         return node.isAncestor(this);
7265     },
7266
7267     /**
7268      * Returns true if the passed node is an ancestor (at any point) of this node.
7269      * @param {Node} node
7270      * @return {Boolean}
7271      */
7272     isAncestor : function(node){
7273         var p = this.parentNode;
7274         while(p){
7275             if(p == node){
7276                 return true;
7277             }
7278             p = p.parentNode;
7279         }
7280         return false;
7281     },
7282
7283     toString : function(){
7284         return "[Node"+(this.id?" "+this.id:"")+"]";
7285     }
7286 });/*
7287  * Based on:
7288  * Ext JS Library 1.1.1
7289  * Copyright(c) 2006-2007, Ext JS, LLC.
7290  *
7291  * Originally Released Under LGPL - original licence link has changed is not relivant.
7292  *
7293  * Fork - LGPL
7294  * <script type="text/javascript">
7295  */
7296  (function(){ 
7297 /**
7298  * @class Roo.Layer
7299  * @extends Roo.Element
7300  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
7301  * automatic maintaining of shadow/shim positions.
7302  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
7303  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
7304  * you can pass a string with a CSS class name. False turns off the shadow.
7305  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
7306  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
7307  * @cfg {String} cls CSS class to add to the element
7308  * @cfg {Number} zindex Starting z-index (defaults to 11000)
7309  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
7310  * @constructor
7311  * @param {Object} config An object with config options.
7312  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
7313  */
7314
7315 Roo.Layer = function(config, existingEl){
7316     config = config || {};
7317     var dh = Roo.DomHelper;
7318     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
7319     if(existingEl){
7320         this.dom = Roo.getDom(existingEl);
7321     }
7322     if(!this.dom){
7323         var o = config.dh || {tag: "div", cls: "x-layer"};
7324         this.dom = dh.append(pel, o);
7325     }
7326     if(config.cls){
7327         this.addClass(config.cls);
7328     }
7329     this.constrain = config.constrain !== false;
7330     this.visibilityMode = Roo.Element.VISIBILITY;
7331     if(config.id){
7332         this.id = this.dom.id = config.id;
7333     }else{
7334         this.id = Roo.id(this.dom);
7335     }
7336     this.zindex = config.zindex || this.getZIndex();
7337     this.position("absolute", this.zindex);
7338     if(config.shadow){
7339         this.shadowOffset = config.shadowOffset || 4;
7340         this.shadow = new Roo.Shadow({
7341             offset : this.shadowOffset,
7342             mode : config.shadow
7343         });
7344     }else{
7345         this.shadowOffset = 0;
7346     }
7347     this.useShim = config.shim !== false && Roo.useShims;
7348     this.useDisplay = config.useDisplay;
7349     this.hide();
7350 };
7351
7352 var supr = Roo.Element.prototype;
7353
7354 // shims are shared among layer to keep from having 100 iframes
7355 var shims = [];
7356
7357 Roo.extend(Roo.Layer, Roo.Element, {
7358
7359     getZIndex : function(){
7360         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
7361     },
7362
7363     getShim : function(){
7364         if(!this.useShim){
7365             return null;
7366         }
7367         if(this.shim){
7368             return this.shim;
7369         }
7370         var shim = shims.shift();
7371         if(!shim){
7372             shim = this.createShim();
7373             shim.enableDisplayMode('block');
7374             shim.dom.style.display = 'none';
7375             shim.dom.style.visibility = 'visible';
7376         }
7377         var pn = this.dom.parentNode;
7378         if(shim.dom.parentNode != pn){
7379             pn.insertBefore(shim.dom, this.dom);
7380         }
7381         shim.setStyle('z-index', this.getZIndex()-2);
7382         this.shim = shim;
7383         return shim;
7384     },
7385
7386     hideShim : function(){
7387         if(this.shim){
7388             this.shim.setDisplayed(false);
7389             shims.push(this.shim);
7390             delete this.shim;
7391         }
7392     },
7393
7394     disableShadow : function(){
7395         if(this.shadow){
7396             this.shadowDisabled = true;
7397             this.shadow.hide();
7398             this.lastShadowOffset = this.shadowOffset;
7399             this.shadowOffset = 0;
7400         }
7401     },
7402
7403     enableShadow : function(show){
7404         if(this.shadow){
7405             this.shadowDisabled = false;
7406             this.shadowOffset = this.lastShadowOffset;
7407             delete this.lastShadowOffset;
7408             if(show){
7409                 this.sync(true);
7410             }
7411         }
7412     },
7413
7414     // private
7415     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
7416     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
7417     sync : function(doShow){
7418         var sw = this.shadow;
7419         if(!this.updating && this.isVisible() && (sw || this.useShim)){
7420             var sh = this.getShim();
7421
7422             var w = this.getWidth(),
7423                 h = this.getHeight();
7424
7425             var l = this.getLeft(true),
7426                 t = this.getTop(true);
7427
7428             if(sw && !this.shadowDisabled){
7429                 if(doShow && !sw.isVisible()){
7430                     sw.show(this);
7431                 }else{
7432                     sw.realign(l, t, w, h);
7433                 }
7434                 if(sh){
7435                     if(doShow){
7436                        sh.show();
7437                     }
7438                     // fit the shim behind the shadow, so it is shimmed too
7439                     var a = sw.adjusts, s = sh.dom.style;
7440                     s.left = (Math.min(l, l+a.l))+"px";
7441                     s.top = (Math.min(t, t+a.t))+"px";
7442                     s.width = (w+a.w)+"px";
7443                     s.height = (h+a.h)+"px";
7444                 }
7445             }else if(sh){
7446                 if(doShow){
7447                    sh.show();
7448                 }
7449                 sh.setSize(w, h);
7450                 sh.setLeftTop(l, t);
7451             }
7452             
7453         }
7454     },
7455
7456     // private
7457     destroy : function(){
7458         this.hideShim();
7459         if(this.shadow){
7460             this.shadow.hide();
7461         }
7462         this.removeAllListeners();
7463         var pn = this.dom.parentNode;
7464         if(pn){
7465             pn.removeChild(this.dom);
7466         }
7467         Roo.Element.uncache(this.id);
7468     },
7469
7470     remove : function(){
7471         this.destroy();
7472     },
7473
7474     // private
7475     beginUpdate : function(){
7476         this.updating = true;
7477     },
7478
7479     // private
7480     endUpdate : function(){
7481         this.updating = false;
7482         this.sync(true);
7483     },
7484
7485     // private
7486     hideUnders : function(negOffset){
7487         if(this.shadow){
7488             this.shadow.hide();
7489         }
7490         this.hideShim();
7491     },
7492
7493     // private
7494     constrainXY : function(){
7495         if(this.constrain){
7496             var vw = Roo.lib.Dom.getViewWidth(),
7497                 vh = Roo.lib.Dom.getViewHeight();
7498             var s = Roo.get(document).getScroll();
7499
7500             var xy = this.getXY();
7501             var x = xy[0], y = xy[1];   
7502             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
7503             // only move it if it needs it
7504             var moved = false;
7505             // first validate right/bottom
7506             if((x + w) > vw+s.left){
7507                 x = vw - w - this.shadowOffset;
7508                 moved = true;
7509             }
7510             if((y + h) > vh+s.top){
7511                 y = vh - h - this.shadowOffset;
7512                 moved = true;
7513             }
7514             // then make sure top/left isn't negative
7515             if(x < s.left){
7516                 x = s.left;
7517                 moved = true;
7518             }
7519             if(y < s.top){
7520                 y = s.top;
7521                 moved = true;
7522             }
7523             if(moved){
7524                 if(this.avoidY){
7525                     var ay = this.avoidY;
7526                     if(y <= ay && (y+h) >= ay){
7527                         y = ay-h-5;   
7528                     }
7529                 }
7530                 xy = [x, y];
7531                 this.storeXY(xy);
7532                 supr.setXY.call(this, xy);
7533                 this.sync();
7534             }
7535         }
7536     },
7537
7538     isVisible : function(){
7539         return this.visible;    
7540     },
7541
7542     // private
7543     showAction : function(){
7544         this.visible = true; // track visibility to prevent getStyle calls
7545         if(this.useDisplay === true){
7546             this.setDisplayed("");
7547         }else if(this.lastXY){
7548             supr.setXY.call(this, this.lastXY);
7549         }else if(this.lastLT){
7550             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
7551         }
7552     },
7553
7554     // private
7555     hideAction : function(){
7556         this.visible = false;
7557         if(this.useDisplay === true){
7558             this.setDisplayed(false);
7559         }else{
7560             this.setLeftTop(-10000,-10000);
7561         }
7562     },
7563
7564     // overridden Element method
7565     setVisible : function(v, a, d, c, e){
7566         if(v){
7567             this.showAction();
7568         }
7569         if(a && v){
7570             var cb = function(){
7571                 this.sync(true);
7572                 if(c){
7573                     c();
7574                 }
7575             }.createDelegate(this);
7576             supr.setVisible.call(this, true, true, d, cb, e);
7577         }else{
7578             if(!v){
7579                 this.hideUnders(true);
7580             }
7581             var cb = c;
7582             if(a){
7583                 cb = function(){
7584                     this.hideAction();
7585                     if(c){
7586                         c();
7587                     }
7588                 }.createDelegate(this);
7589             }
7590             supr.setVisible.call(this, v, a, d, cb, e);
7591             if(v){
7592                 this.sync(true);
7593             }else if(!a){
7594                 this.hideAction();
7595             }
7596         }
7597     },
7598
7599     storeXY : function(xy){
7600         delete this.lastLT;
7601         this.lastXY = xy;
7602     },
7603
7604     storeLeftTop : function(left, top){
7605         delete this.lastXY;
7606         this.lastLT = [left, top];
7607     },
7608
7609     // private
7610     beforeFx : function(){
7611         this.beforeAction();
7612         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
7613     },
7614
7615     // private
7616     afterFx : function(){
7617         Roo.Layer.superclass.afterFx.apply(this, arguments);
7618         this.sync(this.isVisible());
7619     },
7620
7621     // private
7622     beforeAction : function(){
7623         if(!this.updating && this.shadow){
7624             this.shadow.hide();
7625         }
7626     },
7627
7628     // overridden Element method
7629     setLeft : function(left){
7630         this.storeLeftTop(left, this.getTop(true));
7631         supr.setLeft.apply(this, arguments);
7632         this.sync();
7633     },
7634
7635     setTop : function(top){
7636         this.storeLeftTop(this.getLeft(true), top);
7637         supr.setTop.apply(this, arguments);
7638         this.sync();
7639     },
7640
7641     setLeftTop : function(left, top){
7642         this.storeLeftTop(left, top);
7643         supr.setLeftTop.apply(this, arguments);
7644         this.sync();
7645     },
7646
7647     setXY : function(xy, a, d, c, e){
7648         this.fixDisplay();
7649         this.beforeAction();
7650         this.storeXY(xy);
7651         var cb = this.createCB(c);
7652         supr.setXY.call(this, xy, a, d, cb, e);
7653         if(!a){
7654             cb();
7655         }
7656     },
7657
7658     // private
7659     createCB : function(c){
7660         var el = this;
7661         return function(){
7662             el.constrainXY();
7663             el.sync(true);
7664             if(c){
7665                 c();
7666             }
7667         };
7668     },
7669
7670     // overridden Element method
7671     setX : function(x, a, d, c, e){
7672         this.setXY([x, this.getY()], a, d, c, e);
7673     },
7674
7675     // overridden Element method
7676     setY : function(y, a, d, c, e){
7677         this.setXY([this.getX(), y], a, d, c, e);
7678     },
7679
7680     // overridden Element method
7681     setSize : function(w, h, a, d, c, e){
7682         this.beforeAction();
7683         var cb = this.createCB(c);
7684         supr.setSize.call(this, w, h, a, d, cb, e);
7685         if(!a){
7686             cb();
7687         }
7688     },
7689
7690     // overridden Element method
7691     setWidth : function(w, a, d, c, e){
7692         this.beforeAction();
7693         var cb = this.createCB(c);
7694         supr.setWidth.call(this, w, a, d, cb, e);
7695         if(!a){
7696             cb();
7697         }
7698     },
7699
7700     // overridden Element method
7701     setHeight : function(h, a, d, c, e){
7702         this.beforeAction();
7703         var cb = this.createCB(c);
7704         supr.setHeight.call(this, h, a, d, cb, e);
7705         if(!a){
7706             cb();
7707         }
7708     },
7709
7710     // overridden Element method
7711     setBounds : function(x, y, w, h, a, d, c, e){
7712         this.beforeAction();
7713         var cb = this.createCB(c);
7714         if(!a){
7715             this.storeXY([x, y]);
7716             supr.setXY.call(this, [x, y]);
7717             supr.setSize.call(this, w, h, a, d, cb, e);
7718             cb();
7719         }else{
7720             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
7721         }
7722         return this;
7723     },
7724     
7725     /**
7726      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
7727      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
7728      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
7729      * @param {Number} zindex The new z-index to set
7730      * @return {this} The Layer
7731      */
7732     setZIndex : function(zindex){
7733         this.zindex = zindex;
7734         this.setStyle("z-index", zindex + 2);
7735         if(this.shadow){
7736             this.shadow.setZIndex(zindex + 1);
7737         }
7738         if(this.shim){
7739             this.shim.setStyle("z-index", zindex);
7740         }
7741     }
7742 });
7743 })();/*
7744  * Based on:
7745  * Ext JS Library 1.1.1
7746  * Copyright(c) 2006-2007, Ext JS, LLC.
7747  *
7748  * Originally Released Under LGPL - original licence link has changed is not relivant.
7749  *
7750  * Fork - LGPL
7751  * <script type="text/javascript">
7752  */
7753
7754
7755 /**
7756  * @class Roo.Shadow
7757  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
7758  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
7759  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
7760  * @constructor
7761  * Create a new Shadow
7762  * @param {Object} config The config object
7763  */
7764 Roo.Shadow = function(config){
7765     Roo.apply(this, config);
7766     if(typeof this.mode != "string"){
7767         this.mode = this.defaultMode;
7768     }
7769     var o = this.offset, a = {h: 0};
7770     var rad = Math.floor(this.offset/2);
7771     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
7772         case "drop":
7773             a.w = 0;
7774             a.l = a.t = o;
7775             a.t -= 1;
7776             if(Roo.isIE){
7777                 a.l -= this.offset + rad;
7778                 a.t -= this.offset + rad;
7779                 a.w -= rad;
7780                 a.h -= rad;
7781                 a.t += 1;
7782             }
7783         break;
7784         case "sides":
7785             a.w = (o*2);
7786             a.l = -o;
7787             a.t = o-1;
7788             if(Roo.isIE){
7789                 a.l -= (this.offset - rad);
7790                 a.t -= this.offset + rad;
7791                 a.l += 1;
7792                 a.w -= (this.offset - rad)*2;
7793                 a.w -= rad + 1;
7794                 a.h -= 1;
7795             }
7796         break;
7797         case "frame":
7798             a.w = a.h = (o*2);
7799             a.l = a.t = -o;
7800             a.t += 1;
7801             a.h -= 2;
7802             if(Roo.isIE){
7803                 a.l -= (this.offset - rad);
7804                 a.t -= (this.offset - rad);
7805                 a.l += 1;
7806                 a.w -= (this.offset + rad + 1);
7807                 a.h -= (this.offset + rad);
7808                 a.h += 1;
7809             }
7810         break;
7811     };
7812
7813     this.adjusts = a;
7814 };
7815
7816 Roo.Shadow.prototype = {
7817     /**
7818      * @cfg {String} mode
7819      * The shadow display mode.  Supports the following options:<br />
7820      * sides: Shadow displays on both sides and bottom only<br />
7821      * frame: Shadow displays equally on all four sides<br />
7822      * drop: Traditional bottom-right drop shadow (default)
7823      */
7824     /**
7825      * @cfg {String} offset
7826      * The number of pixels to offset the shadow from the element (defaults to 4)
7827      */
7828     offset: 4,
7829
7830     // private
7831     defaultMode: "drop",
7832
7833     /**
7834      * Displays the shadow under the target element
7835      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
7836      */
7837     show : function(target){
7838         target = Roo.get(target);
7839         if(!this.el){
7840             this.el = Roo.Shadow.Pool.pull();
7841             if(this.el.dom.nextSibling != target.dom){
7842                 this.el.insertBefore(target);
7843             }
7844         }
7845         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
7846         if(Roo.isIE){
7847             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
7848         }
7849         this.realign(
7850             target.getLeft(true),
7851             target.getTop(true),
7852             target.getWidth(),
7853             target.getHeight()
7854         );
7855         this.el.dom.style.display = "block";
7856     },
7857
7858     /**
7859      * Returns true if the shadow is visible, else false
7860      */
7861     isVisible : function(){
7862         return this.el ? true : false;  
7863     },
7864
7865     /**
7866      * Direct alignment when values are already available. Show must be called at least once before
7867      * calling this method to ensure it is initialized.
7868      * @param {Number} left The target element left position
7869      * @param {Number} top The target element top position
7870      * @param {Number} width The target element width
7871      * @param {Number} height The target element height
7872      */
7873     realign : function(l, t, w, h){
7874         if(!this.el){
7875             return;
7876         }
7877         var a = this.adjusts, d = this.el.dom, s = d.style;
7878         var iea = 0;
7879         s.left = (l+a.l)+"px";
7880         s.top = (t+a.t)+"px";
7881         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
7882  
7883         if(s.width != sws || s.height != shs){
7884             s.width = sws;
7885             s.height = shs;
7886             if(!Roo.isIE){
7887                 var cn = d.childNodes;
7888                 var sww = Math.max(0, (sw-12))+"px";
7889                 cn[0].childNodes[1].style.width = sww;
7890                 cn[1].childNodes[1].style.width = sww;
7891                 cn[2].childNodes[1].style.width = sww;
7892                 cn[1].style.height = Math.max(0, (sh-12))+"px";
7893             }
7894         }
7895     },
7896
7897     /**
7898      * Hides this shadow
7899      */
7900     hide : function(){
7901         if(this.el){
7902             this.el.dom.style.display = "none";
7903             Roo.Shadow.Pool.push(this.el);
7904             delete this.el;
7905         }
7906     },
7907
7908     /**
7909      * Adjust the z-index of this shadow
7910      * @param {Number} zindex The new z-index
7911      */
7912     setZIndex : function(z){
7913         this.zIndex = z;
7914         if(this.el){
7915             this.el.setStyle("z-index", z);
7916         }
7917     }
7918 };
7919
7920 // Private utility class that manages the internal Shadow cache
7921 Roo.Shadow.Pool = function(){
7922     var p = [];
7923     var markup = Roo.isIE ?
7924                  '<div class="x-ie-shadow"></div>' :
7925                  '<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>';
7926     return {
7927         pull : function(){
7928             var sh = p.shift();
7929             if(!sh){
7930                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
7931                 sh.autoBoxAdjust = false;
7932             }
7933             return sh;
7934         },
7935
7936         push : function(sh){
7937             p.push(sh);
7938         }
7939     };
7940 }();/*
7941  * Based on:
7942  * Ext JS Library 1.1.1
7943  * Copyright(c) 2006-2007, Ext JS, LLC.
7944  *
7945  * Originally Released Under LGPL - original licence link has changed is not relivant.
7946  *
7947  * Fork - LGPL
7948  * <script type="text/javascript">
7949  */
7950
7951
7952 /**
7953  * @class Roo.SplitBar
7954  * @extends Roo.util.Observable
7955  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
7956  * <br><br>
7957  * Usage:
7958  * <pre><code>
7959 var split = new Roo.SplitBar("elementToDrag", "elementToSize",
7960                    Roo.SplitBar.HORIZONTAL, Roo.SplitBar.LEFT);
7961 split.setAdapter(new Roo.SplitBar.AbsoluteLayoutAdapter("container"));
7962 split.minSize = 100;
7963 split.maxSize = 600;
7964 split.animate = true;
7965 split.on('moved', splitterMoved);
7966 </code></pre>
7967  * @constructor
7968  * Create a new SplitBar
7969  * @param {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
7970  * @param {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
7971  * @param {Number} orientation (optional) Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
7972  * @param {Number} placement (optional) Either Roo.SplitBar.LEFT or Roo.SplitBar.RIGHT for horizontal or  
7973                         Roo.SplitBar.TOP or Roo.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
7974                         position of the SplitBar).
7975  */
7976 Roo.SplitBar = function(dragElement, resizingElement, orientation, placement, existingProxy){
7977     
7978     /** @private */
7979     this.el = Roo.get(dragElement, true);
7980     this.el.dom.unselectable = "on";
7981     /** @private */
7982     this.resizingEl = Roo.get(resizingElement, true);
7983
7984     /**
7985      * @private
7986      * The orientation of the split. Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
7987      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
7988      * @type Number
7989      */
7990     this.orientation = orientation || Roo.SplitBar.HORIZONTAL;
7991     
7992     /**
7993      * The minimum size of the resizing element. (Defaults to 0)
7994      * @type Number
7995      */
7996     this.minSize = 0;
7997     
7998     /**
7999      * The maximum size of the resizing element. (Defaults to 2000)
8000      * @type Number
8001      */
8002     this.maxSize = 2000;
8003     
8004     /**
8005      * Whether to animate the transition to the new size
8006      * @type Boolean
8007      */
8008     this.animate = false;
8009     
8010     /**
8011      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
8012      * @type Boolean
8013      */
8014     this.useShim = false;
8015     
8016     /** @private */
8017     this.shim = null;
8018     
8019     if(!existingProxy){
8020         /** @private */
8021         this.proxy = Roo.SplitBar.createProxy(this.orientation);
8022     }else{
8023         this.proxy = Roo.get(existingProxy).dom;
8024     }
8025     /** @private */
8026     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
8027     
8028     /** @private */
8029     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
8030     
8031     /** @private */
8032     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
8033     
8034     /** @private */
8035     this.dragSpecs = {};
8036     
8037     /**
8038      * @private The adapter to use to positon and resize elements
8039      */
8040     this.adapter = new Roo.SplitBar.BasicLayoutAdapter();
8041     this.adapter.init(this);
8042     
8043     if(this.orientation == Roo.SplitBar.HORIZONTAL){
8044         /** @private */
8045         this.placement = placement || (this.el.getX() > this.resizingEl.getX() ? Roo.SplitBar.LEFT : Roo.SplitBar.RIGHT);
8046         this.el.addClass("x-splitbar-h");
8047     }else{
8048         /** @private */
8049         this.placement = placement || (this.el.getY() > this.resizingEl.getY() ? Roo.SplitBar.TOP : Roo.SplitBar.BOTTOM);
8050         this.el.addClass("x-splitbar-v");
8051     }
8052     
8053     this.addEvents({
8054         /**
8055          * @event resize
8056          * Fires when the splitter is moved (alias for {@link #event-moved})
8057          * @param {Roo.SplitBar} this
8058          * @param {Number} newSize the new width or height
8059          */
8060         "resize" : true,
8061         /**
8062          * @event moved
8063          * Fires when the splitter is moved
8064          * @param {Roo.SplitBar} this
8065          * @param {Number} newSize the new width or height
8066          */
8067         "moved" : true,
8068         /**
8069          * @event beforeresize
8070          * Fires before the splitter is dragged
8071          * @param {Roo.SplitBar} this
8072          */
8073         "beforeresize" : true,
8074
8075         "beforeapply" : true
8076     });
8077
8078     Roo.util.Observable.call(this);
8079 };
8080
8081 Roo.extend(Roo.SplitBar, Roo.util.Observable, {
8082     onStartProxyDrag : function(x, y){
8083         this.fireEvent("beforeresize", this);
8084         if(!this.overlay){
8085             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "x-drag-overlay", html: "&#160;"}, true);
8086             o.unselectable();
8087             o.enableDisplayMode("block");
8088             // all splitbars share the same overlay
8089             Roo.SplitBar.prototype.overlay = o;
8090         }
8091         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
8092         this.overlay.show();
8093         Roo.get(this.proxy).setDisplayed("block");
8094         var size = this.adapter.getElementSize(this);
8095         this.activeMinSize = this.getMinimumSize();;
8096         this.activeMaxSize = this.getMaximumSize();;
8097         var c1 = size - this.activeMinSize;
8098         var c2 = Math.max(this.activeMaxSize - size, 0);
8099         if(this.orientation == Roo.SplitBar.HORIZONTAL){
8100             this.dd.resetConstraints();
8101             this.dd.setXConstraint(
8102                 this.placement == Roo.SplitBar.LEFT ? c1 : c2, 
8103                 this.placement == Roo.SplitBar.LEFT ? c2 : c1
8104             );
8105             this.dd.setYConstraint(0, 0);
8106         }else{
8107             this.dd.resetConstraints();
8108             this.dd.setXConstraint(0, 0);
8109             this.dd.setYConstraint(
8110                 this.placement == Roo.SplitBar.TOP ? c1 : c2, 
8111                 this.placement == Roo.SplitBar.TOP ? c2 : c1
8112             );
8113          }
8114         this.dragSpecs.startSize = size;
8115         this.dragSpecs.startPoint = [x, y];
8116         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
8117     },
8118     
8119     /** 
8120      * @private Called after the drag operation by the DDProxy
8121      */
8122     onEndProxyDrag : function(e){
8123         Roo.get(this.proxy).setDisplayed(false);
8124         var endPoint = Roo.lib.Event.getXY(e);
8125         if(this.overlay){
8126             this.overlay.hide();
8127         }
8128         var newSize;
8129         if(this.orientation == Roo.SplitBar.HORIZONTAL){
8130             newSize = this.dragSpecs.startSize + 
8131                 (this.placement == Roo.SplitBar.LEFT ?
8132                     endPoint[0] - this.dragSpecs.startPoint[0] :
8133                     this.dragSpecs.startPoint[0] - endPoint[0]
8134                 );
8135         }else{
8136             newSize = this.dragSpecs.startSize + 
8137                 (this.placement == Roo.SplitBar.TOP ?
8138                     endPoint[1] - this.dragSpecs.startPoint[1] :
8139                     this.dragSpecs.startPoint[1] - endPoint[1]
8140                 );
8141         }
8142         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
8143         if(newSize != this.dragSpecs.startSize){
8144             if(this.fireEvent('beforeapply', this, newSize) !== false){
8145                 this.adapter.setElementSize(this, newSize);
8146                 this.fireEvent("moved", this, newSize);
8147                 this.fireEvent("resize", this, newSize);
8148             }
8149         }
8150     },
8151     
8152     /**
8153      * Get the adapter this SplitBar uses
8154      * @return The adapter object
8155      */
8156     getAdapter : function(){
8157         return this.adapter;
8158     },
8159     
8160     /**
8161      * Set the adapter this SplitBar uses
8162      * @param {Object} adapter A SplitBar adapter object
8163      */
8164     setAdapter : function(adapter){
8165         this.adapter = adapter;
8166         this.adapter.init(this);
8167     },
8168     
8169     /**
8170      * Gets the minimum size for the resizing element
8171      * @return {Number} The minimum size
8172      */
8173     getMinimumSize : function(){
8174         return this.minSize;
8175     },
8176     
8177     /**
8178      * Sets the minimum size for the resizing element
8179      * @param {Number} minSize The minimum size
8180      */
8181     setMinimumSize : function(minSize){
8182         this.minSize = minSize;
8183     },
8184     
8185     /**
8186      * Gets the maximum size for the resizing element
8187      * @return {Number} The maximum size
8188      */
8189     getMaximumSize : function(){
8190         return this.maxSize;
8191     },
8192     
8193     /**
8194      * Sets the maximum size for the resizing element
8195      * @param {Number} maxSize The maximum size
8196      */
8197     setMaximumSize : function(maxSize){
8198         this.maxSize = maxSize;
8199     },
8200     
8201     /**
8202      * Sets the initialize size for the resizing element
8203      * @param {Number} size The initial size
8204      */
8205     setCurrentSize : function(size){
8206         var oldAnimate = this.animate;
8207         this.animate = false;
8208         this.adapter.setElementSize(this, size);
8209         this.animate = oldAnimate;
8210     },
8211     
8212     /**
8213      * Destroy this splitbar. 
8214      * @param {Boolean} removeEl True to remove the element
8215      */
8216     destroy : function(removeEl){
8217         if(this.shim){
8218             this.shim.remove();
8219         }
8220         this.dd.unreg();
8221         this.proxy.parentNode.removeChild(this.proxy);
8222         if(removeEl){
8223             this.el.remove();
8224         }
8225     }
8226 });
8227
8228 /**
8229  * @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.
8230  */
8231 Roo.SplitBar.createProxy = function(dir){
8232     var proxy = new Roo.Element(document.createElement("div"));
8233     proxy.unselectable();
8234     var cls = 'x-splitbar-proxy';
8235     proxy.addClass(cls + ' ' + (dir == Roo.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
8236     document.body.appendChild(proxy.dom);
8237     return proxy.dom;
8238 };
8239
8240 /** 
8241  * @class Roo.SplitBar.BasicLayoutAdapter
8242  * Default Adapter. It assumes the splitter and resizing element are not positioned
8243  * elements and only gets/sets the width of the element. Generally used for table based layouts.
8244  */
8245 Roo.SplitBar.BasicLayoutAdapter = function(){
8246 };
8247
8248 Roo.SplitBar.BasicLayoutAdapter.prototype = {
8249     // do nothing for now
8250     init : function(s){
8251     
8252     },
8253     /**
8254      * Called before drag operations to get the current size of the resizing element. 
8255      * @param {Roo.SplitBar} s The SplitBar using this adapter
8256      */
8257      getElementSize : function(s){
8258         if(s.orientation == Roo.SplitBar.HORIZONTAL){
8259             return s.resizingEl.getWidth();
8260         }else{
8261             return s.resizingEl.getHeight();
8262         }
8263     },
8264     
8265     /**
8266      * Called after drag operations to set the size of the resizing element.
8267      * @param {Roo.SplitBar} s The SplitBar using this adapter
8268      * @param {Number} newSize The new size to set
8269      * @param {Function} onComplete A function to be invoked when resizing is complete
8270      */
8271     setElementSize : function(s, newSize, onComplete){
8272         if(s.orientation == Roo.SplitBar.HORIZONTAL){
8273             if(!s.animate){
8274                 s.resizingEl.setWidth(newSize);
8275                 if(onComplete){
8276                     onComplete(s, newSize);
8277                 }
8278             }else{
8279                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
8280             }
8281         }else{
8282             
8283             if(!s.animate){
8284                 s.resizingEl.setHeight(newSize);
8285                 if(onComplete){
8286                     onComplete(s, newSize);
8287                 }
8288             }else{
8289                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
8290             }
8291         }
8292     }
8293 };
8294
8295 /** 
8296  *@class Roo.SplitBar.AbsoluteLayoutAdapter
8297  * @extends Roo.SplitBar.BasicLayoutAdapter
8298  * Adapter that  moves the splitter element to align with the resized sizing element. 
8299  * Used with an absolute positioned SplitBar.
8300  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
8301  * document.body, make sure you assign an id to the body element.
8302  */
8303 Roo.SplitBar.AbsoluteLayoutAdapter = function(container){
8304     this.basic = new Roo.SplitBar.BasicLayoutAdapter();
8305     this.container = Roo.get(container);
8306 };
8307
8308 Roo.SplitBar.AbsoluteLayoutAdapter.prototype = {
8309     init : function(s){
8310         this.basic.init(s);
8311     },
8312     
8313     getElementSize : function(s){
8314         return this.basic.getElementSize(s);
8315     },
8316     
8317     setElementSize : function(s, newSize, onComplete){
8318         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
8319     },
8320     
8321     moveSplitter : function(s){
8322         var yes = Roo.SplitBar;
8323         switch(s.placement){
8324             case yes.LEFT:
8325                 s.el.setX(s.resizingEl.getRight());
8326                 break;
8327             case yes.RIGHT:
8328                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
8329                 break;
8330             case yes.TOP:
8331                 s.el.setY(s.resizingEl.getBottom());
8332                 break;
8333             case yes.BOTTOM:
8334                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
8335                 break;
8336         }
8337     }
8338 };
8339
8340 /**
8341  * Orientation constant - Create a vertical SplitBar
8342  * @static
8343  * @type Number
8344  */
8345 Roo.SplitBar.VERTICAL = 1;
8346
8347 /**
8348  * Orientation constant - Create a horizontal SplitBar
8349  * @static
8350  * @type Number
8351  */
8352 Roo.SplitBar.HORIZONTAL = 2;
8353
8354 /**
8355  * Placement constant - The resizing element is to the left of the splitter element
8356  * @static
8357  * @type Number
8358  */
8359 Roo.SplitBar.LEFT = 1;
8360
8361 /**
8362  * Placement constant - The resizing element is to the right of the splitter element
8363  * @static
8364  * @type Number
8365  */
8366 Roo.SplitBar.RIGHT = 2;
8367
8368 /**
8369  * Placement constant - The resizing element is positioned above the splitter element
8370  * @static
8371  * @type Number
8372  */
8373 Roo.SplitBar.TOP = 3;
8374
8375 /**
8376  * Placement constant - The resizing element is positioned under splitter element
8377  * @static
8378  * @type Number
8379  */
8380 Roo.SplitBar.BOTTOM = 4;
8381 /*
8382  * Based on:
8383  * Ext JS Library 1.1.1
8384  * Copyright(c) 2006-2007, Ext JS, LLC.
8385  *
8386  * Originally Released Under LGPL - original licence link has changed is not relivant.
8387  *
8388  * Fork - LGPL
8389  * <script type="text/javascript">
8390  */
8391
8392 /**
8393  * @class Roo.View
8394  * @extends Roo.util.Observable
8395  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
8396  * This class also supports single and multi selection modes. <br>
8397  * Create a data model bound view:
8398  <pre><code>
8399  var store = new Roo.data.Store(...);
8400
8401  var view = new Roo.View({
8402     el : "my-element",
8403     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
8404  
8405     singleSelect: true,
8406     selectedClass: "ydataview-selected",
8407     store: store
8408  });
8409
8410  // listen for node click?
8411  view.on("click", function(vw, index, node, e){
8412  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
8413  });
8414
8415  // load XML data
8416  dataModel.load("foobar.xml");
8417  </code></pre>
8418  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
8419  * <br><br>
8420  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
8421  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
8422  * 
8423  * Note: old style constructor is still suported (container, template, config)
8424  * 
8425  * @constructor
8426  * Create a new View
8427  * @param {Object} config The config object
8428  * 
8429  */
8430 Roo.View = function(config, depreciated_tpl, depreciated_config){
8431     
8432     if (typeof(depreciated_tpl) == 'undefined') {
8433         // new way.. - universal constructor.
8434         Roo.apply(this, config);
8435         this.el  = Roo.get(this.el);
8436     } else {
8437         // old format..
8438         this.el  = Roo.get(config);
8439         this.tpl = depreciated_tpl;
8440         Roo.apply(this, depreciated_config);
8441     }
8442     this.wrapEl  = this.el.wrap().wrap();
8443     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
8444     
8445     
8446     if(typeof(this.tpl) == "string"){
8447         this.tpl = new Roo.Template(this.tpl);
8448     } else {
8449         // support xtype ctors..
8450         this.tpl = new Roo.factory(this.tpl, Roo);
8451     }
8452     
8453     
8454     this.tpl.compile();
8455    
8456   
8457     
8458      
8459     /** @private */
8460     this.addEvents({
8461         /**
8462          * @event beforeclick
8463          * Fires before a click is processed. Returns false to cancel the default action.
8464          * @param {Roo.View} this
8465          * @param {Number} index The index of the target node
8466          * @param {HTMLElement} node The target node
8467          * @param {Roo.EventObject} e The raw event object
8468          */
8469             "beforeclick" : true,
8470         /**
8471          * @event click
8472          * Fires when a template node is clicked.
8473          * @param {Roo.View} this
8474          * @param {Number} index The index of the target node
8475          * @param {HTMLElement} node The target node
8476          * @param {Roo.EventObject} e The raw event object
8477          */
8478             "click" : true,
8479         /**
8480          * @event dblclick
8481          * Fires when a template node is double clicked.
8482          * @param {Roo.View} this
8483          * @param {Number} index The index of the target node
8484          * @param {HTMLElement} node The target node
8485          * @param {Roo.EventObject} e The raw event object
8486          */
8487             "dblclick" : true,
8488         /**
8489          * @event contextmenu
8490          * Fires when a template node is right clicked.
8491          * @param {Roo.View} this
8492          * @param {Number} index The index of the target node
8493          * @param {HTMLElement} node The target node
8494          * @param {Roo.EventObject} e The raw event object
8495          */
8496             "contextmenu" : true,
8497         /**
8498          * @event selectionchange
8499          * Fires when the selected nodes change.
8500          * @param {Roo.View} this
8501          * @param {Array} selections Array of the selected nodes
8502          */
8503             "selectionchange" : true,
8504     
8505         /**
8506          * @event beforeselect
8507          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
8508          * @param {Roo.View} this
8509          * @param {HTMLElement} node The node to be selected
8510          * @param {Array} selections Array of currently selected nodes
8511          */
8512             "beforeselect" : true,
8513         /**
8514          * @event preparedata
8515          * Fires on every row to render, to allow you to change the data.
8516          * @param {Roo.View} this
8517          * @param {Object} data to be rendered (change this)
8518          */
8519           "preparedata" : true
8520           
8521           
8522         });
8523
8524
8525
8526     this.el.on({
8527         "click": this.onClick,
8528         "dblclick": this.onDblClick,
8529         "contextmenu": this.onContextMenu,
8530         scope:this
8531     });
8532
8533     this.selections = [];
8534     this.nodes = [];
8535     this.cmp = new Roo.CompositeElementLite([]);
8536     if(this.store){
8537         this.store = Roo.factory(this.store, Roo.data);
8538         this.setStore(this.store, true);
8539     }
8540     
8541     if ( this.footer && this.footer.xtype) {
8542            
8543          var fctr = this.wrapEl.appendChild(document.createElement("div"));
8544         
8545         this.footer.dataSource = this.store
8546         this.footer.container = fctr;
8547         this.footer = Roo.factory(this.footer, Roo);
8548         fctr.insertFirst(this.el);
8549         
8550         // this is a bit insane - as the paging toolbar seems to detach the el..
8551 //        dom.parentNode.parentNode.parentNode
8552          // they get detached?
8553     }
8554     
8555     
8556     Roo.View.superclass.constructor.call(this);
8557     
8558     
8559 };
8560
8561 Roo.extend(Roo.View, Roo.util.Observable, {
8562     
8563      /**
8564      * @cfg {Roo.data.Store} store Data store to load data from.
8565      */
8566     store : false,
8567     
8568     /**
8569      * @cfg {String|Roo.Element} el The container element.
8570      */
8571     el : '',
8572     
8573     /**
8574      * @cfg {String|Roo.Template} tpl The template used by this View 
8575      */
8576     tpl : false,
8577     /**
8578      * @cfg {String} dataName the named area of the template to use as the data area
8579      *                          Works with domtemplates roo-name="name"
8580      */
8581     dataName: false,
8582     /**
8583      * @cfg {String} selectedClass The css class to add to selected nodes
8584      */
8585     selectedClass : "x-view-selected",
8586      /**
8587      * @cfg {String} emptyText The empty text to show when nothing is loaded.
8588      */
8589     emptyText : "",
8590     
8591     /**
8592      * @cfg {String} text to display on mask (default Loading)
8593      */
8594     mask : false,
8595     /**
8596      * @cfg {Boolean} multiSelect Allow multiple selection
8597      */
8598     multiSelect : false,
8599     /**
8600      * @cfg {Boolean} singleSelect Allow single selection
8601      */
8602     singleSelect:  false,
8603     
8604     /**
8605      * @cfg {Boolean} toggleSelect - selecting 
8606      */
8607     toggleSelect : false,
8608     
8609     /**
8610      * Returns the element this view is bound to.
8611      * @return {Roo.Element}
8612      */
8613     getEl : function(){
8614         return this.wrapEl;
8615     },
8616     
8617     
8618
8619     /**
8620      * Refreshes the view. - called by datachanged on the store. - do not call directly.
8621      */
8622     refresh : function(){
8623         Roo.log('refresh');
8624         var t = this.tpl;
8625         
8626         // if we are using something like 'domtemplate', then
8627         // the what gets used is:
8628         // t.applySubtemplate(NAME, data, wrapping data..)
8629         // the outer template then get' applied with
8630         //     the store 'extra data'
8631         // and the body get's added to the
8632         //      roo-name="data" node?
8633         //      <span class='roo-tpl-{name}'></span> ?????
8634         
8635         
8636         
8637         this.clearSelections();
8638         this.el.update("");
8639         var html = [];
8640         var records = this.store.getRange();
8641         if(records.length < 1) {
8642             
8643             // is this valid??  = should it render a template??
8644             
8645             this.el.update(this.emptyText);
8646             return;
8647         }
8648         var el = this.el;
8649         if (this.dataName) {
8650             this.el.update(t.apply(this.store.meta)); //????
8651             el = this.el.child('.roo-tpl-' + this.dataName);
8652         }
8653         
8654         for(var i = 0, len = records.length; i < len; i++){
8655             var data = this.prepareData(records[i].data, i, records[i]);
8656             this.fireEvent("preparedata", this, data, i, records[i]);
8657             html[html.length] = Roo.util.Format.trim(
8658                 this.dataName ?
8659                     t.applySubtemplate(this.dataName, data, this.store.meta) :
8660                     t.apply(data)
8661             );
8662         }
8663         
8664         
8665         
8666         el.update(html.join(""));
8667         this.nodes = el.dom.childNodes;
8668         this.updateIndexes(0);
8669     },
8670     
8671
8672     /**
8673      * Function to override to reformat the data that is sent to
8674      * the template for each node.
8675      * DEPRICATED - use the preparedata event handler.
8676      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
8677      * a JSON object for an UpdateManager bound view).
8678      */
8679     prepareData : function(data, index, record)
8680     {
8681         this.fireEvent("preparedata", this, data, index, record);
8682         return data;
8683     },
8684
8685     onUpdate : function(ds, record){
8686          Roo.log('on update');   
8687         this.clearSelections();
8688         var index = this.store.indexOf(record);
8689         var n = this.nodes[index];
8690         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
8691         n.parentNode.removeChild(n);
8692         this.updateIndexes(index, index);
8693     },
8694
8695     
8696     
8697 // --------- FIXME     
8698     onAdd : function(ds, records, index)
8699     {
8700         Roo.log(['on Add', ds, records, index] );        
8701         this.clearSelections();
8702         if(this.nodes.length == 0){
8703             this.refresh();
8704             return;
8705         }
8706         var n = this.nodes[index];
8707         for(var i = 0, len = records.length; i < len; i++){
8708             var d = this.prepareData(records[i].data, i, records[i]);
8709             if(n){
8710                 this.tpl.insertBefore(n, d);
8711             }else{
8712                 
8713                 this.tpl.append(this.el, d);
8714             }
8715         }
8716         this.updateIndexes(index);
8717     },
8718
8719     onRemove : function(ds, record, index){
8720         Roo.log('onRemove');
8721         this.clearSelections();
8722         var el = this.dataName  ?
8723             this.el.child('.roo-tpl-' + this.dataName) :
8724             this.el; 
8725         
8726         el.dom.removeChild(this.nodes[index]);
8727         this.updateIndexes(index);
8728     },
8729
8730     /**
8731      * Refresh an individual node.
8732      * @param {Number} index
8733      */
8734     refreshNode : function(index){
8735         this.onUpdate(this.store, this.store.getAt(index));
8736     },
8737
8738     updateIndexes : function(startIndex, endIndex){
8739         var ns = this.nodes;
8740         startIndex = startIndex || 0;
8741         endIndex = endIndex || ns.length - 1;
8742         for(var i = startIndex; i <= endIndex; i++){
8743             ns[i].nodeIndex = i;
8744         }
8745     },
8746
8747     /**
8748      * Changes the data store this view uses and refresh the view.
8749      * @param {Store} store
8750      */
8751     setStore : function(store, initial){
8752         if(!initial && this.store){
8753             this.store.un("datachanged", this.refresh);
8754             this.store.un("add", this.onAdd);
8755             this.store.un("remove", this.onRemove);
8756             this.store.un("update", this.onUpdate);
8757             this.store.un("clear", this.refresh);
8758             this.store.un("beforeload", this.onBeforeLoad);
8759             this.store.un("load", this.onLoad);
8760             this.store.un("loadexception", this.onLoad);
8761         }
8762         if(store){
8763           
8764             store.on("datachanged", this.refresh, this);
8765             store.on("add", this.onAdd, this);
8766             store.on("remove", this.onRemove, this);
8767             store.on("update", this.onUpdate, this);
8768             store.on("clear", this.refresh, this);
8769             store.on("beforeload", this.onBeforeLoad, this);
8770             store.on("load", this.onLoad, this);
8771             store.on("loadexception", this.onLoad, this);
8772         }
8773         
8774         if(store){
8775             this.refresh();
8776         }
8777     },
8778     /**
8779      * onbeforeLoad - masks the loading area.
8780      *
8781      */
8782     onBeforeLoad : function(store,opts)
8783     {
8784          Roo.log('onBeforeLoad');   
8785         if (!opts.add) {
8786             this.el.update("");
8787         }
8788         this.el.mask(this.mask ? this.mask : "Loading" ); 
8789     },
8790     onLoad : function ()
8791     {
8792         this.el.unmask();
8793     },
8794     
8795
8796     /**
8797      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
8798      * @param {HTMLElement} node
8799      * @return {HTMLElement} The template node
8800      */
8801     findItemFromChild : function(node){
8802         var el = this.dataName  ?
8803             this.el.child('.roo-tpl-' + this.dataName,true) :
8804             this.el.dom; 
8805         
8806         if(!node || node.parentNode == el){
8807                     return node;
8808             }
8809             var p = node.parentNode;
8810             while(p && p != el){
8811             if(p.parentNode == el){
8812                 return p;
8813             }
8814             p = p.parentNode;
8815         }
8816             return null;
8817     },
8818
8819     /** @ignore */
8820     onClick : function(e){
8821         var item = this.findItemFromChild(e.getTarget());
8822         if(item){
8823             var index = this.indexOf(item);
8824             if(this.onItemClick(item, index, e) !== false){
8825                 this.fireEvent("click", this, index, item, e);
8826             }
8827         }else{
8828             this.clearSelections();
8829         }
8830     },
8831
8832     /** @ignore */
8833     onContextMenu : function(e){
8834         var item = this.findItemFromChild(e.getTarget());
8835         if(item){
8836             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
8837         }
8838     },
8839
8840     /** @ignore */
8841     onDblClick : function(e){
8842         var item = this.findItemFromChild(e.getTarget());
8843         if(item){
8844             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
8845         }
8846     },
8847
8848     onItemClick : function(item, index, e)
8849     {
8850         if(this.fireEvent("beforeclick", this, index, item, e) === false){
8851             return false;
8852         }
8853         if (this.toggleSelect) {
8854             var m = this.isSelected(item) ? 'unselect' : 'select';
8855             Roo.log(m);
8856             var _t = this;
8857             _t[m](item, true, false);
8858             return true;
8859         }
8860         if(this.multiSelect || this.singleSelect){
8861             if(this.multiSelect && e.shiftKey && this.lastSelection){
8862                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
8863             }else{
8864                 this.select(item, this.multiSelect && e.ctrlKey);
8865                 this.lastSelection = item;
8866             }
8867             e.preventDefault();
8868         }
8869         return true;
8870     },
8871
8872     /**
8873      * Get the number of selected nodes.
8874      * @return {Number}
8875      */
8876     getSelectionCount : function(){
8877         return this.selections.length;
8878     },
8879
8880     /**
8881      * Get the currently selected nodes.
8882      * @return {Array} An array of HTMLElements
8883      */
8884     getSelectedNodes : function(){
8885         return this.selections;
8886     },
8887
8888     /**
8889      * Get the indexes of the selected nodes.
8890      * @return {Array}
8891      */
8892     getSelectedIndexes : function(){
8893         var indexes = [], s = this.selections;
8894         for(var i = 0, len = s.length; i < len; i++){
8895             indexes.push(s[i].nodeIndex);
8896         }
8897         return indexes;
8898     },
8899
8900     /**
8901      * Clear all selections
8902      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
8903      */
8904     clearSelections : function(suppressEvent){
8905         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
8906             this.cmp.elements = this.selections;
8907             this.cmp.removeClass(this.selectedClass);
8908             this.selections = [];
8909             if(!suppressEvent){
8910                 this.fireEvent("selectionchange", this, this.selections);
8911             }
8912         }
8913     },
8914
8915     /**
8916      * Returns true if the passed node is selected
8917      * @param {HTMLElement/Number} node The node or node index
8918      * @return {Boolean}
8919      */
8920     isSelected : function(node){
8921         var s = this.selections;
8922         if(s.length < 1){
8923             return false;
8924         }
8925         node = this.getNode(node);
8926         return s.indexOf(node) !== -1;
8927     },
8928
8929     /**
8930      * Selects nodes.
8931      * @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
8932      * @param {Boolean} keepExisting (optional) true to keep existing selections
8933      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
8934      */
8935     select : function(nodeInfo, keepExisting, suppressEvent){
8936         if(nodeInfo instanceof Array){
8937             if(!keepExisting){
8938                 this.clearSelections(true);
8939             }
8940             for(var i = 0, len = nodeInfo.length; i < len; i++){
8941                 this.select(nodeInfo[i], true, true);
8942             }
8943             return;
8944         } 
8945         var node = this.getNode(nodeInfo);
8946         if(!node || this.isSelected(node)){
8947             return; // already selected.
8948         }
8949         if(!keepExisting){
8950             this.clearSelections(true);
8951         }
8952         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
8953             Roo.fly(node).addClass(this.selectedClass);
8954             this.selections.push(node);
8955             if(!suppressEvent){
8956                 this.fireEvent("selectionchange", this, this.selections);
8957             }
8958         }
8959         
8960         
8961     },
8962       /**
8963      * Unselects nodes.
8964      * @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
8965      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
8966      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
8967      */
8968     unselect : function(nodeInfo, keepExisting, suppressEvent)
8969     {
8970         if(nodeInfo instanceof Array){
8971             Roo.each(this.selections, function(s) {
8972                 this.unselect(s, nodeInfo);
8973             }, this);
8974             return;
8975         }
8976         var node = this.getNode(nodeInfo);
8977         if(!node || !this.isSelected(node)){
8978             Roo.log("not selected");
8979             return; // not selected.
8980         }
8981         // fireevent???
8982         var ns = [];
8983         Roo.each(this.selections, function(s) {
8984             if (s == node ) {
8985                 Roo.fly(node).removeClass(this.selectedClass);
8986
8987                 return;
8988             }
8989             ns.push(s);
8990         },this);
8991         
8992         this.selections= ns;
8993         this.fireEvent("selectionchange", this, this.selections);
8994     },
8995
8996     /**
8997      * Gets a template node.
8998      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
8999      * @return {HTMLElement} The node or null if it wasn't found
9000      */
9001     getNode : function(nodeInfo){
9002         if(typeof nodeInfo == "string"){
9003             return document.getElementById(nodeInfo);
9004         }else if(typeof nodeInfo == "number"){
9005             return this.nodes[nodeInfo];
9006         }
9007         return nodeInfo;
9008     },
9009
9010     /**
9011      * Gets a range template nodes.
9012      * @param {Number} startIndex
9013      * @param {Number} endIndex
9014      * @return {Array} An array of nodes
9015      */
9016     getNodes : function(start, end){
9017         var ns = this.nodes;
9018         start = start || 0;
9019         end = typeof end == "undefined" ? ns.length - 1 : end;
9020         var nodes = [];
9021         if(start <= end){
9022             for(var i = start; i <= end; i++){
9023                 nodes.push(ns[i]);
9024             }
9025         } else{
9026             for(var i = start; i >= end; i--){
9027                 nodes.push(ns[i]);
9028             }
9029         }
9030         return nodes;
9031     },
9032
9033     /**
9034      * Finds the index of the passed node
9035      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
9036      * @return {Number} The index of the node or -1
9037      */
9038     indexOf : function(node){
9039         node = this.getNode(node);
9040         if(typeof node.nodeIndex == "number"){
9041             return node.nodeIndex;
9042         }
9043         var ns = this.nodes;
9044         for(var i = 0, len = ns.length; i < len; i++){
9045             if(ns[i] == node){
9046                 return i;
9047             }
9048         }
9049         return -1;
9050     }
9051 });
9052 /*
9053  * Based on:
9054  * Ext JS Library 1.1.1
9055  * Copyright(c) 2006-2007, Ext JS, LLC.
9056  *
9057  * Originally Released Under LGPL - original licence link has changed is not relivant.
9058  *
9059  * Fork - LGPL
9060  * <script type="text/javascript">
9061  */
9062
9063 /**
9064  * @class Roo.JsonView
9065  * @extends Roo.View
9066  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
9067 <pre><code>
9068 var view = new Roo.JsonView({
9069     container: "my-element",
9070     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
9071     multiSelect: true, 
9072     jsonRoot: "data" 
9073 });
9074
9075 // listen for node click?
9076 view.on("click", function(vw, index, node, e){
9077     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
9078 });
9079
9080 // direct load of JSON data
9081 view.load("foobar.php");
9082
9083 // Example from my blog list
9084 var tpl = new Roo.Template(
9085     '&lt;div class="entry"&gt;' +
9086     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
9087     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
9088     "&lt;/div&gt;&lt;hr /&gt;"
9089 );
9090
9091 var moreView = new Roo.JsonView({
9092     container :  "entry-list", 
9093     template : tpl,
9094     jsonRoot: "posts"
9095 });
9096 moreView.on("beforerender", this.sortEntries, this);
9097 moreView.load({
9098     url: "/blog/get-posts.php",
9099     params: "allposts=true",
9100     text: "Loading Blog Entries..."
9101 });
9102 </code></pre>
9103
9104 * Note: old code is supported with arguments : (container, template, config)
9105
9106
9107  * @constructor
9108  * Create a new JsonView
9109  * 
9110  * @param {Object} config The config object
9111  * 
9112  */
9113 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
9114     
9115     
9116     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
9117
9118     var um = this.el.getUpdateManager();
9119     um.setRenderer(this);
9120     um.on("update", this.onLoad, this);
9121     um.on("failure", this.onLoadException, this);
9122
9123     /**
9124      * @event beforerender
9125      * Fires before rendering of the downloaded JSON data.
9126      * @param {Roo.JsonView} this
9127      * @param {Object} data The JSON data loaded
9128      */
9129     /**
9130      * @event load
9131      * Fires when data is loaded.
9132      * @param {Roo.JsonView} this
9133      * @param {Object} data The JSON data loaded
9134      * @param {Object} response The raw Connect response object
9135      */
9136     /**
9137      * @event loadexception
9138      * Fires when loading fails.
9139      * @param {Roo.JsonView} this
9140      * @param {Object} response The raw Connect response object
9141      */
9142     this.addEvents({
9143         'beforerender' : true,
9144         'load' : true,
9145         'loadexception' : true
9146     });
9147 };
9148 Roo.extend(Roo.JsonView, Roo.View, {
9149     /**
9150      * @type {String} The root property in the loaded JSON object that contains the data
9151      */
9152     jsonRoot : "",
9153
9154     /**
9155      * Refreshes the view.
9156      */
9157     refresh : function(){
9158         this.clearSelections();
9159         this.el.update("");
9160         var html = [];
9161         var o = this.jsonData;
9162         if(o && o.length > 0){
9163             for(var i = 0, len = o.length; i < len; i++){
9164                 var data = this.prepareData(o[i], i, o);
9165                 html[html.length] = this.tpl.apply(data);
9166             }
9167         }else{
9168             html.push(this.emptyText);
9169         }
9170         this.el.update(html.join(""));
9171         this.nodes = this.el.dom.childNodes;
9172         this.updateIndexes(0);
9173     },
9174
9175     /**
9176      * 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.
9177      * @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:
9178      <pre><code>
9179      view.load({
9180          url: "your-url.php",
9181          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
9182          callback: yourFunction,
9183          scope: yourObject, //(optional scope)
9184          discardUrl: false,
9185          nocache: false,
9186          text: "Loading...",
9187          timeout: 30,
9188          scripts: false
9189      });
9190      </code></pre>
9191      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
9192      * 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.
9193      * @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}
9194      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
9195      * @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.
9196      */
9197     load : function(){
9198         var um = this.el.getUpdateManager();
9199         um.update.apply(um, arguments);
9200     },
9201
9202     render : function(el, response){
9203         this.clearSelections();
9204         this.el.update("");
9205         var o;
9206         try{
9207             o = Roo.util.JSON.decode(response.responseText);
9208             if(this.jsonRoot){
9209                 
9210                 o = o[this.jsonRoot];
9211             }
9212         } catch(e){
9213         }
9214         /**
9215          * The current JSON data or null
9216          */
9217         this.jsonData = o;
9218         this.beforeRender();
9219         this.refresh();
9220     },
9221
9222 /**
9223  * Get the number of records in the current JSON dataset
9224  * @return {Number}
9225  */
9226     getCount : function(){
9227         return this.jsonData ? this.jsonData.length : 0;
9228     },
9229
9230 /**
9231  * Returns the JSON object for the specified node(s)
9232  * @param {HTMLElement/Array} node The node or an array of nodes
9233  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
9234  * you get the JSON object for the node
9235  */
9236     getNodeData : function(node){
9237         if(node instanceof Array){
9238             var data = [];
9239             for(var i = 0, len = node.length; i < len; i++){
9240                 data.push(this.getNodeData(node[i]));
9241             }
9242             return data;
9243         }
9244         return this.jsonData[this.indexOf(node)] || null;
9245     },
9246
9247     beforeRender : function(){
9248         this.snapshot = this.jsonData;
9249         if(this.sortInfo){
9250             this.sort.apply(this, this.sortInfo);
9251         }
9252         this.fireEvent("beforerender", this, this.jsonData);
9253     },
9254
9255     onLoad : function(el, o){
9256         this.fireEvent("load", this, this.jsonData, o);
9257     },
9258
9259     onLoadException : function(el, o){
9260         this.fireEvent("loadexception", this, o);
9261     },
9262
9263 /**
9264  * Filter the data by a specific property.
9265  * @param {String} property A property on your JSON objects
9266  * @param {String/RegExp} value Either string that the property values
9267  * should start with, or a RegExp to test against the property
9268  */
9269     filter : function(property, value){
9270         if(this.jsonData){
9271             var data = [];
9272             var ss = this.snapshot;
9273             if(typeof value == "string"){
9274                 var vlen = value.length;
9275                 if(vlen == 0){
9276                     this.clearFilter();
9277                     return;
9278                 }
9279                 value = value.toLowerCase();
9280                 for(var i = 0, len = ss.length; i < len; i++){
9281                     var o = ss[i];
9282                     if(o[property].substr(0, vlen).toLowerCase() == value){
9283                         data.push(o);
9284                     }
9285                 }
9286             } else if(value.exec){ // regex?
9287                 for(var i = 0, len = ss.length; i < len; i++){
9288                     var o = ss[i];
9289                     if(value.test(o[property])){
9290                         data.push(o);
9291                     }
9292                 }
9293             } else{
9294                 return;
9295             }
9296             this.jsonData = data;
9297             this.refresh();
9298         }
9299     },
9300
9301 /**
9302  * Filter by a function. The passed function will be called with each
9303  * object in the current dataset. If the function returns true the value is kept,
9304  * otherwise it is filtered.
9305  * @param {Function} fn
9306  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
9307  */
9308     filterBy : function(fn, scope){
9309         if(this.jsonData){
9310             var data = [];
9311             var ss = this.snapshot;
9312             for(var i = 0, len = ss.length; i < len; i++){
9313                 var o = ss[i];
9314                 if(fn.call(scope || this, o)){
9315                     data.push(o);
9316                 }
9317             }
9318             this.jsonData = data;
9319             this.refresh();
9320         }
9321     },
9322
9323 /**
9324  * Clears the current filter.
9325  */
9326     clearFilter : function(){
9327         if(this.snapshot && this.jsonData != this.snapshot){
9328             this.jsonData = this.snapshot;
9329             this.refresh();
9330         }
9331     },
9332
9333
9334 /**
9335  * Sorts the data for this view and refreshes it.
9336  * @param {String} property A property on your JSON objects to sort on
9337  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
9338  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
9339  */
9340     sort : function(property, dir, sortType){
9341         this.sortInfo = Array.prototype.slice.call(arguments, 0);
9342         if(this.jsonData){
9343             var p = property;
9344             var dsc = dir && dir.toLowerCase() == "desc";
9345             var f = function(o1, o2){
9346                 var v1 = sortType ? sortType(o1[p]) : o1[p];
9347                 var v2 = sortType ? sortType(o2[p]) : o2[p];
9348                 ;
9349                 if(v1 < v2){
9350                     return dsc ? +1 : -1;
9351                 } else if(v1 > v2){
9352                     return dsc ? -1 : +1;
9353                 } else{
9354                     return 0;
9355                 }
9356             };
9357             this.jsonData.sort(f);
9358             this.refresh();
9359             if(this.jsonData != this.snapshot){
9360                 this.snapshot.sort(f);
9361             }
9362         }
9363     }
9364 });/*
9365  * Based on:
9366  * Ext JS Library 1.1.1
9367  * Copyright(c) 2006-2007, Ext JS, LLC.
9368  *
9369  * Originally Released Under LGPL - original licence link has changed is not relivant.
9370  *
9371  * Fork - LGPL
9372  * <script type="text/javascript">
9373  */
9374  
9375
9376 /**
9377  * @class Roo.ColorPalette
9378  * @extends Roo.Component
9379  * Simple color palette class for choosing colors.  The palette can be rendered to any container.<br />
9380  * Here's an example of typical usage:
9381  * <pre><code>
9382 var cp = new Roo.ColorPalette({value:'993300'});  // initial selected color
9383 cp.render('my-div');
9384
9385 cp.on('select', function(palette, selColor){
9386     // do something with selColor
9387 });
9388 </code></pre>
9389  * @constructor
9390  * Create a new ColorPalette
9391  * @param {Object} config The config object
9392  */
9393 Roo.ColorPalette = function(config){
9394     Roo.ColorPalette.superclass.constructor.call(this, config);
9395     this.addEvents({
9396         /**
9397              * @event select
9398              * Fires when a color is selected
9399              * @param {ColorPalette} this
9400              * @param {String} color The 6-digit color hex code (without the # symbol)
9401              */
9402         select: true
9403     });
9404
9405     if(this.handler){
9406         this.on("select", this.handler, this.scope, true);
9407     }
9408 };
9409 Roo.extend(Roo.ColorPalette, Roo.Component, {
9410     /**
9411      * @cfg {String} itemCls
9412      * The CSS class to apply to the containing element (defaults to "x-color-palette")
9413      */
9414     itemCls : "x-color-palette",
9415     /**
9416      * @cfg {String} value
9417      * The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that
9418      * the hex codes are case-sensitive.
9419      */
9420     value : null,
9421     clickEvent:'click',
9422     // private
9423     ctype: "Roo.ColorPalette",
9424
9425     /**
9426      * @cfg {Boolean} allowReselect If set to true then reselecting a color that is already selected fires the selection event
9427      */
9428     allowReselect : false,
9429
9430     /**
9431      * <p>An array of 6-digit color hex code strings (without the # symbol).  This array can contain any number
9432      * of colors, and each hex code should be unique.  The width of the palette is controlled via CSS by adjusting
9433      * the width property of the 'x-color-palette' class (or assigning a custom class), so you can balance the number
9434      * of colors with the width setting until the box is symmetrical.</p>
9435      * <p>You can override individual colors if needed:</p>
9436      * <pre><code>
9437 var cp = new Roo.ColorPalette();
9438 cp.colors[0] = "FF0000";  // change the first box to red
9439 </code></pre>
9440
9441 Or you can provide a custom array of your own for complete control:
9442 <pre><code>
9443 var cp = new Roo.ColorPalette();
9444 cp.colors = ["000000", "993300", "333300"];
9445 </code></pre>
9446      * @type Array
9447      */
9448     colors : [
9449         "000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333",
9450         "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080",
9451         "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696",
9452         "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0",
9453         "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"
9454     ],
9455
9456     // private
9457     onRender : function(container, position){
9458         var t = new Roo.MasterTemplate(
9459             '<tpl><a href="#" class="color-{0}" hidefocus="on"><em><span style="background:#{0}" unselectable="on">&#160;</span></em></a></tpl>'
9460         );
9461         var c = this.colors;
9462         for(var i = 0, len = c.length; i < len; i++){
9463             t.add([c[i]]);
9464         }
9465         var el = document.createElement("div");
9466         el.className = this.itemCls;
9467         t.overwrite(el);
9468         container.dom.insertBefore(el, position);
9469         this.el = Roo.get(el);
9470         this.el.on(this.clickEvent, this.handleClick,  this, {delegate: "a"});
9471         if(this.clickEvent != 'click'){
9472             this.el.on('click', Roo.emptyFn,  this, {delegate: "a", preventDefault:true});
9473         }
9474     },
9475
9476     // private
9477     afterRender : function(){
9478         Roo.ColorPalette.superclass.afterRender.call(this);
9479         if(this.value){
9480             var s = this.value;
9481             this.value = null;
9482             this.select(s);
9483         }
9484     },
9485
9486     // private
9487     handleClick : function(e, t){
9488         e.preventDefault();
9489         if(!this.disabled){
9490             var c = t.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
9491             this.select(c.toUpperCase());
9492         }
9493     },
9494
9495     /**
9496      * Selects the specified color in the palette (fires the select event)
9497      * @param {String} color A valid 6-digit color hex code (# will be stripped if included)
9498      */
9499     select : function(color){
9500         color = color.replace("#", "");
9501         if(color != this.value || this.allowReselect){
9502             var el = this.el;
9503             if(this.value){
9504                 el.child("a.color-"+this.value).removeClass("x-color-palette-sel");
9505             }
9506             el.child("a.color-"+color).addClass("x-color-palette-sel");
9507             this.value = color;
9508             this.fireEvent("select", this, color);
9509         }
9510     }
9511 });/*
9512  * Based on:
9513  * Ext JS Library 1.1.1
9514  * Copyright(c) 2006-2007, Ext JS, LLC.
9515  *
9516  * Originally Released Under LGPL - original licence link has changed is not relivant.
9517  *
9518  * Fork - LGPL
9519  * <script type="text/javascript">
9520  */
9521  
9522 /**
9523  * @class Roo.DatePicker
9524  * @extends Roo.Component
9525  * Simple date picker class.
9526  * @constructor
9527  * Create a new DatePicker
9528  * @param {Object} config The config object
9529  */
9530 Roo.DatePicker = function(config){
9531     Roo.DatePicker.superclass.constructor.call(this, config);
9532
9533     this.value = config && config.value ?
9534                  config.value.clearTime() : new Date().clearTime();
9535
9536     this.addEvents({
9537         /**
9538              * @event select
9539              * Fires when a date is selected
9540              * @param {DatePicker} this
9541              * @param {Date} date The selected date
9542              */
9543         'select': true,
9544         /**
9545              * @event monthchange
9546              * Fires when the displayed month changes 
9547              * @param {DatePicker} this
9548              * @param {Date} date The selected month
9549              */
9550         'monthchange': true
9551     });
9552
9553     if(this.handler){
9554         this.on("select", this.handler,  this.scope || this);
9555     }
9556     // build the disabledDatesRE
9557     if(!this.disabledDatesRE && this.disabledDates){
9558         var dd = this.disabledDates;
9559         var re = "(?:";
9560         for(var i = 0; i < dd.length; i++){
9561             re += dd[i];
9562             if(i != dd.length-1) re += "|";
9563         }
9564         this.disabledDatesRE = new RegExp(re + ")");
9565     }
9566 };
9567
9568 Roo.extend(Roo.DatePicker, Roo.Component, {
9569     /**
9570      * @cfg {String} todayText
9571      * The text to display on the button that selects the current date (defaults to "Today")
9572      */
9573     todayText : "Today",
9574     /**
9575      * @cfg {String} okText
9576      * The text to display on the ok button
9577      */
9578     okText : "&#160;OK&#160;", // &#160; to give the user extra clicking room
9579     /**
9580      * @cfg {String} cancelText
9581      * The text to display on the cancel button
9582      */
9583     cancelText : "Cancel",
9584     /**
9585      * @cfg {String} todayTip
9586      * The tooltip to display for the button that selects the current date (defaults to "{current date} (Spacebar)")
9587      */
9588     todayTip : "{0} (Spacebar)",
9589     /**
9590      * @cfg {Date} minDate
9591      * Minimum allowable date (JavaScript date object, defaults to null)
9592      */
9593     minDate : null,
9594     /**
9595      * @cfg {Date} maxDate
9596      * Maximum allowable date (JavaScript date object, defaults to null)
9597      */
9598     maxDate : null,
9599     /**
9600      * @cfg {String} minText
9601      * The error text to display if the minDate validation fails (defaults to "This date is before the minimum date")
9602      */
9603     minText : "This date is before the minimum date",
9604     /**
9605      * @cfg {String} maxText
9606      * The error text to display if the maxDate validation fails (defaults to "This date is after the maximum date")
9607      */
9608     maxText : "This date is after the maximum date",
9609     /**
9610      * @cfg {String} format
9611      * The default date format string which can be overriden for localization support.  The format must be
9612      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
9613      */
9614     format : "m/d/y",
9615     /**
9616      * @cfg {Array} disabledDays
9617      * An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
9618      */
9619     disabledDays : null,
9620     /**
9621      * @cfg {String} disabledDaysText
9622      * The tooltip to display when the date falls on a disabled day (defaults to "")
9623      */
9624     disabledDaysText : "",
9625     /**
9626      * @cfg {RegExp} disabledDatesRE
9627      * JavaScript regular expression used to disable a pattern of dates (defaults to null)
9628      */
9629     disabledDatesRE : null,
9630     /**
9631      * @cfg {String} disabledDatesText
9632      * The tooltip text to display when the date falls on a disabled date (defaults to "")
9633      */
9634     disabledDatesText : "",
9635     /**
9636      * @cfg {Boolean} constrainToViewport
9637      * True to constrain the date picker to the viewport (defaults to true)
9638      */
9639     constrainToViewport : true,
9640     /**
9641      * @cfg {Array} monthNames
9642      * An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)
9643      */
9644     monthNames : Date.monthNames,
9645     /**
9646      * @cfg {Array} dayNames
9647      * An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)
9648      */
9649     dayNames : Date.dayNames,
9650     /**
9651      * @cfg {String} nextText
9652      * The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')
9653      */
9654     nextText: 'Next Month (Control+Right)',
9655     /**
9656      * @cfg {String} prevText
9657      * The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')
9658      */
9659     prevText: 'Previous Month (Control+Left)',
9660     /**
9661      * @cfg {String} monthYearText
9662      * The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')
9663      */
9664     monthYearText: 'Choose a month (Control+Up/Down to move years)',
9665     /**
9666      * @cfg {Number} startDay
9667      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
9668      */
9669     startDay : 0,
9670     /**
9671      * @cfg {Bool} showClear
9672      * Show a clear button (usefull for date form elements that can be blank.)
9673      */
9674     
9675     showClear: false,
9676     
9677     /**
9678      * Sets the value of the date field
9679      * @param {Date} value The date to set
9680      */
9681     setValue : function(value){
9682         var old = this.value;
9683         
9684         if (typeof(value) == 'string') {
9685          
9686             value = Date.parseDate(value, this.format);
9687         }
9688         if (!value) {
9689             value = new Date();
9690         }
9691         
9692         this.value = value.clearTime(true);
9693         if(this.el){
9694             this.update(this.value);
9695         }
9696     },
9697
9698     /**
9699      * Gets the current selected value of the date field
9700      * @return {Date} The selected date
9701      */
9702     getValue : function(){
9703         return this.value;
9704     },
9705
9706     // private
9707     focus : function(){
9708         if(this.el){
9709             this.update(this.activeDate);
9710         }
9711     },
9712
9713     // privateval
9714     onRender : function(container, position){
9715         
9716         var m = [
9717              '<table cellspacing="0">',
9718                 '<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>',
9719                 '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'];
9720         var dn = this.dayNames;
9721         for(var i = 0; i < 7; i++){
9722             var d = this.startDay+i;
9723             if(d > 6){
9724                 d = d-7;
9725             }
9726             m.push("<th><span>", dn[d].substr(0,1), "</span></th>");
9727         }
9728         m[m.length] = "</tr></thead><tbody><tr>";
9729         for(var i = 0; i < 42; i++) {
9730             if(i % 7 == 0 && i != 0){
9731                 m[m.length] = "</tr><tr>";
9732             }
9733             m[m.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>';
9734         }
9735         m[m.length] = '</tr></tbody></table></td></tr><tr>'+
9736             '<td colspan="3" class="x-date-bottom" align="center"></td></tr></table><div class="x-date-mp"></div>';
9737
9738         var el = document.createElement("div");
9739         el.className = "x-date-picker";
9740         el.innerHTML = m.join("");
9741
9742         container.dom.insertBefore(el, position);
9743
9744         this.el = Roo.get(el);
9745         this.eventEl = Roo.get(el.firstChild);
9746
9747         new Roo.util.ClickRepeater(this.el.child("td.x-date-left a"), {
9748             handler: this.showPrevMonth,
9749             scope: this,
9750             preventDefault:true,
9751             stopDefault:true
9752         });
9753
9754         new Roo.util.ClickRepeater(this.el.child("td.x-date-right a"), {
9755             handler: this.showNextMonth,
9756             scope: this,
9757             preventDefault:true,
9758             stopDefault:true
9759         });
9760
9761         this.eventEl.on("mousewheel", this.handleMouseWheel,  this);
9762
9763         this.monthPicker = this.el.down('div.x-date-mp');
9764         this.monthPicker.enableDisplayMode('block');
9765         
9766         var kn = new Roo.KeyNav(this.eventEl, {
9767             "left" : function(e){
9768                 e.ctrlKey ?
9769                     this.showPrevMonth() :
9770                     this.update(this.activeDate.add("d", -1));
9771             },
9772
9773             "right" : function(e){
9774                 e.ctrlKey ?
9775                     this.showNextMonth() :
9776                     this.update(this.activeDate.add("d", 1));
9777             },
9778
9779             "up" : function(e){
9780                 e.ctrlKey ?
9781                     this.showNextYear() :
9782                     this.update(this.activeDate.add("d", -7));
9783             },
9784
9785             "down" : function(e){
9786                 e.ctrlKey ?
9787                     this.showPrevYear() :
9788                     this.update(this.activeDate.add("d", 7));
9789             },
9790
9791             "pageUp" : function(e){
9792                 this.showNextMonth();
9793             },
9794
9795             "pageDown" : function(e){
9796                 this.showPrevMonth();
9797             },
9798
9799             "enter" : function(e){
9800                 e.stopPropagation();
9801                 return true;
9802             },
9803
9804             scope : this
9805         });
9806
9807         this.eventEl.on("click", this.handleDateClick,  this, {delegate: "a.x-date-date"});
9808
9809         this.eventEl.addKeyListener(Roo.EventObject.SPACE, this.selectToday,  this);
9810
9811         this.el.unselectable();
9812         
9813         this.cells = this.el.select("table.x-date-inner tbody td");
9814         this.textNodes = this.el.query("table.x-date-inner tbody span");
9815
9816         this.mbtn = new Roo.Button(this.el.child("td.x-date-middle", true), {
9817             text: "&#160;",
9818             tooltip: this.monthYearText
9819         });
9820
9821         this.mbtn.on('click', this.showMonthPicker, this);
9822         this.mbtn.el.child(this.mbtn.menuClassTarget).addClass("x-btn-with-menu");
9823
9824
9825         var today = (new Date()).dateFormat(this.format);
9826         
9827         var baseTb = new Roo.Toolbar(this.el.child("td.x-date-bottom", true));
9828         if (this.showClear) {
9829             baseTb.add( new Roo.Toolbar.Fill());
9830         }
9831         baseTb.add({
9832             text: String.format(this.todayText, today),
9833             tooltip: String.format(this.todayTip, today),
9834             handler: this.selectToday,
9835             scope: this
9836         });
9837         
9838         //var todayBtn = new Roo.Button(this.el.child("td.x-date-bottom", true), {
9839             
9840         //});
9841         if (this.showClear) {
9842             
9843             baseTb.add( new Roo.Toolbar.Fill());
9844             baseTb.add({
9845                 text: '&#160;',
9846                 cls: 'x-btn-icon x-btn-clear',
9847                 handler: function() {
9848                     //this.value = '';
9849                     this.fireEvent("select", this, '');
9850                 },
9851                 scope: this
9852             });
9853         }
9854         
9855         
9856         if(Roo.isIE){
9857             this.el.repaint();
9858         }
9859         this.update(this.value);
9860     },
9861
9862     createMonthPicker : function(){
9863         if(!this.monthPicker.dom.firstChild){
9864             var buf = ['<table border="0" cellspacing="0">'];
9865             for(var i = 0; i < 6; i++){
9866                 buf.push(
9867                     '<tr><td class="x-date-mp-month"><a href="#">', this.monthNames[i].substr(0, 3), '</a></td>',
9868                     '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', this.monthNames[i+6].substr(0, 3), '</a></td>',
9869                     i == 0 ?
9870                     '<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>' :
9871                     '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>'
9872                 );
9873             }
9874             buf.push(
9875                 '<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">',
9876                     this.okText,
9877                     '</button><button type="button" class="x-date-mp-cancel">',
9878                     this.cancelText,
9879                     '</button></td></tr>',
9880                 '</table>'
9881             );
9882             this.monthPicker.update(buf.join(''));
9883             this.monthPicker.on('click', this.onMonthClick, this);
9884             this.monthPicker.on('dblclick', this.onMonthDblClick, this);
9885
9886             this.mpMonths = this.monthPicker.select('td.x-date-mp-month');
9887             this.mpYears = this.monthPicker.select('td.x-date-mp-year');
9888
9889             this.mpMonths.each(function(m, a, i){
9890                 i += 1;
9891                 if((i%2) == 0){
9892                     m.dom.xmonth = 5 + Math.round(i * .5);
9893                 }else{
9894                     m.dom.xmonth = Math.round((i-1) * .5);
9895                 }
9896             });
9897         }
9898     },
9899
9900     showMonthPicker : function(){
9901         this.createMonthPicker();
9902         var size = this.el.getSize();
9903         this.monthPicker.setSize(size);
9904         this.monthPicker.child('table').setSize(size);
9905
9906         this.mpSelMonth = (this.activeDate || this.value).getMonth();
9907         this.updateMPMonth(this.mpSelMonth);
9908         this.mpSelYear = (this.activeDate || this.value).getFullYear();
9909         this.updateMPYear(this.mpSelYear);
9910
9911         this.monthPicker.slideIn('t', {duration:.2});
9912     },
9913
9914     updateMPYear : function(y){
9915         this.mpyear = y;
9916         var ys = this.mpYears.elements;
9917         for(var i = 1; i <= 10; i++){
9918             var td = ys[i-1], y2;
9919             if((i%2) == 0){
9920                 y2 = y + Math.round(i * .5);
9921                 td.firstChild.innerHTML = y2;
9922                 td.xyear = y2;
9923             }else{
9924                 y2 = y - (5-Math.round(i * .5));
9925                 td.firstChild.innerHTML = y2;
9926                 td.xyear = y2;
9927             }
9928             this.mpYears.item(i-1)[y2 == this.mpSelYear ? 'addClass' : 'removeClass']('x-date-mp-sel');
9929         }
9930     },
9931
9932     updateMPMonth : function(sm){
9933         this.mpMonths.each(function(m, a, i){
9934             m[m.dom.xmonth == sm ? 'addClass' : 'removeClass']('x-date-mp-sel');
9935         });
9936     },
9937
9938     selectMPMonth: function(m){
9939         
9940     },
9941
9942     onMonthClick : function(e, t){
9943         e.stopEvent();
9944         var el = new Roo.Element(t), pn;
9945         if(el.is('button.x-date-mp-cancel')){
9946             this.hideMonthPicker();
9947         }
9948         else if(el.is('button.x-date-mp-ok')){
9949             this.update(new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
9950             this.hideMonthPicker();
9951         }
9952         else if(pn = el.up('td.x-date-mp-month', 2)){
9953             this.mpMonths.removeClass('x-date-mp-sel');
9954             pn.addClass('x-date-mp-sel');
9955             this.mpSelMonth = pn.dom.xmonth;
9956         }
9957         else if(pn = el.up('td.x-date-mp-year', 2)){
9958             this.mpYears.removeClass('x-date-mp-sel');
9959             pn.addClass('x-date-mp-sel');
9960             this.mpSelYear = pn.dom.xyear;
9961         }
9962         else if(el.is('a.x-date-mp-prev')){
9963             this.updateMPYear(this.mpyear-10);
9964         }
9965         else if(el.is('a.x-date-mp-next')){
9966             this.updateMPYear(this.mpyear+10);
9967         }
9968     },
9969
9970     onMonthDblClick : function(e, t){
9971         e.stopEvent();
9972         var el = new Roo.Element(t), pn;
9973         if(pn = el.up('td.x-date-mp-month', 2)){
9974             this.update(new Date(this.mpSelYear, pn.dom.xmonth, (this.activeDate || this.value).getDate()));
9975             this.hideMonthPicker();
9976         }
9977         else if(pn = el.up('td.x-date-mp-year', 2)){
9978             this.update(new Date(pn.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
9979             this.hideMonthPicker();
9980         }
9981     },
9982
9983     hideMonthPicker : function(disableAnim){
9984         if(this.monthPicker){
9985             if(disableAnim === true){
9986                 this.monthPicker.hide();
9987             }else{
9988                 this.monthPicker.slideOut('t', {duration:.2});
9989             }
9990         }
9991     },
9992
9993     // private
9994     showPrevMonth : function(e){
9995         this.update(this.activeDate.add("mo", -1));
9996     },
9997
9998     // private
9999     showNextMonth : function(e){
10000         this.update(this.activeDate.add("mo", 1));
10001     },
10002
10003     // private
10004     showPrevYear : function(){
10005         this.update(this.activeDate.add("y", -1));
10006     },
10007
10008     // private
10009     showNextYear : function(){
10010         this.update(this.activeDate.add("y", 1));
10011     },
10012
10013     // private
10014     handleMouseWheel : function(e){
10015         var delta = e.getWheelDelta();
10016         if(delta > 0){
10017             this.showPrevMonth();
10018             e.stopEvent();
10019         } else if(delta < 0){
10020             this.showNextMonth();
10021             e.stopEvent();
10022         }
10023     },
10024
10025     // private
10026     handleDateClick : function(e, t){
10027         e.stopEvent();
10028         if(t.dateValue && !Roo.fly(t.parentNode).hasClass("x-date-disabled")){
10029             this.setValue(new Date(t.dateValue));
10030             this.fireEvent("select", this, this.value);
10031         }
10032     },
10033
10034     // private
10035     selectToday : function(){
10036         this.setValue(new Date().clearTime());
10037         this.fireEvent("select", this, this.value);
10038     },
10039
10040     // private
10041     update : function(date)
10042     {
10043         var vd = this.activeDate;
10044         this.activeDate = date;
10045         if(vd && this.el){
10046             var t = date.getTime();
10047             if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
10048                 this.cells.removeClass("x-date-selected");
10049                 this.cells.each(function(c){
10050                    if(c.dom.firstChild.dateValue == t){
10051                        c.addClass("x-date-selected");
10052                        setTimeout(function(){
10053                             try{c.dom.firstChild.focus();}catch(e){}
10054                        }, 50);
10055                        return false;
10056                    }
10057                 });
10058                 return;
10059             }
10060         }
10061         
10062         var days = date.getDaysInMonth();
10063         var firstOfMonth = date.getFirstDateOfMonth();
10064         var startingPos = firstOfMonth.getDay()-this.startDay;
10065
10066         if(startingPos <= this.startDay){
10067             startingPos += 7;
10068         }
10069
10070         var pm = date.add("mo", -1);
10071         var prevStart = pm.getDaysInMonth()-startingPos;
10072
10073         var cells = this.cells.elements;
10074         var textEls = this.textNodes;
10075         days += startingPos;
10076
10077         // convert everything to numbers so it's fast
10078         var day = 86400000;
10079         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
10080         var today = new Date().clearTime().getTime();
10081         var sel = date.clearTime().getTime();
10082         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
10083         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
10084         var ddMatch = this.disabledDatesRE;
10085         var ddText = this.disabledDatesText;
10086         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
10087         var ddaysText = this.disabledDaysText;
10088         var format = this.format;
10089
10090         var setCellClass = function(cal, cell){
10091             cell.title = "";
10092             var t = d.getTime();
10093             cell.firstChild.dateValue = t;
10094             if(t == today){
10095                 cell.className += " x-date-today";
10096                 cell.title = cal.todayText;
10097             }
10098             if(t == sel){
10099                 cell.className += " x-date-selected";
10100                 setTimeout(function(){
10101                     try{cell.firstChild.focus();}catch(e){}
10102                 }, 50);
10103             }
10104             // disabling
10105             if(t < min) {
10106                 cell.className = " x-date-disabled";
10107                 cell.title = cal.minText;
10108                 return;
10109             }
10110             if(t > max) {
10111                 cell.className = " x-date-disabled";
10112                 cell.title = cal.maxText;
10113                 return;
10114             }
10115             if(ddays){
10116                 if(ddays.indexOf(d.getDay()) != -1){
10117                     cell.title = ddaysText;
10118                     cell.className = " x-date-disabled";
10119                 }
10120             }
10121             if(ddMatch && format){
10122                 var fvalue = d.dateFormat(format);
10123                 if(ddMatch.test(fvalue)){
10124                     cell.title = ddText.replace("%0", fvalue);
10125                     cell.className = " x-date-disabled";
10126                 }
10127             }
10128         };
10129
10130         var i = 0;
10131         for(; i < startingPos; i++) {
10132             textEls[i].innerHTML = (++prevStart);
10133             d.setDate(d.getDate()+1);
10134             cells[i].className = "x-date-prevday";
10135             setCellClass(this, cells[i]);
10136         }
10137         for(; i < days; i++){
10138             intDay = i - startingPos + 1;
10139             textEls[i].innerHTML = (intDay);
10140             d.setDate(d.getDate()+1);
10141             cells[i].className = "x-date-active";
10142             setCellClass(this, cells[i]);
10143         }
10144         var extraDays = 0;
10145         for(; i < 42; i++) {
10146              textEls[i].innerHTML = (++extraDays);
10147              d.setDate(d.getDate()+1);
10148              cells[i].className = "x-date-nextday";
10149              setCellClass(this, cells[i]);
10150         }
10151
10152         this.mbtn.setText(this.monthNames[date.getMonth()] + " " + date.getFullYear());
10153         this.fireEvent('monthchange', this, date);
10154         
10155         if(!this.internalRender){
10156             var main = this.el.dom.firstChild;
10157             var w = main.offsetWidth;
10158             this.el.setWidth(w + this.el.getBorderWidth("lr"));
10159             Roo.fly(main).setWidth(w);
10160             this.internalRender = true;
10161             // opera does not respect the auto grow header center column
10162             // then, after it gets a width opera refuses to recalculate
10163             // without a second pass
10164             if(Roo.isOpera && !this.secondPass){
10165                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
10166                 this.secondPass = true;
10167                 this.update.defer(10, this, [date]);
10168             }
10169         }
10170         
10171         
10172     }
10173 });        /*
10174  * Based on:
10175  * Ext JS Library 1.1.1
10176  * Copyright(c) 2006-2007, Ext JS, LLC.
10177  *
10178  * Originally Released Under LGPL - original licence link has changed is not relivant.
10179  *
10180  * Fork - LGPL
10181  * <script type="text/javascript">
10182  */
10183 /**
10184  * @class Roo.TabPanel
10185  * @extends Roo.util.Observable
10186  * A lightweight tab container.
10187  * <br><br>
10188  * Usage:
10189  * <pre><code>
10190 // basic tabs 1, built from existing content
10191 var tabs = new Roo.TabPanel("tabs1");
10192 tabs.addTab("script", "View Script");
10193 tabs.addTab("markup", "View Markup");
10194 tabs.activate("script");
10195
10196 // more advanced tabs, built from javascript
10197 var jtabs = new Roo.TabPanel("jtabs");
10198 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
10199
10200 // set up the UpdateManager
10201 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
10202 var updater = tab2.getUpdateManager();
10203 updater.setDefaultUrl("ajax1.htm");
10204 tab2.on('activate', updater.refresh, updater, true);
10205
10206 // Use setUrl for Ajax loading
10207 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
10208 tab3.setUrl("ajax2.htm", null, true);
10209
10210 // Disabled tab
10211 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
10212 tab4.disable();
10213
10214 jtabs.activate("jtabs-1");
10215  * </code></pre>
10216  * @constructor
10217  * Create a new TabPanel.
10218  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
10219  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
10220  */
10221 Roo.TabPanel = function(container, config){
10222     /**
10223     * The container element for this TabPanel.
10224     * @type Roo.Element
10225     */
10226     this.el = Roo.get(container, true);
10227     if(config){
10228         if(typeof config == "boolean"){
10229             this.tabPosition = config ? "bottom" : "top";
10230         }else{
10231             Roo.apply(this, config);
10232         }
10233     }
10234     if(this.tabPosition == "bottom"){
10235         this.bodyEl = Roo.get(this.createBody(this.el.dom));
10236         this.el.addClass("x-tabs-bottom");
10237     }
10238     this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
10239     this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
10240     this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
10241     if(Roo.isIE){
10242         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
10243     }
10244     if(this.tabPosition != "bottom"){
10245         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
10246          * @type Roo.Element
10247          */
10248         this.bodyEl = Roo.get(this.createBody(this.el.dom));
10249         this.el.addClass("x-tabs-top");
10250     }
10251     this.items = [];
10252
10253     this.bodyEl.setStyle("position", "relative");
10254
10255     this.active = null;
10256     this.activateDelegate = this.activate.createDelegate(this);
10257
10258     this.addEvents({
10259         /**
10260          * @event tabchange
10261          * Fires when the active tab changes
10262          * @param {Roo.TabPanel} this
10263          * @param {Roo.TabPanelItem} activePanel The new active tab
10264          */
10265         "tabchange": true,
10266         /**
10267          * @event beforetabchange
10268          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
10269          * @param {Roo.TabPanel} this
10270          * @param {Object} e Set cancel to true on this object to cancel the tab change
10271          * @param {Roo.TabPanelItem} tab The tab being changed to
10272          */
10273         "beforetabchange" : true
10274     });
10275
10276     Roo.EventManager.onWindowResize(this.onResize, this);
10277     this.cpad = this.el.getPadding("lr");
10278     this.hiddenCount = 0;
10279
10280
10281     // toolbar on the tabbar support...
10282     if (this.toolbar) {
10283         var tcfg = this.toolbar;
10284         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
10285         this.toolbar = new Roo.Toolbar(tcfg);
10286         if (Roo.isSafari) {
10287             var tbl = tcfg.container.child('table', true);
10288             tbl.setAttribute('width', '100%');
10289         }
10290         
10291     }
10292    
10293
10294
10295     Roo.TabPanel.superclass.constructor.call(this);
10296 };
10297
10298 Roo.extend(Roo.TabPanel, Roo.util.Observable, {
10299     /*
10300      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
10301      */
10302     tabPosition : "top",
10303     /*
10304      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
10305      */
10306     currentTabWidth : 0,
10307     /*
10308      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
10309      */
10310     minTabWidth : 40,
10311     /*
10312      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
10313      */
10314     maxTabWidth : 250,
10315     /*
10316      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
10317      */
10318     preferredTabWidth : 175,
10319     /*
10320      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
10321      */
10322     resizeTabs : false,
10323     /*
10324      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
10325      */
10326     monitorResize : true,
10327     /*
10328      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
10329      */
10330     toolbar : false,
10331
10332     /**
10333      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
10334      * @param {String} id The id of the div to use <b>or create</b>
10335      * @param {String} text The text for the tab
10336      * @param {String} content (optional) Content to put in the TabPanelItem body
10337      * @param {Boolean} closable (optional) True to create a close icon on the tab
10338      * @return {Roo.TabPanelItem} The created TabPanelItem
10339      */
10340     addTab : function(id, text, content, closable){
10341         var item = new Roo.TabPanelItem(this, id, text, closable);
10342         this.addTabItem(item);
10343         if(content){
10344             item.setContent(content);
10345         }
10346         return item;
10347     },
10348
10349     /**
10350      * Returns the {@link Roo.TabPanelItem} with the specified id/index
10351      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
10352      * @return {Roo.TabPanelItem}
10353      */
10354     getTab : function(id){
10355         return this.items[id];
10356     },
10357
10358     /**
10359      * Hides the {@link Roo.TabPanelItem} with the specified id/index
10360      * @param {String/Number} id The id or index of the TabPanelItem to hide.
10361      */
10362     hideTab : function(id){
10363         var t = this.items[id];
10364         if(!t.isHidden()){
10365            t.setHidden(true);
10366            this.hiddenCount++;
10367            this.autoSizeTabs();
10368         }
10369     },
10370
10371     /**
10372      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
10373      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
10374      */
10375     unhideTab : function(id){
10376         var t = this.items[id];
10377         if(t.isHidden()){
10378            t.setHidden(false);
10379            this.hiddenCount--;
10380            this.autoSizeTabs();
10381         }
10382     },
10383
10384     /**
10385      * Adds an existing {@link Roo.TabPanelItem}.
10386      * @param {Roo.TabPanelItem} item The TabPanelItem to add
10387      */
10388     addTabItem : function(item){
10389         this.items[item.id] = item;
10390         this.items.push(item);
10391         if(this.resizeTabs){
10392            item.setWidth(this.currentTabWidth || this.preferredTabWidth);
10393            this.autoSizeTabs();
10394         }else{
10395             item.autoSize();
10396         }
10397     },
10398
10399     /**
10400      * Removes a {@link Roo.TabPanelItem}.
10401      * @param {String/Number} id The id or index of the TabPanelItem to remove.
10402      */
10403     removeTab : function(id){
10404         var items = this.items;
10405         var tab = items[id];
10406         if(!tab) { return; }
10407         var index = items.indexOf(tab);
10408         if(this.active == tab && items.length > 1){
10409             var newTab = this.getNextAvailable(index);
10410             if(newTab) {
10411                 newTab.activate();
10412             }
10413         }
10414         this.stripEl.dom.removeChild(tab.pnode.dom);
10415         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
10416             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
10417         }
10418         items.splice(index, 1);
10419         delete this.items[tab.id];
10420         tab.fireEvent("close", tab);
10421         tab.purgeListeners();
10422         this.autoSizeTabs();
10423     },
10424
10425     getNextAvailable : function(start){
10426         var items = this.items;
10427         var index = start;
10428         // look for a next tab that will slide over to
10429         // replace the one being removed
10430         while(index < items.length){
10431             var item = items[++index];
10432             if(item && !item.isHidden()){
10433                 return item;
10434             }
10435         }
10436         // if one isn't found select the previous tab (on the left)
10437         index = start;
10438         while(index >= 0){
10439             var item = items[--index];
10440             if(item && !item.isHidden()){
10441                 return item;
10442             }
10443         }
10444         return null;
10445     },
10446
10447     /**
10448      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
10449      * @param {String/Number} id The id or index of the TabPanelItem to disable.
10450      */
10451     disableTab : function(id){
10452         var tab = this.items[id];
10453         if(tab && this.active != tab){
10454             tab.disable();
10455         }
10456     },
10457
10458     /**
10459      * Enables a {@link Roo.TabPanelItem} that is disabled.
10460      * @param {String/Number} id The id or index of the TabPanelItem to enable.
10461      */
10462     enableTab : function(id){
10463         var tab = this.items[id];
10464         tab.enable();
10465     },
10466
10467     /**
10468      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
10469      * @param {String/Number} id The id or index of the TabPanelItem to activate.
10470      * @return {Roo.TabPanelItem} The TabPanelItem.
10471      */
10472     activate : function(id){
10473         var tab = this.items[id];
10474         if(!tab){
10475             return null;
10476         }
10477         if(tab == this.active || tab.disabled){
10478             return tab;
10479         }
10480         var e = {};
10481         this.fireEvent("beforetabchange", this, e, tab);
10482         if(e.cancel !== true && !tab.disabled){
10483             if(this.active){
10484                 this.active.hide();
10485             }
10486             this.active = this.items[id];
10487             this.active.show();
10488             this.fireEvent("tabchange", this, this.active);
10489         }
10490         return tab;
10491     },
10492
10493     /**
10494      * Gets the active {@link Roo.TabPanelItem}.
10495      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
10496      */
10497     getActiveTab : function(){
10498         return this.active;
10499     },
10500
10501     /**
10502      * Updates the tab body element to fit the height of the container element
10503      * for overflow scrolling
10504      * @param {Number} targetHeight (optional) Override the starting height from the elements height
10505      */
10506     syncHeight : function(targetHeight){
10507         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
10508         var bm = this.bodyEl.getMargins();
10509         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
10510         this.bodyEl.setHeight(newHeight);
10511         return newHeight;
10512     },
10513
10514     onResize : function(){
10515         if(this.monitorResize){
10516             this.autoSizeTabs();
10517         }
10518     },
10519
10520     /**
10521      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
10522      */
10523     beginUpdate : function(){
10524         this.updating = true;
10525     },
10526
10527     /**
10528      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
10529      */
10530     endUpdate : function(){
10531         this.updating = false;
10532         this.autoSizeTabs();
10533     },
10534
10535     /**
10536      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
10537      */
10538     autoSizeTabs : function(){
10539         var count = this.items.length;
10540         var vcount = count - this.hiddenCount;
10541         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) return;
10542         var w = Math.max(this.el.getWidth() - this.cpad, 10);
10543         var availWidth = Math.floor(w / vcount);
10544         var b = this.stripBody;
10545         if(b.getWidth() > w){
10546             var tabs = this.items;
10547             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
10548             if(availWidth < this.minTabWidth){
10549                 /*if(!this.sleft){    // incomplete scrolling code
10550                     this.createScrollButtons();
10551                 }
10552                 this.showScroll();
10553                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
10554             }
10555         }else{
10556             if(this.currentTabWidth < this.preferredTabWidth){
10557                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
10558             }
10559         }
10560     },
10561
10562     /**
10563      * Returns the number of tabs in this TabPanel.
10564      * @return {Number}
10565      */
10566      getCount : function(){
10567          return this.items.length;
10568      },
10569
10570     /**
10571      * Resizes all the tabs to the passed width
10572      * @param {Number} The new width
10573      */
10574     setTabWidth : function(width){
10575         this.currentTabWidth = width;
10576         for(var i = 0, len = this.items.length; i < len; i++) {
10577                 if(!this.items[i].isHidden())this.items[i].setWidth(width);
10578         }
10579     },
10580
10581     /**
10582      * Destroys this TabPanel
10583      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
10584      */
10585     destroy : function(removeEl){
10586         Roo.EventManager.removeResizeListener(this.onResize, this);
10587         for(var i = 0, len = this.items.length; i < len; i++){
10588             this.items[i].purgeListeners();
10589         }
10590         if(removeEl === true){
10591             this.el.update("");
10592             this.el.remove();
10593         }
10594     }
10595 });
10596
10597 /**
10598  * @class Roo.TabPanelItem
10599  * @extends Roo.util.Observable
10600  * Represents an individual item (tab plus body) in a TabPanel.
10601  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
10602  * @param {String} id The id of this TabPanelItem
10603  * @param {String} text The text for the tab of this TabPanelItem
10604  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
10605  */
10606 Roo.TabPanelItem = function(tabPanel, id, text, closable){
10607     /**
10608      * The {@link Roo.TabPanel} this TabPanelItem belongs to
10609      * @type Roo.TabPanel
10610      */
10611     this.tabPanel = tabPanel;
10612     /**
10613      * The id for this TabPanelItem
10614      * @type String
10615      */
10616     this.id = id;
10617     /** @private */
10618     this.disabled = false;
10619     /** @private */
10620     this.text = text;
10621     /** @private */
10622     this.loaded = false;
10623     this.closable = closable;
10624
10625     /**
10626      * The body element for this TabPanelItem.
10627      * @type Roo.Element
10628      */
10629     this.bodyEl = Roo.get(tabPanel.createItemBody(tabPanel.bodyEl.dom, id));
10630     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
10631     this.bodyEl.setStyle("display", "block");
10632     this.bodyEl.setStyle("zoom", "1");
10633     this.hideAction();
10634
10635     var els = tabPanel.createStripElements(tabPanel.stripEl.dom, text, closable);
10636     /** @private */
10637     this.el = Roo.get(els.el, true);
10638     this.inner = Roo.get(els.inner, true);
10639     this.textEl = Roo.get(this.el.dom.firstChild.firstChild.firstChild, true);
10640     this.pnode = Roo.get(els.el.parentNode, true);
10641     this.el.on("mousedown", this.onTabMouseDown, this);
10642     this.el.on("click", this.onTabClick, this);
10643     /** @private */
10644     if(closable){
10645         var c = Roo.get(els.close, true);
10646         c.dom.title = this.closeText;
10647         c.addClassOnOver("close-over");
10648         c.on("click", this.closeClick, this);
10649      }
10650
10651     this.addEvents({
10652          /**
10653          * @event activate
10654          * Fires when this tab becomes the active tab.
10655          * @param {Roo.TabPanel} tabPanel The parent TabPanel
10656          * @param {Roo.TabPanelItem} this
10657          */
10658         "activate": true,
10659         /**
10660          * @event beforeclose
10661          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
10662          * @param {Roo.TabPanelItem} this
10663          * @param {Object} e Set cancel to true on this object to cancel the close.
10664          */
10665         "beforeclose": true,
10666         /**
10667          * @event close
10668          * Fires when this tab is closed.
10669          * @param {Roo.TabPanelItem} this
10670          */
10671          "close": true,
10672         /**
10673          * @event deactivate
10674          * Fires when this tab is no longer the active tab.
10675          * @param {Roo.TabPanel} tabPanel The parent TabPanel
10676          * @param {Roo.TabPanelItem} this
10677          */
10678          "deactivate" : true
10679     });
10680     this.hidden = false;
10681
10682     Roo.TabPanelItem.superclass.constructor.call(this);
10683 };
10684
10685 Roo.extend(Roo.TabPanelItem, Roo.util.Observable, {
10686     purgeListeners : function(){
10687        Roo.util.Observable.prototype.purgeListeners.call(this);
10688        this.el.removeAllListeners();
10689     },
10690     /**
10691      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
10692      */
10693     show : function(){
10694         this.pnode.addClass("on");
10695         this.showAction();
10696         if(Roo.isOpera){
10697             this.tabPanel.stripWrap.repaint();
10698         }
10699         this.fireEvent("activate", this.tabPanel, this);
10700     },
10701
10702     /**
10703      * Returns true if this tab is the active tab.
10704      * @return {Boolean}
10705      */
10706     isActive : function(){
10707         return this.tabPanel.getActiveTab() == this;
10708     },
10709
10710     /**
10711      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
10712      */
10713     hide : function(){
10714         this.pnode.removeClass("on");
10715         this.hideAction();
10716         this.fireEvent("deactivate", this.tabPanel, this);
10717     },
10718
10719     hideAction : function(){
10720         this.bodyEl.hide();
10721         this.bodyEl.setStyle("position", "absolute");
10722         this.bodyEl.setLeft("-20000px");
10723         this.bodyEl.setTop("-20000px");
10724     },
10725
10726     showAction : function(){
10727         this.bodyEl.setStyle("position", "relative");
10728         this.bodyEl.setTop("");
10729         this.bodyEl.setLeft("");
10730         this.bodyEl.show();
10731     },
10732
10733     /**
10734      * Set the tooltip for the tab.
10735      * @param {String} tooltip The tab's tooltip
10736      */
10737     setTooltip : function(text){
10738         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
10739             this.textEl.dom.qtip = text;
10740             this.textEl.dom.removeAttribute('title');
10741         }else{
10742             this.textEl.dom.title = text;
10743         }
10744     },
10745
10746     onTabClick : function(e){
10747         e.preventDefault();
10748         this.tabPanel.activate(this.id);
10749     },
10750
10751     onTabMouseDown : function(e){
10752         e.preventDefault();
10753         this.tabPanel.activate(this.id);
10754     },
10755
10756     getWidth : function(){
10757         return this.inner.getWidth();
10758     },
10759
10760     setWidth : function(width){
10761         var iwidth = width - this.pnode.getPadding("lr");
10762         this.inner.setWidth(iwidth);
10763         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
10764         this.pnode.setWidth(width);
10765     },
10766
10767     /**
10768      * Show or hide the tab
10769      * @param {Boolean} hidden True to hide or false to show.
10770      */
10771     setHidden : function(hidden){
10772         this.hidden = hidden;
10773         this.pnode.setStyle("display", hidden ? "none" : "");
10774     },
10775
10776     /**
10777      * Returns true if this tab is "hidden"
10778      * @return {Boolean}
10779      */
10780     isHidden : function(){
10781         return this.hidden;
10782     },
10783
10784     /**
10785      * Returns the text for this tab
10786      * @return {String}
10787      */
10788     getText : function(){
10789         return this.text;
10790     },
10791
10792     autoSize : function(){
10793         //this.el.beginMeasure();
10794         this.textEl.setWidth(1);
10795         /*
10796          *  #2804 [new] Tabs in Roojs
10797          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
10798          */
10799         this.setWidth(this.textEl.dom.scrollWidth+this.pnode.getPadding("lr")+this.inner.getPadding("lr") + 2);
10800         //this.el.endMeasure();
10801     },
10802
10803     /**
10804      * Sets the text for the tab (Note: this also sets the tooltip text)
10805      * @param {String} text The tab's text and tooltip
10806      */
10807     setText : function(text){
10808         this.text = text;
10809         this.textEl.update(text);
10810         this.setTooltip(text);
10811         if(!this.tabPanel.resizeTabs){
10812             this.autoSize();
10813         }
10814     },
10815     /**
10816      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
10817      */
10818     activate : function(){
10819         this.tabPanel.activate(this.id);
10820     },
10821
10822     /**
10823      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
10824      */
10825     disable : function(){
10826         if(this.tabPanel.active != this){
10827             this.disabled = true;
10828             this.pnode.addClass("disabled");
10829         }
10830     },
10831
10832     /**
10833      * Enables this TabPanelItem if it was previously disabled.
10834      */
10835     enable : function(){
10836         this.disabled = false;
10837         this.pnode.removeClass("disabled");
10838     },
10839
10840     /**
10841      * Sets the content for this TabPanelItem.
10842      * @param {String} content The content
10843      * @param {Boolean} loadScripts true to look for and load scripts
10844      */
10845     setContent : function(content, loadScripts){
10846         this.bodyEl.update(content, loadScripts);
10847     },
10848
10849     /**
10850      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
10851      * @return {Roo.UpdateManager} The UpdateManager
10852      */
10853     getUpdateManager : function(){
10854         return this.bodyEl.getUpdateManager();
10855     },
10856
10857     /**
10858      * Set a URL to be used to load the content for this TabPanelItem.
10859      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
10860      * @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)
10861      * @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)
10862      * @return {Roo.UpdateManager} The UpdateManager
10863      */
10864     setUrl : function(url, params, loadOnce){
10865         if(this.refreshDelegate){
10866             this.un('activate', this.refreshDelegate);
10867         }
10868         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
10869         this.on("activate", this.refreshDelegate);
10870         return this.bodyEl.getUpdateManager();
10871     },
10872
10873     /** @private */
10874     _handleRefresh : function(url, params, loadOnce){
10875         if(!loadOnce || !this.loaded){
10876             var updater = this.bodyEl.getUpdateManager();
10877             updater.update(url, params, this._setLoaded.createDelegate(this));
10878         }
10879     },
10880
10881     /**
10882      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
10883      *   Will fail silently if the setUrl method has not been called.
10884      *   This does not activate the panel, just updates its content.
10885      */
10886     refresh : function(){
10887         if(this.refreshDelegate){
10888            this.loaded = false;
10889            this.refreshDelegate();
10890         }
10891     },
10892
10893     /** @private */
10894     _setLoaded : function(){
10895         this.loaded = true;
10896     },
10897
10898     /** @private */
10899     closeClick : function(e){
10900         var o = {};
10901         e.stopEvent();
10902         this.fireEvent("beforeclose", this, o);
10903         if(o.cancel !== true){
10904             this.tabPanel.removeTab(this.id);
10905         }
10906     },
10907     /**
10908      * The text displayed in the tooltip for the close icon.
10909      * @type String
10910      */
10911     closeText : "Close this tab"
10912 });
10913
10914 /** @private */
10915 Roo.TabPanel.prototype.createStrip = function(container){
10916     var strip = document.createElement("div");
10917     strip.className = "x-tabs-wrap";
10918     container.appendChild(strip);
10919     return strip;
10920 };
10921 /** @private */
10922 Roo.TabPanel.prototype.createStripList = function(strip){
10923     // div wrapper for retard IE
10924     // returns the "tr" element.
10925     strip.innerHTML = '<div class="x-tabs-strip-wrap">'+
10926         '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
10927         '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
10928     return strip.firstChild.firstChild.firstChild.firstChild;
10929 };
10930 /** @private */
10931 Roo.TabPanel.prototype.createBody = function(container){
10932     var body = document.createElement("div");
10933     Roo.id(body, "tab-body");
10934     Roo.fly(body).addClass("x-tabs-body");
10935     container.appendChild(body);
10936     return body;
10937 };
10938 /** @private */
10939 Roo.TabPanel.prototype.createItemBody = function(bodyEl, id){
10940     var body = Roo.getDom(id);
10941     if(!body){
10942         body = document.createElement("div");
10943         body.id = id;
10944     }
10945     Roo.fly(body).addClass("x-tabs-item-body");
10946     bodyEl.insertBefore(body, bodyEl.firstChild);
10947     return body;
10948 };
10949 /** @private */
10950 Roo.TabPanel.prototype.createStripElements = function(stripEl, text, closable){
10951     var td = document.createElement("td");
10952     stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
10953     //stripEl.appendChild(td);
10954     if(closable){
10955         td.className = "x-tabs-closable";
10956         if(!this.closeTpl){
10957             this.closeTpl = new Roo.Template(
10958                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
10959                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
10960                '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
10961             );
10962         }
10963         var el = this.closeTpl.overwrite(td, {"text": text});
10964         var close = el.getElementsByTagName("div")[0];
10965         var inner = el.getElementsByTagName("em")[0];
10966         return {"el": el, "close": close, "inner": inner};
10967     } else {
10968         if(!this.tabTpl){
10969             this.tabTpl = new Roo.Template(
10970                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
10971                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
10972             );
10973         }
10974         var el = this.tabTpl.overwrite(td, {"text": text});
10975         var inner = el.getElementsByTagName("em")[0];
10976         return {"el": el, "inner": inner};
10977     }
10978 };/*
10979  * Based on:
10980  * Ext JS Library 1.1.1
10981  * Copyright(c) 2006-2007, Ext JS, LLC.
10982  *
10983  * Originally Released Under LGPL - original licence link has changed is not relivant.
10984  *
10985  * Fork - LGPL
10986  * <script type="text/javascript">
10987  */
10988
10989 /**
10990  * @class Roo.Button
10991  * @extends Roo.util.Observable
10992  * Simple Button class
10993  * @cfg {String} text The button text
10994  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
10995  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
10996  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event)
10997  * @cfg {Object} scope The scope of the handler
10998  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width)
10999  * @cfg {String/Object} tooltip The tooltip for the button - can be a string or QuickTips config object
11000  * @cfg {Boolean} hidden True to start hidden (defaults to false)
11001  * @cfg {Boolean} disabled True to start disabled (defaults to false)
11002  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
11003  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed, only
11004    applies if enableToggle = true)
11005  * @cfg {String/HTMLElement/Element} renderTo The element to append the button to
11006  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
11007   an {@link Roo.util.ClickRepeater} config object (defaults to false).
11008  * @constructor
11009  * Create a new button
11010  * @param {Object} config The config object
11011  */
11012 Roo.Button = function(renderTo, config)
11013 {
11014     if (!config) {
11015         config = renderTo;
11016         renderTo = config.renderTo || false;
11017     }
11018     
11019     Roo.apply(this, config);
11020     this.addEvents({
11021         /**
11022              * @event click
11023              * Fires when this button is clicked
11024              * @param {Button} this
11025              * @param {EventObject} e The click event
11026              */
11027             "click" : true,
11028         /**
11029              * @event toggle
11030              * Fires when the "pressed" state of this button changes (only if enableToggle = true)
11031              * @param {Button} this
11032              * @param {Boolean} pressed
11033              */
11034             "toggle" : true,
11035         /**
11036              * @event mouseover
11037              * Fires when the mouse hovers over the button
11038              * @param {Button} this
11039              * @param {Event} e The event object
11040              */
11041         'mouseover' : true,
11042         /**
11043              * @event mouseout
11044              * Fires when the mouse exits the button
11045              * @param {Button} this
11046              * @param {Event} e The event object
11047              */
11048         'mouseout': true,
11049          /**
11050              * @event render
11051              * Fires when the button is rendered
11052              * @param {Button} this
11053              */
11054         'render': true
11055     });
11056     if(this.menu){
11057         this.menu = Roo.menu.MenuMgr.get(this.menu);
11058     }
11059     // register listeners first!!  - so render can be captured..
11060     Roo.util.Observable.call(this);
11061     if(renderTo){
11062         this.render(renderTo);
11063     }
11064     
11065   
11066 };
11067
11068 Roo.extend(Roo.Button, Roo.util.Observable, {
11069     /**
11070      * 
11071      */
11072     
11073     /**
11074      * Read-only. True if this button is hidden
11075      * @type Boolean
11076      */
11077     hidden : false,
11078     /**
11079      * Read-only. True if this button is disabled
11080      * @type Boolean
11081      */
11082     disabled : false,
11083     /**
11084      * Read-only. True if this button is pressed (only if enableToggle = true)
11085      * @type Boolean
11086      */
11087     pressed : false,
11088
11089     /**
11090      * @cfg {Number} tabIndex 
11091      * The DOM tabIndex for this button (defaults to undefined)
11092      */
11093     tabIndex : undefined,
11094
11095     /**
11096      * @cfg {Boolean} enableToggle
11097      * True to enable pressed/not pressed toggling (defaults to false)
11098      */
11099     enableToggle: false,
11100     /**
11101      * @cfg {Mixed} menu
11102      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
11103      */
11104     menu : undefined,
11105     /**
11106      * @cfg {String} menuAlign
11107      * The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').
11108      */
11109     menuAlign : "tl-bl?",
11110
11111     /**
11112      * @cfg {String} iconCls
11113      * A css class which sets a background image to be used as the icon for this button (defaults to undefined).
11114      */
11115     iconCls : undefined,
11116     /**
11117      * @cfg {String} type
11118      * The button's type, corresponding to the DOM input element type attribute.  Either "submit," "reset" or "button" (default).
11119      */
11120     type : 'button',
11121
11122     // private
11123     menuClassTarget: 'tr',
11124
11125     /**
11126      * @cfg {String} clickEvent
11127      * The type of event to map to the button's event handler (defaults to 'click')
11128      */
11129     clickEvent : 'click',
11130
11131     /**
11132      * @cfg {Boolean} handleMouseEvents
11133      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
11134      */
11135     handleMouseEvents : true,
11136
11137     /**
11138      * @cfg {String} tooltipType
11139      * The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
11140      */
11141     tooltipType : 'qtip',
11142
11143     /**
11144      * @cfg {String} cls
11145      * A CSS class to apply to the button's main element.
11146      */
11147     
11148     /**
11149      * @cfg {Roo.Template} template (Optional)
11150      * An {@link Roo.Template} with which to create the Button's main element. This Template must
11151      * contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
11152      * require code modifications if required elements (e.g. a button) aren't present.
11153      */
11154
11155     // private
11156     render : function(renderTo){
11157         var btn;
11158         if(this.hideParent){
11159             this.parentEl = Roo.get(renderTo);
11160         }
11161         if(!this.dhconfig){
11162             if(!this.template){
11163                 if(!Roo.Button.buttonTemplate){
11164                     // hideous table template
11165                     Roo.Button.buttonTemplate = new Roo.Template(
11166                         '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
11167                         '<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>',
11168                         "</tr></tbody></table>");
11169                 }
11170                 this.template = Roo.Button.buttonTemplate;
11171             }
11172             btn = this.template.append(renderTo, [this.text || '&#160;', this.type], true);
11173             var btnEl = btn.child("button:first");
11174             btnEl.on('focus', this.onFocus, this);
11175             btnEl.on('blur', this.onBlur, this);
11176             if(this.cls){
11177                 btn.addClass(this.cls);
11178             }
11179             if(this.icon){
11180                 btnEl.setStyle('background-image', 'url(' +this.icon +')');
11181             }
11182             if(this.iconCls){
11183                 btnEl.addClass(this.iconCls);
11184                 if(!this.cls){
11185                     btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
11186                 }
11187             }
11188             if(this.tabIndex !== undefined){
11189                 btnEl.dom.tabIndex = this.tabIndex;
11190             }
11191             if(this.tooltip){
11192                 if(typeof this.tooltip == 'object'){
11193                     Roo.QuickTips.tips(Roo.apply({
11194                           target: btnEl.id
11195                     }, this.tooltip));
11196                 } else {
11197                     btnEl.dom[this.tooltipType] = this.tooltip;
11198                 }
11199             }
11200         }else{
11201             btn = Roo.DomHelper.append(Roo.get(renderTo).dom, this.dhconfig, true);
11202         }
11203         this.el = btn;
11204         if(this.id){
11205             this.el.dom.id = this.el.id = this.id;
11206         }
11207         if(this.menu){
11208             this.el.child(this.menuClassTarget).addClass("x-btn-with-menu");
11209             this.menu.on("show", this.onMenuShow, this);
11210             this.menu.on("hide", this.onMenuHide, this);
11211         }
11212         btn.addClass("x-btn");
11213         if(Roo.isIE && !Roo.isIE7){
11214             this.autoWidth.defer(1, this);
11215         }else{
11216             this.autoWidth();
11217         }
11218         if(this.handleMouseEvents){
11219             btn.on("mouseover", this.onMouseOver, this);
11220             btn.on("mouseout", this.onMouseOut, this);
11221             btn.on("mousedown", this.onMouseDown, this);
11222         }
11223         btn.on(this.clickEvent, this.onClick, this);
11224         //btn.on("mouseup", this.onMouseUp, this);
11225         if(this.hidden){
11226             this.hide();
11227         }
11228         if(this.disabled){
11229             this.disable();
11230         }
11231         Roo.ButtonToggleMgr.register(this);
11232         if(this.pressed){
11233             this.el.addClass("x-btn-pressed");
11234         }
11235         if(this.repeat){
11236             var repeater = new Roo.util.ClickRepeater(btn,
11237                 typeof this.repeat == "object" ? this.repeat : {}
11238             );
11239             repeater.on("click", this.onClick,  this);
11240         }
11241         
11242         this.fireEvent('render', this);
11243         
11244     },
11245     /**
11246      * Returns the button's underlying element
11247      * @return {Roo.Element} The element
11248      */
11249     getEl : function(){
11250         return this.el;  
11251     },
11252     
11253     /**
11254      * Destroys this Button and removes any listeners.
11255      */
11256     destroy : function(){
11257         Roo.ButtonToggleMgr.unregister(this);
11258         this.el.removeAllListeners();
11259         this.purgeListeners();
11260         this.el.remove();
11261     },
11262
11263     // private
11264     autoWidth : function(){
11265         if(this.el){
11266             this.el.setWidth("auto");
11267             if(Roo.isIE7 && Roo.isStrict){
11268                 var ib = this.el.child('button');
11269                 if(ib && ib.getWidth() > 20){
11270                     ib.clip();
11271                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
11272                 }
11273             }
11274             if(this.minWidth){
11275                 if(this.hidden){
11276                     this.el.beginMeasure();
11277                 }
11278                 if(this.el.getWidth() < this.minWidth){
11279                     this.el.setWidth(this.minWidth);
11280                 }
11281                 if(this.hidden){
11282                     this.el.endMeasure();
11283                 }
11284             }
11285         }
11286     },
11287
11288     /**
11289      * Assigns this button's click handler
11290      * @param {Function} handler The function to call when the button is clicked
11291      * @param {Object} scope (optional) Scope for the function passed in
11292      */
11293     setHandler : function(handler, scope){
11294         this.handler = handler;
11295         this.scope = scope;  
11296     },
11297     
11298     /**
11299      * Sets this button's text
11300      * @param {String} text The button text
11301      */
11302     setText : function(text){
11303         this.text = text;
11304         if(this.el){
11305             this.el.child("td.x-btn-center button.x-btn-text").update(text);
11306         }
11307         this.autoWidth();
11308     },
11309     
11310     /**
11311      * Gets the text for this button
11312      * @return {String} The button text
11313      */
11314     getText : function(){
11315         return this.text;  
11316     },
11317     
11318     /**
11319      * Show this button
11320      */
11321     show: function(){
11322         this.hidden = false;
11323         if(this.el){
11324             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "");
11325         }
11326     },
11327     
11328     /**
11329      * Hide this button
11330      */
11331     hide: function(){
11332         this.hidden = true;
11333         if(this.el){
11334             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "none");
11335         }
11336     },
11337     
11338     /**
11339      * Convenience function for boolean show/hide
11340      * @param {Boolean} visible True to show, false to hide
11341      */
11342     setVisible: function(visible){
11343         if(visible) {
11344             this.show();
11345         }else{
11346             this.hide();
11347         }
11348     },
11349     
11350     /**
11351      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
11352      * @param {Boolean} state (optional) Force a particular state
11353      */
11354     toggle : function(state){
11355         state = state === undefined ? !this.pressed : state;
11356         if(state != this.pressed){
11357             if(state){
11358                 this.el.addClass("x-btn-pressed");
11359                 this.pressed = true;
11360                 this.fireEvent("toggle", this, true);
11361             }else{
11362                 this.el.removeClass("x-btn-pressed");
11363                 this.pressed = false;
11364                 this.fireEvent("toggle", this, false);
11365             }
11366             if(this.toggleHandler){
11367                 this.toggleHandler.call(this.scope || this, this, state);
11368             }
11369         }
11370     },
11371     
11372     /**
11373      * Focus the button
11374      */
11375     focus : function(){
11376         this.el.child('button:first').focus();
11377     },
11378     
11379     /**
11380      * Disable this button
11381      */
11382     disable : function(){
11383         if(this.el){
11384             this.el.addClass("x-btn-disabled");
11385         }
11386         this.disabled = true;
11387     },
11388     
11389     /**
11390      * Enable this button
11391      */
11392     enable : function(){
11393         if(this.el){
11394             this.el.removeClass("x-btn-disabled");
11395         }
11396         this.disabled = false;
11397     },
11398
11399     /**
11400      * Convenience function for boolean enable/disable
11401      * @param {Boolean} enabled True to enable, false to disable
11402      */
11403     setDisabled : function(v){
11404         this[v !== true ? "enable" : "disable"]();
11405     },
11406
11407     // private
11408     onClick : function(e){
11409         if(e){
11410             e.preventDefault();
11411         }
11412         if(e.button != 0){
11413             return;
11414         }
11415         if(!this.disabled){
11416             if(this.enableToggle){
11417                 this.toggle();
11418             }
11419             if(this.menu && !this.menu.isVisible()){
11420                 this.menu.show(this.el, this.menuAlign);
11421             }
11422             this.fireEvent("click", this, e);
11423             if(this.handler){
11424                 this.el.removeClass("x-btn-over");
11425                 this.handler.call(this.scope || this, this, e);
11426             }
11427         }
11428     },
11429     // private
11430     onMouseOver : function(e){
11431         if(!this.disabled){
11432             this.el.addClass("x-btn-over");
11433             this.fireEvent('mouseover', this, e);
11434         }
11435     },
11436     // private
11437     onMouseOut : function(e){
11438         if(!e.within(this.el,  true)){
11439             this.el.removeClass("x-btn-over");
11440             this.fireEvent('mouseout', this, e);
11441         }
11442     },
11443     // private
11444     onFocus : function(e){
11445         if(!this.disabled){
11446             this.el.addClass("x-btn-focus");
11447         }
11448     },
11449     // private
11450     onBlur : function(e){
11451         this.el.removeClass("x-btn-focus");
11452     },
11453     // private
11454     onMouseDown : function(e){
11455         if(!this.disabled && e.button == 0){
11456             this.el.addClass("x-btn-click");
11457             Roo.get(document).on('mouseup', this.onMouseUp, this);
11458         }
11459     },
11460     // private
11461     onMouseUp : function(e){
11462         if(e.button == 0){
11463             this.el.removeClass("x-btn-click");
11464             Roo.get(document).un('mouseup', this.onMouseUp, this);
11465         }
11466     },
11467     // private
11468     onMenuShow : function(e){
11469         this.el.addClass("x-btn-menu-active");
11470     },
11471     // private
11472     onMenuHide : function(e){
11473         this.el.removeClass("x-btn-menu-active");
11474     }   
11475 });
11476
11477 // Private utility class used by Button
11478 Roo.ButtonToggleMgr = function(){
11479    var groups = {};
11480    
11481    function toggleGroup(btn, state){
11482        if(state){
11483            var g = groups[btn.toggleGroup];
11484            for(var i = 0, l = g.length; i < l; i++){
11485                if(g[i] != btn){
11486                    g[i].toggle(false);
11487                }
11488            }
11489        }
11490    }
11491    
11492    return {
11493        register : function(btn){
11494            if(!btn.toggleGroup){
11495                return;
11496            }
11497            var g = groups[btn.toggleGroup];
11498            if(!g){
11499                g = groups[btn.toggleGroup] = [];
11500            }
11501            g.push(btn);
11502            btn.on("toggle", toggleGroup);
11503        },
11504        
11505        unregister : function(btn){
11506            if(!btn.toggleGroup){
11507                return;
11508            }
11509            var g = groups[btn.toggleGroup];
11510            if(g){
11511                g.remove(btn);
11512                btn.un("toggle", toggleGroup);
11513            }
11514        }
11515    };
11516 }();/*
11517  * Based on:
11518  * Ext JS Library 1.1.1
11519  * Copyright(c) 2006-2007, Ext JS, LLC.
11520  *
11521  * Originally Released Under LGPL - original licence link has changed is not relivant.
11522  *
11523  * Fork - LGPL
11524  * <script type="text/javascript">
11525  */
11526  
11527 /**
11528  * @class Roo.SplitButton
11529  * @extends Roo.Button
11530  * A split button that provides a built-in dropdown arrow that can fire an event separately from the default
11531  * click event of the button.  Typically this would be used to display a dropdown menu that provides additional
11532  * options to the primary button action, but any custom handler can provide the arrowclick implementation.
11533  * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event)
11534  * @cfg {String} arrowTooltip The title attribute of the arrow
11535  * @constructor
11536  * Create a new menu button
11537  * @param {String/HTMLElement/Element} renderTo The element to append the button to
11538  * @param {Object} config The config object
11539  */
11540 Roo.SplitButton = function(renderTo, config){
11541     Roo.SplitButton.superclass.constructor.call(this, renderTo, config);
11542     /**
11543      * @event arrowclick
11544      * Fires when this button's arrow is clicked
11545      * @param {SplitButton} this
11546      * @param {EventObject} e The click event
11547      */
11548     this.addEvents({"arrowclick":true});
11549 };
11550
11551 Roo.extend(Roo.SplitButton, Roo.Button, {
11552     render : function(renderTo){
11553         // this is one sweet looking template!
11554         var tpl = new Roo.Template(
11555             '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>',
11556             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>',
11557             '<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>',
11558             "</tbody></table></td><td>",
11559             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>',
11560             '<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>',
11561             "</tbody></table></td></tr></table>"
11562         );
11563         var btn = tpl.append(renderTo, [this.text, this.type], true);
11564         var btnEl = btn.child("button");
11565         if(this.cls){
11566             btn.addClass(this.cls);
11567         }
11568         if(this.icon){
11569             btnEl.setStyle('background-image', 'url(' +this.icon +')');
11570         }
11571         if(this.iconCls){
11572             btnEl.addClass(this.iconCls);
11573             if(!this.cls){
11574                 btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
11575             }
11576         }
11577         this.el = btn;
11578         if(this.handleMouseEvents){
11579             btn.on("mouseover", this.onMouseOver, this);
11580             btn.on("mouseout", this.onMouseOut, this);
11581             btn.on("mousedown", this.onMouseDown, this);
11582             btn.on("mouseup", this.onMouseUp, this);
11583         }
11584         btn.on(this.clickEvent, this.onClick, this);
11585         if(this.tooltip){
11586             if(typeof this.tooltip == 'object'){
11587                 Roo.QuickTips.tips(Roo.apply({
11588                       target: btnEl.id
11589                 }, this.tooltip));
11590             } else {
11591                 btnEl.dom[this.tooltipType] = this.tooltip;
11592             }
11593         }
11594         if(this.arrowTooltip){
11595             btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip;
11596         }
11597         if(this.hidden){
11598             this.hide();
11599         }
11600         if(this.disabled){
11601             this.disable();
11602         }
11603         if(this.pressed){
11604             this.el.addClass("x-btn-pressed");
11605         }
11606         if(Roo.isIE && !Roo.isIE7){
11607             this.autoWidth.defer(1, this);
11608         }else{
11609             this.autoWidth();
11610         }
11611         if(this.menu){
11612             this.menu.on("show", this.onMenuShow, this);
11613             this.menu.on("hide", this.onMenuHide, this);
11614         }
11615         this.fireEvent('render', this);
11616     },
11617
11618     // private
11619     autoWidth : function(){
11620         if(this.el){
11621             var tbl = this.el.child("table:first");
11622             var tbl2 = this.el.child("table:last");
11623             this.el.setWidth("auto");
11624             tbl.setWidth("auto");
11625             if(Roo.isIE7 && Roo.isStrict){
11626                 var ib = this.el.child('button:first');
11627                 if(ib && ib.getWidth() > 20){
11628                     ib.clip();
11629                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
11630                 }
11631             }
11632             if(this.minWidth){
11633                 if(this.hidden){
11634                     this.el.beginMeasure();
11635                 }
11636                 if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){
11637                     tbl.setWidth(this.minWidth-tbl2.getWidth());
11638                 }
11639                 if(this.hidden){
11640                     this.el.endMeasure();
11641                 }
11642             }
11643             this.el.setWidth(tbl.getWidth()+tbl2.getWidth());
11644         } 
11645     },
11646     /**
11647      * Sets this button's click handler
11648      * @param {Function} handler The function to call when the button is clicked
11649      * @param {Object} scope (optional) Scope for the function passed above
11650      */
11651     setHandler : function(handler, scope){
11652         this.handler = handler;
11653         this.scope = scope;  
11654     },
11655     
11656     /**
11657      * Sets this button's arrow click handler
11658      * @param {Function} handler The function to call when the arrow is clicked
11659      * @param {Object} scope (optional) Scope for the function passed above
11660      */
11661     setArrowHandler : function(handler, scope){
11662         this.arrowHandler = handler;
11663         this.scope = scope;  
11664     },
11665     
11666     /**
11667      * Focus the button
11668      */
11669     focus : function(){
11670         if(this.el){
11671             this.el.child("button:first").focus();
11672         }
11673     },
11674
11675     // private
11676     onClick : function(e){
11677         e.preventDefault();
11678         if(!this.disabled){
11679             if(e.getTarget(".x-btn-menu-arrow-wrap")){
11680                 if(this.menu && !this.menu.isVisible()){
11681                     this.menu.show(this.el, this.menuAlign);
11682                 }
11683                 this.fireEvent("arrowclick", this, e);
11684                 if(this.arrowHandler){
11685                     this.arrowHandler.call(this.scope || this, this, e);
11686                 }
11687             }else{
11688                 this.fireEvent("click", this, e);
11689                 if(this.handler){
11690                     this.handler.call(this.scope || this, this, e);
11691                 }
11692             }
11693         }
11694     },
11695     // private
11696     onMouseDown : function(e){
11697         if(!this.disabled){
11698             Roo.fly(e.getTarget("table")).addClass("x-btn-click");
11699         }
11700     },
11701     // private
11702     onMouseUp : function(e){
11703         Roo.fly(e.getTarget("table")).removeClass("x-btn-click");
11704     }   
11705 });
11706
11707
11708 // backwards compat
11709 Roo.MenuButton = Roo.SplitButton;/*
11710  * Based on:
11711  * Ext JS Library 1.1.1
11712  * Copyright(c) 2006-2007, Ext JS, LLC.
11713  *
11714  * Originally Released Under LGPL - original licence link has changed is not relivant.
11715  *
11716  * Fork - LGPL
11717  * <script type="text/javascript">
11718  */
11719
11720 /**
11721  * @class Roo.Toolbar
11722  * Basic Toolbar class.
11723  * @constructor
11724  * Creates a new Toolbar
11725  * @param {Object} container The config object
11726  */ 
11727 Roo.Toolbar = function(container, buttons, config)
11728 {
11729     /// old consturctor format still supported..
11730     if(container instanceof Array){ // omit the container for later rendering
11731         buttons = container;
11732         config = buttons;
11733         container = null;
11734     }
11735     if (typeof(container) == 'object' && container.xtype) {
11736         config = container;
11737         container = config.container;
11738         buttons = config.buttons || []; // not really - use items!!
11739     }
11740     var xitems = [];
11741     if (config && config.items) {
11742         xitems = config.items;
11743         delete config.items;
11744     }
11745     Roo.apply(this, config);
11746     this.buttons = buttons;
11747     
11748     if(container){
11749         this.render(container);
11750     }
11751     this.xitems = xitems;
11752     Roo.each(xitems, function(b) {
11753         this.add(b);
11754     }, this);
11755     
11756 };
11757
11758 Roo.Toolbar.prototype = {
11759     /**
11760      * @cfg {Array} items
11761      * array of button configs or elements to add (will be converted to a MixedCollection)
11762      */
11763     
11764     /**
11765      * @cfg {String/HTMLElement/Element} container
11766      * The id or element that will contain the toolbar
11767      */
11768     // private
11769     render : function(ct){
11770         this.el = Roo.get(ct);
11771         if(this.cls){
11772             this.el.addClass(this.cls);
11773         }
11774         // using a table allows for vertical alignment
11775         // 100% width is needed by Safari...
11776         this.el.update('<div class="x-toolbar x-small-editor"><table cellspacing="0"><tr></tr></table></div>');
11777         this.tr = this.el.child("tr", true);
11778         var autoId = 0;
11779         this.items = new Roo.util.MixedCollection(false, function(o){
11780             return o.id || ("item" + (++autoId));
11781         });
11782         if(this.buttons){
11783             this.add.apply(this, this.buttons);
11784             delete this.buttons;
11785         }
11786     },
11787
11788     /**
11789      * Adds element(s) to the toolbar -- this function takes a variable number of 
11790      * arguments of mixed type and adds them to the toolbar.
11791      * @param {Mixed} arg1 The following types of arguments are all valid:<br />
11792      * <ul>
11793      * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li>
11794      * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li>
11795      * <li>Field: Any form field (equivalent to {@link #addField})</li>
11796      * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li>
11797      * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}).
11798      * Note that there are a few special strings that are treated differently as explained nRoo.</li>
11799      * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li>
11800      * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li>
11801      * <li>'->': Creates a fill element (equivalent to {@link #addFill})</li>
11802      * </ul>
11803      * @param {Mixed} arg2
11804      * @param {Mixed} etc.
11805      */
11806     add : function(){
11807         var a = arguments, l = a.length;
11808         for(var i = 0; i < l; i++){
11809             this._add(a[i]);
11810         }
11811     },
11812     // private..
11813     _add : function(el) {
11814         
11815         if (el.xtype) {
11816             el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.form : Roo.Toolbar);
11817         }
11818         
11819         if (el.applyTo){ // some kind of form field
11820             return this.addField(el);
11821         } 
11822         if (el.render){ // some kind of Toolbar.Item
11823             return this.addItem(el);
11824         }
11825         if (typeof el == "string"){ // string
11826             if(el == "separator" || el == "-"){
11827                 return this.addSeparator();
11828             }
11829             if (el == " "){
11830                 return this.addSpacer();
11831             }
11832             if(el == "->"){
11833                 return this.addFill();
11834             }
11835             return this.addText(el);
11836             
11837         }
11838         if(el.tagName){ // element
11839             return this.addElement(el);
11840         }
11841         if(typeof el == "object"){ // must be button config?
11842             return this.addButton(el);
11843         }
11844         // and now what?!?!
11845         return false;
11846         
11847     },
11848     
11849     /**
11850      * Add an Xtype element
11851      * @param {Object} xtype Xtype Object
11852      * @return {Object} created Object
11853      */
11854     addxtype : function(e){
11855         return this.add(e);  
11856     },
11857     
11858     /**
11859      * Returns the Element for this toolbar.
11860      * @return {Roo.Element}
11861      */
11862     getEl : function(){
11863         return this.el;  
11864     },
11865     
11866     /**
11867      * Adds a separator
11868      * @return {Roo.Toolbar.Item} The separator item
11869      */
11870     addSeparator : function(){
11871         return this.addItem(new Roo.Toolbar.Separator());
11872     },
11873
11874     /**
11875      * Adds a spacer element
11876      * @return {Roo.Toolbar.Spacer} The spacer item
11877      */
11878     addSpacer : function(){
11879         return this.addItem(new Roo.Toolbar.Spacer());
11880     },
11881
11882     /**
11883      * Adds a fill element that forces subsequent additions to the right side of the toolbar
11884      * @return {Roo.Toolbar.Fill} The fill item
11885      */
11886     addFill : function(){
11887         return this.addItem(new Roo.Toolbar.Fill());
11888     },
11889
11890     /**
11891      * Adds any standard HTML element to the toolbar
11892      * @param {String/HTMLElement/Element} el The element or id of the element to add
11893      * @return {Roo.Toolbar.Item} The element's item
11894      */
11895     addElement : function(el){
11896         return this.addItem(new Roo.Toolbar.Item(el));
11897     },
11898     /**
11899      * Collection of items on the toolbar.. (only Toolbar Items, so use fields to retrieve fields)
11900      * @type Roo.util.MixedCollection  
11901      */
11902     items : false,
11903      
11904     /**
11905      * Adds any Toolbar.Item or subclass
11906      * @param {Roo.Toolbar.Item} item
11907      * @return {Roo.Toolbar.Item} The item
11908      */
11909     addItem : function(item){
11910         var td = this.nextBlock();
11911         item.render(td);
11912         this.items.add(item);
11913         return item;
11914     },
11915     
11916     /**
11917      * Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config.
11918      * @param {Object/Array} config A button config or array of configs
11919      * @return {Roo.Toolbar.Button/Array}
11920      */
11921     addButton : function(config){
11922         if(config instanceof Array){
11923             var buttons = [];
11924             for(var i = 0, len = config.length; i < len; i++) {
11925                 buttons.push(this.addButton(config[i]));
11926             }
11927             return buttons;
11928         }
11929         var b = config;
11930         if(!(config instanceof Roo.Toolbar.Button)){
11931             b = config.split ?
11932                 new Roo.Toolbar.SplitButton(config) :
11933                 new Roo.Toolbar.Button(config);
11934         }
11935         var td = this.nextBlock();
11936         b.render(td);
11937         this.items.add(b);
11938         return b;
11939     },
11940     
11941     /**
11942      * Adds text to the toolbar
11943      * @param {String} text The text to add
11944      * @return {Roo.Toolbar.Item} The element's item
11945      */
11946     addText : function(text){
11947         return this.addItem(new Roo.Toolbar.TextItem(text));
11948     },
11949     
11950     /**
11951      * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index.
11952      * @param {Number} index The index where the item is to be inserted
11953      * @param {Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array)} item The button, or button config object to be inserted.
11954      * @return {Roo.Toolbar.Button/Item}
11955      */
11956     insertButton : function(index, item){
11957         if(item instanceof Array){
11958             var buttons = [];
11959             for(var i = 0, len = item.length; i < len; i++) {
11960                buttons.push(this.insertButton(index + i, item[i]));
11961             }
11962             return buttons;
11963         }
11964         if (!(item instanceof Roo.Toolbar.Button)){
11965            item = new Roo.Toolbar.Button(item);
11966         }
11967         var td = document.createElement("td");
11968         this.tr.insertBefore(td, this.tr.childNodes[index]);
11969         item.render(td);
11970         this.items.insert(index, item);
11971         return item;
11972     },
11973     
11974     /**
11975      * Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config.
11976      * @param {Object} config
11977      * @return {Roo.Toolbar.Item} The element's item
11978      */
11979     addDom : function(config, returnEl){
11980         var td = this.nextBlock();
11981         Roo.DomHelper.overwrite(td, config);
11982         var ti = new Roo.Toolbar.Item(td.firstChild);
11983         ti.render(td);
11984         this.items.add(ti);
11985         return ti;
11986     },
11987
11988     /**
11989      * Collection of fields on the toolbar.. usefull for quering (value is false if there are no fields)
11990      * @type Roo.util.MixedCollection  
11991      */
11992     fields : false,
11993     
11994     /**
11995      * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).
11996      * Note: the field should not have been rendered yet. For a field that has already been
11997      * rendered, use {@link #addElement}.
11998      * @param {Roo.form.Field} field
11999      * @return {Roo.ToolbarItem}
12000      */
12001      
12002       
12003     addField : function(field) {
12004         if (!this.fields) {
12005             var autoId = 0;
12006             this.fields = new Roo.util.MixedCollection(false, function(o){
12007                 return o.id || ("item" + (++autoId));
12008             });
12009
12010         }
12011         
12012         var td = this.nextBlock();
12013         field.render(td);
12014         var ti = new Roo.Toolbar.Item(td.firstChild);
12015         ti.render(td);
12016         this.items.add(ti);
12017         this.fields.add(field);
12018         return ti;
12019     },
12020     /**
12021      * Hide the toolbar
12022      * @method hide
12023      */
12024      
12025       
12026     hide : function()
12027     {
12028         this.el.child('div').setVisibilityMode(Roo.Element.DISPLAY);
12029         this.el.child('div').hide();
12030     },
12031     /**
12032      * Show the toolbar
12033      * @method show
12034      */
12035     show : function()
12036     {
12037         this.el.child('div').show();
12038     },
12039       
12040     // private
12041     nextBlock : function(){
12042         var td = document.createElement("td");
12043         this.tr.appendChild(td);
12044         return td;
12045     },
12046
12047     // private
12048     destroy : function(){
12049         if(this.items){ // rendered?
12050             Roo.destroy.apply(Roo, this.items.items);
12051         }
12052         if(this.fields){ // rendered?
12053             Roo.destroy.apply(Roo, this.fields.items);
12054         }
12055         Roo.Element.uncache(this.el, this.tr);
12056     }
12057 };
12058
12059 /**
12060  * @class Roo.Toolbar.Item
12061  * The base class that other classes should extend in order to get some basic common toolbar item functionality.
12062  * @constructor
12063  * Creates a new Item
12064  * @param {HTMLElement} el 
12065  */
12066 Roo.Toolbar.Item = function(el){
12067     this.el = Roo.getDom(el);
12068     this.id = Roo.id(this.el);
12069     this.hidden = false;
12070 };
12071
12072 Roo.Toolbar.Item.prototype = {
12073     
12074     /**
12075      * Get this item's HTML Element
12076      * @return {HTMLElement}
12077      */
12078     getEl : function(){
12079        return this.el;  
12080     },
12081
12082     // private
12083     render : function(td){
12084         this.td = td;
12085         td.appendChild(this.el);
12086     },
12087     
12088     /**
12089      * Removes and destroys this item.
12090      */
12091     destroy : function(){
12092         this.td.parentNode.removeChild(this.td);
12093     },
12094     
12095     /**
12096      * Shows this item.
12097      */
12098     show: function(){
12099         this.hidden = false;
12100         this.td.style.display = "";
12101     },
12102     
12103     /**
12104      * Hides this item.
12105      */
12106     hide: function(){
12107         this.hidden = true;
12108         this.td.style.display = "none";
12109     },
12110     
12111     /**
12112      * Convenience function for boolean show/hide.
12113      * @param {Boolean} visible true to show/false to hide
12114      */
12115     setVisible: function(visible){
12116         if(visible) {
12117             this.show();
12118         }else{
12119             this.hide();
12120         }
12121     },
12122     
12123     /**
12124      * Try to focus this item.
12125      */
12126     focus : function(){
12127         Roo.fly(this.el).focus();
12128     },
12129     
12130     /**
12131      * Disables this item.
12132      */
12133     disable : function(){
12134         Roo.fly(this.td).addClass("x-item-disabled");
12135         this.disabled = true;
12136         this.el.disabled = true;
12137     },
12138     
12139     /**
12140      * Enables this item.
12141      */
12142     enable : function(){
12143         Roo.fly(this.td).removeClass("x-item-disabled");
12144         this.disabled = false;
12145         this.el.disabled = false;
12146     }
12147 };
12148
12149
12150 /**
12151  * @class Roo.Toolbar.Separator
12152  * @extends Roo.Toolbar.Item
12153  * A simple toolbar separator class
12154  * @constructor
12155  * Creates a new Separator
12156  */
12157 Roo.Toolbar.Separator = function(){
12158     var s = document.createElement("span");
12159     s.className = "ytb-sep";
12160     Roo.Toolbar.Separator.superclass.constructor.call(this, s);
12161 };
12162 Roo.extend(Roo.Toolbar.Separator, Roo.Toolbar.Item, {
12163     enable:Roo.emptyFn,
12164     disable:Roo.emptyFn,
12165     focus:Roo.emptyFn
12166 });
12167
12168 /**
12169  * @class Roo.Toolbar.Spacer
12170  * @extends Roo.Toolbar.Item
12171  * A simple element that adds extra horizontal space to a toolbar.
12172  * @constructor
12173  * Creates a new Spacer
12174  */
12175 Roo.Toolbar.Spacer = function(){
12176     var s = document.createElement("div");
12177     s.className = "ytb-spacer";
12178     Roo.Toolbar.Spacer.superclass.constructor.call(this, s);
12179 };
12180 Roo.extend(Roo.Toolbar.Spacer, Roo.Toolbar.Item, {
12181     enable:Roo.emptyFn,
12182     disable:Roo.emptyFn,
12183     focus:Roo.emptyFn
12184 });
12185
12186 /**
12187  * @class Roo.Toolbar.Fill
12188  * @extends Roo.Toolbar.Spacer
12189  * A simple element that adds a greedy (100% width) horizontal space to a toolbar.
12190  * @constructor
12191  * Creates a new Spacer
12192  */
12193 Roo.Toolbar.Fill = Roo.extend(Roo.Toolbar.Spacer, {
12194     // private
12195     render : function(td){
12196         td.style.width = '100%';
12197         Roo.Toolbar.Fill.superclass.render.call(this, td);
12198     }
12199 });
12200
12201 /**
12202  * @class Roo.Toolbar.TextItem
12203  * @extends Roo.Toolbar.Item
12204  * A simple class that renders text directly into a toolbar.
12205  * @constructor
12206  * Creates a new TextItem
12207  * @param {String} text
12208  */
12209 Roo.Toolbar.TextItem = function(text){
12210     if (typeof(text) == 'object') {
12211         text = text.text;
12212     }
12213     var s = document.createElement("span");
12214     s.className = "ytb-text";
12215     s.innerHTML = text;
12216     Roo.Toolbar.TextItem.superclass.constructor.call(this, s);
12217 };
12218 Roo.extend(Roo.Toolbar.TextItem, Roo.Toolbar.Item, {
12219     enable:Roo.emptyFn,
12220     disable:Roo.emptyFn,
12221     focus:Roo.emptyFn
12222 });
12223
12224 /**
12225  * @class Roo.Toolbar.Button
12226  * @extends Roo.Button
12227  * A button that renders into a toolbar.
12228  * @constructor
12229  * Creates a new Button
12230  * @param {Object} config A standard {@link Roo.Button} config object
12231  */
12232 Roo.Toolbar.Button = function(config){
12233     Roo.Toolbar.Button.superclass.constructor.call(this, null, config);
12234 };
12235 Roo.extend(Roo.Toolbar.Button, Roo.Button, {
12236     render : function(td){
12237         this.td = td;
12238         Roo.Toolbar.Button.superclass.render.call(this, td);
12239     },
12240     
12241     /**
12242      * Removes and destroys this button
12243      */
12244     destroy : function(){
12245         Roo.Toolbar.Button.superclass.destroy.call(this);
12246         this.td.parentNode.removeChild(this.td);
12247     },
12248     
12249     /**
12250      * Shows this button
12251      */
12252     show: function(){
12253         this.hidden = false;
12254         this.td.style.display = "";
12255     },
12256     
12257     /**
12258      * Hides this button
12259      */
12260     hide: function(){
12261         this.hidden = true;
12262         this.td.style.display = "none";
12263     },
12264
12265     /**
12266      * Disables this item
12267      */
12268     disable : function(){
12269         Roo.fly(this.td).addClass("x-item-disabled");
12270         this.disabled = true;
12271     },
12272
12273     /**
12274      * Enables this item
12275      */
12276     enable : function(){
12277         Roo.fly(this.td).removeClass("x-item-disabled");
12278         this.disabled = false;
12279     }
12280 });
12281 // backwards compat
12282 Roo.ToolbarButton = Roo.Toolbar.Button;
12283
12284 /**
12285  * @class Roo.Toolbar.SplitButton
12286  * @extends Roo.SplitButton
12287  * A menu button that renders into a toolbar.
12288  * @constructor
12289  * Creates a new SplitButton
12290  * @param {Object} config A standard {@link Roo.SplitButton} config object
12291  */
12292 Roo.Toolbar.SplitButton = function(config){
12293     Roo.Toolbar.SplitButton.superclass.constructor.call(this, null, config);
12294 };
12295 Roo.extend(Roo.Toolbar.SplitButton, Roo.SplitButton, {
12296     render : function(td){
12297         this.td = td;
12298         Roo.Toolbar.SplitButton.superclass.render.call(this, td);
12299     },
12300     
12301     /**
12302      * Removes and destroys this button
12303      */
12304     destroy : function(){
12305         Roo.Toolbar.SplitButton.superclass.destroy.call(this);
12306         this.td.parentNode.removeChild(this.td);
12307     },
12308     
12309     /**
12310      * Shows this button
12311      */
12312     show: function(){
12313         this.hidden = false;
12314         this.td.style.display = "";
12315     },
12316     
12317     /**
12318      * Hides this button
12319      */
12320     hide: function(){
12321         this.hidden = true;
12322         this.td.style.display = "none";
12323     }
12324 });
12325
12326 // backwards compat
12327 Roo.Toolbar.MenuButton = Roo.Toolbar.SplitButton;/*
12328  * Based on:
12329  * Ext JS Library 1.1.1
12330  * Copyright(c) 2006-2007, Ext JS, LLC.
12331  *
12332  * Originally Released Under LGPL - original licence link has changed is not relivant.
12333  *
12334  * Fork - LGPL
12335  * <script type="text/javascript">
12336  */
12337  
12338 /**
12339  * @class Roo.PagingToolbar
12340  * @extends Roo.Toolbar
12341  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
12342  * @constructor
12343  * Create a new PagingToolbar
12344  * @param {Object} config The config object
12345  */
12346 Roo.PagingToolbar = function(el, ds, config)
12347 {
12348     // old args format still supported... - xtype is prefered..
12349     if (typeof(el) == 'object' && el.xtype) {
12350         // created from xtype...
12351         config = el;
12352         ds = el.dataSource;
12353         el = config.container;
12354     }
12355     var items = [];
12356     if (config.items) {
12357         items = config.items;
12358         config.items = [];
12359     }
12360     
12361     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
12362     this.ds = ds;
12363     this.cursor = 0;
12364     this.renderButtons(this.el);
12365     this.bind(ds);
12366     
12367     // supprot items array.
12368    
12369     Roo.each(items, function(e) {
12370         this.add(Roo.factory(e));
12371     },this);
12372     
12373 };
12374
12375 Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
12376     /**
12377      * @cfg {Roo.data.Store} dataSource
12378      * The underlying data store providing the paged data
12379      */
12380     /**
12381      * @cfg {String/HTMLElement/Element} container
12382      * container The id or element that will contain the toolbar
12383      */
12384     /**
12385      * @cfg {Boolean} displayInfo
12386      * True to display the displayMsg (defaults to false)
12387      */
12388     /**
12389      * @cfg {Number} pageSize
12390      * The number of records to display per page (defaults to 20)
12391      */
12392     pageSize: 20,
12393     /**
12394      * @cfg {String} displayMsg
12395      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
12396      */
12397     displayMsg : 'Displaying {0} - {1} of {2}',
12398     /**
12399      * @cfg {String} emptyMsg
12400      * The message to display when no records are found (defaults to "No data to display")
12401      */
12402     emptyMsg : 'No data to display',
12403     /**
12404      * Customizable piece of the default paging text (defaults to "Page")
12405      * @type String
12406      */
12407     beforePageText : "Page",
12408     /**
12409      * Customizable piece of the default paging text (defaults to "of %0")
12410      * @type String
12411      */
12412     afterPageText : "of {0}",
12413     /**
12414      * Customizable piece of the default paging text (defaults to "First Page")
12415      * @type String
12416      */
12417     firstText : "First Page",
12418     /**
12419      * Customizable piece of the default paging text (defaults to "Previous Page")
12420      * @type String
12421      */
12422     prevText : "Previous Page",
12423     /**
12424      * Customizable piece of the default paging text (defaults to "Next Page")
12425      * @type String
12426      */
12427     nextText : "Next Page",
12428     /**
12429      * Customizable piece of the default paging text (defaults to "Last Page")
12430      * @type String
12431      */
12432     lastText : "Last Page",
12433     /**
12434      * Customizable piece of the default paging text (defaults to "Refresh")
12435      * @type String
12436      */
12437     refreshText : "Refresh",
12438
12439     // private
12440     renderButtons : function(el){
12441         Roo.PagingToolbar.superclass.render.call(this, el);
12442         this.first = this.addButton({
12443             tooltip: this.firstText,
12444             cls: "x-btn-icon x-grid-page-first",
12445             disabled: true,
12446             handler: this.onClick.createDelegate(this, ["first"])
12447         });
12448         this.prev = this.addButton({
12449             tooltip: this.prevText,
12450             cls: "x-btn-icon x-grid-page-prev",
12451             disabled: true,
12452             handler: this.onClick.createDelegate(this, ["prev"])
12453         });
12454         //this.addSeparator();
12455         this.add(this.beforePageText);
12456         this.field = Roo.get(this.addDom({
12457            tag: "input",
12458            type: "text",
12459            size: "3",
12460            value: "1",
12461            cls: "x-grid-page-number"
12462         }).el);
12463         this.field.on("keydown", this.onPagingKeydown, this);
12464         this.field.on("focus", function(){this.dom.select();});
12465         this.afterTextEl = this.addText(String.format(this.afterPageText, 1));
12466         this.field.setHeight(18);
12467         //this.addSeparator();
12468         this.next = this.addButton({
12469             tooltip: this.nextText,
12470             cls: "x-btn-icon x-grid-page-next",
12471             disabled: true,
12472             handler: this.onClick.createDelegate(this, ["next"])
12473         });
12474         this.last = this.addButton({
12475             tooltip: this.lastText,
12476             cls: "x-btn-icon x-grid-page-last",
12477             disabled: true,
12478             handler: this.onClick.createDelegate(this, ["last"])
12479         });
12480         //this.addSeparator();
12481         this.loading = this.addButton({
12482             tooltip: this.refreshText,
12483             cls: "x-btn-icon x-grid-loading",
12484             handler: this.onClick.createDelegate(this, ["refresh"])
12485         });
12486
12487         if(this.displayInfo){
12488             this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'});
12489         }
12490     },
12491
12492     // private
12493     updateInfo : function(){
12494         if(this.displayEl){
12495             var count = this.ds.getCount();
12496             var msg = count == 0 ?
12497                 this.emptyMsg :
12498                 String.format(
12499                     this.displayMsg,
12500                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
12501                 );
12502             this.displayEl.update(msg);
12503         }
12504     },
12505
12506     // private
12507     onLoad : function(ds, r, o){
12508        this.cursor = o.params ? o.params.start : 0;
12509        var d = this.getPageData(), ap = d.activePage, ps = d.pages;
12510
12511        this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages);
12512        this.field.dom.value = ap;
12513        this.first.setDisabled(ap == 1);
12514        this.prev.setDisabled(ap == 1);
12515        this.next.setDisabled(ap == ps);
12516        this.last.setDisabled(ap == ps);
12517        this.loading.enable();
12518        this.updateInfo();
12519     },
12520
12521     // private
12522     getPageData : function(){
12523         var total = this.ds.getTotalCount();
12524         return {
12525             total : total,
12526             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
12527             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
12528         };
12529     },
12530
12531     // private
12532     onLoadError : function(){
12533         this.loading.enable();
12534     },
12535
12536     // private
12537     onPagingKeydown : function(e){
12538         var k = e.getKey();
12539         var d = this.getPageData();
12540         if(k == e.RETURN){
12541             var v = this.field.dom.value, pageNum;
12542             if(!v || isNaN(pageNum = parseInt(v, 10))){
12543                 this.field.dom.value = d.activePage;
12544                 return;
12545             }
12546             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
12547             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
12548             e.stopEvent();
12549         }
12550         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))
12551         {
12552           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
12553           this.field.dom.value = pageNum;
12554           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
12555           e.stopEvent();
12556         }
12557         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
12558         {
12559           var v = this.field.dom.value, pageNum; 
12560           var increment = (e.shiftKey) ? 10 : 1;
12561           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
12562             increment *= -1;
12563           if(!v || isNaN(pageNum = parseInt(v, 10))) {
12564             this.field.dom.value = d.activePage;
12565             return;
12566           }
12567           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
12568           {
12569             this.field.dom.value = parseInt(v, 10) + increment;
12570             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
12571             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
12572           }
12573           e.stopEvent();
12574         }
12575     },
12576
12577     // private
12578     beforeLoad : function(){
12579         if(this.loading){
12580             this.loading.disable();
12581         }
12582     },
12583
12584     // private
12585     onClick : function(which){
12586         var ds = this.ds;
12587         switch(which){
12588             case "first":
12589                 ds.load({params:{start: 0, limit: this.pageSize}});
12590             break;
12591             case "prev":
12592                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
12593             break;
12594             case "next":
12595                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
12596             break;
12597             case "last":
12598                 var total = ds.getTotalCount();
12599                 var extra = total % this.pageSize;
12600                 var lastStart = extra ? (total - extra) : total-this.pageSize;
12601                 ds.load({params:{start: lastStart, limit: this.pageSize}});
12602             break;
12603             case "refresh":
12604                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
12605             break;
12606         }
12607     },
12608
12609     /**
12610      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
12611      * @param {Roo.data.Store} store The data store to unbind
12612      */
12613     unbind : function(ds){
12614         ds.un("beforeload", this.beforeLoad, this);
12615         ds.un("load", this.onLoad, this);
12616         ds.un("loadexception", this.onLoadError, this);
12617         ds.un("remove", this.updateInfo, this);
12618         ds.un("add", this.updateInfo, this);
12619         this.ds = undefined;
12620     },
12621
12622     /**
12623      * Binds the paging toolbar to the specified {@link Roo.data.Store}
12624      * @param {Roo.data.Store} store The data store to bind
12625      */
12626     bind : function(ds){
12627         ds.on("beforeload", this.beforeLoad, this);
12628         ds.on("load", this.onLoad, this);
12629         ds.on("loadexception", this.onLoadError, this);
12630         ds.on("remove", this.updateInfo, this);
12631         ds.on("add", this.updateInfo, this);
12632         this.ds = ds;
12633     }
12634 });/*
12635  * Based on:
12636  * Ext JS Library 1.1.1
12637  * Copyright(c) 2006-2007, Ext JS, LLC.
12638  *
12639  * Originally Released Under LGPL - original licence link has changed is not relivant.
12640  *
12641  * Fork - LGPL
12642  * <script type="text/javascript">
12643  */
12644
12645 /**
12646  * @class Roo.Resizable
12647  * @extends Roo.util.Observable
12648  * <p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element
12649  * and positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap
12650  * 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
12651  * the element will be wrapped for you automatically.</p>
12652  * <p>Here is the list of valid resize handles:</p>
12653  * <pre>
12654 Value   Description
12655 ------  -------------------
12656  'n'     north
12657  's'     south
12658  'e'     east
12659  'w'     west
12660  'nw'    northwest
12661  'sw'    southwest
12662  'se'    southeast
12663  'ne'    northeast
12664  'hd'    horizontal drag
12665  'all'   all
12666 </pre>
12667  * <p>Here's an example showing the creation of a typical Resizable:</p>
12668  * <pre><code>
12669 var resizer = new Roo.Resizable("element-id", {
12670     handles: 'all',
12671     minWidth: 200,
12672     minHeight: 100,
12673     maxWidth: 500,
12674     maxHeight: 400,
12675     pinned: true
12676 });
12677 resizer.on("resize", myHandler);
12678 </code></pre>
12679  * <p>To hide a particular handle, set its display to none in CSS, or through script:<br>
12680  * resizer.east.setDisplayed(false);</p>
12681  * @cfg {Boolean/String/Element} resizeChild True to resize the first child, or id/element to resize (defaults to false)
12682  * @cfg {Array/String} adjustments String "auto" or an array [width, height] with values to be <b>added</b> to the
12683  * resize operation's new size (defaults to [0, 0])
12684  * @cfg {Number} minWidth The minimum width for the element (defaults to 5)
12685  * @cfg {Number} minHeight The minimum height for the element (defaults to 5)
12686  * @cfg {Number} maxWidth The maximum width for the element (defaults to 10000)
12687  * @cfg {Number} maxHeight The maximum height for the element (defaults to 10000)
12688  * @cfg {Boolean} enabled False to disable resizing (defaults to true)
12689  * @cfg {Boolean} wrap True to wrap an element with a div if needed (required for textareas and images, defaults to false)
12690  * @cfg {Number} width The width of the element in pixels (defaults to null)
12691  * @cfg {Number} height The height of the element in pixels (defaults to null)
12692  * @cfg {Boolean} animate True to animate the resize (not compatible with dynamic sizing, defaults to false)
12693  * @cfg {Number} duration Animation duration if animate = true (defaults to .35)
12694  * @cfg {Boolean} dynamic True to resize the element while dragging instead of using a proxy (defaults to false)
12695  * @cfg {String} handles String consisting of the resize handles to display (defaults to undefined)
12696  * @cfg {Boolean} multiDirectional <b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated
12697  * in favor of the handles config option (defaults to false)
12698  * @cfg {Boolean} disableTrackOver True to disable mouse tracking. This is only applied at config time. (defaults to false)
12699  * @cfg {String} easing Animation easing if animate = true (defaults to 'easingOutStrong')
12700  * @cfg {Number} widthIncrement The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)
12701  * @cfg {Number} heightIncrement The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)
12702  * @cfg {Boolean} pinned True to ensure that the resize handles are always visible, false to display them only when the
12703  * user mouses over the resizable borders. This is only applied at config time. (defaults to false)
12704  * @cfg {Boolean} preserveRatio True to preserve the original ratio between height and width during resize (defaults to false)
12705  * @cfg {Boolean} transparent True for transparent handles. This is only applied at config time. (defaults to false)
12706  * @cfg {Number} minX The minimum allowed page X for the element (only used for west resizing, defaults to 0)
12707  * @cfg {Number} minY The minimum allowed page Y for the element (only used for north resizing, defaults to 0)
12708  * @cfg {Boolean} draggable Convenience to initialize drag drop (defaults to false)
12709  * @constructor
12710  * Create a new resizable component
12711  * @param {String/HTMLElement/Roo.Element} el The id or element to resize
12712  * @param {Object} config configuration options
12713   */
12714 Roo.Resizable = function(el, config)
12715 {
12716     this.el = Roo.get(el);
12717
12718     if(config && config.wrap){
12719         config.resizeChild = this.el;
12720         this.el = this.el.wrap(typeof config.wrap == "object" ? config.wrap : {cls:"xresizable-wrap"});
12721         this.el.id = this.el.dom.id = config.resizeChild.id + "-rzwrap";
12722         this.el.setStyle("overflow", "hidden");
12723         this.el.setPositioning(config.resizeChild.getPositioning());
12724         config.resizeChild.clearPositioning();
12725         if(!config.width || !config.height){
12726             var csize = config.resizeChild.getSize();
12727             this.el.setSize(csize.width, csize.height);
12728         }
12729         if(config.pinned && !config.adjustments){
12730             config.adjustments = "auto";
12731         }
12732     }
12733
12734     this.proxy = this.el.createProxy({tag: "div", cls: "x-resizable-proxy", id: this.el.id + "-rzproxy"});
12735     this.proxy.unselectable();
12736     this.proxy.enableDisplayMode('block');
12737
12738     Roo.apply(this, config);
12739
12740     if(this.pinned){
12741         this.disableTrackOver = true;
12742         this.el.addClass("x-resizable-pinned");
12743     }
12744     // if the element isn't positioned, make it relative
12745     var position = this.el.getStyle("position");
12746     if(position != "absolute" && position != "fixed"){
12747         this.el.setStyle("position", "relative");
12748     }
12749     if(!this.handles){ // no handles passed, must be legacy style
12750         this.handles = 's,e,se';
12751         if(this.multiDirectional){
12752             this.handles += ',n,w';
12753         }
12754     }
12755     if(this.handles == "all"){
12756         this.handles = "n s e w ne nw se sw";
12757     }
12758     var hs = this.handles.split(/\s*?[,;]\s*?| /);
12759     var ps = Roo.Resizable.positions;
12760     for(var i = 0, len = hs.length; i < len; i++){
12761         if(hs[i] && ps[hs[i]]){
12762             var pos = ps[hs[i]];
12763             this[pos] = new Roo.Resizable.Handle(this, pos, this.disableTrackOver, this.transparent);
12764         }
12765     }
12766     // legacy
12767     this.corner = this.southeast;
12768     
12769     // updateBox = the box can move..
12770     if(this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1 || this.handles.indexOf("hd") != -1) {
12771         this.updateBox = true;
12772     }
12773
12774     this.activeHandle = null;
12775
12776     if(this.resizeChild){
12777         if(typeof this.resizeChild == "boolean"){
12778             this.resizeChild = Roo.get(this.el.dom.firstChild, true);
12779         }else{
12780             this.resizeChild = Roo.get(this.resizeChild, true);
12781         }
12782     }
12783     
12784     if(this.adjustments == "auto"){
12785         var rc = this.resizeChild;
12786         var hw = this.west, he = this.east, hn = this.north, hs = this.south;
12787         if(rc && (hw || hn)){
12788             rc.position("relative");
12789             rc.setLeft(hw ? hw.el.getWidth() : 0);
12790             rc.setTop(hn ? hn.el.getHeight() : 0);
12791         }
12792         this.adjustments = [
12793             (he ? -he.el.getWidth() : 0) + (hw ? -hw.el.getWidth() : 0),
12794             (hn ? -hn.el.getHeight() : 0) + (hs ? -hs.el.getHeight() : 0) -1
12795         ];
12796     }
12797
12798     if(this.draggable){
12799         this.dd = this.dynamic ?
12800             this.el.initDD(null) : this.el.initDDProxy(null, {dragElId: this.proxy.id});
12801         this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
12802     }
12803
12804     // public events
12805     this.addEvents({
12806         /**
12807          * @event beforeresize
12808          * Fired before resize is allowed. Set enabled to false to cancel resize.
12809          * @param {Roo.Resizable} this
12810          * @param {Roo.EventObject} e The mousedown event
12811          */
12812         "beforeresize" : true,
12813         /**
12814          * @event resizing
12815          * Fired a resizing.
12816          * @param {Roo.Resizable} this
12817          * @param {Number} x The new x position
12818          * @param {Number} y The new y position
12819          * @param {Number} w The new w width
12820          * @param {Number} h The new h hight
12821          * @param {Roo.EventObject} e The mouseup event
12822          */
12823         "resizing" : true,
12824         /**
12825          * @event resize
12826          * Fired after a resize.
12827          * @param {Roo.Resizable} this
12828          * @param {Number} width The new width
12829          * @param {Number} height The new height
12830          * @param {Roo.EventObject} e The mouseup event
12831          */
12832         "resize" : true
12833     });
12834
12835     if(this.width !== null && this.height !== null){
12836         this.resizeTo(this.width, this.height);
12837     }else{
12838         this.updateChildSize();
12839     }
12840     if(Roo.isIE){
12841         this.el.dom.style.zoom = 1;
12842     }
12843     Roo.Resizable.superclass.constructor.call(this);
12844 };
12845
12846 Roo.extend(Roo.Resizable, Roo.util.Observable, {
12847         resizeChild : false,
12848         adjustments : [0, 0],
12849         minWidth : 5,
12850         minHeight : 5,
12851         maxWidth : 10000,
12852         maxHeight : 10000,
12853         enabled : true,
12854         animate : false,
12855         duration : .35,
12856         dynamic : false,
12857         handles : false,
12858         multiDirectional : false,
12859         disableTrackOver : false,
12860         easing : 'easeOutStrong',
12861         widthIncrement : 0,
12862         heightIncrement : 0,
12863         pinned : false,
12864         width : null,
12865         height : null,
12866         preserveRatio : false,
12867         transparent: false,
12868         minX: 0,
12869         minY: 0,
12870         draggable: false,
12871
12872         /**
12873          * @cfg {String/HTMLElement/Element} constrainTo Constrain the resize to a particular element
12874          */
12875         constrainTo: undefined,
12876         /**
12877          * @cfg {Roo.lib.Region} resizeRegion Constrain the resize to a particular region
12878          */
12879         resizeRegion: undefined,
12880
12881
12882     /**
12883      * Perform a manual resize
12884      * @param {Number} width
12885      * @param {Number} height
12886      */
12887     resizeTo : function(width, height){
12888         this.el.setSize(width, height);
12889         this.updateChildSize();
12890         this.fireEvent("resize", this, width, height, null);
12891     },
12892
12893     // private
12894     startSizing : function(e, handle){
12895         this.fireEvent("beforeresize", this, e);
12896         if(this.enabled){ // 2nd enabled check in case disabled before beforeresize handler
12897
12898             if(!this.overlay){
12899                 this.overlay = this.el.createProxy({tag: "div", cls: "x-resizable-overlay", html: "&#160;"});
12900                 this.overlay.unselectable();
12901                 this.overlay.enableDisplayMode("block");
12902                 this.overlay.on("mousemove", this.onMouseMove, this);
12903                 this.overlay.on("mouseup", this.onMouseUp, this);
12904             }
12905             this.overlay.setStyle("cursor", handle.el.getStyle("cursor"));
12906
12907             this.resizing = true;
12908             this.startBox = this.el.getBox();
12909             this.startPoint = e.getXY();
12910             this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0],
12911                             (this.startBox.y + this.startBox.height) - this.startPoint[1]];
12912
12913             this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
12914             this.overlay.show();
12915
12916             if(this.constrainTo) {
12917                 var ct = Roo.get(this.constrainTo);
12918                 this.resizeRegion = ct.getRegion().adjust(
12919                     ct.getFrameWidth('t'),
12920                     ct.getFrameWidth('l'),
12921                     -ct.getFrameWidth('b'),
12922                     -ct.getFrameWidth('r')
12923                 );
12924             }
12925
12926             this.proxy.setStyle('visibility', 'hidden'); // workaround display none
12927             this.proxy.show();
12928             this.proxy.setBox(this.startBox);
12929             if(!this.dynamic){
12930                 this.proxy.setStyle('visibility', 'visible');
12931             }
12932         }
12933     },
12934
12935     // private
12936     onMouseDown : function(handle, e){
12937         if(this.enabled){
12938             e.stopEvent();
12939             this.activeHandle = handle;
12940             this.startSizing(e, handle);
12941         }
12942     },
12943
12944     // private
12945     onMouseUp : function(e){
12946         var size = this.resizeElement();
12947         this.resizing = false;
12948         this.handleOut();
12949         this.overlay.hide();
12950         this.proxy.hide();
12951         this.fireEvent("resize", this, size.width, size.height, e);
12952     },
12953
12954     // private
12955     updateChildSize : function(){
12956         
12957         if(this.resizeChild){
12958             var el = this.el;
12959             var child = this.resizeChild;
12960             var adj = this.adjustments;
12961             if(el.dom.offsetWidth){
12962                 var b = el.getSize(true);
12963                 child.setSize(b.width+adj[0], b.height+adj[1]);
12964             }
12965             // Second call here for IE
12966             // The first call enables instant resizing and
12967             // the second call corrects scroll bars if they
12968             // exist
12969             if(Roo.isIE){
12970                 setTimeout(function(){
12971                     if(el.dom.offsetWidth){
12972                         var b = el.getSize(true);
12973                         child.setSize(b.width+adj[0], b.height+adj[1]);
12974                     }
12975                 }, 10);
12976             }
12977         }
12978     },
12979
12980     // private
12981     snap : function(value, inc, min){
12982         if(!inc || !value) return value;
12983         var newValue = value;
12984         var m = value % inc;
12985         if(m > 0){
12986             if(m > (inc/2)){
12987                 newValue = value + (inc-m);
12988             }else{
12989                 newValue = value - m;
12990             }
12991         }
12992         return Math.max(min, newValue);
12993     },
12994
12995     // private
12996     resizeElement : function(){
12997         var box = this.proxy.getBox();
12998         if(this.updateBox){
12999             this.el.setBox(box, false, this.animate, this.duration, null, this.easing);
13000         }else{
13001             this.el.setSize(box.width, box.height, this.animate, this.duration, null, this.easing);
13002         }
13003         this.updateChildSize();
13004         if(!this.dynamic){
13005             this.proxy.hide();
13006         }
13007         return box;
13008     },
13009
13010     // private
13011     constrain : function(v, diff, m, mx){
13012         if(v - diff < m){
13013             diff = v - m;
13014         }else if(v - diff > mx){
13015             diff = mx - v;
13016         }
13017         return diff;
13018     },
13019
13020     // private
13021     onMouseMove : function(e){
13022         
13023         if(this.enabled){
13024             try{// try catch so if something goes wrong the user doesn't get hung
13025
13026             if(this.resizeRegion && !this.resizeRegion.contains(e.getPoint())) {
13027                 return;
13028             }
13029
13030             //var curXY = this.startPoint;
13031             var curSize = this.curSize || this.startBox;
13032             var x = this.startBox.x, y = this.startBox.y;
13033             var ox = x, oy = y;
13034             var w = curSize.width, h = curSize.height;
13035             var ow = w, oh = h;
13036             var mw = this.minWidth, mh = this.minHeight;
13037             var mxw = this.maxWidth, mxh = this.maxHeight;
13038             var wi = this.widthIncrement;
13039             var hi = this.heightIncrement;
13040
13041             var eventXY = e.getXY();
13042             var diffX = -(this.startPoint[0] - Math.max(this.minX, eventXY[0]));
13043             var diffY = -(this.startPoint[1] - Math.max(this.minY, eventXY[1]));
13044
13045             var pos = this.activeHandle.position;
13046
13047             switch(pos){
13048                 case "east":
13049                     w += diffX;
13050                     w = Math.min(Math.max(mw, w), mxw);
13051                     break;
13052              
13053                 case "south":
13054                     h += diffY;
13055                     h = Math.min(Math.max(mh, h), mxh);
13056                     break;
13057                 case "southeast":
13058                     w += diffX;
13059                     h += diffY;
13060                     w = Math.min(Math.max(mw, w), mxw);
13061                     h = Math.min(Math.max(mh, h), mxh);
13062                     break;
13063                 case "north":
13064                     diffY = this.constrain(h, diffY, mh, mxh);
13065                     y += diffY;
13066                     h -= diffY;
13067                     break;
13068                 case "hdrag":
13069                     
13070                     if (wi) {
13071                         var adiffX = Math.abs(diffX);
13072                         var sub = (adiffX % wi); // how much 
13073                         if (sub > (wi/2)) { // far enough to snap
13074                             diffX = (diffX > 0) ? diffX-sub + wi : diffX+sub - wi;
13075                         } else {
13076                             // remove difference.. 
13077                             diffX = (diffX > 0) ? diffX-sub : diffX+sub;
13078                         }
13079                     }
13080                     x += diffX;
13081                     x = Math.max(this.minX, x);
13082                     break;
13083                 case "west":
13084                     diffX = this.constrain(w, diffX, mw, mxw);
13085                     x += diffX;
13086                     w -= diffX;
13087                     break;
13088                 case "northeast":
13089                     w += diffX;
13090                     w = Math.min(Math.max(mw, w), mxw);
13091                     diffY = this.constrain(h, diffY, mh, mxh);
13092                     y += diffY;
13093                     h -= diffY;
13094                     break;
13095                 case "northwest":
13096                     diffX = this.constrain(w, diffX, mw, mxw);
13097                     diffY = this.constrain(h, diffY, mh, mxh);
13098                     y += diffY;
13099                     h -= diffY;
13100                     x += diffX;
13101                     w -= diffX;
13102                     break;
13103                case "southwest":
13104                     diffX = this.constrain(w, diffX, mw, mxw);
13105                     h += diffY;
13106                     h = Math.min(Math.max(mh, h), mxh);
13107                     x += diffX;
13108                     w -= diffX;
13109                     break;
13110             }
13111
13112             var sw = this.snap(w, wi, mw);
13113             var sh = this.snap(h, hi, mh);
13114             if(sw != w || sh != h){
13115                 switch(pos){
13116                     case "northeast":
13117                         y -= sh - h;
13118                     break;
13119                     case "north":
13120                         y -= sh - h;
13121                         break;
13122                     case "southwest":
13123                         x -= sw - w;
13124                     break;
13125                     case "west":
13126                         x -= sw - w;
13127                         break;
13128                     case "northwest":
13129                         x -= sw - w;
13130                         y -= sh - h;
13131                     break;
13132                 }
13133                 w = sw;
13134                 h = sh;
13135             }
13136
13137             if(this.preserveRatio){
13138                 switch(pos){
13139                     case "southeast":
13140                     case "east":
13141                         h = oh * (w/ow);
13142                         h = Math.min(Math.max(mh, h), mxh);
13143                         w = ow * (h/oh);
13144                        break;
13145                     case "south":
13146                         w = ow * (h/oh);
13147                         w = Math.min(Math.max(mw, w), mxw);
13148                         h = oh * (w/ow);
13149                         break;
13150                     case "northeast":
13151                         w = ow * (h/oh);
13152                         w = Math.min(Math.max(mw, w), mxw);
13153                         h = oh * (w/ow);
13154                     break;
13155                     case "north":
13156                         var tw = w;
13157                         w = ow * (h/oh);
13158                         w = Math.min(Math.max(mw, w), mxw);
13159                         h = oh * (w/ow);
13160                         x += (tw - w) / 2;
13161                         break;
13162                     case "southwest":
13163                         h = oh * (w/ow);
13164                         h = Math.min(Math.max(mh, h), mxh);
13165                         var tw = w;
13166                         w = ow * (h/oh);
13167                         x += tw - w;
13168                         break;
13169                     case "west":
13170                         var th = h;
13171                         h = oh * (w/ow);
13172                         h = Math.min(Math.max(mh, h), mxh);
13173                         y += (th - h) / 2;
13174                         var tw = w;
13175                         w = ow * (h/oh);
13176                         x += tw - w;
13177                        break;
13178                     case "northwest":
13179                         var tw = w;
13180                         var th = h;
13181                         h = oh * (w/ow);
13182                         h = Math.min(Math.max(mh, h), mxh);
13183                         w = ow * (h/oh);
13184                         y += th - h;
13185                         x += tw - w;
13186                        break;
13187
13188                 }
13189             }
13190             if (pos == 'hdrag') {
13191                 w = ow;
13192             }
13193             this.proxy.setBounds(x, y, w, h);
13194             if(this.dynamic){
13195                 this.resizeElement();
13196             }
13197             }catch(e){}
13198         }
13199         this.fireEvent("resizing", this, x, y, w, h, e);
13200     },
13201
13202     // private
13203     handleOver : function(){
13204         if(this.enabled){
13205             this.el.addClass("x-resizable-over");
13206         }
13207     },
13208
13209     // private
13210     handleOut : function(){
13211         if(!this.resizing){
13212             this.el.removeClass("x-resizable-over");
13213         }
13214     },
13215
13216     /**
13217      * Returns the element this component is bound to.
13218      * @return {Roo.Element}
13219      */
13220     getEl : function(){
13221         return this.el;
13222     },
13223
13224     /**
13225      * Returns the resizeChild element (or null).
13226      * @return {Roo.Element}
13227      */
13228     getResizeChild : function(){
13229         return this.resizeChild;
13230     },
13231     groupHandler : function()
13232     {
13233         
13234     },
13235     /**
13236      * Destroys this resizable. If the element was wrapped and
13237      * removeEl is not true then the element remains.
13238      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
13239      */
13240     destroy : function(removeEl){
13241         this.proxy.remove();
13242         if(this.overlay){
13243             this.overlay.removeAllListeners();
13244             this.overlay.remove();
13245         }
13246         var ps = Roo.Resizable.positions;
13247         for(var k in ps){
13248             if(typeof ps[k] != "function" && this[ps[k]]){
13249                 var h = this[ps[k]];
13250                 h.el.removeAllListeners();
13251                 h.el.remove();
13252             }
13253         }
13254         if(removeEl){
13255             this.el.update("");
13256             this.el.remove();
13257         }
13258     }
13259 });
13260
13261 // private
13262 // hash to map config positions to true positions
13263 Roo.Resizable.positions = {
13264     n: "north", s: "south", e: "east", w: "west", se: "southeast", sw: "southwest", nw: "northwest", ne: "northeast", 
13265     hd: "hdrag"
13266 };
13267
13268 // private
13269 Roo.Resizable.Handle = function(rz, pos, disableTrackOver, transparent){
13270     if(!this.tpl){
13271         // only initialize the template if resizable is used
13272         var tpl = Roo.DomHelper.createTemplate(
13273             {tag: "div", cls: "x-resizable-handle x-resizable-handle-{0}"}
13274         );
13275         tpl.compile();
13276         Roo.Resizable.Handle.prototype.tpl = tpl;
13277     }
13278     this.position = pos;
13279     this.rz = rz;
13280     // show north drag fro topdra
13281     var handlepos = pos == 'hdrag' ? 'north' : pos;
13282     
13283     this.el = this.tpl.append(rz.el.dom, [handlepos], true);
13284     if (pos == 'hdrag') {
13285         this.el.setStyle('cursor', 'pointer');
13286     }
13287     this.el.unselectable();
13288     if(transparent){
13289         this.el.setOpacity(0);
13290     }
13291     this.el.on("mousedown", this.onMouseDown, this);
13292     if(!disableTrackOver){
13293         this.el.on("mouseover", this.onMouseOver, this);
13294         this.el.on("mouseout", this.onMouseOut, this);
13295     }
13296 };
13297
13298 // private
13299 Roo.Resizable.Handle.prototype = {
13300     afterResize : function(rz){
13301         Roo.log('after?');
13302         // do nothing
13303     },
13304     // private
13305     onMouseDown : function(e){
13306         this.rz.onMouseDown(this, e);
13307     },
13308     // private
13309     onMouseOver : function(e){
13310         this.rz.handleOver(this, e);
13311     },
13312     // private
13313     onMouseOut : function(e){
13314         this.rz.handleOut(this, e);
13315     }
13316 };/*
13317  * Based on:
13318  * Ext JS Library 1.1.1
13319  * Copyright(c) 2006-2007, Ext JS, LLC.
13320  *
13321  * Originally Released Under LGPL - original licence link has changed is not relivant.
13322  *
13323  * Fork - LGPL
13324  * <script type="text/javascript">
13325  */
13326
13327 /**
13328  * @class Roo.Editor
13329  * @extends Roo.Component
13330  * A base editor field that handles displaying/hiding on demand and has some built-in sizing and event handling logic.
13331  * @constructor
13332  * Create a new Editor
13333  * @param {Roo.form.Field} field The Field object (or descendant)
13334  * @param {Object} config The config object
13335  */
13336 Roo.Editor = function(field, config){
13337     Roo.Editor.superclass.constructor.call(this, config);
13338     this.field = field;
13339     this.addEvents({
13340         /**
13341              * @event beforestartedit
13342              * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
13343              * false from the handler of this event.
13344              * @param {Editor} this
13345              * @param {Roo.Element} boundEl The underlying element bound to this editor
13346              * @param {Mixed} value The field value being set
13347              */
13348         "beforestartedit" : true,
13349         /**
13350              * @event startedit
13351              * Fires when this editor is displayed
13352              * @param {Roo.Element} boundEl The underlying element bound to this editor
13353              * @param {Mixed} value The starting field value
13354              */
13355         "startedit" : true,
13356         /**
13357              * @event beforecomplete
13358              * Fires after a change has been made to the field, but before the change is reflected in the underlying
13359              * field.  Saving the change to the field can be canceled by returning false from the handler of this event.
13360              * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
13361              * event will not fire since no edit actually occurred.
13362              * @param {Editor} this
13363              * @param {Mixed} value The current field value
13364              * @param {Mixed} startValue The original field value
13365              */
13366         "beforecomplete" : true,
13367         /**
13368              * @event complete
13369              * Fires after editing is complete and any changed value has been written to the underlying field.
13370              * @param {Editor} this
13371              * @param {Mixed} value The current field value
13372              * @param {Mixed} startValue The original field value
13373              */
13374         "complete" : true,
13375         /**
13376          * @event specialkey
13377          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
13378          * {@link Roo.EventObject#getKey} to determine which key was pressed.
13379          * @param {Roo.form.Field} this
13380          * @param {Roo.EventObject} e The event object
13381          */
13382         "specialkey" : true
13383     });
13384 };
13385
13386 Roo.extend(Roo.Editor, Roo.Component, {
13387     /**
13388      * @cfg {Boolean/String} autosize
13389      * True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only,
13390      * or "height" to adopt the height only (defaults to false)
13391      */
13392     /**
13393      * @cfg {Boolean} revertInvalid
13394      * True to automatically revert the field value and cancel the edit when the user completes an edit and the field
13395      * validation fails (defaults to true)
13396      */
13397     /**
13398      * @cfg {Boolean} ignoreNoChange
13399      * True to skip the the edit completion process (no save, no events fired) if the user completes an edit and
13400      * the value has not changed (defaults to false).  Applies only to string values - edits for other data types
13401      * will never be ignored.
13402      */
13403     /**
13404      * @cfg {Boolean} hideEl
13405      * False to keep the bound element visible while the editor is displayed (defaults to true)
13406      */
13407     /**
13408      * @cfg {Mixed} value
13409      * The data value of the underlying field (defaults to "")
13410      */
13411     value : "",
13412     /**
13413      * @cfg {String} alignment
13414      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "c-c?").
13415      */
13416     alignment: "c-c?",
13417     /**
13418      * @cfg {Boolean/String} shadow "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop"
13419      * for bottom-right shadow (defaults to "frame")
13420      */
13421     shadow : "frame",
13422     /**
13423      * @cfg {Boolean} constrain True to constrain the editor to the viewport
13424      */
13425     constrain : false,
13426     /**
13427      * @cfg {Boolean} completeOnEnter True to complete the edit when the enter key is pressed (defaults to false)
13428      */
13429     completeOnEnter : false,
13430     /**
13431      * @cfg {Boolean} cancelOnEsc True to cancel the edit when the escape key is pressed (defaults to false)
13432      */
13433     cancelOnEsc : false,
13434     /**
13435      * @cfg {Boolean} updateEl True to update the innerHTML of the bound element when the update completes (defaults to false)
13436      */
13437     updateEl : false,
13438
13439     // private
13440     onRender : function(ct, position){
13441         this.el = new Roo.Layer({
13442             shadow: this.shadow,
13443             cls: "x-editor",
13444             parentEl : ct,
13445             shim : this.shim,
13446             shadowOffset:4,
13447             id: this.id,
13448             constrain: this.constrain
13449         });
13450         this.el.setStyle("overflow", Roo.isGecko ? "auto" : "hidden");
13451         if(this.field.msgTarget != 'title'){
13452             this.field.msgTarget = 'qtip';
13453         }
13454         this.field.render(this.el);
13455         if(Roo.isGecko){
13456             this.field.el.dom.setAttribute('autocomplete', 'off');
13457         }
13458         this.field.on("specialkey", this.onSpecialKey, this);
13459         if(this.swallowKeys){
13460             this.field.el.swallowEvent(['keydown','keypress']);
13461         }
13462         this.field.show();
13463         this.field.on("blur", this.onBlur, this);
13464         if(this.field.grow){
13465             this.field.on("autosize", this.el.sync,  this.el, {delay:1});
13466         }
13467     },
13468
13469     onSpecialKey : function(field, e)
13470     {
13471         //Roo.log('editor onSpecialKey');
13472         if(this.completeOnEnter && e.getKey() == e.ENTER){
13473             e.stopEvent();
13474             this.completeEdit();
13475             return;
13476         }
13477         // do not fire special key otherwise it might hide close the editor...
13478         if(e.getKey() == e.ENTER){    
13479             return;
13480         }
13481         if(this.cancelOnEsc && e.getKey() == e.ESC){
13482             this.cancelEdit();
13483             return;
13484         } 
13485         this.fireEvent('specialkey', field, e);
13486     
13487     },
13488
13489     /**
13490      * Starts the editing process and shows the editor.
13491      * @param {String/HTMLElement/Element} el The element to edit
13492      * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults
13493       * to the innerHTML of el.
13494      */
13495     startEdit : function(el, value){
13496         if(this.editing){
13497             this.completeEdit();
13498         }
13499         this.boundEl = Roo.get(el);
13500         var v = value !== undefined ? value : this.boundEl.dom.innerHTML;
13501         if(!this.rendered){
13502             this.render(this.parentEl || document.body);
13503         }
13504         if(this.fireEvent("beforestartedit", this, this.boundEl, v) === false){
13505             return;
13506         }
13507         this.startValue = v;
13508         this.field.setValue(v);
13509         if(this.autoSize){
13510             var sz = this.boundEl.getSize();
13511             switch(this.autoSize){
13512                 case "width":
13513                 this.setSize(sz.width,  "");
13514                 break;
13515                 case "height":
13516                 this.setSize("",  sz.height);
13517                 break;
13518                 default:
13519                 this.setSize(sz.width,  sz.height);
13520             }
13521         }
13522         this.el.alignTo(this.boundEl, this.alignment);
13523         this.editing = true;
13524         if(Roo.QuickTips){
13525             Roo.QuickTips.disable();
13526         }
13527         this.show();
13528     },
13529
13530     /**
13531      * Sets the height and width of this editor.
13532      * @param {Number} width The new width
13533      * @param {Number} height The new height
13534      */
13535     setSize : function(w, h){
13536         this.field.setSize(w, h);
13537         if(this.el){
13538             this.el.sync();
13539         }
13540     },
13541
13542     /**
13543      * Realigns the editor to the bound field based on the current alignment config value.
13544      */
13545     realign : function(){
13546         this.el.alignTo(this.boundEl, this.alignment);
13547     },
13548
13549     /**
13550      * Ends the editing process, persists the changed value to the underlying field, and hides the editor.
13551      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after edit (defaults to false)
13552      */
13553     completeEdit : function(remainVisible){
13554         if(!this.editing){
13555             return;
13556         }
13557         var v = this.getValue();
13558         if(this.revertInvalid !== false && !this.field.isValid()){
13559             v = this.startValue;
13560             this.cancelEdit(true);
13561         }
13562         if(String(v) === String(this.startValue) && this.ignoreNoChange){
13563             this.editing = false;
13564             this.hide();
13565             return;
13566         }
13567         if(this.fireEvent("beforecomplete", this, v, this.startValue) !== false){
13568             this.editing = false;
13569             if(this.updateEl && this.boundEl){
13570                 this.boundEl.update(v);
13571             }
13572             if(remainVisible !== true){
13573                 this.hide();
13574             }
13575             this.fireEvent("complete", this, v, this.startValue);
13576         }
13577     },
13578
13579     // private
13580     onShow : function(){
13581         this.el.show();
13582         if(this.hideEl !== false){
13583             this.boundEl.hide();
13584         }
13585         this.field.show();
13586         if(Roo.isIE && !this.fixIEFocus){ // IE has problems with focusing the first time
13587             this.fixIEFocus = true;
13588             this.deferredFocus.defer(50, this);
13589         }else{
13590             this.field.focus();
13591         }
13592         this.fireEvent("startedit", this.boundEl, this.startValue);
13593     },
13594
13595     deferredFocus : function(){
13596         if(this.editing){
13597             this.field.focus();
13598         }
13599     },
13600
13601     /**
13602      * Cancels the editing process and hides the editor without persisting any changes.  The field value will be
13603      * reverted to the original starting value.
13604      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after
13605      * cancel (defaults to false)
13606      */
13607     cancelEdit : function(remainVisible){
13608         if(this.editing){
13609             this.setValue(this.startValue);
13610             if(remainVisible !== true){
13611                 this.hide();
13612             }
13613         }
13614     },
13615
13616     // private
13617     onBlur : function(){
13618         if(this.allowBlur !== true && this.editing){
13619             this.completeEdit();
13620         }
13621     },
13622
13623     // private
13624     onHide : function(){
13625         if(this.editing){
13626             this.completeEdit();
13627             return;
13628         }
13629         this.field.blur();
13630         if(this.field.collapse){
13631             this.field.collapse();
13632         }
13633         this.el.hide();
13634         if(this.hideEl !== false){
13635             this.boundEl.show();
13636         }
13637         if(Roo.QuickTips){
13638             Roo.QuickTips.enable();
13639         }
13640     },
13641
13642     /**
13643      * Sets the data value of the editor
13644      * @param {Mixed} value Any valid value supported by the underlying field
13645      */
13646     setValue : function(v){
13647         this.field.setValue(v);
13648     },
13649
13650     /**
13651      * Gets the data value of the editor
13652      * @return {Mixed} The data value
13653      */
13654     getValue : function(){
13655         return this.field.getValue();
13656     }
13657 });/*
13658  * Based on:
13659  * Ext JS Library 1.1.1
13660  * Copyright(c) 2006-2007, Ext JS, LLC.
13661  *
13662  * Originally Released Under LGPL - original licence link has changed is not relivant.
13663  *
13664  * Fork - LGPL
13665  * <script type="text/javascript">
13666  */
13667  
13668 /**
13669  * @class Roo.BasicDialog
13670  * @extends Roo.util.Observable
13671  * Lightweight Dialog Class.  The code below shows the creation of a typical dialog using existing HTML markup:
13672  * <pre><code>
13673 var dlg = new Roo.BasicDialog("my-dlg", {
13674     height: 200,
13675     width: 300,
13676     minHeight: 100,
13677     minWidth: 150,
13678     modal: true,
13679     proxyDrag: true,
13680     shadow: true
13681 });
13682 dlg.addKeyListener(27, dlg.hide, dlg); // ESC can also close the dialog
13683 dlg.addButton('OK', dlg.hide, dlg);    // Could call a save function instead of hiding
13684 dlg.addButton('Cancel', dlg.hide, dlg);
13685 dlg.show();
13686 </code></pre>
13687   <b>A Dialog should always be a direct child of the body element.</b>
13688  * @cfg {Boolean/DomHelper} autoCreate True to auto create from scratch, or using a DomHelper Object (defaults to false)
13689  * @cfg {String} title Default text to display in the title bar (defaults to null)
13690  * @cfg {Number} width Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
13691  * @cfg {Number} height Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
13692  * @cfg {Number} x The default left page coordinate of the dialog (defaults to center screen)
13693  * @cfg {Number} y The default top page coordinate of the dialog (defaults to center screen)
13694  * @cfg {String/Element} animateTarget Id or element from which the dialog should animate while opening
13695  * (defaults to null with no animation)
13696  * @cfg {Boolean} resizable False to disable manual dialog resizing (defaults to true)
13697  * @cfg {String} resizeHandles Which resize handles to display - see the {@link Roo.Resizable} handles config
13698  * property for valid values (defaults to 'all')
13699  * @cfg {Number} minHeight The minimum allowable height for a resizable dialog (defaults to 80)
13700  * @cfg {Number} minWidth The minimum allowable width for a resizable dialog (defaults to 200)
13701  * @cfg {Boolean} modal True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)
13702  * @cfg {Boolean} autoScroll True to allow the dialog body contents to overflow and display scrollbars (defaults to false)
13703  * @cfg {Boolean} closable False to remove the built-in top-right corner close button (defaults to true)
13704  * @cfg {Boolean} collapsible False to remove the built-in top-right corner collapse button (defaults to true)
13705  * @cfg {Boolean} constraintoviewport True to keep the dialog constrained within the visible viewport boundaries (defaults to true)
13706  * @cfg {Boolean} syncHeightBeforeShow True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)
13707  * @cfg {Boolean} draggable False to disable dragging of the dialog within the viewport (defaults to true)
13708  * @cfg {Boolean} autoTabs If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)
13709  * @cfg {String} tabTag The tag name of tab elements, used when autoTabs = true (defaults to 'div')
13710  * @cfg {Boolean} proxyDrag True to drag a lightweight proxy element rather than the dialog itself, used when
13711  * draggable = true (defaults to false)
13712  * @cfg {Boolean} fixedcenter True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)
13713  * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
13714  * shadow (defaults to false)
13715  * @cfg {Number} shadowOffset The number of pixels to offset the shadow if displayed (defaults to 5)
13716  * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "right")
13717  * @cfg {Number} minButtonWidth Minimum width of all dialog buttons (defaults to 75)
13718  * @cfg {Array} buttons Array of buttons
13719  * @cfg {Boolean} shim True to create an iframe shim that prevents selects from showing through (defaults to false)
13720  * @constructor
13721  * Create a new BasicDialog.
13722  * @param {String/HTMLElement/Roo.Element} el The container element or DOM node, or its id
13723  * @param {Object} config Configuration options
13724  */
13725 Roo.BasicDialog = function(el, config){
13726     this.el = Roo.get(el);
13727     var dh = Roo.DomHelper;
13728     if(!this.el && config && config.autoCreate){
13729         if(typeof config.autoCreate == "object"){
13730             if(!config.autoCreate.id){
13731                 config.autoCreate.id = el;
13732             }
13733             this.el = dh.append(document.body,
13734                         config.autoCreate, true);
13735         }else{
13736             this.el = dh.append(document.body,
13737                         {tag: "div", id: el, style:'visibility:hidden;'}, true);
13738         }
13739     }
13740     el = this.el;
13741     el.setDisplayed(true);
13742     el.hide = this.hideAction;
13743     this.id = el.id;
13744     el.addClass("x-dlg");
13745
13746     Roo.apply(this, config);
13747
13748     this.proxy = el.createProxy("x-dlg-proxy");
13749     this.proxy.hide = this.hideAction;
13750     this.proxy.setOpacity(.5);
13751     this.proxy.hide();
13752
13753     if(config.width){
13754         el.setWidth(config.width);
13755     }
13756     if(config.height){
13757         el.setHeight(config.height);
13758     }
13759     this.size = el.getSize();
13760     if(typeof config.x != "undefined" && typeof config.y != "undefined"){
13761         this.xy = [config.x,config.y];
13762     }else{
13763         this.xy = el.getCenterXY(true);
13764     }
13765     /** The header element @type Roo.Element */
13766     this.header = el.child("> .x-dlg-hd");
13767     /** The body element @type Roo.Element */
13768     this.body = el.child("> .x-dlg-bd");
13769     /** The footer element @type Roo.Element */
13770     this.footer = el.child("> .x-dlg-ft");
13771
13772     if(!this.header){
13773         this.header = el.createChild({tag: "div", cls:"x-dlg-hd", html: "&#160;"}, this.body ? this.body.dom : null);
13774     }
13775     if(!this.body){
13776         this.body = el.createChild({tag: "div", cls:"x-dlg-bd"});
13777     }
13778
13779     this.header.unselectable();
13780     if(this.title){
13781         this.header.update(this.title);
13782     }
13783     // this element allows the dialog to be focused for keyboard event
13784     this.focusEl = el.createChild({tag: "a", href:"#", cls:"x-dlg-focus", tabIndex:"-1"});
13785     this.focusEl.swallowEvent("click", true);
13786
13787     this.header.wrap({cls:"x-dlg-hd-right"}).wrap({cls:"x-dlg-hd-left"}, true);
13788
13789     // wrap the body and footer for special rendering
13790     this.bwrap = this.body.wrap({tag: "div", cls:"x-dlg-dlg-body"});
13791     if(this.footer){
13792         this.bwrap.dom.appendChild(this.footer.dom);
13793     }
13794
13795     this.bg = this.el.createChild({
13796         tag: "div", cls:"x-dlg-bg",
13797         html: '<div class="x-dlg-bg-left"><div class="x-dlg-bg-right"><div class="x-dlg-bg-center">&#160;</div></div></div>'
13798     });
13799     this.centerBg = this.bg.child("div.x-dlg-bg-center");
13800
13801
13802     if(this.autoScroll !== false && !this.autoTabs){
13803         this.body.setStyle("overflow", "auto");
13804     }
13805
13806     this.toolbox = this.el.createChild({cls: "x-dlg-toolbox"});
13807
13808     if(this.closable !== false){
13809         this.el.addClass("x-dlg-closable");
13810         this.close = this.toolbox.createChild({cls:"x-dlg-close"});
13811         this.close.on("click", this.closeClick, this);
13812         this.close.addClassOnOver("x-dlg-close-over");
13813     }
13814     if(this.collapsible !== false){
13815         this.collapseBtn = this.toolbox.createChild({cls:"x-dlg-collapse"});
13816         this.collapseBtn.on("click", this.collapseClick, this);
13817         this.collapseBtn.addClassOnOver("x-dlg-collapse-over");
13818         this.header.on("dblclick", this.collapseClick, this);
13819     }
13820     if(this.resizable !== false){
13821         this.el.addClass("x-dlg-resizable");
13822         this.resizer = new Roo.Resizable(el, {
13823             minWidth: this.minWidth || 80,
13824             minHeight:this.minHeight || 80,
13825             handles: this.resizeHandles || "all",
13826             pinned: true
13827         });
13828         this.resizer.on("beforeresize", this.beforeResize, this);
13829         this.resizer.on("resize", this.onResize, this);
13830     }
13831     if(this.draggable !== false){
13832         el.addClass("x-dlg-draggable");
13833         if (!this.proxyDrag) {
13834             var dd = new Roo.dd.DD(el.dom.id, "WindowDrag");
13835         }
13836         else {
13837             var dd = new Roo.dd.DDProxy(el.dom.id, "WindowDrag", {dragElId: this.proxy.id});
13838         }
13839         dd.setHandleElId(this.header.id);
13840         dd.endDrag = this.endMove.createDelegate(this);
13841         dd.startDrag = this.startMove.createDelegate(this);
13842         dd.onDrag = this.onDrag.createDelegate(this);
13843         dd.scroll = false;
13844         this.dd = dd;
13845     }
13846     if(this.modal){
13847         this.mask = dh.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
13848         this.mask.enableDisplayMode("block");
13849         this.mask.hide();
13850         this.el.addClass("x-dlg-modal");
13851     }
13852     if(this.shadow){
13853         this.shadow = new Roo.Shadow({
13854             mode : typeof this.shadow == "string" ? this.shadow : "sides",
13855             offset : this.shadowOffset
13856         });
13857     }else{
13858         this.shadowOffset = 0;
13859     }
13860     if(Roo.useShims && this.shim !== false){
13861         this.shim = this.el.createShim();
13862         this.shim.hide = this.hideAction;
13863         this.shim.hide();
13864     }else{
13865         this.shim = false;
13866     }
13867     if(this.autoTabs){
13868         this.initTabs();
13869     }
13870     if (this.buttons) { 
13871         var bts= this.buttons;
13872         this.buttons = [];
13873         Roo.each(bts, function(b) {
13874             this.addButton(b);
13875         }, this);
13876     }
13877     
13878     
13879     this.addEvents({
13880         /**
13881          * @event keydown
13882          * Fires when a key is pressed
13883          * @param {Roo.BasicDialog} this
13884          * @param {Roo.EventObject} e
13885          */
13886         "keydown" : true,
13887         /**
13888          * @event move
13889          * Fires when this dialog is moved by the user.
13890          * @param {Roo.BasicDialog} this
13891          * @param {Number} x The new page X
13892          * @param {Number} y The new page Y
13893          */
13894         "move" : true,
13895         /**
13896          * @event resize
13897          * Fires when this dialog is resized by the user.
13898          * @param {Roo.BasicDialog} this
13899          * @param {Number} width The new width
13900          * @param {Number} height The new height
13901          */
13902         "resize" : true,
13903         /**
13904          * @event beforehide
13905          * Fires before this dialog is hidden.
13906          * @param {Roo.BasicDialog} this
13907          */
13908         "beforehide" : true,
13909         /**
13910          * @event hide
13911          * Fires when this dialog is hidden.
13912          * @param {Roo.BasicDialog} this
13913          */
13914         "hide" : true,
13915         /**
13916          * @event beforeshow
13917          * Fires before this dialog is shown.
13918          * @param {Roo.BasicDialog} this
13919          */
13920         "beforeshow" : true,
13921         /**
13922          * @event show
13923          * Fires when this dialog is shown.
13924          * @param {Roo.BasicDialog} this
13925          */
13926         "show" : true
13927     });
13928     el.on("keydown", this.onKeyDown, this);
13929     el.on("mousedown", this.toFront, this);
13930     Roo.EventManager.onWindowResize(this.adjustViewport, this, true);
13931     this.el.hide();
13932     Roo.DialogManager.register(this);
13933     Roo.BasicDialog.superclass.constructor.call(this);
13934 };
13935
13936 Roo.extend(Roo.BasicDialog, Roo.util.Observable, {
13937     shadowOffset: Roo.isIE ? 6 : 5,
13938     minHeight: 80,
13939     minWidth: 200,
13940     minButtonWidth: 75,
13941     defaultButton: null,
13942     buttonAlign: "right",
13943     tabTag: 'div',
13944     firstShow: true,
13945
13946     /**
13947      * Sets the dialog title text
13948      * @param {String} text The title text to display
13949      * @return {Roo.BasicDialog} this
13950      */
13951     setTitle : function(text){
13952         this.header.update(text);
13953         return this;
13954     },
13955
13956     // private
13957     closeClick : function(){
13958         this.hide();
13959     },
13960
13961     // private
13962     collapseClick : function(){
13963         this[this.collapsed ? "expand" : "collapse"]();
13964     },
13965
13966     /**
13967      * Collapses the dialog to its minimized state (only the title bar is visible).
13968      * Equivalent to the user clicking the collapse dialog button.
13969      */
13970     collapse : function(){
13971         if(!this.collapsed){
13972             this.collapsed = true;
13973             this.el.addClass("x-dlg-collapsed");
13974             this.restoreHeight = this.el.getHeight();
13975             this.resizeTo(this.el.getWidth(), this.header.getHeight());
13976         }
13977     },
13978
13979     /**
13980      * Expands a collapsed dialog back to its normal state.  Equivalent to the user
13981      * clicking the expand dialog button.
13982      */
13983     expand : function(){
13984         if(this.collapsed){
13985             this.collapsed = false;
13986             this.el.removeClass("x-dlg-collapsed");
13987             this.resizeTo(this.el.getWidth(), this.restoreHeight);
13988         }
13989     },
13990
13991     /**
13992      * Reinitializes the tabs component, clearing out old tabs and finding new ones.
13993      * @return {Roo.TabPanel} The tabs component
13994      */
13995     initTabs : function(){
13996         var tabs = this.getTabs();
13997         while(tabs.getTab(0)){
13998             tabs.removeTab(0);
13999         }
14000         this.el.select(this.tabTag+'.x-dlg-tab').each(function(el){
14001             var dom = el.dom;
14002             tabs.addTab(Roo.id(dom), dom.title);
14003             dom.title = "";
14004         });
14005         tabs.activate(0);
14006         return tabs;
14007     },
14008
14009     // private
14010     beforeResize : function(){
14011         this.resizer.minHeight = Math.max(this.minHeight, this.getHeaderFooterHeight(true)+40);
14012     },
14013
14014     // private
14015     onResize : function(){
14016         this.refreshSize();
14017         this.syncBodyHeight();
14018         this.adjustAssets();
14019         this.focus();
14020         this.fireEvent("resize", this, this.size.width, this.size.height);
14021     },
14022
14023     // private
14024     onKeyDown : function(e){
14025         if(this.isVisible()){
14026             this.fireEvent("keydown", this, e);
14027         }
14028     },
14029
14030     /**
14031      * Resizes the dialog.
14032      * @param {Number} width
14033      * @param {Number} height
14034      * @return {Roo.BasicDialog} this
14035      */
14036     resizeTo : function(width, height){
14037         this.el.setSize(width, height);
14038         this.size = {width: width, height: height};
14039         this.syncBodyHeight();
14040         if(this.fixedcenter){
14041             this.center();
14042         }
14043         if(this.isVisible()){
14044             this.constrainXY();
14045             this.adjustAssets();
14046         }
14047         this.fireEvent("resize", this, width, height);
14048         return this;
14049     },
14050
14051
14052     /**
14053      * Resizes the dialog to fit the specified content size.
14054      * @param {Number} width
14055      * @param {Number} height
14056      * @return {Roo.BasicDialog} this
14057      */
14058     setContentSize : function(w, h){
14059         h += this.getHeaderFooterHeight() + this.body.getMargins("tb");
14060         w += this.body.getMargins("lr") + this.bwrap.getMargins("lr") + this.centerBg.getPadding("lr");
14061         //if(!this.el.isBorderBox()){
14062             h +=  this.body.getPadding("tb") + this.bwrap.getBorderWidth("tb") + this.body.getBorderWidth("tb") + this.el.getBorderWidth("tb");
14063             w += this.body.getPadding("lr") + this.bwrap.getBorderWidth("lr") + this.body.getBorderWidth("lr") + this.bwrap.getPadding("lr") + this.el.getBorderWidth("lr");
14064         //}
14065         if(this.tabs){
14066             h += this.tabs.stripWrap.getHeight() + this.tabs.bodyEl.getMargins("tb") + this.tabs.bodyEl.getPadding("tb");
14067             w += this.tabs.bodyEl.getMargins("lr") + this.tabs.bodyEl.getPadding("lr");
14068         }
14069         this.resizeTo(w, h);
14070         return this;
14071     },
14072
14073     /**
14074      * Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be
14075      * executed in response to a particular key being pressed while the dialog is active.
14076      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the following options:
14077      *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
14078      * @param {Function} fn The function to call
14079      * @param {Object} scope (optional) The scope of the function
14080      * @return {Roo.BasicDialog} this
14081      */
14082     addKeyListener : function(key, fn, scope){
14083         var keyCode, shift, ctrl, alt;
14084         if(typeof key == "object" && !(key instanceof Array)){
14085             keyCode = key["key"];
14086             shift = key["shift"];
14087             ctrl = key["ctrl"];
14088             alt = key["alt"];
14089         }else{
14090             keyCode = key;
14091         }
14092         var handler = function(dlg, e){
14093             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
14094                 var k = e.getKey();
14095                 if(keyCode instanceof Array){
14096                     for(var i = 0, len = keyCode.length; i < len; i++){
14097                         if(keyCode[i] == k){
14098                           fn.call(scope || window, dlg, k, e);
14099                           return;
14100                         }
14101                     }
14102                 }else{
14103                     if(k == keyCode){
14104                         fn.call(scope || window, dlg, k, e);
14105                     }
14106                 }
14107             }
14108         };
14109         this.on("keydown", handler);
14110         return this;
14111     },
14112
14113     /**
14114      * Returns the TabPanel component (creates it if it doesn't exist).
14115      * Note: If you wish to simply check for the existence of tabs without creating them,
14116      * check for a null 'tabs' property.
14117      * @return {Roo.TabPanel} The tabs component
14118      */
14119     getTabs : function(){
14120         if(!this.tabs){
14121             this.el.addClass("x-dlg-auto-tabs");
14122             this.body.addClass(this.tabPosition == "bottom" ? "x-tabs-bottom" : "x-tabs-top");
14123             this.tabs = new Roo.TabPanel(this.body.dom, this.tabPosition == "bottom");
14124         }
14125         return this.tabs;
14126     },
14127
14128     /**
14129      * Adds a button to the footer section of the dialog.
14130      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
14131      * object or a valid Roo.DomHelper element config
14132      * @param {Function} handler The function called when the button is clicked
14133      * @param {Object} scope (optional) The scope of the handler function (accepts position as a property)
14134      * @return {Roo.Button} The new button
14135      */
14136     addButton : function(config, handler, scope){
14137         var dh = Roo.DomHelper;
14138         if(!this.footer){
14139             this.footer = dh.append(this.bwrap, {tag: "div", cls:"x-dlg-ft"}, true);
14140         }
14141         if(!this.btnContainer){
14142             var tb = this.footer.createChild({
14143
14144                 cls:"x-dlg-btns x-dlg-btns-"+this.buttonAlign,
14145                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
14146             }, null, true);
14147             this.btnContainer = tb.firstChild.firstChild.firstChild;
14148         }
14149         var bconfig = {
14150             handler: handler,
14151             scope: scope,
14152             minWidth: this.minButtonWidth,
14153             hideParent:true
14154         };
14155         if(typeof config == "string"){
14156             bconfig.text = config;
14157         }else{
14158             if(config.tag){
14159                 bconfig.dhconfig = config;
14160             }else{
14161                 Roo.apply(bconfig, config);
14162             }
14163         }
14164         var fc = false;
14165         if ((typeof(bconfig.position) != 'undefined') && bconfig.position < this.btnContainer.childNodes.length-1) {
14166             bconfig.position = Math.max(0, bconfig.position);
14167             fc = this.btnContainer.childNodes[bconfig.position];
14168         }
14169          
14170         var btn = new Roo.Button(
14171             fc ? 
14172                 this.btnContainer.insertBefore(document.createElement("td"),fc)
14173                 : this.btnContainer.appendChild(document.createElement("td")),
14174             //Roo.get(this.btnContainer).createChild( { tag: 'td'},  fc ),
14175             bconfig
14176         );
14177         this.syncBodyHeight();
14178         if(!this.buttons){
14179             /**
14180              * Array of all the buttons that have been added to this dialog via addButton
14181              * @type Array
14182              */
14183             this.buttons = [];
14184         }
14185         this.buttons.push(btn);
14186         return btn;
14187     },
14188
14189     /**
14190      * Sets the default button to be focused when the dialog is displayed.
14191      * @param {Roo.BasicDialog.Button} btn The button object returned by {@link #addButton}
14192      * @return {Roo.BasicDialog} this
14193      */
14194     setDefaultButton : function(btn){
14195         this.defaultButton = btn;
14196         return this;
14197     },
14198
14199     // private
14200     getHeaderFooterHeight : function(safe){
14201         var height = 0;
14202         if(this.header){
14203            height += this.header.getHeight();
14204         }
14205         if(this.footer){
14206            var fm = this.footer.getMargins();
14207             height += (this.footer.getHeight()+fm.top+fm.bottom);
14208         }
14209         height += this.bwrap.getPadding("tb")+this.bwrap.getBorderWidth("tb");
14210         height += this.centerBg.getPadding("tb");
14211         return height;
14212     },
14213
14214     // private
14215     syncBodyHeight : function()
14216     {
14217         var bd = this.body, // the text
14218             cb = this.centerBg, // wrapper around bottom.. but does not seem to be used..
14219             bw = this.bwrap;
14220         var height = this.size.height - this.getHeaderFooterHeight(false);
14221         bd.setHeight(height-bd.getMargins("tb"));
14222         var hh = this.header.getHeight();
14223         var h = this.size.height-hh;
14224         cb.setHeight(h);
14225         
14226         bw.setLeftTop(cb.getPadding("l"), hh+cb.getPadding("t"));
14227         bw.setHeight(h-cb.getPadding("tb"));
14228         
14229         bw.setWidth(this.el.getWidth(true)-cb.getPadding("lr"));
14230         bd.setWidth(bw.getWidth(true));
14231         if(this.tabs){
14232             this.tabs.syncHeight();
14233             if(Roo.isIE){
14234                 this.tabs.el.repaint();
14235             }
14236         }
14237     },
14238
14239     /**
14240      * Restores the previous state of the dialog if Roo.state is configured.
14241      * @return {Roo.BasicDialog} this
14242      */
14243     restoreState : function(){
14244         var box = Roo.state.Manager.get(this.stateId || (this.el.id + "-state"));
14245         if(box && box.width){
14246             this.xy = [box.x, box.y];
14247             this.resizeTo(box.width, box.height);
14248         }
14249         return this;
14250     },
14251
14252     // private
14253     beforeShow : function(){
14254         this.expand();
14255         if(this.fixedcenter){
14256             this.xy = this.el.getCenterXY(true);
14257         }
14258         if(this.modal){
14259             Roo.get(document.body).addClass("x-body-masked");
14260             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
14261             this.mask.show();
14262         }
14263         this.constrainXY();
14264     },
14265
14266     // private
14267     animShow : function(){
14268         var b = Roo.get(this.animateTarget).getBox();
14269         this.proxy.setSize(b.width, b.height);
14270         this.proxy.setLocation(b.x, b.y);
14271         this.proxy.show();
14272         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height,
14273                     true, .35, this.showEl.createDelegate(this));
14274     },
14275
14276     /**
14277      * Shows the dialog.
14278      * @param {String/HTMLElement/Roo.Element} animateTarget (optional) Reset the animation target
14279      * @return {Roo.BasicDialog} this
14280      */
14281     show : function(animateTarget){
14282         if (this.fireEvent("beforeshow", this) === false){
14283             return;
14284         }
14285         if(this.syncHeightBeforeShow){
14286             this.syncBodyHeight();
14287         }else if(this.firstShow){
14288             this.firstShow = false;
14289             this.syncBodyHeight(); // sync the height on the first show instead of in the constructor
14290         }
14291         this.animateTarget = animateTarget || this.animateTarget;
14292         if(!this.el.isVisible()){
14293             this.beforeShow();
14294             if(this.animateTarget && Roo.get(this.animateTarget)){
14295                 this.animShow();
14296             }else{
14297                 this.showEl();
14298             }
14299         }
14300         return this;
14301     },
14302
14303     // private
14304     showEl : function(){
14305         this.proxy.hide();
14306         this.el.setXY(this.xy);
14307         this.el.show();
14308         this.adjustAssets(true);
14309         this.toFront();
14310         this.focus();
14311         // IE peekaboo bug - fix found by Dave Fenwick
14312         if(Roo.isIE){
14313             this.el.repaint();
14314         }
14315         this.fireEvent("show", this);
14316     },
14317
14318     /**
14319      * Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the
14320      * dialog itself will receive focus.
14321      */
14322     focus : function(){
14323         if(this.defaultButton){
14324             this.defaultButton.focus();
14325         }else{
14326             this.focusEl.focus();
14327         }
14328     },
14329
14330     // private
14331     constrainXY : function(){
14332         if(this.constraintoviewport !== false){
14333             if(!this.viewSize){
14334                 if(this.container){
14335                     var s = this.container.getSize();
14336                     this.viewSize = [s.width, s.height];
14337                 }else{
14338                     this.viewSize = [Roo.lib.Dom.getViewWidth(),Roo.lib.Dom.getViewHeight()];
14339                 }
14340             }
14341             var s = Roo.get(this.container||document).getScroll();
14342
14343             var x = this.xy[0], y = this.xy[1];
14344             var w = this.size.width, h = this.size.height;
14345             var vw = this.viewSize[0], vh = this.viewSize[1];
14346             // only move it if it needs it
14347             var moved = false;
14348             // first validate right/bottom
14349             if(x + w > vw+s.left){
14350                 x = vw - w;
14351                 moved = true;
14352             }
14353             if(y + h > vh+s.top){
14354                 y = vh - h;
14355                 moved = true;
14356             }
14357             // then make sure top/left isn't negative
14358             if(x < s.left){
14359                 x = s.left;
14360                 moved = true;
14361             }
14362             if(y < s.top){
14363                 y = s.top;
14364                 moved = true;
14365             }
14366             if(moved){
14367                 // cache xy
14368                 this.xy = [x, y];
14369                 if(this.isVisible()){
14370                     this.el.setLocation(x, y);
14371                     this.adjustAssets();
14372                 }
14373             }
14374         }
14375     },
14376
14377     // private
14378     onDrag : function(){
14379         if(!this.proxyDrag){
14380             this.xy = this.el.getXY();
14381             this.adjustAssets();
14382         }
14383     },
14384
14385     // private
14386     adjustAssets : function(doShow){
14387         var x = this.xy[0], y = this.xy[1];
14388         var w = this.size.width, h = this.size.height;
14389         if(doShow === true){
14390             if(this.shadow){
14391                 this.shadow.show(this.el);
14392             }
14393             if(this.shim){
14394                 this.shim.show();
14395             }
14396         }
14397         if(this.shadow && this.shadow.isVisible()){
14398             this.shadow.show(this.el);
14399         }
14400         if(this.shim && this.shim.isVisible()){
14401             this.shim.setBounds(x, y, w, h);
14402         }
14403     },
14404
14405     // private
14406     adjustViewport : function(w, h){
14407         if(!w || !h){
14408             w = Roo.lib.Dom.getViewWidth();
14409             h = Roo.lib.Dom.getViewHeight();
14410         }
14411         // cache the size
14412         this.viewSize = [w, h];
14413         if(this.modal && this.mask.isVisible()){
14414             this.mask.setSize(w, h); // first make sure the mask isn't causing overflow
14415             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
14416         }
14417         if(this.isVisible()){
14418             this.constrainXY();
14419         }
14420     },
14421
14422     /**
14423      * Destroys this dialog and all its supporting elements (including any tabs, shim,
14424      * shadow, proxy, mask, etc.)  Also removes all event listeners.
14425      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
14426      */
14427     destroy : function(removeEl){
14428         if(this.isVisible()){
14429             this.animateTarget = null;
14430             this.hide();
14431         }
14432         Roo.EventManager.removeResizeListener(this.adjustViewport, this);
14433         if(this.tabs){
14434             this.tabs.destroy(removeEl);
14435         }
14436         Roo.destroy(
14437              this.shim,
14438              this.proxy,
14439              this.resizer,
14440              this.close,
14441              this.mask
14442         );
14443         if(this.dd){
14444             this.dd.unreg();
14445         }
14446         if(this.buttons){
14447            for(var i = 0, len = this.buttons.length; i < len; i++){
14448                this.buttons[i].destroy();
14449            }
14450         }
14451         this.el.removeAllListeners();
14452         if(removeEl === true){
14453             this.el.update("");
14454             this.el.remove();
14455         }
14456         Roo.DialogManager.unregister(this);
14457     },
14458
14459     // private
14460     startMove : function(){
14461         if(this.proxyDrag){
14462             this.proxy.show();
14463         }
14464         if(this.constraintoviewport !== false){
14465             this.dd.constrainTo(document.body, {right: this.shadowOffset, bottom: this.shadowOffset});
14466         }
14467     },
14468
14469     // private
14470     endMove : function(){
14471         if(!this.proxyDrag){
14472             Roo.dd.DD.prototype.endDrag.apply(this.dd, arguments);
14473         }else{
14474             Roo.dd.DDProxy.prototype.endDrag.apply(this.dd, arguments);
14475             this.proxy.hide();
14476         }
14477         this.refreshSize();
14478         this.adjustAssets();
14479         this.focus();
14480         this.fireEvent("move", this, this.xy[0], this.xy[1]);
14481     },
14482
14483     /**
14484      * Brings this dialog to the front of any other visible dialogs
14485      * @return {Roo.BasicDialog} this
14486      */
14487     toFront : function(){
14488         Roo.DialogManager.bringToFront(this);
14489         return this;
14490     },
14491
14492     /**
14493      * Sends this dialog to the back (under) of any other visible dialogs
14494      * @return {Roo.BasicDialog} this
14495      */
14496     toBack : function(){
14497         Roo.DialogManager.sendToBack(this);
14498         return this;
14499     },
14500
14501     /**
14502      * Centers this dialog in the viewport
14503      * @return {Roo.BasicDialog} this
14504      */
14505     center : function(){
14506         var xy = this.el.getCenterXY(true);
14507         this.moveTo(xy[0], xy[1]);
14508         return this;
14509     },
14510
14511     /**
14512      * Moves the dialog's top-left corner to the specified point
14513      * @param {Number} x
14514      * @param {Number} y
14515      * @return {Roo.BasicDialog} this
14516      */
14517     moveTo : function(x, y){
14518         this.xy = [x,y];
14519         if(this.isVisible()){
14520             this.el.setXY(this.xy);
14521             this.adjustAssets();
14522         }
14523         return this;
14524     },
14525
14526     /**
14527      * Aligns the dialog to the specified element
14528      * @param {String/HTMLElement/Roo.Element} element The element to align to.
14529      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details).
14530      * @param {Array} offsets (optional) Offset the positioning by [x, y]
14531      * @return {Roo.BasicDialog} this
14532      */
14533     alignTo : function(element, position, offsets){
14534         this.xy = this.el.getAlignToXY(element, position, offsets);
14535         if(this.isVisible()){
14536             this.el.setXY(this.xy);
14537             this.adjustAssets();
14538         }
14539         return this;
14540     },
14541
14542     /**
14543      * Anchors an element to another element and realigns it when the window is resized.
14544      * @param {String/HTMLElement/Roo.Element} element The element to align to.
14545      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details)
14546      * @param {Array} offsets (optional) Offset the positioning by [x, y]
14547      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
14548      * is a number, it is used as the buffer delay (defaults to 50ms).
14549      * @return {Roo.BasicDialog} this
14550      */
14551     anchorTo : function(el, alignment, offsets, monitorScroll){
14552         var action = function(){
14553             this.alignTo(el, alignment, offsets);
14554         };
14555         Roo.EventManager.onWindowResize(action, this);
14556         var tm = typeof monitorScroll;
14557         if(tm != 'undefined'){
14558             Roo.EventManager.on(window, 'scroll', action, this,
14559                 {buffer: tm == 'number' ? monitorScroll : 50});
14560         }
14561         action.call(this);
14562         return this;
14563     },
14564
14565     /**
14566      * Returns true if the dialog is visible
14567      * @return {Boolean}
14568      */
14569     isVisible : function(){
14570         return this.el.isVisible();
14571     },
14572
14573     // private
14574     animHide : function(callback){
14575         var b = Roo.get(this.animateTarget).getBox();
14576         this.proxy.show();
14577         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height);
14578         this.el.hide();
14579         this.proxy.setBounds(b.x, b.y, b.width, b.height, true, .35,
14580                     this.hideEl.createDelegate(this, [callback]));
14581     },
14582
14583     /**
14584      * Hides the dialog.
14585      * @param {Function} callback (optional) Function to call when the dialog is hidden
14586      * @return {Roo.BasicDialog} this
14587      */
14588     hide : function(callback){
14589         if (this.fireEvent("beforehide", this) === false){
14590             return;
14591         }
14592         if(this.shadow){
14593             this.shadow.hide();
14594         }
14595         if(this.shim) {
14596           this.shim.hide();
14597         }
14598         // sometimes animateTarget seems to get set.. causing problems...
14599         // this just double checks..
14600         if(this.animateTarget && Roo.get(this.animateTarget)) {
14601            this.animHide(callback);
14602         }else{
14603             this.el.hide();
14604             this.hideEl(callback);
14605         }
14606         return this;
14607     },
14608
14609     // private
14610     hideEl : function(callback){
14611         this.proxy.hide();
14612         if(this.modal){
14613             this.mask.hide();
14614             Roo.get(document.body).removeClass("x-body-masked");
14615         }
14616         this.fireEvent("hide", this);
14617         if(typeof callback == "function"){
14618             callback();
14619         }
14620     },
14621
14622     // private
14623     hideAction : function(){
14624         this.setLeft("-10000px");
14625         this.setTop("-10000px");
14626         this.setStyle("visibility", "hidden");
14627     },
14628
14629     // private
14630     refreshSize : function(){
14631         this.size = this.el.getSize();
14632         this.xy = this.el.getXY();
14633         Roo.state.Manager.set(this.stateId || this.el.id + "-state", this.el.getBox());
14634     },
14635
14636     // private
14637     // z-index is managed by the DialogManager and may be overwritten at any time
14638     setZIndex : function(index){
14639         if(this.modal){
14640             this.mask.setStyle("z-index", index);
14641         }
14642         if(this.shim){
14643             this.shim.setStyle("z-index", ++index);
14644         }
14645         if(this.shadow){
14646             this.shadow.setZIndex(++index);
14647         }
14648         this.el.setStyle("z-index", ++index);
14649         if(this.proxy){
14650             this.proxy.setStyle("z-index", ++index);
14651         }
14652         if(this.resizer){
14653             this.resizer.proxy.setStyle("z-index", ++index);
14654         }
14655
14656         this.lastZIndex = index;
14657     },
14658
14659     /**
14660      * Returns the element for this dialog
14661      * @return {Roo.Element} The underlying dialog Element
14662      */
14663     getEl : function(){
14664         return this.el;
14665     }
14666 });
14667
14668 /**
14669  * @class Roo.DialogManager
14670  * Provides global access to BasicDialogs that have been created and
14671  * support for z-indexing (layering) multiple open dialogs.
14672  */
14673 Roo.DialogManager = function(){
14674     var list = {};
14675     var accessList = [];
14676     var front = null;
14677
14678     // private
14679     var sortDialogs = function(d1, d2){
14680         return (!d1._lastAccess || d1._lastAccess < d2._lastAccess) ? -1 : 1;
14681     };
14682
14683     // private
14684     var orderDialogs = function(){
14685         accessList.sort(sortDialogs);
14686         var seed = Roo.DialogManager.zseed;
14687         for(var i = 0, len = accessList.length; i < len; i++){
14688             var dlg = accessList[i];
14689             if(dlg){
14690                 dlg.setZIndex(seed + (i*10));
14691             }
14692         }
14693     };
14694
14695     return {
14696         /**
14697          * The starting z-index for BasicDialogs (defaults to 9000)
14698          * @type Number The z-index value
14699          */
14700         zseed : 9000,
14701
14702         // private
14703         register : function(dlg){
14704             list[dlg.id] = dlg;
14705             accessList.push(dlg);
14706         },
14707
14708         // private
14709         unregister : function(dlg){
14710             delete list[dlg.id];
14711             var i=0;
14712             var len=0;
14713             if(!accessList.indexOf){
14714                 for(  i = 0, len = accessList.length; i < len; i++){
14715                     if(accessList[i] == dlg){
14716                         accessList.splice(i, 1);
14717                         return;
14718                     }
14719                 }
14720             }else{
14721                  i = accessList.indexOf(dlg);
14722                 if(i != -1){
14723                     accessList.splice(i, 1);
14724                 }
14725             }
14726         },
14727
14728         /**
14729          * Gets a registered dialog by id
14730          * @param {String/Object} id The id of the dialog or a dialog
14731          * @return {Roo.BasicDialog} this
14732          */
14733         get : function(id){
14734             return typeof id == "object" ? id : list[id];
14735         },
14736
14737         /**
14738          * Brings the specified dialog to the front
14739          * @param {String/Object} dlg The id of the dialog or a dialog
14740          * @return {Roo.BasicDialog} this
14741          */
14742         bringToFront : function(dlg){
14743             dlg = this.get(dlg);
14744             if(dlg != front){
14745                 front = dlg;
14746                 dlg._lastAccess = new Date().getTime();
14747                 orderDialogs();
14748             }
14749             return dlg;
14750         },
14751
14752         /**
14753          * Sends the specified dialog to the back
14754          * @param {String/Object} dlg The id of the dialog or a dialog
14755          * @return {Roo.BasicDialog} this
14756          */
14757         sendToBack : function(dlg){
14758             dlg = this.get(dlg);
14759             dlg._lastAccess = -(new Date().getTime());
14760             orderDialogs();
14761             return dlg;
14762         },
14763
14764         /**
14765          * Hides all dialogs
14766          */
14767         hideAll : function(){
14768             for(var id in list){
14769                 if(list[id] && typeof list[id] != "function" && list[id].isVisible()){
14770                     list[id].hide();
14771                 }
14772             }
14773         }
14774     };
14775 }();
14776
14777 /**
14778  * @class Roo.LayoutDialog
14779  * @extends Roo.BasicDialog
14780  * Dialog which provides adjustments for working with a layout in a Dialog.
14781  * Add your necessary layout config options to the dialog's config.<br>
14782  * Example usage (including a nested layout):
14783  * <pre><code>
14784 if(!dialog){
14785     dialog = new Roo.LayoutDialog("download-dlg", {
14786         modal: true,
14787         width:600,
14788         height:450,
14789         shadow:true,
14790         minWidth:500,
14791         minHeight:350,
14792         autoTabs:true,
14793         proxyDrag:true,
14794         // layout config merges with the dialog config
14795         center:{
14796             tabPosition: "top",
14797             alwaysShowTabs: true
14798         }
14799     });
14800     dialog.addKeyListener(27, dialog.hide, dialog);
14801     dialog.setDefaultButton(dialog.addButton("Close", dialog.hide, dialog));
14802     dialog.addButton("Build It!", this.getDownload, this);
14803
14804     // we can even add nested layouts
14805     var innerLayout = new Roo.BorderLayout("dl-inner", {
14806         east: {
14807             initialSize: 200,
14808             autoScroll:true,
14809             split:true
14810         },
14811         center: {
14812             autoScroll:true
14813         }
14814     });
14815     innerLayout.beginUpdate();
14816     innerLayout.add("east", new Roo.ContentPanel("dl-details"));
14817     innerLayout.add("center", new Roo.ContentPanel("selection-panel"));
14818     innerLayout.endUpdate(true);
14819
14820     var layout = dialog.getLayout();
14821     layout.beginUpdate();
14822     layout.add("center", new Roo.ContentPanel("standard-panel",
14823                         {title: "Download the Source", fitToFrame:true}));
14824     layout.add("center", new Roo.NestedLayoutPanel(innerLayout,
14825                {title: "Build your own roo.js"}));
14826     layout.getRegion("center").showPanel(sp);
14827     layout.endUpdate();
14828 }
14829 </code></pre>
14830     * @constructor
14831     * @param {String/HTMLElement/Roo.Element} el The id of or container element, or config
14832     * @param {Object} config configuration options
14833   */
14834 Roo.LayoutDialog = function(el, cfg){
14835     
14836     var config=  cfg;
14837     if (typeof(cfg) == 'undefined') {
14838         config = Roo.apply({}, el);
14839         // not sure why we use documentElement here.. - it should always be body.
14840         // IE7 borks horribly if we use documentElement.
14841         // webkit also does not like documentElement - it creates a body element...
14842         el = Roo.get( document.body || document.documentElement ).createChild();
14843         //config.autoCreate = true;
14844     }
14845     
14846     
14847     config.autoTabs = false;
14848     Roo.LayoutDialog.superclass.constructor.call(this, el, config);
14849     this.body.setStyle({overflow:"hidden", position:"relative"});
14850     this.layout = new Roo.BorderLayout(this.body.dom, config);
14851     this.layout.monitorWindowResize = false;
14852     this.el.addClass("x-dlg-auto-layout");
14853     // fix case when center region overwrites center function
14854     this.center = Roo.BasicDialog.prototype.center;
14855     this.on("show", this.layout.layout, this.layout, true);
14856     if (config.items) {
14857         var xitems = config.items;
14858         delete config.items;
14859         Roo.each(xitems, this.addxtype, this);
14860     }
14861     
14862     
14863 };
14864 Roo.extend(Roo.LayoutDialog, Roo.BasicDialog, {
14865     /**
14866      * Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout.
14867      * @deprecated
14868      */
14869     endUpdate : function(){
14870         this.layout.endUpdate();
14871     },
14872
14873     /**
14874      * Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout.
14875      *  @deprecated
14876      */
14877     beginUpdate : function(){
14878         this.layout.beginUpdate();
14879     },
14880
14881     /**
14882      * Get the BorderLayout for this dialog
14883      * @return {Roo.BorderLayout}
14884      */
14885     getLayout : function(){
14886         return this.layout;
14887     },
14888
14889     showEl : function(){
14890         Roo.LayoutDialog.superclass.showEl.apply(this, arguments);
14891         if(Roo.isIE7){
14892             this.layout.layout();
14893         }
14894     },
14895
14896     // private
14897     // Use the syncHeightBeforeShow config option to control this automatically
14898     syncBodyHeight : function(){
14899         Roo.LayoutDialog.superclass.syncBodyHeight.call(this);
14900         if(this.layout){this.layout.layout();}
14901     },
14902     
14903       /**
14904      * Add an xtype element (actually adds to the layout.)
14905      * @return {Object} xdata xtype object data.
14906      */
14907     
14908     addxtype : function(c) {
14909         return this.layout.addxtype(c);
14910     }
14911 });/*
14912  * Based on:
14913  * Ext JS Library 1.1.1
14914  * Copyright(c) 2006-2007, Ext JS, LLC.
14915  *
14916  * Originally Released Under LGPL - original licence link has changed is not relivant.
14917  *
14918  * Fork - LGPL
14919  * <script type="text/javascript">
14920  */
14921  
14922 /**
14923  * @class Roo.MessageBox
14924  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
14925  * Example usage:
14926  *<pre><code>
14927 // Basic alert:
14928 Roo.Msg.alert('Status', 'Changes saved successfully.');
14929
14930 // Prompt for user data:
14931 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
14932     if (btn == 'ok'){
14933         // process text value...
14934     }
14935 });
14936
14937 // Show a dialog using config options:
14938 Roo.Msg.show({
14939    title:'Save Changes?',
14940    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
14941    buttons: Roo.Msg.YESNOCANCEL,
14942    fn: processResult,
14943    animEl: 'elId'
14944 });
14945 </code></pre>
14946  * @singleton
14947  */
14948 Roo.MessageBox = function(){
14949     var dlg, opt, mask, waitTimer;
14950     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
14951     var buttons, activeTextEl, bwidth;
14952
14953     // private
14954     var handleButton = function(button){
14955         dlg.hide();
14956         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
14957     };
14958
14959     // private
14960     var handleHide = function(){
14961         if(opt && opt.cls){
14962             dlg.el.removeClass(opt.cls);
14963         }
14964         if(waitTimer){
14965             Roo.TaskMgr.stop(waitTimer);
14966             waitTimer = null;
14967         }
14968     };
14969
14970     // private
14971     var updateButtons = function(b){
14972         var width = 0;
14973         if(!b){
14974             buttons["ok"].hide();
14975             buttons["cancel"].hide();
14976             buttons["yes"].hide();
14977             buttons["no"].hide();
14978             dlg.footer.dom.style.display = 'none';
14979             return width;
14980         }
14981         dlg.footer.dom.style.display = '';
14982         for(var k in buttons){
14983             if(typeof buttons[k] != "function"){
14984                 if(b[k]){
14985                     buttons[k].show();
14986                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.MessageBox.buttonText[k]);
14987                     width += buttons[k].el.getWidth()+15;
14988                 }else{
14989                     buttons[k].hide();
14990                 }
14991             }
14992         }
14993         return width;
14994     };
14995
14996     // private
14997     var handleEsc = function(d, k, e){
14998         if(opt && opt.closable !== false){
14999             dlg.hide();
15000         }
15001         if(e){
15002             e.stopEvent();
15003         }
15004     };
15005
15006     return {
15007         /**
15008          * Returns a reference to the underlying {@link Roo.BasicDialog} element
15009          * @return {Roo.BasicDialog} The BasicDialog element
15010          */
15011         getDialog : function(){
15012            if(!dlg){
15013                 dlg = new Roo.BasicDialog("x-msg-box", {
15014                     autoCreate : true,
15015                     shadow: true,
15016                     draggable: true,
15017                     resizable:false,
15018                     constraintoviewport:false,
15019                     fixedcenter:true,
15020                     collapsible : false,
15021                     shim:true,
15022                     modal: true,
15023                     width:400, height:100,
15024                     buttonAlign:"center",
15025                     closeClick : function(){
15026                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
15027                             handleButton("no");
15028                         }else{
15029                             handleButton("cancel");
15030                         }
15031                     }
15032                 });
15033                 dlg.on("hide", handleHide);
15034                 mask = dlg.mask;
15035                 dlg.addKeyListener(27, handleEsc);
15036                 buttons = {};
15037                 var bt = this.buttonText;
15038                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
15039                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
15040                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
15041                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
15042                 bodyEl = dlg.body.createChild({
15043
15044                     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>'
15045                 });
15046                 msgEl = bodyEl.dom.firstChild;
15047                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
15048                 textboxEl.enableDisplayMode();
15049                 textboxEl.addKeyListener([10,13], function(){
15050                     if(dlg.isVisible() && opt && opt.buttons){
15051                         if(opt.buttons.ok){
15052                             handleButton("ok");
15053                         }else if(opt.buttons.yes){
15054                             handleButton("yes");
15055                         }
15056                     }
15057                 });
15058                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
15059                 textareaEl.enableDisplayMode();
15060                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
15061                 progressEl.enableDisplayMode();
15062                 var pf = progressEl.dom.firstChild;
15063                 if (pf) {
15064                     pp = Roo.get(pf.firstChild);
15065                     pp.setHeight(pf.offsetHeight);
15066                 }
15067                 
15068             }
15069             return dlg;
15070         },
15071
15072         /**
15073          * Updates the message box body text
15074          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
15075          * the XHTML-compliant non-breaking space character '&amp;#160;')
15076          * @return {Roo.MessageBox} This message box
15077          */
15078         updateText : function(text){
15079             if(!dlg.isVisible() && !opt.width){
15080                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
15081             }
15082             msgEl.innerHTML = text || '&#160;';
15083       
15084             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
15085             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
15086             var w = Math.max(
15087                     Math.min(opt.width || cw , this.maxWidth), 
15088                     Math.max(opt.minWidth || this.minWidth, bwidth)
15089             );
15090             if(opt.prompt){
15091                 activeTextEl.setWidth(w);
15092             }
15093             if(dlg.isVisible()){
15094                 dlg.fixedcenter = false;
15095             }
15096             // to big, make it scroll. = But as usual stupid IE does not support
15097             // !important..
15098             
15099             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
15100                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
15101                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
15102             } else {
15103                 bodyEl.dom.style.height = '';
15104                 bodyEl.dom.style.overflowY = '';
15105             }
15106             if (cw > w) {
15107                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
15108             } else {
15109                 bodyEl.dom.style.overflowX = '';
15110             }
15111             
15112             dlg.setContentSize(w, bodyEl.getHeight());
15113             if(dlg.isVisible()){
15114                 dlg.fixedcenter = true;
15115             }
15116             return this;
15117         },
15118
15119         /**
15120          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
15121          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
15122          * @param {Number} value Any number between 0 and 1 (e.g., .5)
15123          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
15124          * @return {Roo.MessageBox} This message box
15125          */
15126         updateProgress : function(value, text){
15127             if(text){
15128                 this.updateText(text);
15129             }
15130             if (pp) { // weird bug on my firefox - for some reason this is not defined
15131                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
15132             }
15133             return this;
15134         },        
15135
15136         /**
15137          * Returns true if the message box is currently displayed
15138          * @return {Boolean} True if the message box is visible, else false
15139          */
15140         isVisible : function(){
15141             return dlg && dlg.isVisible();  
15142         },
15143
15144         /**
15145          * Hides the message box if it is displayed
15146          */
15147         hide : function(){
15148             if(this.isVisible()){
15149                 dlg.hide();
15150             }  
15151         },
15152
15153         /**
15154          * Displays a new message box, or reinitializes an existing message box, based on the config options
15155          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
15156          * The following config object properties are supported:
15157          * <pre>
15158 Property    Type             Description
15159 ----------  ---------------  ------------------------------------------------------------------------------------
15160 animEl            String/Element   An id or Element from which the message box should animate as it opens and
15161                                    closes (defaults to undefined)
15162 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
15163                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
15164 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
15165                                    progress and wait dialogs will ignore this property and always hide the
15166                                    close button as they can only be closed programmatically.
15167 cls               String           A custom CSS class to apply to the message box element
15168 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
15169                                    displayed (defaults to 75)
15170 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
15171                                    function will be btn (the name of the button that was clicked, if applicable,
15172                                    e.g. "ok"), and text (the value of the active text field, if applicable).
15173                                    Progress and wait dialogs will ignore this option since they do not respond to
15174                                    user actions and can only be closed programmatically, so any required function
15175                                    should be called by the same code after it closes the dialog.
15176 icon              String           A CSS class that provides a background image to be used as an icon for
15177                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
15178 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
15179 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
15180 modal             Boolean          False to allow user interaction with the page while the message box is
15181                                    displayed (defaults to true)
15182 msg               String           A string that will replace the existing message box body text (defaults
15183                                    to the XHTML-compliant non-breaking space character '&#160;')
15184 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
15185 progress          Boolean          True to display a progress bar (defaults to false)
15186 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
15187 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
15188 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
15189 title             String           The title text
15190 value             String           The string value to set into the active textbox element if displayed
15191 wait              Boolean          True to display a progress bar (defaults to false)
15192 width             Number           The width of the dialog in pixels
15193 </pre>
15194          *
15195          * Example usage:
15196          * <pre><code>
15197 Roo.Msg.show({
15198    title: 'Address',
15199    msg: 'Please enter your address:',
15200    width: 300,
15201    buttons: Roo.MessageBox.OKCANCEL,
15202    multiline: true,
15203    fn: saveAddress,
15204    animEl: 'addAddressBtn'
15205 });
15206 </code></pre>
15207          * @param {Object} config Configuration options
15208          * @return {Roo.MessageBox} This message box
15209          */
15210         show : function(options)
15211         {
15212             
15213             // this causes nightmares if you show one dialog after another
15214             // especially on callbacks..
15215              
15216             if(this.isVisible()){
15217                 
15218                 this.hide();
15219                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
15220                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
15221                 Roo.log("New Dialog Message:" +  options.msg )
15222                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
15223                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
15224                 
15225             }
15226             var d = this.getDialog();
15227             opt = options;
15228             d.setTitle(opt.title || "&#160;");
15229             d.close.setDisplayed(opt.closable !== false);
15230             activeTextEl = textboxEl;
15231             opt.prompt = opt.prompt || (opt.multiline ? true : false);
15232             if(opt.prompt){
15233                 if(opt.multiline){
15234                     textboxEl.hide();
15235                     textareaEl.show();
15236                     textareaEl.setHeight(typeof opt.multiline == "number" ?
15237                         opt.multiline : this.defaultTextHeight);
15238                     activeTextEl = textareaEl;
15239                 }else{
15240                     textboxEl.show();
15241                     textareaEl.hide();
15242                 }
15243             }else{
15244                 textboxEl.hide();
15245                 textareaEl.hide();
15246             }
15247             progressEl.setDisplayed(opt.progress === true);
15248             this.updateProgress(0);
15249             activeTextEl.dom.value = opt.value || "";
15250             if(opt.prompt){
15251                 dlg.setDefaultButton(activeTextEl);
15252             }else{
15253                 var bs = opt.buttons;
15254                 var db = null;
15255                 if(bs && bs.ok){
15256                     db = buttons["ok"];
15257                 }else if(bs && bs.yes){
15258                     db = buttons["yes"];
15259                 }
15260                 dlg.setDefaultButton(db);
15261             }
15262             bwidth = updateButtons(opt.buttons);
15263             this.updateText(opt.msg);
15264             if(opt.cls){
15265                 d.el.addClass(opt.cls);
15266             }
15267             d.proxyDrag = opt.proxyDrag === true;
15268             d.modal = opt.modal !== false;
15269             d.mask = opt.modal !== false ? mask : false;
15270             if(!d.isVisible()){
15271                 // force it to the end of the z-index stack so it gets a cursor in FF
15272                 document.body.appendChild(dlg.el.dom);
15273                 d.animateTarget = null;
15274                 d.show(options.animEl);
15275             }
15276             return this;
15277         },
15278
15279         /**
15280          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
15281          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
15282          * and closing the message box when the process is complete.
15283          * @param {String} title The title bar text
15284          * @param {String} msg The message box body text
15285          * @return {Roo.MessageBox} This message box
15286          */
15287         progress : function(title, msg){
15288             this.show({
15289                 title : title,
15290                 msg : msg,
15291                 buttons: false,
15292                 progress:true,
15293                 closable:false,
15294                 minWidth: this.minProgressWidth,
15295                 modal : true
15296             });
15297             return this;
15298         },
15299
15300         /**
15301          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
15302          * If a callback function is passed it will be called after the user clicks the button, and the
15303          * id of the button that was clicked will be passed as the only parameter to the callback
15304          * (could also be the top-right close button).
15305          * @param {String} title The title bar text
15306          * @param {String} msg The message box body text
15307          * @param {Function} fn (optional) The callback function invoked after the message box is closed
15308          * @param {Object} scope (optional) The scope of the callback function
15309          * @return {Roo.MessageBox} This message box
15310          */
15311         alert : function(title, msg, fn, scope){
15312             this.show({
15313                 title : title,
15314                 msg : msg,
15315                 buttons: this.OK,
15316                 fn: fn,
15317                 scope : scope,
15318                 modal : true
15319             });
15320             return this;
15321         },
15322
15323         /**
15324          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
15325          * interaction while waiting for a long-running process to complete that does not have defined intervals.
15326          * You are responsible for closing the message box when the process is complete.
15327          * @param {String} msg The message box body text
15328          * @param {String} title (optional) The title bar text
15329          * @return {Roo.MessageBox} This message box
15330          */
15331         wait : function(msg, title){
15332             this.show({
15333                 title : title,
15334                 msg : msg,
15335                 buttons: false,
15336                 closable:false,
15337                 progress:true,
15338                 modal:true,
15339                 width:300,
15340                 wait:true
15341             });
15342             waitTimer = Roo.TaskMgr.start({
15343                 run: function(i){
15344                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
15345                 },
15346                 interval: 1000
15347             });
15348             return this;
15349         },
15350
15351         /**
15352          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
15353          * If a callback function is passed it will be called after the user clicks either button, and the id of the
15354          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
15355          * @param {String} title The title bar text
15356          * @param {String} msg The message box body text
15357          * @param {Function} fn (optional) The callback function invoked after the message box is closed
15358          * @param {Object} scope (optional) The scope of the callback function
15359          * @return {Roo.MessageBox} This message box
15360          */
15361         confirm : function(title, msg, fn, scope){
15362             this.show({
15363                 title : title,
15364                 msg : msg,
15365                 buttons: this.YESNO,
15366                 fn: fn,
15367                 scope : scope,
15368                 modal : true
15369             });
15370             return this;
15371         },
15372
15373         /**
15374          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
15375          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
15376          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
15377          * (could also be the top-right close button) and the text that was entered will be passed as the two
15378          * parameters to the callback.
15379          * @param {String} title The title bar text
15380          * @param {String} msg The message box body text
15381          * @param {Function} fn (optional) The callback function invoked after the message box is closed
15382          * @param {Object} scope (optional) The scope of the callback function
15383          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
15384          * property, or the height in pixels to create the textbox (defaults to false / single-line)
15385          * @return {Roo.MessageBox} This message box
15386          */
15387         prompt : function(title, msg, fn, scope, multiline){
15388             this.show({
15389                 title : title,
15390                 msg : msg,
15391                 buttons: this.OKCANCEL,
15392                 fn: fn,
15393                 minWidth:250,
15394                 scope : scope,
15395                 prompt:true,
15396                 multiline: multiline,
15397                 modal : true
15398             });
15399             return this;
15400         },
15401
15402         /**
15403          * Button config that displays a single OK button
15404          * @type Object
15405          */
15406         OK : {ok:true},
15407         /**
15408          * Button config that displays Yes and No buttons
15409          * @type Object
15410          */
15411         YESNO : {yes:true, no:true},
15412         /**
15413          * Button config that displays OK and Cancel buttons
15414          * @type Object
15415          */
15416         OKCANCEL : {ok:true, cancel:true},
15417         /**
15418          * Button config that displays Yes, No and Cancel buttons
15419          * @type Object
15420          */
15421         YESNOCANCEL : {yes:true, no:true, cancel:true},
15422
15423         /**
15424          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
15425          * @type Number
15426          */
15427         defaultTextHeight : 75,
15428         /**
15429          * The maximum width in pixels of the message box (defaults to 600)
15430          * @type Number
15431          */
15432         maxWidth : 600,
15433         /**
15434          * The minimum width in pixels of the message box (defaults to 100)
15435          * @type Number
15436          */
15437         minWidth : 100,
15438         /**
15439          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
15440          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
15441          * @type Number
15442          */
15443         minProgressWidth : 250,
15444         /**
15445          * An object containing the default button text strings that can be overriden for localized language support.
15446          * Supported properties are: ok, cancel, yes and no.
15447          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
15448          * @type Object
15449          */
15450         buttonText : {
15451             ok : "OK",
15452             cancel : "Cancel",
15453             yes : "Yes",
15454             no : "No"
15455         }
15456     };
15457 }();
15458
15459 /**
15460  * Shorthand for {@link Roo.MessageBox}
15461  */
15462 Roo.Msg = Roo.MessageBox;/*
15463  * Based on:
15464  * Ext JS Library 1.1.1
15465  * Copyright(c) 2006-2007, Ext JS, LLC.
15466  *
15467  * Originally Released Under LGPL - original licence link has changed is not relivant.
15468  *
15469  * Fork - LGPL
15470  * <script type="text/javascript">
15471  */
15472 /**
15473  * @class Roo.QuickTips
15474  * Provides attractive and customizable tooltips for any element.
15475  * @singleton
15476  */
15477 Roo.QuickTips = function(){
15478     var el, tipBody, tipBodyText, tipTitle, tm, cfg, close, tagEls = {}, esc, removeCls = null, bdLeft, bdRight;
15479     var ce, bd, xy, dd;
15480     var visible = false, disabled = true, inited = false;
15481     var showProc = 1, hideProc = 1, dismissProc = 1, locks = [];
15482     
15483     var onOver = function(e){
15484         if(disabled){
15485             return;
15486         }
15487         var t = e.getTarget();
15488         if(!t || t.nodeType !== 1 || t == document || t == document.body){
15489             return;
15490         }
15491         if(ce && t == ce.el){
15492             clearTimeout(hideProc);
15493             return;
15494         }
15495         if(t && tagEls[t.id]){
15496             tagEls[t.id].el = t;
15497             showProc = show.defer(tm.showDelay, tm, [tagEls[t.id]]);
15498             return;
15499         }
15500         var ttp, et = Roo.fly(t);
15501         var ns = cfg.namespace;
15502         if(tm.interceptTitles && t.title){
15503             ttp = t.title;
15504             t.qtip = ttp;
15505             t.removeAttribute("title");
15506             e.preventDefault();
15507         }else{
15508             ttp = t.qtip || et.getAttributeNS(ns, cfg.attribute);
15509         }
15510         if(ttp){
15511             showProc = show.defer(tm.showDelay, tm, [{
15512                 el: t, 
15513                 text: ttp, 
15514                 width: et.getAttributeNS(ns, cfg.width),
15515                 autoHide: et.getAttributeNS(ns, cfg.hide) != "user",
15516                 title: et.getAttributeNS(ns, cfg.title),
15517                     cls: et.getAttributeNS(ns, cfg.cls)
15518             }]);
15519         }
15520     };
15521     
15522     var onOut = function(e){
15523         clearTimeout(showProc);
15524         var t = e.getTarget();
15525         if(t && ce && ce.el == t && (tm.autoHide && ce.autoHide !== false)){
15526             hideProc = setTimeout(hide, tm.hideDelay);
15527         }
15528     };
15529     
15530     var onMove = function(e){
15531         if(disabled){
15532             return;
15533         }
15534         xy = e.getXY();
15535         xy[1] += 18;
15536         if(tm.trackMouse && ce){
15537             el.setXY(xy);
15538         }
15539     };
15540     
15541     var onDown = function(e){
15542         clearTimeout(showProc);
15543         clearTimeout(hideProc);
15544         if(!e.within(el)){
15545             if(tm.hideOnClick){
15546                 hide();
15547                 tm.disable();
15548                 tm.enable.defer(100, tm);
15549             }
15550         }
15551     };
15552     
15553     var getPad = function(){
15554         return 2;//bdLeft.getPadding('l')+bdRight.getPadding('r');
15555     };
15556
15557     var show = function(o){
15558         if(disabled){
15559             return;
15560         }
15561         clearTimeout(dismissProc);
15562         ce = o;
15563         if(removeCls){ // in case manually hidden
15564             el.removeClass(removeCls);
15565             removeCls = null;
15566         }
15567         if(ce.cls){
15568             el.addClass(ce.cls);
15569             removeCls = ce.cls;
15570         }
15571         if(ce.title){
15572             tipTitle.update(ce.title);
15573             tipTitle.show();
15574         }else{
15575             tipTitle.update('');
15576             tipTitle.hide();
15577         }
15578         el.dom.style.width  = tm.maxWidth+'px';
15579         //tipBody.dom.style.width = '';
15580         tipBodyText.update(o.text);
15581         var p = getPad(), w = ce.width;
15582         if(!w){
15583             var td = tipBodyText.dom;
15584             var aw = Math.max(td.offsetWidth, td.clientWidth, td.scrollWidth);
15585             if(aw > tm.maxWidth){
15586                 w = tm.maxWidth;
15587             }else if(aw < tm.minWidth){
15588                 w = tm.minWidth;
15589             }else{
15590                 w = aw;
15591             }
15592         }
15593         //tipBody.setWidth(w);
15594         el.setWidth(parseInt(w, 10) + p);
15595         if(ce.autoHide === false){
15596             close.setDisplayed(true);
15597             if(dd){
15598                 dd.unlock();
15599             }
15600         }else{
15601             close.setDisplayed(false);
15602             if(dd){
15603                 dd.lock();
15604             }
15605         }
15606         if(xy){
15607             el.avoidY = xy[1]-18;
15608             el.setXY(xy);
15609         }
15610         if(tm.animate){
15611             el.setOpacity(.1);
15612             el.setStyle("visibility", "visible");
15613             el.fadeIn({callback: afterShow});
15614         }else{
15615             afterShow();
15616         }
15617     };
15618     
15619     var afterShow = function(){
15620         if(ce){
15621             el.show();
15622             esc.enable();
15623             if(tm.autoDismiss && ce.autoHide !== false){
15624                 dismissProc = setTimeout(hide, tm.autoDismissDelay);
15625             }
15626         }
15627     };
15628     
15629     var hide = function(noanim){
15630         clearTimeout(dismissProc);
15631         clearTimeout(hideProc);
15632         ce = null;
15633         if(el.isVisible()){
15634             esc.disable();
15635             if(noanim !== true && tm.animate){
15636                 el.fadeOut({callback: afterHide});
15637             }else{
15638                 afterHide();
15639             } 
15640         }
15641     };
15642     
15643     var afterHide = function(){
15644         el.hide();
15645         if(removeCls){
15646             el.removeClass(removeCls);
15647             removeCls = null;
15648         }
15649     };
15650     
15651     return {
15652         /**
15653         * @cfg {Number} minWidth
15654         * The minimum width of the quick tip (defaults to 40)
15655         */
15656        minWidth : 40,
15657         /**
15658         * @cfg {Number} maxWidth
15659         * The maximum width of the quick tip (defaults to 300)
15660         */
15661        maxWidth : 300,
15662         /**
15663         * @cfg {Boolean} interceptTitles
15664         * True to automatically use the element's DOM title value if available (defaults to false)
15665         */
15666        interceptTitles : false,
15667         /**
15668         * @cfg {Boolean} trackMouse
15669         * True to have the quick tip follow the mouse as it moves over the target element (defaults to false)
15670         */
15671        trackMouse : false,
15672         /**
15673         * @cfg {Boolean} hideOnClick
15674         * True to hide the quick tip if the user clicks anywhere in the document (defaults to true)
15675         */
15676        hideOnClick : true,
15677         /**
15678         * @cfg {Number} showDelay
15679         * Delay in milliseconds before the quick tip displays after the mouse enters the target element (defaults to 500)
15680         */
15681        showDelay : 500,
15682         /**
15683         * @cfg {Number} hideDelay
15684         * Delay in milliseconds before the quick tip hides when autoHide = true (defaults to 200)
15685         */
15686        hideDelay : 200,
15687         /**
15688         * @cfg {Boolean} autoHide
15689         * True to automatically hide the quick tip after the mouse exits the target element (defaults to true).
15690         * Used in conjunction with hideDelay.
15691         */
15692        autoHide : true,
15693         /**
15694         * @cfg {Boolean}
15695         * True to automatically hide the quick tip after a set period of time, regardless of the user's actions
15696         * (defaults to true).  Used in conjunction with autoDismissDelay.
15697         */
15698        autoDismiss : true,
15699         /**
15700         * @cfg {Number}
15701         * Delay in milliseconds before the quick tip hides when autoDismiss = true (defaults to 5000)
15702         */
15703        autoDismissDelay : 5000,
15704        /**
15705         * @cfg {Boolean} animate
15706         * True to turn on fade animation. Defaults to false (ClearType/scrollbar flicker issues in IE7).
15707         */
15708        animate : false,
15709
15710        /**
15711         * @cfg {String} title
15712         * Title text to display (defaults to '').  This can be any valid HTML markup.
15713         */
15714         title: '',
15715        /**
15716         * @cfg {String} text
15717         * Body text to display (defaults to '').  This can be any valid HTML markup.
15718         */
15719         text : '',
15720        /**
15721         * @cfg {String} cls
15722         * A CSS class to apply to the base quick tip element (defaults to '').
15723         */
15724         cls : '',
15725        /**
15726         * @cfg {Number} width
15727         * Width in pixels of the quick tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
15728         * minWidth or maxWidth.
15729         */
15730         width : null,
15731
15732     /**
15733      * Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access
15734      * or display QuickTips in a page.
15735      */
15736        init : function(){
15737           tm = Roo.QuickTips;
15738           cfg = tm.tagConfig;
15739           if(!inited){
15740               if(!Roo.isReady){ // allow calling of init() before onReady
15741                   Roo.onReady(Roo.QuickTips.init, Roo.QuickTips);
15742                   return;
15743               }
15744               el = new Roo.Layer({cls:"x-tip", shadow:"drop", shim: true, constrain:true, shadowOffset:4});
15745               el.fxDefaults = {stopFx: true};
15746               // maximum custom styling
15747               //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>');
15748               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>');              
15749               tipTitle = el.child('h3');
15750               tipTitle.enableDisplayMode("block");
15751               tipBody = el.child('div.x-tip-bd');
15752               tipBodyText = el.child('div.x-tip-bd-inner');
15753               //bdLeft = el.child('div.x-tip-bd-left');
15754               //bdRight = el.child('div.x-tip-bd-right');
15755               close = el.child('div.x-tip-close');
15756               close.enableDisplayMode("block");
15757               close.on("click", hide);
15758               var d = Roo.get(document);
15759               d.on("mousedown", onDown);
15760               d.on("mouseover", onOver);
15761               d.on("mouseout", onOut);
15762               d.on("mousemove", onMove);
15763               esc = d.addKeyListener(27, hide);
15764               esc.disable();
15765               if(Roo.dd.DD){
15766                   dd = el.initDD("default", null, {
15767                       onDrag : function(){
15768                           el.sync();  
15769                       }
15770                   });
15771                   dd.setHandleElId(tipTitle.id);
15772                   dd.lock();
15773               }
15774               inited = true;
15775           }
15776           this.enable(); 
15777        },
15778
15779     /**
15780      * Configures a new quick tip instance and assigns it to a target element.  The following config options
15781      * are supported:
15782      * <pre>
15783 Property    Type                   Description
15784 ----------  ---------------------  ------------------------------------------------------------------------
15785 target      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to
15786      * </ul>
15787      * @param {Object} config The config object
15788      */
15789        register : function(config){
15790            var cs = config instanceof Array ? config : arguments;
15791            for(var i = 0, len = cs.length; i < len; i++) {
15792                var c = cs[i];
15793                var target = c.target;
15794                if(target){
15795                    if(target instanceof Array){
15796                        for(var j = 0, jlen = target.length; j < jlen; j++){
15797                            tagEls[target[j]] = c;
15798                        }
15799                    }else{
15800                        tagEls[typeof target == 'string' ? target : Roo.id(target)] = c;
15801                    }
15802                }
15803            }
15804        },
15805
15806     /**
15807      * Removes this quick tip from its element and destroys it.
15808      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
15809      */
15810        unregister : function(el){
15811            delete tagEls[Roo.id(el)];
15812        },
15813
15814     /**
15815      * Enable this quick tip.
15816      */
15817        enable : function(){
15818            if(inited && disabled){
15819                locks.pop();
15820                if(locks.length < 1){
15821                    disabled = false;
15822                }
15823            }
15824        },
15825
15826     /**
15827      * Disable this quick tip.
15828      */
15829        disable : function(){
15830           disabled = true;
15831           clearTimeout(showProc);
15832           clearTimeout(hideProc);
15833           clearTimeout(dismissProc);
15834           if(ce){
15835               hide(true);
15836           }
15837           locks.push(1);
15838        },
15839
15840     /**
15841      * Returns true if the quick tip is enabled, else false.
15842      */
15843        isEnabled : function(){
15844             return !disabled;
15845        },
15846
15847         // private
15848        tagConfig : {
15849            namespace : "ext",
15850            attribute : "qtip",
15851            width : "width",
15852            target : "target",
15853            title : "qtitle",
15854            hide : "hide",
15855            cls : "qclass"
15856        }
15857    };
15858 }();
15859
15860 // backwards compat
15861 Roo.QuickTips.tips = Roo.QuickTips.register;/*
15862  * Based on:
15863  * Ext JS Library 1.1.1
15864  * Copyright(c) 2006-2007, Ext JS, LLC.
15865  *
15866  * Originally Released Under LGPL - original licence link has changed is not relivant.
15867  *
15868  * Fork - LGPL
15869  * <script type="text/javascript">
15870  */
15871  
15872
15873 /**
15874  * @class Roo.tree.TreePanel
15875  * @extends Roo.data.Tree
15876
15877  * @cfg {Boolean} rootVisible false to hide the root node (defaults to true)
15878  * @cfg {Boolean} lines false to disable tree lines (defaults to true)
15879  * @cfg {Boolean} enableDD true to enable drag and drop
15880  * @cfg {Boolean} enableDrag true to enable just drag
15881  * @cfg {Boolean} enableDrop true to enable just drop
15882  * @cfg {Object} dragConfig Custom config to pass to the {@link Roo.tree.TreeDragZone} instance
15883  * @cfg {Object} dropConfig Custom config to pass to the {@link Roo.tree.TreeDropZone} instance
15884  * @cfg {String} ddGroup The DD group this TreePanel belongs to
15885  * @cfg {String} ddAppendOnly True if the tree should only allow append drops (use for trees which are sorted)
15886  * @cfg {Boolean} ddScroll true to enable YUI body scrolling
15887  * @cfg {Boolean} containerScroll true to register this container with ScrollManager
15888  * @cfg {Boolean} hlDrop false to disable node highlight on drop (defaults to the value of Roo.enableFx)
15889  * @cfg {String} hlColor The color of the node highlight (defaults to C3DAF9)
15890  * @cfg {Boolean} animate true to enable animated expand/collapse (defaults to the value of Roo.enableFx)
15891  * @cfg {Boolean} singleExpand true if only 1 node per branch may be expanded
15892  * @cfg {Boolean} selModel A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})
15893  * @cfg {Boolean} loader A TreeLoader for use with this TreePanel
15894  * @cfg {Object|Roo.tree.TreeEditor} editor The TreeEditor or xtype data to display when clicked.
15895  * @cfg {String} pathSeparator The token used to separate sub-paths in path strings (defaults to '/')
15896  * @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>
15897  * @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>
15898  * 
15899  * @constructor
15900  * @param {String/HTMLElement/Element} el The container element
15901  * @param {Object} config
15902  */
15903 Roo.tree.TreePanel = function(el, config){
15904     var root = false;
15905     var loader = false;
15906     if (config.root) {
15907         root = config.root;
15908         delete config.root;
15909     }
15910     if (config.loader) {
15911         loader = config.loader;
15912         delete config.loader;
15913     }
15914     
15915     Roo.apply(this, config);
15916     Roo.tree.TreePanel.superclass.constructor.call(this);
15917     this.el = Roo.get(el);
15918     this.el.addClass('x-tree');
15919     //console.log(root);
15920     if (root) {
15921         this.setRootNode( Roo.factory(root, Roo.tree));
15922     }
15923     if (loader) {
15924         this.loader = Roo.factory(loader, Roo.tree);
15925     }
15926    /**
15927     * Read-only. The id of the container element becomes this TreePanel's id.
15928     */
15929     this.id = this.el.id;
15930     this.addEvents({
15931         /**
15932         * @event beforeload
15933         * Fires before a node is loaded, return false to cancel
15934         * @param {Node} node The node being loaded
15935         */
15936         "beforeload" : true,
15937         /**
15938         * @event load
15939         * Fires when a node is loaded
15940         * @param {Node} node The node that was loaded
15941         */
15942         "load" : true,
15943         /**
15944         * @event textchange
15945         * Fires when the text for a node is changed
15946         * @param {Node} node The node
15947         * @param {String} text The new text
15948         * @param {String} oldText The old text
15949         */
15950         "textchange" : true,
15951         /**
15952         * @event beforeexpand
15953         * Fires before a node is expanded, return false to cancel.
15954         * @param {Node} node The node
15955         * @param {Boolean} deep
15956         * @param {Boolean} anim
15957         */
15958         "beforeexpand" : true,
15959         /**
15960         * @event beforecollapse
15961         * Fires before a node is collapsed, return false to cancel.
15962         * @param {Node} node The node
15963         * @param {Boolean} deep
15964         * @param {Boolean} anim
15965         */
15966         "beforecollapse" : true,
15967         /**
15968         * @event expand
15969         * Fires when a node is expanded
15970         * @param {Node} node The node
15971         */
15972         "expand" : true,
15973         /**
15974         * @event disabledchange
15975         * Fires when the disabled status of a node changes
15976         * @param {Node} node The node
15977         * @param {Boolean} disabled
15978         */
15979         "disabledchange" : true,
15980         /**
15981         * @event collapse
15982         * Fires when a node is collapsed
15983         * @param {Node} node The node
15984         */
15985         "collapse" : true,
15986         /**
15987         * @event beforeclick
15988         * Fires before click processing on a node. Return false to cancel the default action.
15989         * @param {Node} node The node
15990         * @param {Roo.EventObject} e The event object
15991         */
15992         "beforeclick":true,
15993         /**
15994         * @event checkchange
15995         * Fires when a node with a checkbox's checked property changes
15996         * @param {Node} this This node
15997         * @param {Boolean} checked
15998         */
15999         "checkchange":true,
16000         /**
16001         * @event click
16002         * Fires when a node is clicked
16003         * @param {Node} node The node
16004         * @param {Roo.EventObject} e The event object
16005         */
16006         "click":true,
16007         /**
16008         * @event dblclick
16009         * Fires when a node is double clicked
16010         * @param {Node} node The node
16011         * @param {Roo.EventObject} e The event object
16012         */
16013         "dblclick":true,
16014         /**
16015         * @event contextmenu
16016         * Fires when a node is right clicked
16017         * @param {Node} node The node
16018         * @param {Roo.EventObject} e The event object
16019         */
16020         "contextmenu":true,
16021         /**
16022         * @event beforechildrenrendered
16023         * Fires right before the child nodes for a node are rendered
16024         * @param {Node} node The node
16025         */
16026         "beforechildrenrendered":true,
16027         /**
16028         * @event startdrag
16029         * Fires when a node starts being dragged
16030         * @param {Roo.tree.TreePanel} this
16031         * @param {Roo.tree.TreeNode} node
16032         * @param {event} e The raw browser event
16033         */ 
16034        "startdrag" : true,
16035        /**
16036         * @event enddrag
16037         * Fires when a drag operation is complete
16038         * @param {Roo.tree.TreePanel} this
16039         * @param {Roo.tree.TreeNode} node
16040         * @param {event} e The raw browser event
16041         */
16042        "enddrag" : true,
16043        /**
16044         * @event dragdrop
16045         * Fires when a dragged node is dropped on a valid DD target
16046         * @param {Roo.tree.TreePanel} this
16047         * @param {Roo.tree.TreeNode} node
16048         * @param {DD} dd The dd it was dropped on
16049         * @param {event} e The raw browser event
16050         */
16051        "dragdrop" : true,
16052        /**
16053         * @event beforenodedrop
16054         * Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. 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 - Drop node(s) provided by the source <b>OR</b> you can supply node(s)
16064         * to be inserted by setting them on this object.</li>
16065         * <li>cancel - Set this to true to cancel the drop.</li>
16066         * </ul>
16067         * @param {Object} dropEvent
16068         */
16069        "beforenodedrop" : true,
16070        /**
16071         * @event nodedrop
16072         * Fires after a DD object is dropped on a node in this tree. The dropEvent
16073         * passed to handlers has the following properties:<br />
16074         * <ul style="padding:5px;padding-left:16px;">
16075         * <li>tree - The TreePanel</li>
16076         * <li>target - The node being targeted for the drop</li>
16077         * <li>data - The drag data from the drag source</li>
16078         * <li>point - The point of the drop - append, above or below</li>
16079         * <li>source - The drag source</li>
16080         * <li>rawEvent - Raw mouse event</li>
16081         * <li>dropNode - Dropped node(s).</li>
16082         * </ul>
16083         * @param {Object} dropEvent
16084         */
16085        "nodedrop" : true,
16086         /**
16087         * @event nodedragover
16088         * Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent
16089         * passed to handlers has the following properties:<br />
16090         * <ul style="padding:5px;padding-left:16px;">
16091         * <li>tree - The TreePanel</li>
16092         * <li>target - The node being targeted for the drop</li>
16093         * <li>data - The drag data from the drag source</li>
16094         * <li>point - The point of the drop - append, above or below</li>
16095         * <li>source - The drag source</li>
16096         * <li>rawEvent - Raw mouse event</li>
16097         * <li>dropNode - Drop node(s) provided by the source.</li>
16098         * <li>cancel - Set this to true to signal drop not allowed.</li>
16099         * </ul>
16100         * @param {Object} dragOverEvent
16101         */
16102        "nodedragover" : true
16103         
16104     });
16105     if(this.singleExpand){
16106        this.on("beforeexpand", this.restrictExpand, this);
16107     }
16108     if (this.editor) {
16109         this.editor.tree = this;
16110         this.editor = Roo.factory(this.editor, Roo.tree);
16111     }
16112     
16113     if (this.selModel) {
16114         this.selModel = Roo.factory(this.selModel, Roo.tree);
16115     }
16116    
16117 };
16118 Roo.extend(Roo.tree.TreePanel, Roo.data.Tree, {
16119     rootVisible : true,
16120     animate: Roo.enableFx,
16121     lines : true,
16122     enableDD : false,
16123     hlDrop : Roo.enableFx,
16124   
16125     renderer: false,
16126     
16127     rendererTip: false,
16128     // private
16129     restrictExpand : function(node){
16130         var p = node.parentNode;
16131         if(p){
16132             if(p.expandedChild && p.expandedChild.parentNode == p){
16133                 p.expandedChild.collapse();
16134             }
16135             p.expandedChild = node;
16136         }
16137     },
16138
16139     // private override
16140     setRootNode : function(node){
16141         Roo.tree.TreePanel.superclass.setRootNode.call(this, node);
16142         if(!this.rootVisible){
16143             node.ui = new Roo.tree.RootTreeNodeUI(node);
16144         }
16145         return node;
16146     },
16147
16148     /**
16149      * Returns the container element for this TreePanel
16150      */
16151     getEl : function(){
16152         return this.el;
16153     },
16154
16155     /**
16156      * Returns the default TreeLoader for this TreePanel
16157      */
16158     getLoader : function(){
16159         return this.loader;
16160     },
16161
16162     /**
16163      * Expand all nodes
16164      */
16165     expandAll : function(){
16166         this.root.expand(true);
16167     },
16168
16169     /**
16170      * Collapse all nodes
16171      */
16172     collapseAll : function(){
16173         this.root.collapse(true);
16174     },
16175
16176     /**
16177      * Returns the selection model used by this TreePanel
16178      */
16179     getSelectionModel : function(){
16180         if(!this.selModel){
16181             this.selModel = new Roo.tree.DefaultSelectionModel();
16182         }
16183         return this.selModel;
16184     },
16185
16186     /**
16187      * Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. "id")
16188      * @param {String} attribute (optional) Defaults to null (return the actual nodes)
16189      * @param {TreeNode} startNode (optional) The node to start from, defaults to the root
16190      * @return {Array}
16191      */
16192     getChecked : function(a, startNode){
16193         startNode = startNode || this.root;
16194         var r = [];
16195         var f = function(){
16196             if(this.attributes.checked){
16197                 r.push(!a ? this : (a == 'id' ? this.id : this.attributes[a]));
16198             }
16199         }
16200         startNode.cascade(f);
16201         return r;
16202     },
16203
16204     /**
16205      * Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
16206      * @param {String} path
16207      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
16208      * @param {Function} callback (optional) The callback to call when the expand is complete. The callback will be called with
16209      * (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.
16210      */
16211     expandPath : function(path, attr, callback){
16212         attr = attr || "id";
16213         var keys = path.split(this.pathSeparator);
16214         var curNode = this.root;
16215         if(curNode.attributes[attr] != keys[1]){ // invalid root
16216             if(callback){
16217                 callback(false, null);
16218             }
16219             return;
16220         }
16221         var index = 1;
16222         var f = function(){
16223             if(++index == keys.length){
16224                 if(callback){
16225                     callback(true, curNode);
16226                 }
16227                 return;
16228             }
16229             var c = curNode.findChild(attr, keys[index]);
16230             if(!c){
16231                 if(callback){
16232                     callback(false, curNode);
16233                 }
16234                 return;
16235             }
16236             curNode = c;
16237             c.expand(false, false, f);
16238         };
16239         curNode.expand(false, false, f);
16240     },
16241
16242     /**
16243      * Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
16244      * @param {String} path
16245      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
16246      * @param {Function} callback (optional) The callback to call when the selection is complete. The callback will be called with
16247      * (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.
16248      */
16249     selectPath : function(path, attr, callback){
16250         attr = attr || "id";
16251         var keys = path.split(this.pathSeparator);
16252         var v = keys.pop();
16253         if(keys.length > 0){
16254             var f = function(success, node){
16255                 if(success && node){
16256                     var n = node.findChild(attr, v);
16257                     if(n){
16258                         n.select();
16259                         if(callback){
16260                             callback(true, n);
16261                         }
16262                     }else if(callback){
16263                         callback(false, n);
16264                     }
16265                 }else{
16266                     if(callback){
16267                         callback(false, n);
16268                     }
16269                 }
16270             };
16271             this.expandPath(keys.join(this.pathSeparator), attr, f);
16272         }else{
16273             this.root.select();
16274             if(callback){
16275                 callback(true, this.root);
16276             }
16277         }
16278     },
16279
16280     getTreeEl : function(){
16281         return this.el;
16282     },
16283
16284     /**
16285      * Trigger rendering of this TreePanel
16286      */
16287     render : function(){
16288         if (this.innerCt) {
16289             return this; // stop it rendering more than once!!
16290         }
16291         
16292         this.innerCt = this.el.createChild({tag:"ul",
16293                cls:"x-tree-root-ct " +
16294                (this.lines ? "x-tree-lines" : "x-tree-no-lines")});
16295
16296         if(this.containerScroll){
16297             Roo.dd.ScrollManager.register(this.el);
16298         }
16299         if((this.enableDD || this.enableDrop) && !this.dropZone){
16300            /**
16301             * The dropZone used by this tree if drop is enabled
16302             * @type Roo.tree.TreeDropZone
16303             */
16304              this.dropZone = new Roo.tree.TreeDropZone(this, this.dropConfig || {
16305                ddGroup: this.ddGroup || "TreeDD", appendOnly: this.ddAppendOnly === true
16306            });
16307         }
16308         if((this.enableDD || this.enableDrag) && !this.dragZone){
16309            /**
16310             * The dragZone used by this tree if drag is enabled
16311             * @type Roo.tree.TreeDragZone
16312             */
16313             this.dragZone = new Roo.tree.TreeDragZone(this, this.dragConfig || {
16314                ddGroup: this.ddGroup || "TreeDD",
16315                scroll: this.ddScroll
16316            });
16317         }
16318         this.getSelectionModel().init(this);
16319         if (!this.root) {
16320             Roo.log("ROOT not set in tree");
16321             return this;
16322         }
16323         this.root.render();
16324         if(!this.rootVisible){
16325             this.root.renderChildren();
16326         }
16327         return this;
16328     }
16329 });/*
16330  * Based on:
16331  * Ext JS Library 1.1.1
16332  * Copyright(c) 2006-2007, Ext JS, LLC.
16333  *
16334  * Originally Released Under LGPL - original licence link has changed is not relivant.
16335  *
16336  * Fork - LGPL
16337  * <script type="text/javascript">
16338  */
16339  
16340
16341 /**
16342  * @class Roo.tree.DefaultSelectionModel
16343  * @extends Roo.util.Observable
16344  * The default single selection for a TreePanel.
16345  * @param {Object} cfg Configuration
16346  */
16347 Roo.tree.DefaultSelectionModel = function(cfg){
16348    this.selNode = null;
16349    
16350    
16351    
16352    this.addEvents({
16353        /**
16354         * @event selectionchange
16355         * Fires when the selected node changes
16356         * @param {DefaultSelectionModel} this
16357         * @param {TreeNode} node the new selection
16358         */
16359        "selectionchange" : true,
16360
16361        /**
16362         * @event beforeselect
16363         * Fires before the selected node changes, return false to cancel the change
16364         * @param {DefaultSelectionModel} this
16365         * @param {TreeNode} node the new selection
16366         * @param {TreeNode} node the old selection
16367         */
16368        "beforeselect" : true
16369    });
16370    
16371     Roo.tree.DefaultSelectionModel.superclass.constructor.call(this,cfg);
16372 };
16373
16374 Roo.extend(Roo.tree.DefaultSelectionModel, Roo.util.Observable, {
16375     init : function(tree){
16376         this.tree = tree;
16377         tree.getTreeEl().on("keydown", this.onKeyDown, this);
16378         tree.on("click", this.onNodeClick, this);
16379     },
16380     
16381     onNodeClick : function(node, e){
16382         if (e.ctrlKey && this.selNode == node)  {
16383             this.unselect(node);
16384             return;
16385         }
16386         this.select(node);
16387     },
16388     
16389     /**
16390      * Select a node.
16391      * @param {TreeNode} node The node to select
16392      * @return {TreeNode} The selected node
16393      */
16394     select : function(node){
16395         var last = this.selNode;
16396         if(last != node && this.fireEvent('beforeselect', this, node, last) !== false){
16397             if(last){
16398                 last.ui.onSelectedChange(false);
16399             }
16400             this.selNode = node;
16401             node.ui.onSelectedChange(true);
16402             this.fireEvent("selectionchange", this, node, last);
16403         }
16404         return node;
16405     },
16406     
16407     /**
16408      * Deselect a node.
16409      * @param {TreeNode} node The node to unselect
16410      */
16411     unselect : function(node){
16412         if(this.selNode == node){
16413             this.clearSelections();
16414         }    
16415     },
16416     
16417     /**
16418      * Clear all selections
16419      */
16420     clearSelections : function(){
16421         var n = this.selNode;
16422         if(n){
16423             n.ui.onSelectedChange(false);
16424             this.selNode = null;
16425             this.fireEvent("selectionchange", this, null);
16426         }
16427         return n;
16428     },
16429     
16430     /**
16431      * Get the selected node
16432      * @return {TreeNode} The selected node
16433      */
16434     getSelectedNode : function(){
16435         return this.selNode;    
16436     },
16437     
16438     /**
16439      * Returns true if the node is selected
16440      * @param {TreeNode} node The node to check
16441      * @return {Boolean}
16442      */
16443     isSelected : function(node){
16444         return this.selNode == node;  
16445     },
16446
16447     /**
16448      * Selects the node above the selected node in the tree, intelligently walking the nodes
16449      * @return TreeNode The new selection
16450      */
16451     selectPrevious : function(){
16452         var s = this.selNode || this.lastSelNode;
16453         if(!s){
16454             return null;
16455         }
16456         var ps = s.previousSibling;
16457         if(ps){
16458             if(!ps.isExpanded() || ps.childNodes.length < 1){
16459                 return this.select(ps);
16460             } else{
16461                 var lc = ps.lastChild;
16462                 while(lc && lc.isExpanded() && lc.childNodes.length > 0){
16463                     lc = lc.lastChild;
16464                 }
16465                 return this.select(lc);
16466             }
16467         } else if(s.parentNode && (this.tree.rootVisible || !s.parentNode.isRoot)){
16468             return this.select(s.parentNode);
16469         }
16470         return null;
16471     },
16472
16473     /**
16474      * Selects the node above the selected node in the tree, intelligently walking the nodes
16475      * @return TreeNode The new selection
16476      */
16477     selectNext : function(){
16478         var s = this.selNode || this.lastSelNode;
16479         if(!s){
16480             return null;
16481         }
16482         if(s.firstChild && s.isExpanded()){
16483              return this.select(s.firstChild);
16484          }else if(s.nextSibling){
16485              return this.select(s.nextSibling);
16486          }else if(s.parentNode){
16487             var newS = null;
16488             s.parentNode.bubble(function(){
16489                 if(this.nextSibling){
16490                     newS = this.getOwnerTree().selModel.select(this.nextSibling);
16491                     return false;
16492                 }
16493             });
16494             return newS;
16495          }
16496         return null;
16497     },
16498
16499     onKeyDown : function(e){
16500         var s = this.selNode || this.lastSelNode;
16501         // undesirable, but required
16502         var sm = this;
16503         if(!s){
16504             return;
16505         }
16506         var k = e.getKey();
16507         switch(k){
16508              case e.DOWN:
16509                  e.stopEvent();
16510                  this.selectNext();
16511              break;
16512              case e.UP:
16513                  e.stopEvent();
16514                  this.selectPrevious();
16515              break;
16516              case e.RIGHT:
16517                  e.preventDefault();
16518                  if(s.hasChildNodes()){
16519                      if(!s.isExpanded()){
16520                          s.expand();
16521                      }else if(s.firstChild){
16522                          this.select(s.firstChild, e);
16523                      }
16524                  }
16525              break;
16526              case e.LEFT:
16527                  e.preventDefault();
16528                  if(s.hasChildNodes() && s.isExpanded()){
16529                      s.collapse();
16530                  }else if(s.parentNode && (this.tree.rootVisible || s.parentNode != this.tree.getRootNode())){
16531                      this.select(s.parentNode, e);
16532                  }
16533              break;
16534         };
16535     }
16536 });
16537
16538 /**
16539  * @class Roo.tree.MultiSelectionModel
16540  * @extends Roo.util.Observable
16541  * Multi selection for a TreePanel.
16542  * @param {Object} cfg Configuration
16543  */
16544 Roo.tree.MultiSelectionModel = function(){
16545    this.selNodes = [];
16546    this.selMap = {};
16547    this.addEvents({
16548        /**
16549         * @event selectionchange
16550         * Fires when the selected nodes change
16551         * @param {MultiSelectionModel} this
16552         * @param {Array} nodes Array of the selected nodes
16553         */
16554        "selectionchange" : true
16555    });
16556    Roo.tree.MultiSelectionModel.superclass.constructor.call(this,cfg);
16557    
16558 };
16559
16560 Roo.extend(Roo.tree.MultiSelectionModel, Roo.util.Observable, {
16561     init : function(tree){
16562         this.tree = tree;
16563         tree.getTreeEl().on("keydown", this.onKeyDown, this);
16564         tree.on("click", this.onNodeClick, this);
16565     },
16566     
16567     onNodeClick : function(node, e){
16568         this.select(node, e, e.ctrlKey);
16569     },
16570     
16571     /**
16572      * Select a node.
16573      * @param {TreeNode} node The node to select
16574      * @param {EventObject} e (optional) An event associated with the selection
16575      * @param {Boolean} keepExisting True to retain existing selections
16576      * @return {TreeNode} The selected node
16577      */
16578     select : function(node, e, keepExisting){
16579         if(keepExisting !== true){
16580             this.clearSelections(true);
16581         }
16582         if(this.isSelected(node)){
16583             this.lastSelNode = node;
16584             return node;
16585         }
16586         this.selNodes.push(node);
16587         this.selMap[node.id] = node;
16588         this.lastSelNode = node;
16589         node.ui.onSelectedChange(true);
16590         this.fireEvent("selectionchange", this, this.selNodes);
16591         return node;
16592     },
16593     
16594     /**
16595      * Deselect a node.
16596      * @param {TreeNode} node The node to unselect
16597      */
16598     unselect : function(node){
16599         if(this.selMap[node.id]){
16600             node.ui.onSelectedChange(false);
16601             var sn = this.selNodes;
16602             var index = -1;
16603             if(sn.indexOf){
16604                 index = sn.indexOf(node);
16605             }else{
16606                 for(var i = 0, len = sn.length; i < len; i++){
16607                     if(sn[i] == node){
16608                         index = i;
16609                         break;
16610                     }
16611                 }
16612             }
16613             if(index != -1){
16614                 this.selNodes.splice(index, 1);
16615             }
16616             delete this.selMap[node.id];
16617             this.fireEvent("selectionchange", this, this.selNodes);
16618         }
16619     },
16620     
16621     /**
16622      * Clear all selections
16623      */
16624     clearSelections : function(suppressEvent){
16625         var sn = this.selNodes;
16626         if(sn.length > 0){
16627             for(var i = 0, len = sn.length; i < len; i++){
16628                 sn[i].ui.onSelectedChange(false);
16629             }
16630             this.selNodes = [];
16631             this.selMap = {};
16632             if(suppressEvent !== true){
16633                 this.fireEvent("selectionchange", this, this.selNodes);
16634             }
16635         }
16636     },
16637     
16638     /**
16639      * Returns true if the node is selected
16640      * @param {TreeNode} node The node to check
16641      * @return {Boolean}
16642      */
16643     isSelected : function(node){
16644         return this.selMap[node.id] ? true : false;  
16645     },
16646     
16647     /**
16648      * Returns an array of the selected nodes
16649      * @return {Array}
16650      */
16651     getSelectedNodes : function(){
16652         return this.selNodes;    
16653     },
16654
16655     onKeyDown : Roo.tree.DefaultSelectionModel.prototype.onKeyDown,
16656
16657     selectNext : Roo.tree.DefaultSelectionModel.prototype.selectNext,
16658
16659     selectPrevious : Roo.tree.DefaultSelectionModel.prototype.selectPrevious
16660 });/*
16661  * Based on:
16662  * Ext JS Library 1.1.1
16663  * Copyright(c) 2006-2007, Ext JS, LLC.
16664  *
16665  * Originally Released Under LGPL - original licence link has changed is not relivant.
16666  *
16667  * Fork - LGPL
16668  * <script type="text/javascript">
16669  */
16670  
16671 /**
16672  * @class Roo.tree.TreeNode
16673  * @extends Roo.data.Node
16674  * @cfg {String} text The text for this node
16675  * @cfg {Boolean} expanded true to start the node expanded
16676  * @cfg {Boolean} allowDrag false to make this node undraggable if DD is on (defaults to true)
16677  * @cfg {Boolean} allowDrop false if this node cannot be drop on
16678  * @cfg {Boolean} disabled true to start the node disabled
16679  * @cfg {String} icon The path to an icon for the node. The preferred way to do this
16680  * is to use the cls or iconCls attributes and add the icon via a CSS background image.
16681  * @cfg {String} cls A css class to be added to the node
16682  * @cfg {String} iconCls A css class to be added to the nodes icon element for applying css background images
16683  * @cfg {String} href URL of the link used for the node (defaults to #)
16684  * @cfg {String} hrefTarget target frame for the link
16685  * @cfg {String} qtip An Ext QuickTip for the node
16686  * @cfg {String} qtipCfg An Ext QuickTip config for the node (used instead of qtip)
16687  * @cfg {Boolean} singleClickExpand True for single click expand on this node
16688  * @cfg {Function} uiProvider A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)
16689  * @cfg {Boolean} checked True to render a checked checkbox for this node, false to render an unchecked checkbox
16690  * (defaults to undefined with no checkbox rendered)
16691  * @constructor
16692  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node
16693  */
16694 Roo.tree.TreeNode = function(attributes){
16695     attributes = attributes || {};
16696     if(typeof attributes == "string"){
16697         attributes = {text: attributes};
16698     }
16699     this.childrenRendered = false;
16700     this.rendered = false;
16701     Roo.tree.TreeNode.superclass.constructor.call(this, attributes);
16702     this.expanded = attributes.expanded === true;
16703     this.isTarget = attributes.isTarget !== false;
16704     this.draggable = attributes.draggable !== false && attributes.allowDrag !== false;
16705     this.allowChildren = attributes.allowChildren !== false && attributes.allowDrop !== false;
16706
16707     /**
16708      * Read-only. The text for this node. To change it use setText().
16709      * @type String
16710      */
16711     this.text = attributes.text;
16712     /**
16713      * True if this node is disabled.
16714      * @type Boolean
16715      */
16716     this.disabled = attributes.disabled === true;
16717
16718     this.addEvents({
16719         /**
16720         * @event textchange
16721         * Fires when the text for this node is changed
16722         * @param {Node} this This node
16723         * @param {String} text The new text
16724         * @param {String} oldText The old text
16725         */
16726         "textchange" : true,
16727         /**
16728         * @event beforeexpand
16729         * Fires before this node is expanded, return false to cancel.
16730         * @param {Node} this This node
16731         * @param {Boolean} deep
16732         * @param {Boolean} anim
16733         */
16734         "beforeexpand" : true,
16735         /**
16736         * @event beforecollapse
16737         * Fires before this node is collapsed, return false to cancel.
16738         * @param {Node} this This node
16739         * @param {Boolean} deep
16740         * @param {Boolean} anim
16741         */
16742         "beforecollapse" : true,
16743         /**
16744         * @event expand
16745         * Fires when this node is expanded
16746         * @param {Node} this This node
16747         */
16748         "expand" : true,
16749         /**
16750         * @event disabledchange
16751         * Fires when the disabled status of this node changes
16752         * @param {Node} this This node
16753         * @param {Boolean} disabled
16754         */
16755         "disabledchange" : true,
16756         /**
16757         * @event collapse
16758         * Fires when this node is collapsed
16759         * @param {Node} this This node
16760         */
16761         "collapse" : true,
16762         /**
16763         * @event beforeclick
16764         * Fires before click processing. Return false to cancel the default action.
16765         * @param {Node} this This node
16766         * @param {Roo.EventObject} e The event object
16767         */
16768         "beforeclick":true,
16769         /**
16770         * @event checkchange
16771         * Fires when a node with a checkbox's checked property changes
16772         * @param {Node} this This node
16773         * @param {Boolean} checked
16774         */
16775         "checkchange":true,
16776         /**
16777         * @event click
16778         * Fires when this node is clicked
16779         * @param {Node} this This node
16780         * @param {Roo.EventObject} e The event object
16781         */
16782         "click":true,
16783         /**
16784         * @event dblclick
16785         * Fires when this node is double clicked
16786         * @param {Node} this This node
16787         * @param {Roo.EventObject} e The event object
16788         */
16789         "dblclick":true,
16790         /**
16791         * @event contextmenu
16792         * Fires when this node is right clicked
16793         * @param {Node} this This node
16794         * @param {Roo.EventObject} e The event object
16795         */
16796         "contextmenu":true,
16797         /**
16798         * @event beforechildrenrendered
16799         * Fires right before the child nodes for this node are rendered
16800         * @param {Node} this This node
16801         */
16802         "beforechildrenrendered":true
16803     });
16804
16805     var uiClass = this.attributes.uiProvider || Roo.tree.TreeNodeUI;
16806
16807     /**
16808      * Read-only. The UI for this node
16809      * @type TreeNodeUI
16810      */
16811     this.ui = new uiClass(this);
16812     
16813     // finally support items[]
16814     if (typeof(this.attributes.items) == 'undefined' || !this.attributes.items) {
16815         return;
16816     }
16817     
16818     
16819     Roo.each(this.attributes.items, function(c) {
16820         this.appendChild(Roo.factory(c,Roo.Tree));
16821     }, this);
16822     delete this.attributes.items;
16823     
16824     
16825     
16826 };
16827 Roo.extend(Roo.tree.TreeNode, Roo.data.Node, {
16828     preventHScroll: true,
16829     /**
16830      * Returns true if this node is expanded
16831      * @return {Boolean}
16832      */
16833     isExpanded : function(){
16834         return this.expanded;
16835     },
16836
16837     /**
16838      * Returns the UI object for this node
16839      * @return {TreeNodeUI}
16840      */
16841     getUI : function(){
16842         return this.ui;
16843     },
16844
16845     // private override
16846     setFirstChild : function(node){
16847         var of = this.firstChild;
16848         Roo.tree.TreeNode.superclass.setFirstChild.call(this, node);
16849         if(this.childrenRendered && of && node != of){
16850             of.renderIndent(true, true);
16851         }
16852         if(this.rendered){
16853             this.renderIndent(true, true);
16854         }
16855     },
16856
16857     // private override
16858     setLastChild : function(node){
16859         var ol = this.lastChild;
16860         Roo.tree.TreeNode.superclass.setLastChild.call(this, node);
16861         if(this.childrenRendered && ol && node != ol){
16862             ol.renderIndent(true, true);
16863         }
16864         if(this.rendered){
16865             this.renderIndent(true, true);
16866         }
16867     },
16868
16869     // these methods are overridden to provide lazy rendering support
16870     // private override
16871     appendChild : function()
16872     {
16873         var node = Roo.tree.TreeNode.superclass.appendChild.apply(this, arguments);
16874         if(node && this.childrenRendered){
16875             node.render();
16876         }
16877         this.ui.updateExpandIcon();
16878         return node;
16879     },
16880
16881     // private override
16882     removeChild : function(node){
16883         this.ownerTree.getSelectionModel().unselect(node);
16884         Roo.tree.TreeNode.superclass.removeChild.apply(this, arguments);
16885         // if it's been rendered remove dom node
16886         if(this.childrenRendered){
16887             node.ui.remove();
16888         }
16889         if(this.childNodes.length < 1){
16890             this.collapse(false, false);
16891         }else{
16892             this.ui.updateExpandIcon();
16893         }
16894         if(!this.firstChild) {
16895             this.childrenRendered = false;
16896         }
16897         return node;
16898     },
16899
16900     // private override
16901     insertBefore : function(node, refNode){
16902         var newNode = Roo.tree.TreeNode.superclass.insertBefore.apply(this, arguments);
16903         if(newNode && refNode && this.childrenRendered){
16904             node.render();
16905         }
16906         this.ui.updateExpandIcon();
16907         return newNode;
16908     },
16909
16910     /**
16911      * Sets the text for this node
16912      * @param {String} text
16913      */
16914     setText : function(text){
16915         var oldText = this.text;
16916         this.text = text;
16917         this.attributes.text = text;
16918         if(this.rendered){ // event without subscribing
16919             this.ui.onTextChange(this, text, oldText);
16920         }
16921         this.fireEvent("textchange", this, text, oldText);
16922     },
16923
16924     /**
16925      * Triggers selection of this node
16926      */
16927     select : function(){
16928         this.getOwnerTree().getSelectionModel().select(this);
16929     },
16930
16931     /**
16932      * Triggers deselection of this node
16933      */
16934     unselect : function(){
16935         this.getOwnerTree().getSelectionModel().unselect(this);
16936     },
16937
16938     /**
16939      * Returns true if this node is selected
16940      * @return {Boolean}
16941      */
16942     isSelected : function(){
16943         return this.getOwnerTree().getSelectionModel().isSelected(this);
16944     },
16945
16946     /**
16947      * Expand this node.
16948      * @param {Boolean} deep (optional) True to expand all children as well
16949      * @param {Boolean} anim (optional) false to cancel the default animation
16950      * @param {Function} callback (optional) A callback to be called when
16951      * expanding this node completes (does not wait for deep expand to complete).
16952      * Called with 1 parameter, this node.
16953      */
16954     expand : function(deep, anim, callback){
16955         if(!this.expanded){
16956             if(this.fireEvent("beforeexpand", this, deep, anim) === false){
16957                 return;
16958             }
16959             if(!this.childrenRendered){
16960                 this.renderChildren();
16961             }
16962             this.expanded = true;
16963             if(!this.isHiddenRoot() && (this.getOwnerTree().animate && anim !== false) || anim){
16964                 this.ui.animExpand(function(){
16965                     this.fireEvent("expand", this);
16966                     if(typeof callback == "function"){
16967                         callback(this);
16968                     }
16969                     if(deep === true){
16970                         this.expandChildNodes(true);
16971                     }
16972                 }.createDelegate(this));
16973                 return;
16974             }else{
16975                 this.ui.expand();
16976                 this.fireEvent("expand", this);
16977                 if(typeof callback == "function"){
16978                     callback(this);
16979                 }
16980             }
16981         }else{
16982            if(typeof callback == "function"){
16983                callback(this);
16984            }
16985         }
16986         if(deep === true){
16987             this.expandChildNodes(true);
16988         }
16989     },
16990
16991     isHiddenRoot : function(){
16992         return this.isRoot && !this.getOwnerTree().rootVisible;
16993     },
16994
16995     /**
16996      * Collapse this node.
16997      * @param {Boolean} deep (optional) True to collapse all children as well
16998      * @param {Boolean} anim (optional) false to cancel the default animation
16999      */
17000     collapse : function(deep, anim){
17001         if(this.expanded && !this.isHiddenRoot()){
17002             if(this.fireEvent("beforecollapse", this, deep, anim) === false){
17003                 return;
17004             }
17005             this.expanded = false;
17006             if((this.getOwnerTree().animate && anim !== false) || anim){
17007                 this.ui.animCollapse(function(){
17008                     this.fireEvent("collapse", this);
17009                     if(deep === true){
17010                         this.collapseChildNodes(true);
17011                     }
17012                 }.createDelegate(this));
17013                 return;
17014             }else{
17015                 this.ui.collapse();
17016                 this.fireEvent("collapse", this);
17017             }
17018         }
17019         if(deep === true){
17020             var cs = this.childNodes;
17021             for(var i = 0, len = cs.length; i < len; i++) {
17022                 cs[i].collapse(true, false);
17023             }
17024         }
17025     },
17026
17027     // private
17028     delayedExpand : function(delay){
17029         if(!this.expandProcId){
17030             this.expandProcId = this.expand.defer(delay, this);
17031         }
17032     },
17033
17034     // private
17035     cancelExpand : function(){
17036         if(this.expandProcId){
17037             clearTimeout(this.expandProcId);
17038         }
17039         this.expandProcId = false;
17040     },
17041
17042     /**
17043      * Toggles expanded/collapsed state of the node
17044      */
17045     toggle : function(){
17046         if(this.expanded){
17047             this.collapse();
17048         }else{
17049             this.expand();
17050         }
17051     },
17052
17053     /**
17054      * Ensures all parent nodes are expanded
17055      */
17056     ensureVisible : function(callback){
17057         var tree = this.getOwnerTree();
17058         tree.expandPath(this.parentNode.getPath(), false, function(){
17059             tree.getTreeEl().scrollChildIntoView(this.ui.anchor);
17060             Roo.callback(callback);
17061         }.createDelegate(this));
17062     },
17063
17064     /**
17065      * Expand all child nodes
17066      * @param {Boolean} deep (optional) true if the child nodes should also expand their child nodes
17067      */
17068     expandChildNodes : function(deep){
17069         var cs = this.childNodes;
17070         for(var i = 0, len = cs.length; i < len; i++) {
17071                 cs[i].expand(deep);
17072         }
17073     },
17074
17075     /**
17076      * Collapse all child nodes
17077      * @param {Boolean} deep (optional) true if the child nodes should also collapse their child nodes
17078      */
17079     collapseChildNodes : function(deep){
17080         var cs = this.childNodes;
17081         for(var i = 0, len = cs.length; i < len; i++) {
17082                 cs[i].collapse(deep);
17083         }
17084     },
17085
17086     /**
17087      * Disables this node
17088      */
17089     disable : function(){
17090         this.disabled = true;
17091         this.unselect();
17092         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
17093             this.ui.onDisableChange(this, true);
17094         }
17095         this.fireEvent("disabledchange", this, true);
17096     },
17097
17098     /**
17099      * Enables this node
17100      */
17101     enable : function(){
17102         this.disabled = false;
17103         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
17104             this.ui.onDisableChange(this, false);
17105         }
17106         this.fireEvent("disabledchange", this, false);
17107     },
17108
17109     // private
17110     renderChildren : function(suppressEvent){
17111         if(suppressEvent !== false){
17112             this.fireEvent("beforechildrenrendered", this);
17113         }
17114         var cs = this.childNodes;
17115         for(var i = 0, len = cs.length; i < len; i++){
17116             cs[i].render(true);
17117         }
17118         this.childrenRendered = true;
17119     },
17120
17121     // private
17122     sort : function(fn, scope){
17123         Roo.tree.TreeNode.superclass.sort.apply(this, arguments);
17124         if(this.childrenRendered){
17125             var cs = this.childNodes;
17126             for(var i = 0, len = cs.length; i < len; i++){
17127                 cs[i].render(true);
17128             }
17129         }
17130     },
17131
17132     // private
17133     render : function(bulkRender){
17134         this.ui.render(bulkRender);
17135         if(!this.rendered){
17136             this.rendered = true;
17137             if(this.expanded){
17138                 this.expanded = false;
17139                 this.expand(false, false);
17140             }
17141         }
17142     },
17143
17144     // private
17145     renderIndent : function(deep, refresh){
17146         if(refresh){
17147             this.ui.childIndent = null;
17148         }
17149         this.ui.renderIndent();
17150         if(deep === true && this.childrenRendered){
17151             var cs = this.childNodes;
17152             for(var i = 0, len = cs.length; i < len; i++){
17153                 cs[i].renderIndent(true, refresh);
17154             }
17155         }
17156     }
17157 });/*
17158  * Based on:
17159  * Ext JS Library 1.1.1
17160  * Copyright(c) 2006-2007, Ext JS, LLC.
17161  *
17162  * Originally Released Under LGPL - original licence link has changed is not relivant.
17163  *
17164  * Fork - LGPL
17165  * <script type="text/javascript">
17166  */
17167  
17168 /**
17169  * @class Roo.tree.AsyncTreeNode
17170  * @extends Roo.tree.TreeNode
17171  * @cfg {TreeLoader} loader A TreeLoader to be used by this node (defaults to the loader defined on the tree)
17172  * @constructor
17173  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node 
17174  */
17175  Roo.tree.AsyncTreeNode = function(config){
17176     this.loaded = false;
17177     this.loading = false;
17178     Roo.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
17179     /**
17180     * @event beforeload
17181     * Fires before this node is loaded, return false to cancel
17182     * @param {Node} this This node
17183     */
17184     this.addEvents({'beforeload':true, 'load': true});
17185     /**
17186     * @event load
17187     * Fires when this node is loaded
17188     * @param {Node} this This node
17189     */
17190     /**
17191      * The loader used by this node (defaults to using the tree's defined loader)
17192      * @type TreeLoader
17193      * @property loader
17194      */
17195 };
17196 Roo.extend(Roo.tree.AsyncTreeNode, Roo.tree.TreeNode, {
17197     expand : function(deep, anim, callback){
17198         if(this.loading){ // if an async load is already running, waiting til it's done
17199             var timer;
17200             var f = function(){
17201                 if(!this.loading){ // done loading
17202                     clearInterval(timer);
17203                     this.expand(deep, anim, callback);
17204                 }
17205             }.createDelegate(this);
17206             timer = setInterval(f, 200);
17207             return;
17208         }
17209         if(!this.loaded){
17210             if(this.fireEvent("beforeload", this) === false){
17211                 return;
17212             }
17213             this.loading = true;
17214             this.ui.beforeLoad(this);
17215             var loader = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
17216             if(loader){
17217                 loader.load(this, this.loadComplete.createDelegate(this, [deep, anim, callback]));
17218                 return;
17219             }
17220         }
17221         Roo.tree.AsyncTreeNode.superclass.expand.call(this, deep, anim, callback);
17222     },
17223     
17224     /**
17225      * Returns true if this node is currently loading
17226      * @return {Boolean}
17227      */
17228     isLoading : function(){
17229         return this.loading;  
17230     },
17231     
17232     loadComplete : function(deep, anim, callback){
17233         this.loading = false;
17234         this.loaded = true;
17235         this.ui.afterLoad(this);
17236         this.fireEvent("load", this);
17237         this.expand(deep, anim, callback);
17238     },
17239     
17240     /**
17241      * Returns true if this node has been loaded
17242      * @return {Boolean}
17243      */
17244     isLoaded : function(){
17245         return this.loaded;
17246     },
17247     
17248     hasChildNodes : function(){
17249         if(!this.isLeaf() && !this.loaded){
17250             return true;
17251         }else{
17252             return Roo.tree.AsyncTreeNode.superclass.hasChildNodes.call(this);
17253         }
17254     },
17255
17256     /**
17257      * Trigger a reload for this node
17258      * @param {Function} callback
17259      */
17260     reload : function(callback){
17261         this.collapse(false, false);
17262         while(this.firstChild){
17263             this.removeChild(this.firstChild);
17264         }
17265         this.childrenRendered = false;
17266         this.loaded = false;
17267         if(this.isHiddenRoot()){
17268             this.expanded = false;
17269         }
17270         this.expand(false, false, callback);
17271     }
17272 });/*
17273  * Based on:
17274  * Ext JS Library 1.1.1
17275  * Copyright(c) 2006-2007, Ext JS, LLC.
17276  *
17277  * Originally Released Under LGPL - original licence link has changed is not relivant.
17278  *
17279  * Fork - LGPL
17280  * <script type="text/javascript">
17281  */
17282  
17283 /**
17284  * @class Roo.tree.TreeNodeUI
17285  * @constructor
17286  * @param {Object} node The node to render
17287  * The TreeNode UI implementation is separate from the
17288  * tree implementation. Unless you are customizing the tree UI,
17289  * you should never have to use this directly.
17290  */
17291 Roo.tree.TreeNodeUI = function(node){
17292     this.node = node;
17293     this.rendered = false;
17294     this.animating = false;
17295     this.emptyIcon = Roo.BLANK_IMAGE_URL;
17296 };
17297
17298 Roo.tree.TreeNodeUI.prototype = {
17299     removeChild : function(node){
17300         if(this.rendered){
17301             this.ctNode.removeChild(node.ui.getEl());
17302         }
17303     },
17304
17305     beforeLoad : function(){
17306          this.addClass("x-tree-node-loading");
17307     },
17308
17309     afterLoad : function(){
17310          this.removeClass("x-tree-node-loading");
17311     },
17312
17313     onTextChange : function(node, text, oldText){
17314         if(this.rendered){
17315             this.textNode.innerHTML = text;
17316         }
17317     },
17318
17319     onDisableChange : function(node, state){
17320         this.disabled = state;
17321         if(state){
17322             this.addClass("x-tree-node-disabled");
17323         }else{
17324             this.removeClass("x-tree-node-disabled");
17325         }
17326     },
17327
17328     onSelectedChange : function(state){
17329         if(state){
17330             this.focus();
17331             this.addClass("x-tree-selected");
17332         }else{
17333             //this.blur();
17334             this.removeClass("x-tree-selected");
17335         }
17336     },
17337
17338     onMove : function(tree, node, oldParent, newParent, index, refNode){
17339         this.childIndent = null;
17340         if(this.rendered){
17341             var targetNode = newParent.ui.getContainer();
17342             if(!targetNode){//target not rendered
17343                 this.holder = document.createElement("div");
17344                 this.holder.appendChild(this.wrap);
17345                 return;
17346             }
17347             var insertBefore = refNode ? refNode.ui.getEl() : null;
17348             if(insertBefore){
17349                 targetNode.insertBefore(this.wrap, insertBefore);
17350             }else{
17351                 targetNode.appendChild(this.wrap);
17352             }
17353             this.node.renderIndent(true);
17354         }
17355     },
17356
17357     addClass : function(cls){
17358         if(this.elNode){
17359             Roo.fly(this.elNode).addClass(cls);
17360         }
17361     },
17362
17363     removeClass : function(cls){
17364         if(this.elNode){
17365             Roo.fly(this.elNode).removeClass(cls);
17366         }
17367     },
17368
17369     remove : function(){
17370         if(this.rendered){
17371             this.holder = document.createElement("div");
17372             this.holder.appendChild(this.wrap);
17373         }
17374     },
17375
17376     fireEvent : function(){
17377         return this.node.fireEvent.apply(this.node, arguments);
17378     },
17379
17380     initEvents : function(){
17381         this.node.on("move", this.onMove, this);
17382         var E = Roo.EventManager;
17383         var a = this.anchor;
17384
17385         var el = Roo.fly(a, '_treeui');
17386
17387         if(Roo.isOpera){ // opera render bug ignores the CSS
17388             el.setStyle("text-decoration", "none");
17389         }
17390
17391         el.on("click", this.onClick, this);
17392         el.on("dblclick", this.onDblClick, this);
17393
17394         if(this.checkbox){
17395             Roo.EventManager.on(this.checkbox,
17396                     Roo.isIE ? 'click' : 'change', this.onCheckChange, this);
17397         }
17398
17399         el.on("contextmenu", this.onContextMenu, this);
17400
17401         var icon = Roo.fly(this.iconNode);
17402         icon.on("click", this.onClick, this);
17403         icon.on("dblclick", this.onDblClick, this);
17404         icon.on("contextmenu", this.onContextMenu, this);
17405         E.on(this.ecNode, "click", this.ecClick, this, true);
17406
17407         if(this.node.disabled){
17408             this.addClass("x-tree-node-disabled");
17409         }
17410         if(this.node.hidden){
17411             this.addClass("x-tree-node-disabled");
17412         }
17413         var ot = this.node.getOwnerTree();
17414         var dd = ot.enableDD || ot.enableDrag || ot.enableDrop;
17415         if(dd && (!this.node.isRoot || ot.rootVisible)){
17416             Roo.dd.Registry.register(this.elNode, {
17417                 node: this.node,
17418                 handles: this.getDDHandles(),
17419                 isHandle: false
17420             });
17421         }
17422     },
17423
17424     getDDHandles : function(){
17425         return [this.iconNode, this.textNode];
17426     },
17427
17428     hide : function(){
17429         if(this.rendered){
17430             this.wrap.style.display = "none";
17431         }
17432     },
17433
17434     show : function(){
17435         if(this.rendered){
17436             this.wrap.style.display = "";
17437         }
17438     },
17439
17440     onContextMenu : function(e){
17441         if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
17442             e.preventDefault();
17443             this.focus();
17444             this.fireEvent("contextmenu", this.node, e);
17445         }
17446     },
17447
17448     onClick : function(e){
17449         if(this.dropping){
17450             e.stopEvent();
17451             return;
17452         }
17453         if(this.fireEvent("beforeclick", this.node, e) !== false){
17454             if(!this.disabled && this.node.attributes.href){
17455                 this.fireEvent("click", this.node, e);
17456                 return;
17457             }
17458             e.preventDefault();
17459             if(this.disabled){
17460                 return;
17461             }
17462
17463             if(this.node.attributes.singleClickExpand && !this.animating && this.node.hasChildNodes()){
17464                 this.node.toggle();
17465             }
17466
17467             this.fireEvent("click", this.node, e);
17468         }else{
17469             e.stopEvent();
17470         }
17471     },
17472
17473     onDblClick : function(e){
17474         e.preventDefault();
17475         if(this.disabled){
17476             return;
17477         }
17478         if(this.checkbox){
17479             this.toggleCheck();
17480         }
17481         if(!this.animating && this.node.hasChildNodes()){
17482             this.node.toggle();
17483         }
17484         this.fireEvent("dblclick", this.node, e);
17485     },
17486
17487     onCheckChange : function(){
17488         var checked = this.checkbox.checked;
17489         this.node.attributes.checked = checked;
17490         this.fireEvent('checkchange', this.node, checked);
17491     },
17492
17493     ecClick : function(e){
17494         if(!this.animating && this.node.hasChildNodes()){
17495             this.node.toggle();
17496         }
17497     },
17498
17499     startDrop : function(){
17500         this.dropping = true;
17501     },
17502
17503     // delayed drop so the click event doesn't get fired on a drop
17504     endDrop : function(){
17505        setTimeout(function(){
17506            this.dropping = false;
17507        }.createDelegate(this), 50);
17508     },
17509
17510     expand : function(){
17511         this.updateExpandIcon();
17512         this.ctNode.style.display = "";
17513     },
17514
17515     focus : function(){
17516         if(!this.node.preventHScroll){
17517             try{this.anchor.focus();
17518             }catch(e){}
17519         }else if(!Roo.isIE){
17520             try{
17521                 var noscroll = this.node.getOwnerTree().getTreeEl().dom;
17522                 var l = noscroll.scrollLeft;
17523                 this.anchor.focus();
17524                 noscroll.scrollLeft = l;
17525             }catch(e){}
17526         }
17527     },
17528
17529     toggleCheck : function(value){
17530         var cb = this.checkbox;
17531         if(cb){
17532             cb.checked = (value === undefined ? !cb.checked : value);
17533         }
17534     },
17535
17536     blur : function(){
17537         try{
17538             this.anchor.blur();
17539         }catch(e){}
17540     },
17541
17542     animExpand : function(callback){
17543         var ct = Roo.get(this.ctNode);
17544         ct.stopFx();
17545         if(!this.node.hasChildNodes()){
17546             this.updateExpandIcon();
17547             this.ctNode.style.display = "";
17548             Roo.callback(callback);
17549             return;
17550         }
17551         this.animating = true;
17552         this.updateExpandIcon();
17553
17554         ct.slideIn('t', {
17555            callback : function(){
17556                this.animating = false;
17557                Roo.callback(callback);
17558             },
17559             scope: this,
17560             duration: this.node.ownerTree.duration || .25
17561         });
17562     },
17563
17564     highlight : function(){
17565         var tree = this.node.getOwnerTree();
17566         Roo.fly(this.wrap).highlight(
17567             tree.hlColor || "C3DAF9",
17568             {endColor: tree.hlBaseColor}
17569         );
17570     },
17571
17572     collapse : function(){
17573         this.updateExpandIcon();
17574         this.ctNode.style.display = "none";
17575     },
17576
17577     animCollapse : function(callback){
17578         var ct = Roo.get(this.ctNode);
17579         ct.enableDisplayMode('block');
17580         ct.stopFx();
17581
17582         this.animating = true;
17583         this.updateExpandIcon();
17584
17585         ct.slideOut('t', {
17586             callback : function(){
17587                this.animating = false;
17588                Roo.callback(callback);
17589             },
17590             scope: this,
17591             duration: this.node.ownerTree.duration || .25
17592         });
17593     },
17594
17595     getContainer : function(){
17596         return this.ctNode;
17597     },
17598
17599     getEl : function(){
17600         return this.wrap;
17601     },
17602
17603     appendDDGhost : function(ghostNode){
17604         ghostNode.appendChild(this.elNode.cloneNode(true));
17605     },
17606
17607     getDDRepairXY : function(){
17608         return Roo.lib.Dom.getXY(this.iconNode);
17609     },
17610
17611     onRender : function(){
17612         this.render();
17613     },
17614
17615     render : function(bulkRender){
17616         var n = this.node, a = n.attributes;
17617         var targetNode = n.parentNode ?
17618               n.parentNode.ui.getContainer() : n.ownerTree.innerCt.dom;
17619
17620         if(!this.rendered){
17621             this.rendered = true;
17622
17623             this.renderElements(n, a, targetNode, bulkRender);
17624
17625             if(a.qtip){
17626                if(this.textNode.setAttributeNS){
17627                    this.textNode.setAttributeNS("ext", "qtip", a.qtip);
17628                    if(a.qtipTitle){
17629                        this.textNode.setAttributeNS("ext", "qtitle", a.qtipTitle);
17630                    }
17631                }else{
17632                    this.textNode.setAttribute("ext:qtip", a.qtip);
17633                    if(a.qtipTitle){
17634                        this.textNode.setAttribute("ext:qtitle", a.qtipTitle);
17635                    }
17636                }
17637             }else if(a.qtipCfg){
17638                 a.qtipCfg.target = Roo.id(this.textNode);
17639                 Roo.QuickTips.register(a.qtipCfg);
17640             }
17641             this.initEvents();
17642             if(!this.node.expanded){
17643                 this.updateExpandIcon();
17644             }
17645         }else{
17646             if(bulkRender === true) {
17647                 targetNode.appendChild(this.wrap);
17648             }
17649         }
17650     },
17651
17652     renderElements : function(n, a, targetNode, bulkRender)
17653     {
17654         // add some indent caching, this helps performance when rendering a large tree
17655         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
17656         var t = n.getOwnerTree();
17657         var txt = t.renderer ? t.renderer(n.attributes) : Roo.util.Format.htmlEncode(n.text);
17658         if (typeof(n.attributes.html) != 'undefined') {
17659             txt = n.attributes.html;
17660         }
17661         var tip = t.rendererTip ? t.rendererTip(n.attributes) : txt;
17662         var cb = typeof a.checked == 'boolean';
17663         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
17664         var buf = ['<li class="x-tree-node"><div class="x-tree-node-el ', a.cls,'">',
17665             '<span class="x-tree-node-indent">',this.indentMarkup,"</span>",
17666             '<img src="', this.emptyIcon, '" class="x-tree-ec-icon" />',
17667             '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',(a.icon ? " x-tree-node-inline-icon" : ""),(a.iconCls ? " "+a.iconCls : ""),'" unselectable="on" />',
17668             cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + (a.checked ? 'checked="checked" />' : ' />')) : '',
17669             '<a hidefocus="on" href="',href,'" tabIndex="1" ',
17670              a.hrefTarget ? ' target="'+a.hrefTarget+'"' : "", 
17671                 '><span unselectable="on" qtip="' , tip ,'">',txt,"</span></a></div>",
17672             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
17673             "</li>"];
17674
17675         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
17676             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
17677                                 n.nextSibling.ui.getEl(), buf.join(""));
17678         }else{
17679             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
17680         }
17681
17682         this.elNode = this.wrap.childNodes[0];
17683         this.ctNode = this.wrap.childNodes[1];
17684         var cs = this.elNode.childNodes;
17685         this.indentNode = cs[0];
17686         this.ecNode = cs[1];
17687         this.iconNode = cs[2];
17688         var index = 3;
17689         if(cb){
17690             this.checkbox = cs[3];
17691             index++;
17692         }
17693         this.anchor = cs[index];
17694         this.textNode = cs[index].firstChild;
17695     },
17696
17697     getAnchor : function(){
17698         return this.anchor;
17699     },
17700
17701     getTextEl : function(){
17702         return this.textNode;
17703     },
17704
17705     getIconEl : function(){
17706         return this.iconNode;
17707     },
17708
17709     isChecked : function(){
17710         return this.checkbox ? this.checkbox.checked : false;
17711     },
17712
17713     updateExpandIcon : function(){
17714         if(this.rendered){
17715             var n = this.node, c1, c2;
17716             var cls = n.isLast() ? "x-tree-elbow-end" : "x-tree-elbow";
17717             var hasChild = n.hasChildNodes();
17718             if(hasChild){
17719                 if(n.expanded){
17720                     cls += "-minus";
17721                     c1 = "x-tree-node-collapsed";
17722                     c2 = "x-tree-node-expanded";
17723                 }else{
17724                     cls += "-plus";
17725                     c1 = "x-tree-node-expanded";
17726                     c2 = "x-tree-node-collapsed";
17727                 }
17728                 if(this.wasLeaf){
17729                     this.removeClass("x-tree-node-leaf");
17730                     this.wasLeaf = false;
17731                 }
17732                 if(this.c1 != c1 || this.c2 != c2){
17733                     Roo.fly(this.elNode).replaceClass(c1, c2);
17734                     this.c1 = c1; this.c2 = c2;
17735                 }
17736             }else{
17737                 // this changes non-leafs into leafs if they have no children.
17738                 // it's not very rational behaviour..
17739                 
17740                 if(!this.wasLeaf && this.node.leaf){
17741                     Roo.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-leaf");
17742                     delete this.c1;
17743                     delete this.c2;
17744                     this.wasLeaf = true;
17745                 }
17746             }
17747             var ecc = "x-tree-ec-icon "+cls;
17748             if(this.ecc != ecc){
17749                 this.ecNode.className = ecc;
17750                 this.ecc = ecc;
17751             }
17752         }
17753     },
17754
17755     getChildIndent : function(){
17756         if(!this.childIndent){
17757             var buf = [];
17758             var p = this.node;
17759             while(p){
17760                 if(!p.isRoot || (p.isRoot && p.ownerTree.rootVisible)){
17761                     if(!p.isLast()) {
17762                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-elbow-line" />');
17763                     } else {
17764                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-icon" />');
17765                     }
17766                 }
17767                 p = p.parentNode;
17768             }
17769             this.childIndent = buf.join("");
17770         }
17771         return this.childIndent;
17772     },
17773
17774     renderIndent : function(){
17775         if(this.rendered){
17776             var indent = "";
17777             var p = this.node.parentNode;
17778             if(p){
17779                 indent = p.ui.getChildIndent();
17780             }
17781             if(this.indentMarkup != indent){ // don't rerender if not required
17782                 this.indentNode.innerHTML = indent;
17783                 this.indentMarkup = indent;
17784             }
17785             this.updateExpandIcon();
17786         }
17787     }
17788 };
17789
17790 Roo.tree.RootTreeNodeUI = function(){
17791     Roo.tree.RootTreeNodeUI.superclass.constructor.apply(this, arguments);
17792 };
17793 Roo.extend(Roo.tree.RootTreeNodeUI, Roo.tree.TreeNodeUI, {
17794     render : function(){
17795         if(!this.rendered){
17796             var targetNode = this.node.ownerTree.innerCt.dom;
17797             this.node.expanded = true;
17798             targetNode.innerHTML = '<div class="x-tree-root-node"></div>';
17799             this.wrap = this.ctNode = targetNode.firstChild;
17800         }
17801     },
17802     collapse : function(){
17803     },
17804     expand : function(){
17805     }
17806 });/*
17807  * Based on:
17808  * Ext JS Library 1.1.1
17809  * Copyright(c) 2006-2007, Ext JS, LLC.
17810  *
17811  * Originally Released Under LGPL - original licence link has changed is not relivant.
17812  *
17813  * Fork - LGPL
17814  * <script type="text/javascript">
17815  */
17816 /**
17817  * @class Roo.tree.TreeLoader
17818  * @extends Roo.util.Observable
17819  * A TreeLoader provides for lazy loading of an {@link Roo.tree.TreeNode}'s child
17820  * nodes from a specified URL. The response must be a javascript Array definition
17821  * who's elements are node definition objects. eg:
17822  * <pre><code>
17823 {  success : true,
17824    data :      [
17825    
17826     { 'id': 1, 'text': 'A folder Node', 'leaf': false },
17827     { 'id': 2, 'text': 'A leaf Node', 'leaf': true }
17828     ]
17829 }
17830
17831
17832 </code></pre>
17833  * <br><br>
17834  * The old style respose with just an array is still supported, but not recommended.
17835  * <br><br>
17836  *
17837  * A server request is sent, and child nodes are loaded only when a node is expanded.
17838  * The loading node's id is passed to the server under the parameter name "node" to
17839  * enable the server to produce the correct child nodes.
17840  * <br><br>
17841  * To pass extra parameters, an event handler may be attached to the "beforeload"
17842  * event, and the parameters specified in the TreeLoader's baseParams property:
17843  * <pre><code>
17844     myTreeLoader.on("beforeload", function(treeLoader, node) {
17845         this.baseParams.category = node.attributes.category;
17846     }, this);
17847 </code></pre><
17848  * This would pass an HTTP parameter called "category" to the server containing
17849  * the value of the Node's "category" attribute.
17850  * @constructor
17851  * Creates a new Treeloader.
17852  * @param {Object} config A config object containing config properties.
17853  */
17854 Roo.tree.TreeLoader = function(config){
17855     this.baseParams = {};
17856     this.requestMethod = "POST";
17857     Roo.apply(this, config);
17858
17859     this.addEvents({
17860     
17861         /**
17862          * @event beforeload
17863          * Fires before a network request is made to retrieve the Json text which specifies a node's children.
17864          * @param {Object} This TreeLoader object.
17865          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
17866          * @param {Object} callback The callback function specified in the {@link #load} call.
17867          */
17868         beforeload : true,
17869         /**
17870          * @event load
17871          * Fires when the node has been successfuly loaded.
17872          * @param {Object} This TreeLoader object.
17873          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
17874          * @param {Object} response The response object containing the data from the server.
17875          */
17876         load : true,
17877         /**
17878          * @event loadexception
17879          * Fires if the network request failed.
17880          * @param {Object} This TreeLoader object.
17881          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
17882          * @param {Object} response The response object containing the data from the server.
17883          */
17884         loadexception : true,
17885         /**
17886          * @event create
17887          * Fires before a node is created, enabling you to return custom Node types 
17888          * @param {Object} This TreeLoader object.
17889          * @param {Object} attr - the data returned from the AJAX call (modify it to suit)
17890          */
17891         create : true
17892     });
17893
17894     Roo.tree.TreeLoader.superclass.constructor.call(this);
17895 };
17896
17897 Roo.extend(Roo.tree.TreeLoader, Roo.util.Observable, {
17898     /**
17899     * @cfg {String} dataUrl The URL from which to request a Json string which
17900     * specifies an array of node definition object representing the child nodes
17901     * to be loaded.
17902     */
17903     /**
17904     * @cfg {String} requestMethod either GET or POST
17905     * defaults to POST (due to BC)
17906     * to be loaded.
17907     */
17908     /**
17909     * @cfg {Object} baseParams (optional) An object containing properties which
17910     * specify HTTP parameters to be passed to each request for child nodes.
17911     */
17912     /**
17913     * @cfg {Object} baseAttrs (optional) An object containing attributes to be added to all nodes
17914     * created by this loader. If the attributes sent by the server have an attribute in this object,
17915     * they take priority.
17916     */
17917     /**
17918     * @cfg {Object} uiProviders (optional) An object containing properties which
17919     * 
17920     * DEPRECATED - use 'create' event handler to modify attributes - which affect creation.
17921     * specify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional
17922     * <i>uiProvider</i> attribute of a returned child node is a string rather
17923     * than a reference to a TreeNodeUI implementation, this that string value
17924     * is used as a property name in the uiProviders object. You can define the provider named
17925     * 'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)
17926     */
17927     uiProviders : {},
17928
17929     /**
17930     * @cfg {Boolean} clearOnLoad (optional) Default to true. Remove previously existing
17931     * child nodes before loading.
17932     */
17933     clearOnLoad : true,
17934
17935     /**
17936     * @cfg {String} root (optional) Default to false. Use this to read data from an object 
17937     * property on loading, rather than expecting an array. (eg. more compatible to a standard
17938     * Grid query { data : [ .....] }
17939     */
17940     
17941     root : false,
17942      /**
17943     * @cfg {String} queryParam (optional) 
17944     * Name of the query as it will be passed on the querystring (defaults to 'node')
17945     * eg. the request will be ?node=[id]
17946     */
17947     
17948     
17949     queryParam: false,
17950     
17951     /**
17952      * Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.
17953      * This is called automatically when a node is expanded, but may be used to reload
17954      * a node (or append new children if the {@link #clearOnLoad} option is false.)
17955      * @param {Roo.tree.TreeNode} node
17956      * @param {Function} callback
17957      */
17958     load : function(node, callback){
17959         if(this.clearOnLoad){
17960             while(node.firstChild){
17961                 node.removeChild(node.firstChild);
17962             }
17963         }
17964         if(node.attributes.children){ // preloaded json children
17965             var cs = node.attributes.children;
17966             for(var i = 0, len = cs.length; i < len; i++){
17967                 node.appendChild(this.createNode(cs[i]));
17968             }
17969             if(typeof callback == "function"){
17970                 callback();
17971             }
17972         }else if(this.dataUrl){
17973             this.requestData(node, callback);
17974         }
17975     },
17976
17977     getParams: function(node){
17978         var buf = [], bp = this.baseParams;
17979         for(var key in bp){
17980             if(typeof bp[key] != "function"){
17981                 buf.push(encodeURIComponent(key), "=", encodeURIComponent(bp[key]), "&");
17982             }
17983         }
17984         var n = this.queryParam === false ? 'node' : this.queryParam;
17985         buf.push(n + "=", encodeURIComponent(node.id));
17986         return buf.join("");
17987     },
17988
17989     requestData : function(node, callback){
17990         if(this.fireEvent("beforeload", this, node, callback) !== false){
17991             this.transId = Roo.Ajax.request({
17992                 method:this.requestMethod,
17993                 url: this.dataUrl||this.url,
17994                 success: this.handleResponse,
17995                 failure: this.handleFailure,
17996                 scope: this,
17997                 argument: {callback: callback, node: node},
17998                 params: this.getParams(node)
17999             });
18000         }else{
18001             // if the load is cancelled, make sure we notify
18002             // the node that we are done
18003             if(typeof callback == "function"){
18004                 callback();
18005             }
18006         }
18007     },
18008
18009     isLoading : function(){
18010         return this.transId ? true : false;
18011     },
18012
18013     abort : function(){
18014         if(this.isLoading()){
18015             Roo.Ajax.abort(this.transId);
18016         }
18017     },
18018
18019     // private
18020     createNode : function(attr)
18021     {
18022         // apply baseAttrs, nice idea Corey!
18023         if(this.baseAttrs){
18024             Roo.applyIf(attr, this.baseAttrs);
18025         }
18026         if(this.applyLoader !== false){
18027             attr.loader = this;
18028         }
18029         // uiProvider = depreciated..
18030         
18031         if(typeof(attr.uiProvider) == 'string'){
18032            attr.uiProvider = this.uiProviders[attr.uiProvider] || 
18033                 /**  eval:var:attr */ eval(attr.uiProvider);
18034         }
18035         if(typeof(this.uiProviders['default']) != 'undefined') {
18036             attr.uiProvider = this.uiProviders['default'];
18037         }
18038         
18039         this.fireEvent('create', this, attr);
18040         
18041         attr.leaf  = typeof(attr.leaf) == 'string' ? attr.leaf * 1 : attr.leaf;
18042         return(attr.leaf ?
18043                         new Roo.tree.TreeNode(attr) :
18044                         new Roo.tree.AsyncTreeNode(attr));
18045     },
18046
18047     processResponse : function(response, node, callback)
18048     {
18049         var json = response.responseText;
18050         try {
18051             
18052             var o = Roo.decode(json);
18053             
18054             if (this.root === false && typeof(o.success) != undefined) {
18055                 this.root = 'data'; // the default behaviour for list like data..
18056                 }
18057                 
18058             if (this.root !== false &&  !o.success) {
18059                 // it's a failure condition.
18060                 var a = response.argument;
18061                 this.fireEvent("loadexception", this, a.node, response);
18062                 Roo.log("Load failed - should have a handler really");
18063                 return;
18064             }
18065             
18066             
18067             
18068             if (this.root !== false) {
18069                  o = o[this.root];
18070             }
18071             
18072             for(var i = 0, len = o.length; i < len; i++){
18073                 var n = this.createNode(o[i]);
18074                 if(n){
18075                     node.appendChild(n);
18076                 }
18077             }
18078             if(typeof callback == "function"){
18079                 callback(this, node);
18080             }
18081         }catch(e){
18082             this.handleFailure(response);
18083         }
18084     },
18085
18086     handleResponse : function(response){
18087         this.transId = false;
18088         var a = response.argument;
18089         this.processResponse(response, a.node, a.callback);
18090         this.fireEvent("load", this, a.node, response);
18091     },
18092
18093     handleFailure : function(response)
18094     {
18095         // should handle failure better..
18096         this.transId = false;
18097         var a = response.argument;
18098         this.fireEvent("loadexception", this, a.node, response);
18099         if(typeof a.callback == "function"){
18100             a.callback(this, a.node);
18101         }
18102     }
18103 });/*
18104  * Based on:
18105  * Ext JS Library 1.1.1
18106  * Copyright(c) 2006-2007, Ext JS, LLC.
18107  *
18108  * Originally Released Under LGPL - original licence link has changed is not relivant.
18109  *
18110  * Fork - LGPL
18111  * <script type="text/javascript">
18112  */
18113
18114 /**
18115 * @class Roo.tree.TreeFilter
18116 * Note this class is experimental and doesn't update the indent (lines) or expand collapse icons of the nodes
18117 * @param {TreePanel} tree
18118 * @param {Object} config (optional)
18119  */
18120 Roo.tree.TreeFilter = function(tree, config){
18121     this.tree = tree;
18122     this.filtered = {};
18123     Roo.apply(this, config);
18124 };
18125
18126 Roo.tree.TreeFilter.prototype = {
18127     clearBlank:false,
18128     reverse:false,
18129     autoClear:false,
18130     remove:false,
18131
18132      /**
18133      * Filter the data by a specific attribute.
18134      * @param {String/RegExp} value Either string that the attribute value
18135      * should start with or a RegExp to test against the attribute
18136      * @param {String} attr (optional) The attribute passed in your node's attributes collection. Defaults to "text".
18137      * @param {TreeNode} startNode (optional) The node to start the filter at.
18138      */
18139     filter : function(value, attr, startNode){
18140         attr = attr || "text";
18141         var f;
18142         if(typeof value == "string"){
18143             var vlen = value.length;
18144             // auto clear empty filter
18145             if(vlen == 0 && this.clearBlank){
18146                 this.clear();
18147                 return;
18148             }
18149             value = value.toLowerCase();
18150             f = function(n){
18151                 return n.attributes[attr].substr(0, vlen).toLowerCase() == value;
18152             };
18153         }else if(value.exec){ // regex?
18154             f = function(n){
18155                 return value.test(n.attributes[attr]);
18156             };
18157         }else{
18158             throw 'Illegal filter type, must be string or regex';
18159         }
18160         this.filterBy(f, null, startNode);
18161         },
18162
18163     /**
18164      * Filter by a function. The passed function will be called with each
18165      * node in the tree (or from the startNode). If the function returns true, the node is kept
18166      * otherwise it is filtered. If a node is filtered, its children are also filtered.
18167      * @param {Function} fn The filter function
18168      * @param {Object} scope (optional) The scope of the function (defaults to the current node)
18169      */
18170     filterBy : function(fn, scope, startNode){
18171         startNode = startNode || this.tree.root;
18172         if(this.autoClear){
18173             this.clear();
18174         }
18175         var af = this.filtered, rv = this.reverse;
18176         var f = function(n){
18177             if(n == startNode){
18178                 return true;
18179             }
18180             if(af[n.id]){
18181                 return false;
18182             }
18183             var m = fn.call(scope || n, n);
18184             if(!m || rv){
18185                 af[n.id] = n;
18186                 n.ui.hide();
18187                 return false;
18188             }
18189             return true;
18190         };
18191         startNode.cascade(f);
18192         if(this.remove){
18193            for(var id in af){
18194                if(typeof id != "function"){
18195                    var n = af[id];
18196                    if(n && n.parentNode){
18197                        n.parentNode.removeChild(n);
18198                    }
18199                }
18200            }
18201         }
18202     },
18203
18204     /**
18205      * Clears the current filter. Note: with the "remove" option
18206      * set a filter cannot be cleared.
18207      */
18208     clear : function(){
18209         var t = this.tree;
18210         var af = this.filtered;
18211         for(var id in af){
18212             if(typeof id != "function"){
18213                 var n = af[id];
18214                 if(n){
18215                     n.ui.show();
18216                 }
18217             }
18218         }
18219         this.filtered = {};
18220     }
18221 };
18222 /*
18223  * Based on:
18224  * Ext JS Library 1.1.1
18225  * Copyright(c) 2006-2007, Ext JS, LLC.
18226  *
18227  * Originally Released Under LGPL - original licence link has changed is not relivant.
18228  *
18229  * Fork - LGPL
18230  * <script type="text/javascript">
18231  */
18232  
18233
18234 /**
18235  * @class Roo.tree.TreeSorter
18236  * Provides sorting of nodes in a TreePanel
18237  * 
18238  * @cfg {Boolean} folderSort True to sort leaf nodes under non leaf nodes
18239  * @cfg {String} property The named attribute on the node to sort by (defaults to text)
18240  * @cfg {String} dir The direction to sort (asc or desc) (defaults to asc)
18241  * @cfg {String} leafAttr The attribute used to determine leaf nodes in folder sort (defaults to "leaf")
18242  * @cfg {Boolean} caseSensitive true for case sensitive sort (defaults to false)
18243  * @cfg {Function} sortType A custom "casting" function used to convert node values before sorting
18244  * @constructor
18245  * @param {TreePanel} tree
18246  * @param {Object} config
18247  */
18248 Roo.tree.TreeSorter = function(tree, config){
18249     Roo.apply(this, config);
18250     tree.on("beforechildrenrendered", this.doSort, this);
18251     tree.on("append", this.updateSort, this);
18252     tree.on("insert", this.updateSort, this);
18253     
18254     var dsc = this.dir && this.dir.toLowerCase() == "desc";
18255     var p = this.property || "text";
18256     var sortType = this.sortType;
18257     var fs = this.folderSort;
18258     var cs = this.caseSensitive === true;
18259     var leafAttr = this.leafAttr || 'leaf';
18260
18261     this.sortFn = function(n1, n2){
18262         if(fs){
18263             if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){
18264                 return 1;
18265             }
18266             if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){
18267                 return -1;
18268             }
18269         }
18270         var v1 = sortType ? sortType(n1) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());
18271         var v2 = sortType ? sortType(n2) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());
18272         if(v1 < v2){
18273                         return dsc ? +1 : -1;
18274                 }else if(v1 > v2){
18275                         return dsc ? -1 : +1;
18276         }else{
18277                 return 0;
18278         }
18279     };
18280 };
18281
18282 Roo.tree.TreeSorter.prototype = {
18283     doSort : function(node){
18284         node.sort(this.sortFn);
18285     },
18286     
18287     compareNodes : function(n1, n2){
18288         return (n1.text.toUpperCase() > n2.text.toUpperCase() ? 1 : -1);
18289     },
18290     
18291     updateSort : function(tree, node){
18292         if(node.childrenRendered){
18293             this.doSort.defer(1, this, [node]);
18294         }
18295     }
18296 };/*
18297  * Based on:
18298  * Ext JS Library 1.1.1
18299  * Copyright(c) 2006-2007, Ext JS, LLC.
18300  *
18301  * Originally Released Under LGPL - original licence link has changed is not relivant.
18302  *
18303  * Fork - LGPL
18304  * <script type="text/javascript">
18305  */
18306
18307 if(Roo.dd.DropZone){
18308     
18309 Roo.tree.TreeDropZone = function(tree, config){
18310     this.allowParentInsert = false;
18311     this.allowContainerDrop = false;
18312     this.appendOnly = false;
18313     Roo.tree.TreeDropZone.superclass.constructor.call(this, tree.innerCt, config);
18314     this.tree = tree;
18315     this.lastInsertClass = "x-tree-no-status";
18316     this.dragOverData = {};
18317 };
18318
18319 Roo.extend(Roo.tree.TreeDropZone, Roo.dd.DropZone, {
18320     ddGroup : "TreeDD",
18321     scroll:  true,
18322     
18323     expandDelay : 1000,
18324     
18325     expandNode : function(node){
18326         if(node.hasChildNodes() && !node.isExpanded()){
18327             node.expand(false, null, this.triggerCacheRefresh.createDelegate(this));
18328         }
18329     },
18330     
18331     queueExpand : function(node){
18332         this.expandProcId = this.expandNode.defer(this.expandDelay, this, [node]);
18333     },
18334     
18335     cancelExpand : function(){
18336         if(this.expandProcId){
18337             clearTimeout(this.expandProcId);
18338             this.expandProcId = false;
18339         }
18340     },
18341     
18342     isValidDropPoint : function(n, pt, dd, e, data){
18343         if(!n || !data){ return false; }
18344         var targetNode = n.node;
18345         var dropNode = data.node;
18346         // default drop rules
18347         if(!(targetNode && targetNode.isTarget && pt)){
18348             return false;
18349         }
18350         if(pt == "append" && targetNode.allowChildren === false){
18351             return false;
18352         }
18353         if((pt == "above" || pt == "below") && (targetNode.parentNode && targetNode.parentNode.allowChildren === false)){
18354             return false;
18355         }
18356         if(dropNode && (targetNode == dropNode || dropNode.contains(targetNode))){
18357             return false;
18358         }
18359         // reuse the object
18360         var overEvent = this.dragOverData;
18361         overEvent.tree = this.tree;
18362         overEvent.target = targetNode;
18363         overEvent.data = data;
18364         overEvent.point = pt;
18365         overEvent.source = dd;
18366         overEvent.rawEvent = e;
18367         overEvent.dropNode = dropNode;
18368         overEvent.cancel = false;  
18369         var result = this.tree.fireEvent("nodedragover", overEvent);
18370         return overEvent.cancel === false && result !== false;
18371     },
18372     
18373     getDropPoint : function(e, n, dd)
18374     {
18375         var tn = n.node;
18376         if(tn.isRoot){
18377             return tn.allowChildren !== false ? "append" : false; // always append for root
18378         }
18379         var dragEl = n.ddel;
18380         var t = Roo.lib.Dom.getY(dragEl), b = t + dragEl.offsetHeight;
18381         var y = Roo.lib.Event.getPageY(e);
18382         //var noAppend = tn.allowChildren === false || tn.isLeaf();
18383         
18384         // we may drop nodes anywhere, as long as allowChildren has not been set to false..
18385         var noAppend = tn.allowChildren === false;
18386         if(this.appendOnly || tn.parentNode.allowChildren === false){
18387             return noAppend ? false : "append";
18388         }
18389         var noBelow = false;
18390         if(!this.allowParentInsert){
18391             noBelow = tn.hasChildNodes() && tn.isExpanded();
18392         }
18393         var q = (b - t) / (noAppend ? 2 : 3);
18394         if(y >= t && y < (t + q)){
18395             return "above";
18396         }else if(!noBelow && (noAppend || y >= b-q && y <= b)){
18397             return "below";
18398         }else{
18399             return "append";
18400         }
18401     },
18402     
18403     onNodeEnter : function(n, dd, e, data)
18404     {
18405         this.cancelExpand();
18406     },
18407     
18408     onNodeOver : function(n, dd, e, data)
18409     {
18410        
18411         var pt = this.getDropPoint(e, n, dd);
18412         var node = n.node;
18413         
18414         // auto node expand check
18415         if(!this.expandProcId && pt == "append" && node.hasChildNodes() && !n.node.isExpanded()){
18416             this.queueExpand(node);
18417         }else if(pt != "append"){
18418             this.cancelExpand();
18419         }
18420         
18421         // set the insert point style on the target node
18422         var returnCls = this.dropNotAllowed;
18423         if(this.isValidDropPoint(n, pt, dd, e, data)){
18424            if(pt){
18425                var el = n.ddel;
18426                var cls;
18427                if(pt == "above"){
18428                    returnCls = n.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
18429                    cls = "x-tree-drag-insert-above";
18430                }else if(pt == "below"){
18431                    returnCls = n.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
18432                    cls = "x-tree-drag-insert-below";
18433                }else{
18434                    returnCls = "x-tree-drop-ok-append";
18435                    cls = "x-tree-drag-append";
18436                }
18437                if(this.lastInsertClass != cls){
18438                    Roo.fly(el).replaceClass(this.lastInsertClass, cls);
18439                    this.lastInsertClass = cls;
18440                }
18441            }
18442        }
18443        return returnCls;
18444     },
18445     
18446     onNodeOut : function(n, dd, e, data){
18447         
18448         this.cancelExpand();
18449         this.removeDropIndicators(n);
18450     },
18451     
18452     onNodeDrop : function(n, dd, e, data){
18453         var point = this.getDropPoint(e, n, dd);
18454         var targetNode = n.node;
18455         targetNode.ui.startDrop();
18456         if(!this.isValidDropPoint(n, point, dd, e, data)){
18457             targetNode.ui.endDrop();
18458             return false;
18459         }
18460         // first try to find the drop node
18461         var dropNode = data.node || (dd.getTreeNode ? dd.getTreeNode(data, targetNode, point, e) : null);
18462         var dropEvent = {
18463             tree : this.tree,
18464             target: targetNode,
18465             data: data,
18466             point: point,
18467             source: dd,
18468             rawEvent: e,
18469             dropNode: dropNode,
18470             cancel: !dropNode   
18471         };
18472         var retval = this.tree.fireEvent("beforenodedrop", dropEvent);
18473         if(retval === false || dropEvent.cancel === true || !dropEvent.dropNode){
18474             targetNode.ui.endDrop();
18475             return false;
18476         }
18477         // allow target changing
18478         targetNode = dropEvent.target;
18479         if(point == "append" && !targetNode.isExpanded()){
18480             targetNode.expand(false, null, function(){
18481                 this.completeDrop(dropEvent);
18482             }.createDelegate(this));
18483         }else{
18484             this.completeDrop(dropEvent);
18485         }
18486         return true;
18487     },
18488     
18489     completeDrop : function(de){
18490         var ns = de.dropNode, p = de.point, t = de.target;
18491         if(!(ns instanceof Array)){
18492             ns = [ns];
18493         }
18494         var n;
18495         for(var i = 0, len = ns.length; i < len; i++){
18496             n = ns[i];
18497             if(p == "above"){
18498                 t.parentNode.insertBefore(n, t);
18499             }else if(p == "below"){
18500                 t.parentNode.insertBefore(n, t.nextSibling);
18501             }else{
18502                 t.appendChild(n);
18503             }
18504         }
18505         n.ui.focus();
18506         if(this.tree.hlDrop){
18507             n.ui.highlight();
18508         }
18509         t.ui.endDrop();
18510         this.tree.fireEvent("nodedrop", de);
18511     },
18512     
18513     afterNodeMoved : function(dd, data, e, targetNode, dropNode){
18514         if(this.tree.hlDrop){
18515             dropNode.ui.focus();
18516             dropNode.ui.highlight();
18517         }
18518         this.tree.fireEvent("nodedrop", this.tree, targetNode, data, dd, e);
18519     },
18520     
18521     getTree : function(){
18522         return this.tree;
18523     },
18524     
18525     removeDropIndicators : function(n){
18526         if(n && n.ddel){
18527             var el = n.ddel;
18528             Roo.fly(el).removeClass([
18529                     "x-tree-drag-insert-above",
18530                     "x-tree-drag-insert-below",
18531                     "x-tree-drag-append"]);
18532             this.lastInsertClass = "_noclass";
18533         }
18534     },
18535     
18536     beforeDragDrop : function(target, e, id){
18537         this.cancelExpand();
18538         return true;
18539     },
18540     
18541     afterRepair : function(data){
18542         if(data && Roo.enableFx){
18543             data.node.ui.highlight();
18544         }
18545         this.hideProxy();
18546     } 
18547     
18548 });
18549
18550 }
18551 /*
18552  * Based on:
18553  * Ext JS Library 1.1.1
18554  * Copyright(c) 2006-2007, Ext JS, LLC.
18555  *
18556  * Originally Released Under LGPL - original licence link has changed is not relivant.
18557  *
18558  * Fork - LGPL
18559  * <script type="text/javascript">
18560  */
18561  
18562
18563 if(Roo.dd.DragZone){
18564 Roo.tree.TreeDragZone = function(tree, config){
18565     Roo.tree.TreeDragZone.superclass.constructor.call(this, tree.getTreeEl(), config);
18566     this.tree = tree;
18567 };
18568
18569 Roo.extend(Roo.tree.TreeDragZone, Roo.dd.DragZone, {
18570     ddGroup : "TreeDD",
18571    
18572     onBeforeDrag : function(data, e){
18573         var n = data.node;
18574         return n && n.draggable && !n.disabled;
18575     },
18576      
18577     
18578     onInitDrag : function(e){
18579         var data = this.dragData;
18580         this.tree.getSelectionModel().select(data.node);
18581         this.proxy.update("");
18582         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
18583         this.tree.fireEvent("startdrag", this.tree, data.node, e);
18584     },
18585     
18586     getRepairXY : function(e, data){
18587         return data.node.ui.getDDRepairXY();
18588     },
18589     
18590     onEndDrag : function(data, e){
18591         this.tree.fireEvent("enddrag", this.tree, data.node, e);
18592         
18593         
18594     },
18595     
18596     onValidDrop : function(dd, e, id){
18597         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
18598         this.hideProxy();
18599     },
18600     
18601     beforeInvalidDrop : function(e, id){
18602         // this scrolls the original position back into view
18603         var sm = this.tree.getSelectionModel();
18604         sm.clearSelections();
18605         sm.select(this.dragData.node);
18606     }
18607 });
18608 }/*
18609  * Based on:
18610  * Ext JS Library 1.1.1
18611  * Copyright(c) 2006-2007, Ext JS, LLC.
18612  *
18613  * Originally Released Under LGPL - original licence link has changed is not relivant.
18614  *
18615  * Fork - LGPL
18616  * <script type="text/javascript">
18617  */
18618 /**
18619  * @class Roo.tree.TreeEditor
18620  * @extends Roo.Editor
18621  * Provides editor functionality for inline tree node editing.  Any valid {@link Roo.form.Field} can be used
18622  * as the editor field.
18623  * @constructor
18624  * @param {Object} config (used to be the tree panel.)
18625  * @param {Object} oldconfig DEPRECIATED Either a prebuilt {@link Roo.form.Field} instance or a Field config object
18626  * 
18627  * @cfg {Roo.tree.TreePanel} tree The tree to bind to.
18628  * @cfg {Roo.form.TextField|Object} field The field configuration
18629  *
18630  * 
18631  */
18632 Roo.tree.TreeEditor = function(config, oldconfig) { // was -- (tree, config){
18633     var tree = config;
18634     var field;
18635     if (oldconfig) { // old style..
18636         field = oldconfig.events ? oldconfig : new Roo.form.TextField(oldconfig);
18637     } else {
18638         // new style..
18639         tree = config.tree;
18640         config.field = config.field  || {};
18641         config.field.xtype = 'TextField';
18642         field = Roo.factory(config.field, Roo.form);
18643     }
18644     config = config || {};
18645     
18646     
18647     this.addEvents({
18648         /**
18649          * @event beforenodeedit
18650          * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
18651          * false from the handler of this event.
18652          * @param {Editor} this
18653          * @param {Roo.tree.Node} node 
18654          */
18655         "beforenodeedit" : true
18656     });
18657     
18658     //Roo.log(config);
18659     Roo.tree.TreeEditor.superclass.constructor.call(this, field, config);
18660
18661     this.tree = tree;
18662
18663     tree.on('beforeclick', this.beforeNodeClick, this);
18664     tree.getTreeEl().on('mousedown', this.hide, this);
18665     this.on('complete', this.updateNode, this);
18666     this.on('beforestartedit', this.fitToTree, this);
18667     this.on('startedit', this.bindScroll, this, {delay:10});
18668     this.on('specialkey', this.onSpecialKey, this);
18669 };
18670
18671 Roo.extend(Roo.tree.TreeEditor, Roo.Editor, {
18672     /**
18673      * @cfg {String} alignment
18674      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "l-l").
18675      */
18676     alignment: "l-l",
18677     // inherit
18678     autoSize: false,
18679     /**
18680      * @cfg {Boolean} hideEl
18681      * True to hide the bound element while the editor is displayed (defaults to false)
18682      */
18683     hideEl : false,
18684     /**
18685      * @cfg {String} cls
18686      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
18687      */
18688     cls: "x-small-editor x-tree-editor",
18689     /**
18690      * @cfg {Boolean} shim
18691      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
18692      */
18693     shim:false,
18694     // inherit
18695     shadow:"frame",
18696     /**
18697      * @cfg {Number} maxWidth
18698      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
18699      * the containing tree element's size, it will be automatically limited for you to the container width, taking
18700      * scroll and client offsets into account prior to each edit.
18701      */
18702     maxWidth: 250,
18703
18704     editDelay : 350,
18705
18706     // private
18707     fitToTree : function(ed, el){
18708         var td = this.tree.getTreeEl().dom, nd = el.dom;
18709         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
18710             td.scrollLeft = nd.offsetLeft;
18711         }
18712         var w = Math.min(
18713                 this.maxWidth,
18714                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
18715         this.setSize(w, '');
18716         
18717         return this.fireEvent('beforenodeedit', this, this.editNode);
18718         
18719     },
18720
18721     // private
18722     triggerEdit : function(node){
18723         this.completeEdit();
18724         this.editNode = node;
18725         this.startEdit(node.ui.textNode, node.text);
18726     },
18727
18728     // private
18729     bindScroll : function(){
18730         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
18731     },
18732
18733     // private
18734     beforeNodeClick : function(node, e){
18735         var sinceLast = (this.lastClick ? this.lastClick.getElapsed() : 0);
18736         this.lastClick = new Date();
18737         if(sinceLast > this.editDelay && this.tree.getSelectionModel().isSelected(node)){
18738             e.stopEvent();
18739             this.triggerEdit(node);
18740             return false;
18741         }
18742         return true;
18743     },
18744
18745     // private
18746     updateNode : function(ed, value){
18747         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
18748         this.editNode.setText(value);
18749     },
18750
18751     // private
18752     onHide : function(){
18753         Roo.tree.TreeEditor.superclass.onHide.call(this);
18754         if(this.editNode){
18755             this.editNode.ui.focus();
18756         }
18757     },
18758
18759     // private
18760     onSpecialKey : function(field, e){
18761         var k = e.getKey();
18762         if(k == e.ESC){
18763             e.stopEvent();
18764             this.cancelEdit();
18765         }else if(k == e.ENTER && !e.hasModifier()){
18766             e.stopEvent();
18767             this.completeEdit();
18768         }
18769     }
18770 });//<Script type="text/javascript">
18771 /*
18772  * Based on:
18773  * Ext JS Library 1.1.1
18774  * Copyright(c) 2006-2007, Ext JS, LLC.
18775  *
18776  * Originally Released Under LGPL - original licence link has changed is not relivant.
18777  *
18778  * Fork - LGPL
18779  * <script type="text/javascript">
18780  */
18781  
18782 /**
18783  * Not documented??? - probably should be...
18784  */
18785
18786 Roo.tree.ColumnNodeUI = Roo.extend(Roo.tree.TreeNodeUI, {
18787     //focus: Roo.emptyFn, // prevent odd scrolling behavior
18788     
18789     renderElements : function(n, a, targetNode, bulkRender){
18790         //consel.log("renderElements?");
18791         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
18792
18793         var t = n.getOwnerTree();
18794         var tid = Pman.Tab.Document_TypesTree.tree.el.id;
18795         
18796         var cols = t.columns;
18797         var bw = t.borderWidth;
18798         var c = cols[0];
18799         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
18800          var cb = typeof a.checked == "boolean";
18801         var tx = String.format('{0}',n.text || (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
18802         var colcls = 'x-t-' + tid + '-c0';
18803         var buf = [
18804             '<li class="x-tree-node">',
18805             
18806                 
18807                 '<div class="x-tree-node-el ', a.cls,'">',
18808                     // extran...
18809                     '<div class="x-tree-col ', colcls, '" style="width:', c.width-bw, 'px;">',
18810                 
18811                 
18812                         '<span class="x-tree-node-indent">',this.indentMarkup,'</span>',
18813                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon  " />',
18814                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',
18815                            (a.icon ? ' x-tree-node-inline-icon' : ''),
18816                            (a.iconCls ? ' '+a.iconCls : ''),
18817                            '" unselectable="on" />',
18818                         (cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + 
18819                              (a.checked ? 'checked="checked" />' : ' />')) : ''),
18820                              
18821                         '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
18822                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>',
18823                             '<span unselectable="on" qtip="' + tx + '">',
18824                              tx,
18825                              '</span></a>' ,
18826                     '</div>',
18827                      '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
18828                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>'
18829                  ];
18830         for(var i = 1, len = cols.length; i < len; i++){
18831             c = cols[i];
18832             colcls = 'x-t-' + tid + '-c' +i;
18833             tx = String.format('{0}', (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
18834             buf.push('<div class="x-tree-col ', colcls, ' ' ,(c.cls?c.cls:''),'" style="width:',c.width-bw,'px;">',
18835                         '<div class="x-tree-col-text" qtip="' + tx +'">',tx,"</div>",
18836                       "</div>");
18837          }
18838          
18839          buf.push(
18840             '</a>',
18841             '<div class="x-clear"></div></div>',
18842             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
18843             "</li>");
18844         
18845         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
18846             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
18847                                 n.nextSibling.ui.getEl(), buf.join(""));
18848         }else{
18849             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
18850         }
18851         var el = this.wrap.firstChild;
18852         this.elRow = el;
18853         this.elNode = el.firstChild;
18854         this.ranchor = el.childNodes[1];
18855         this.ctNode = this.wrap.childNodes[1];
18856         var cs = el.firstChild.childNodes;
18857         this.indentNode = cs[0];
18858         this.ecNode = cs[1];
18859         this.iconNode = cs[2];
18860         var index = 3;
18861         if(cb){
18862             this.checkbox = cs[3];
18863             index++;
18864         }
18865         this.anchor = cs[index];
18866         
18867         this.textNode = cs[index].firstChild;
18868         
18869         //el.on("click", this.onClick, this);
18870         //el.on("dblclick", this.onDblClick, this);
18871         
18872         
18873        // console.log(this);
18874     },
18875     initEvents : function(){
18876         Roo.tree.ColumnNodeUI.superclass.initEvents.call(this);
18877         
18878             
18879         var a = this.ranchor;
18880
18881         var el = Roo.get(a);
18882
18883         if(Roo.isOpera){ // opera render bug ignores the CSS
18884             el.setStyle("text-decoration", "none");
18885         }
18886
18887         el.on("click", this.onClick, this);
18888         el.on("dblclick", this.onDblClick, this);
18889         el.on("contextmenu", this.onContextMenu, this);
18890         
18891     },
18892     
18893     /*onSelectedChange : function(state){
18894         if(state){
18895             this.focus();
18896             this.addClass("x-tree-selected");
18897         }else{
18898             //this.blur();
18899             this.removeClass("x-tree-selected");
18900         }
18901     },*/
18902     addClass : function(cls){
18903         if(this.elRow){
18904             Roo.fly(this.elRow).addClass(cls);
18905         }
18906         
18907     },
18908     
18909     
18910     removeClass : function(cls){
18911         if(this.elRow){
18912             Roo.fly(this.elRow).removeClass(cls);
18913         }
18914     }
18915
18916     
18917     
18918 });//<Script type="text/javascript">
18919
18920 /*
18921  * Based on:
18922  * Ext JS Library 1.1.1
18923  * Copyright(c) 2006-2007, Ext JS, LLC.
18924  *
18925  * Originally Released Under LGPL - original licence link has changed is not relivant.
18926  *
18927  * Fork - LGPL
18928  * <script type="text/javascript">
18929  */
18930  
18931
18932 /**
18933  * @class Roo.tree.ColumnTree
18934  * @extends Roo.data.TreePanel
18935  * @cfg {Object} columns  Including width, header, renderer, cls, dataIndex 
18936  * @cfg {int} borderWidth  compined right/left border allowance
18937  * @constructor
18938  * @param {String/HTMLElement/Element} el The container element
18939  * @param {Object} config
18940  */
18941 Roo.tree.ColumnTree =  function(el, config)
18942 {
18943    Roo.tree.ColumnTree.superclass.constructor.call(this, el , config);
18944    this.addEvents({
18945         /**
18946         * @event resize
18947         * Fire this event on a container when it resizes
18948         * @param {int} w Width
18949         * @param {int} h Height
18950         */
18951        "resize" : true
18952     });
18953     this.on('resize', this.onResize, this);
18954 };
18955
18956 Roo.extend(Roo.tree.ColumnTree, Roo.tree.TreePanel, {
18957     //lines:false,
18958     
18959     
18960     borderWidth: Roo.isBorderBox ? 0 : 2, 
18961     headEls : false,
18962     
18963     render : function(){
18964         // add the header.....
18965        
18966         Roo.tree.ColumnTree.superclass.render.apply(this);
18967         
18968         this.el.addClass('x-column-tree');
18969         
18970         this.headers = this.el.createChild(
18971             {cls:'x-tree-headers'},this.innerCt.dom);
18972    
18973         var cols = this.columns, c;
18974         var totalWidth = 0;
18975         this.headEls = [];
18976         var  len = cols.length;
18977         for(var i = 0; i < len; i++){
18978              c = cols[i];
18979              totalWidth += c.width;
18980             this.headEls.push(this.headers.createChild({
18981                  cls:'x-tree-hd ' + (c.cls?c.cls+'-hd':''),
18982                  cn: {
18983                      cls:'x-tree-hd-text',
18984                      html: c.header
18985                  },
18986                  style:'width:'+(c.width-this.borderWidth)+'px;'
18987              }));
18988         }
18989         this.headers.createChild({cls:'x-clear'});
18990         // prevent floats from wrapping when clipped
18991         this.headers.setWidth(totalWidth);
18992         //this.innerCt.setWidth(totalWidth);
18993         this.innerCt.setStyle({ overflow: 'auto' });
18994         this.onResize(this.width, this.height);
18995              
18996         
18997     },
18998     onResize : function(w,h)
18999     {
19000         this.height = h;
19001         this.width = w;
19002         // resize cols..
19003         this.innerCt.setWidth(this.width);
19004         this.innerCt.setHeight(this.height-20);
19005         
19006         // headers...
19007         var cols = this.columns, c;
19008         var totalWidth = 0;
19009         var expEl = false;
19010         var len = cols.length;
19011         for(var i = 0; i < len; i++){
19012             c = cols[i];
19013             if (this.autoExpandColumn !== false && c.dataIndex == this.autoExpandColumn) {
19014                 // it's the expander..
19015                 expEl  = this.headEls[i];
19016                 continue;
19017             }
19018             totalWidth += c.width;
19019             
19020         }
19021         if (expEl) {
19022             expEl.setWidth(  ((w - totalWidth)-this.borderWidth - 20));
19023         }
19024         this.headers.setWidth(w-20);
19025
19026         
19027         
19028         
19029     }
19030 });
19031 /*
19032  * Based on:
19033  * Ext JS Library 1.1.1
19034  * Copyright(c) 2006-2007, Ext JS, LLC.
19035  *
19036  * Originally Released Under LGPL - original licence link has changed is not relivant.
19037  *
19038  * Fork - LGPL
19039  * <script type="text/javascript">
19040  */
19041  
19042 /**
19043  * @class Roo.menu.Menu
19044  * @extends Roo.util.Observable
19045  * A menu object.  This is the container to which you add all other menu items.  Menu can also serve a as a base class
19046  * when you want a specialzed menu based off of another component (like {@link Roo.menu.DateMenu} for example).
19047  * @constructor
19048  * Creates a new Menu
19049  * @param {Object} config Configuration options
19050  */
19051 Roo.menu.Menu = function(config){
19052     Roo.apply(this, config);
19053     this.id = this.id || Roo.id();
19054     this.addEvents({
19055         /**
19056          * @event beforeshow
19057          * Fires before this menu is displayed
19058          * @param {Roo.menu.Menu} this
19059          */
19060         beforeshow : true,
19061         /**
19062          * @event beforehide
19063          * Fires before this menu is hidden
19064          * @param {Roo.menu.Menu} this
19065          */
19066         beforehide : true,
19067         /**
19068          * @event show
19069          * Fires after this menu is displayed
19070          * @param {Roo.menu.Menu} this
19071          */
19072         show : true,
19073         /**
19074          * @event hide
19075          * Fires after this menu is hidden
19076          * @param {Roo.menu.Menu} this
19077          */
19078         hide : true,
19079         /**
19080          * @event click
19081          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
19082          * @param {Roo.menu.Menu} this
19083          * @param {Roo.menu.Item} menuItem The menu item that was clicked
19084          * @param {Roo.EventObject} e
19085          */
19086         click : true,
19087         /**
19088          * @event mouseover
19089          * Fires when the mouse is hovering over this menu
19090          * @param {Roo.menu.Menu} this
19091          * @param {Roo.EventObject} e
19092          * @param {Roo.menu.Item} menuItem The menu item that was clicked
19093          */
19094         mouseover : true,
19095         /**
19096          * @event mouseout
19097          * Fires when the mouse exits this menu
19098          * @param {Roo.menu.Menu} this
19099          * @param {Roo.EventObject} e
19100          * @param {Roo.menu.Item} menuItem The menu item that was clicked
19101          */
19102         mouseout : true,
19103         /**
19104          * @event itemclick
19105          * Fires when a menu item contained in this menu is clicked
19106          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
19107          * @param {Roo.EventObject} e
19108          */
19109         itemclick: true
19110     });
19111     if (this.registerMenu) {
19112         Roo.menu.MenuMgr.register(this);
19113     }
19114     
19115     var mis = this.items;
19116     this.items = new Roo.util.MixedCollection();
19117     if(mis){
19118         this.add.apply(this, mis);
19119     }
19120 };
19121
19122 Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
19123     /**
19124      * @cfg {Number} minWidth The minimum width of the menu in pixels (defaults to 120)
19125      */
19126     minWidth : 120,
19127     /**
19128      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
19129      * for bottom-right shadow (defaults to "sides")
19130      */
19131     shadow : "sides",
19132     /**
19133      * @cfg {String} subMenuAlign The {@link Roo.Element#alignTo} anchor position value to use for submenus of
19134      * this menu (defaults to "tl-tr?")
19135      */
19136     subMenuAlign : "tl-tr?",
19137     /**
19138      * @cfg {String} defaultAlign The default {@link Roo.Element#alignTo) anchor position value for this menu
19139      * relative to its element of origin (defaults to "tl-bl?")
19140      */
19141     defaultAlign : "tl-bl?",
19142     /**
19143      * @cfg {Boolean} allowOtherMenus True to allow multiple menus to be displayed at the same time (defaults to false)
19144      */
19145     allowOtherMenus : false,
19146     /**
19147      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
19148      */
19149     registerMenu : true,
19150
19151     hidden:true,
19152
19153     // private
19154     render : function(){
19155         if(this.el){
19156             return;
19157         }
19158         var el = this.el = new Roo.Layer({
19159             cls: "x-menu",
19160             shadow:this.shadow,
19161             constrain: false,
19162             parentEl: this.parentEl || document.body,
19163             zindex:15000
19164         });
19165
19166         this.keyNav = new Roo.menu.MenuNav(this);
19167
19168         if(this.plain){
19169             el.addClass("x-menu-plain");
19170         }
19171         if(this.cls){
19172             el.addClass(this.cls);
19173         }
19174         // generic focus element
19175         this.focusEl = el.createChild({
19176             tag: "a", cls: "x-menu-focus", href: "#", onclick: "return false;", tabIndex:"-1"
19177         });
19178         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
19179         ul.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
19180         
19181         ul.on("mouseover", this.onMouseOver, this);
19182         ul.on("mouseout", this.onMouseOut, this);
19183         this.items.each(function(item){
19184             if (item.hidden) {
19185                 return;
19186             }
19187             
19188             var li = document.createElement("li");
19189             li.className = "x-menu-list-item";
19190             ul.dom.appendChild(li);
19191             item.render(li, this);
19192         }, this);
19193         this.ul = ul;
19194         this.autoWidth();
19195     },
19196
19197     // private
19198     autoWidth : function(){
19199         var el = this.el, ul = this.ul;
19200         if(!el){
19201             return;
19202         }
19203         var w = this.width;
19204         if(w){
19205             el.setWidth(w);
19206         }else if(Roo.isIE){
19207             el.setWidth(this.minWidth);
19208             var t = el.dom.offsetWidth; // force recalc
19209             el.setWidth(ul.getWidth()+el.getFrameWidth("lr"));
19210         }
19211     },
19212
19213     // private
19214     delayAutoWidth : function(){
19215         if(this.rendered){
19216             if(!this.awTask){
19217                 this.awTask = new Roo.util.DelayedTask(this.autoWidth, this);
19218             }
19219             this.awTask.delay(20);
19220         }
19221     },
19222
19223     // private
19224     findTargetItem : function(e){
19225         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
19226         if(t && t.menuItemId){
19227             return this.items.get(t.menuItemId);
19228         }
19229     },
19230
19231     // private
19232     onClick : function(e){
19233         Roo.log("menu.onClick");
19234         var t = this.findTargetItem(e);
19235         if(!t){
19236             return;
19237         }
19238         Roo.log(e);
19239         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
19240             if(t == this.activeItem && t.shouldDeactivate(e)){
19241                 this.activeItem.deactivate();
19242                 delete this.activeItem;
19243                 return;
19244             }
19245             if(t.canActivate){
19246                 this.setActiveItem(t, true);
19247             }
19248             return;
19249             
19250             
19251         }
19252         
19253         t.onClick(e);
19254         this.fireEvent("click", this, t, e);
19255     },
19256
19257     // private
19258     setActiveItem : function(item, autoExpand){
19259         if(item != this.activeItem){
19260             if(this.activeItem){
19261                 this.activeItem.deactivate();
19262             }
19263             this.activeItem = item;
19264             item.activate(autoExpand);
19265         }else if(autoExpand){
19266             item.expandMenu();
19267         }
19268     },
19269
19270     // private
19271     tryActivate : function(start, step){
19272         var items = this.items;
19273         for(var i = start, len = items.length; i >= 0 && i < len; i+= step){
19274             var item = items.get(i);
19275             if(!item.disabled && item.canActivate){
19276                 this.setActiveItem(item, false);
19277                 return item;
19278             }
19279         }
19280         return false;
19281     },
19282
19283     // private
19284     onMouseOver : function(e){
19285         var t;
19286         if(t = this.findTargetItem(e)){
19287             if(t.canActivate && !t.disabled){
19288                 this.setActiveItem(t, true);
19289             }
19290         }
19291         this.fireEvent("mouseover", this, e, t);
19292     },
19293
19294     // private
19295     onMouseOut : function(e){
19296         var t;
19297         if(t = this.findTargetItem(e)){
19298             if(t == this.activeItem && t.shouldDeactivate(e)){
19299                 this.activeItem.deactivate();
19300                 delete this.activeItem;
19301             }
19302         }
19303         this.fireEvent("mouseout", this, e, t);
19304     },
19305
19306     /**
19307      * Read-only.  Returns true if the menu is currently displayed, else false.
19308      * @type Boolean
19309      */
19310     isVisible : function(){
19311         return this.el && !this.hidden;
19312     },
19313
19314     /**
19315      * Displays this menu relative to another element
19316      * @param {String/HTMLElement/Roo.Element} element The element to align to
19317      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
19318      * the element (defaults to this.defaultAlign)
19319      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
19320      */
19321     show : function(el, pos, parentMenu){
19322         this.parentMenu = parentMenu;
19323         if(!this.el){
19324             this.render();
19325         }
19326         this.fireEvent("beforeshow", this);
19327         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
19328     },
19329
19330     /**
19331      * Displays this menu at a specific xy position
19332      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
19333      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
19334      */
19335     showAt : function(xy, parentMenu, /* private: */_e){
19336         this.parentMenu = parentMenu;
19337         if(!this.el){
19338             this.render();
19339         }
19340         if(_e !== false){
19341             this.fireEvent("beforeshow", this);
19342             xy = this.el.adjustForConstraints(xy);
19343         }
19344         this.el.setXY(xy);
19345         this.el.show();
19346         this.hidden = false;
19347         this.focus();
19348         this.fireEvent("show", this);
19349     },
19350
19351     focus : function(){
19352         if(!this.hidden){
19353             this.doFocus.defer(50, this);
19354         }
19355     },
19356
19357     doFocus : function(){
19358         if(!this.hidden){
19359             this.focusEl.focus();
19360         }
19361     },
19362
19363     /**
19364      * Hides this menu and optionally all parent menus
19365      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
19366      */
19367     hide : function(deep){
19368         if(this.el && this.isVisible()){
19369             this.fireEvent("beforehide", this);
19370             if(this.activeItem){
19371                 this.activeItem.deactivate();
19372                 this.activeItem = null;
19373             }
19374             this.el.hide();
19375             this.hidden = true;
19376             this.fireEvent("hide", this);
19377         }
19378         if(deep === true && this.parentMenu){
19379             this.parentMenu.hide(true);
19380         }
19381     },
19382
19383     /**
19384      * Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.
19385      * Any of the following are valid:
19386      * <ul>
19387      * <li>Any menu item object based on {@link Roo.menu.Item}</li>
19388      * <li>An HTMLElement object which will be converted to a menu item</li>
19389      * <li>A menu item config object that will be created as a new menu item</li>
19390      * <li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise
19391      * it will be converted into a {@link Roo.menu.TextItem} and added</li>
19392      * </ul>
19393      * Usage:
19394      * <pre><code>
19395 // Create the menu
19396 var menu = new Roo.menu.Menu();
19397
19398 // Create a menu item to add by reference
19399 var menuItem = new Roo.menu.Item({ text: 'New Item!' });
19400
19401 // Add a bunch of items at once using different methods.
19402 // Only the last item added will be returned.
19403 var item = menu.add(
19404     menuItem,                // add existing item by ref
19405     'Dynamic Item',          // new TextItem
19406     '-',                     // new separator
19407     { text: 'Config Item' }  // new item by config
19408 );
19409 </code></pre>
19410      * @param {Mixed} args One or more menu items, menu item configs or other objects that can be converted to menu items
19411      * @return {Roo.menu.Item} The menu item that was added, or the last one if multiple items were added
19412      */
19413     add : function(){
19414         var a = arguments, l = a.length, item;
19415         for(var i = 0; i < l; i++){
19416             var el = a[i];
19417             if ((typeof(el) == "object") && el.xtype && el.xns) {
19418                 el = Roo.factory(el, Roo.menu);
19419             }
19420             
19421             if(el.render){ // some kind of Item
19422                 item = this.addItem(el);
19423             }else if(typeof el == "string"){ // string
19424                 if(el == "separator" || el == "-"){
19425                     item = this.addSeparator();
19426                 }else{
19427                     item = this.addText(el);
19428                 }
19429             }else if(el.tagName || el.el){ // element
19430                 item = this.addElement(el);
19431             }else if(typeof el == "object"){ // must be menu item config?
19432                 item = this.addMenuItem(el);
19433             }
19434         }
19435         return item;
19436     },
19437
19438     /**
19439      * Returns this menu's underlying {@link Roo.Element} object
19440      * @return {Roo.Element} The element
19441      */
19442     getEl : function(){
19443         if(!this.el){
19444             this.render();
19445         }
19446         return this.el;
19447     },
19448
19449     /**
19450      * Adds a separator bar to the menu
19451      * @return {Roo.menu.Item} The menu item that was added
19452      */
19453     addSeparator : function(){
19454         return this.addItem(new Roo.menu.Separator());
19455     },
19456
19457     /**
19458      * Adds an {@link Roo.Element} object to the menu
19459      * @param {String/HTMLElement/Roo.Element} el The element or DOM node to add, or its id
19460      * @return {Roo.menu.Item} The menu item that was added
19461      */
19462     addElement : function(el){
19463         return this.addItem(new Roo.menu.BaseItem(el));
19464     },
19465
19466     /**
19467      * Adds an existing object based on {@link Roo.menu.Item} to the menu
19468      * @param {Roo.menu.Item} item The menu item to add
19469      * @return {Roo.menu.Item} The menu item that was added
19470      */
19471     addItem : function(item){
19472         this.items.add(item);
19473         if(this.ul){
19474             var li = document.createElement("li");
19475             li.className = "x-menu-list-item";
19476             this.ul.dom.appendChild(li);
19477             item.render(li, this);
19478             this.delayAutoWidth();
19479         }
19480         return item;
19481     },
19482
19483     /**
19484      * Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu
19485      * @param {Object} config A MenuItem config object
19486      * @return {Roo.menu.Item} The menu item that was added
19487      */
19488     addMenuItem : function(config){
19489         if(!(config instanceof Roo.menu.Item)){
19490             if(typeof config.checked == "boolean"){ // must be check menu item config?
19491                 config = new Roo.menu.CheckItem(config);
19492             }else{
19493                 config = new Roo.menu.Item(config);
19494             }
19495         }
19496         return this.addItem(config);
19497     },
19498
19499     /**
19500      * Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu
19501      * @param {String} text The text to display in the menu item
19502      * @return {Roo.menu.Item} The menu item that was added
19503      */
19504     addText : function(text){
19505         return this.addItem(new Roo.menu.TextItem({ text : text }));
19506     },
19507
19508     /**
19509      * Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index
19510      * @param {Number} index The index in the menu's list of current items where the new item should be inserted
19511      * @param {Roo.menu.Item} item The menu item to add
19512      * @return {Roo.menu.Item} The menu item that was added
19513      */
19514     insert : function(index, item){
19515         this.items.insert(index, item);
19516         if(this.ul){
19517             var li = document.createElement("li");
19518             li.className = "x-menu-list-item";
19519             this.ul.dom.insertBefore(li, this.ul.dom.childNodes[index]);
19520             item.render(li, this);
19521             this.delayAutoWidth();
19522         }
19523         return item;
19524     },
19525
19526     /**
19527      * Removes an {@link Roo.menu.Item} from the menu and destroys the object
19528      * @param {Roo.menu.Item} item The menu item to remove
19529      */
19530     remove : function(item){
19531         this.items.removeKey(item.id);
19532         item.destroy();
19533     },
19534
19535     /**
19536      * Removes and destroys all items in the menu
19537      */
19538     removeAll : function(){
19539         var f;
19540         while(f = this.items.first()){
19541             this.remove(f);
19542         }
19543     }
19544 });
19545
19546 // MenuNav is a private utility class used internally by the Menu
19547 Roo.menu.MenuNav = function(menu){
19548     Roo.menu.MenuNav.superclass.constructor.call(this, menu.el);
19549     this.scope = this.menu = menu;
19550 };
19551
19552 Roo.extend(Roo.menu.MenuNav, Roo.KeyNav, {
19553     doRelay : function(e, h){
19554         var k = e.getKey();
19555         if(!this.menu.activeItem && e.isNavKeyPress() && k != e.SPACE && k != e.RETURN){
19556             this.menu.tryActivate(0, 1);
19557             return false;
19558         }
19559         return h.call(this.scope || this, e, this.menu);
19560     },
19561
19562     up : function(e, m){
19563         if(!m.tryActivate(m.items.indexOf(m.activeItem)-1, -1)){
19564             m.tryActivate(m.items.length-1, -1);
19565         }
19566     },
19567
19568     down : function(e, m){
19569         if(!m.tryActivate(m.items.indexOf(m.activeItem)+1, 1)){
19570             m.tryActivate(0, 1);
19571         }
19572     },
19573
19574     right : function(e, m){
19575         if(m.activeItem){
19576             m.activeItem.expandMenu(true);
19577         }
19578     },
19579
19580     left : function(e, m){
19581         m.hide();
19582         if(m.parentMenu && m.parentMenu.activeItem){
19583             m.parentMenu.activeItem.activate();
19584         }
19585     },
19586
19587     enter : function(e, m){
19588         if(m.activeItem){
19589             e.stopPropagation();
19590             m.activeItem.onClick(e);
19591             m.fireEvent("click", this, m.activeItem);
19592             return true;
19593         }
19594     }
19595 });/*
19596  * Based on:
19597  * Ext JS Library 1.1.1
19598  * Copyright(c) 2006-2007, Ext JS, LLC.
19599  *
19600  * Originally Released Under LGPL - original licence link has changed is not relivant.
19601  *
19602  * Fork - LGPL
19603  * <script type="text/javascript">
19604  */
19605  
19606 /**
19607  * @class Roo.menu.MenuMgr
19608  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
19609  * @singleton
19610  */
19611 Roo.menu.MenuMgr = function(){
19612    var menus, active, groups = {}, attached = false, lastShow = new Date();
19613
19614    // private - called when first menu is created
19615    function init(){
19616        menus = {};
19617        active = new Roo.util.MixedCollection();
19618        Roo.get(document).addKeyListener(27, function(){
19619            if(active.length > 0){
19620                hideAll();
19621            }
19622        });
19623    }
19624
19625    // private
19626    function hideAll(){
19627        if(active && active.length > 0){
19628            var c = active.clone();
19629            c.each(function(m){
19630                m.hide();
19631            });
19632        }
19633    }
19634
19635    // private
19636    function onHide(m){
19637        active.remove(m);
19638        if(active.length < 1){
19639            Roo.get(document).un("mousedown", onMouseDown);
19640            attached = false;
19641        }
19642    }
19643
19644    // private
19645    function onShow(m){
19646        var last = active.last();
19647        lastShow = new Date();
19648        active.add(m);
19649        if(!attached){
19650            Roo.get(document).on("mousedown", onMouseDown);
19651            attached = true;
19652        }
19653        if(m.parentMenu){
19654           m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
19655           m.parentMenu.activeChild = m;
19656        }else if(last && last.isVisible()){
19657           m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
19658        }
19659    }
19660
19661    // private
19662    function onBeforeHide(m){
19663        if(m.activeChild){
19664            m.activeChild.hide();
19665        }
19666        if(m.autoHideTimer){
19667            clearTimeout(m.autoHideTimer);
19668            delete m.autoHideTimer;
19669        }
19670    }
19671
19672    // private
19673    function onBeforeShow(m){
19674        var pm = m.parentMenu;
19675        if(!pm && !m.allowOtherMenus){
19676            hideAll();
19677        }else if(pm && pm.activeChild && active != m){
19678            pm.activeChild.hide();
19679        }
19680    }
19681
19682    // private
19683    function onMouseDown(e){
19684        if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
19685            hideAll();
19686        }
19687    }
19688
19689    // private
19690    function onBeforeCheck(mi, state){
19691        if(state){
19692            var g = groups[mi.group];
19693            for(var i = 0, l = g.length; i < l; i++){
19694                if(g[i] != mi){
19695                    g[i].setChecked(false);
19696                }
19697            }
19698        }
19699    }
19700
19701    return {
19702
19703        /**
19704         * Hides all menus that are currently visible
19705         */
19706        hideAll : function(){
19707             hideAll();  
19708        },
19709
19710        // private
19711        register : function(menu){
19712            if(!menus){
19713                init();
19714            }
19715            menus[menu.id] = menu;
19716            menu.on("beforehide", onBeforeHide);
19717            menu.on("hide", onHide);
19718            menu.on("beforeshow", onBeforeShow);
19719            menu.on("show", onShow);
19720            var g = menu.group;
19721            if(g && menu.events["checkchange"]){
19722                if(!groups[g]){
19723                    groups[g] = [];
19724                }
19725                groups[g].push(menu);
19726                menu.on("checkchange", onCheck);
19727            }
19728        },
19729
19730         /**
19731          * Returns a {@link Roo.menu.Menu} object
19732          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
19733          * be used to generate and return a new Menu instance.
19734          */
19735        get : function(menu){
19736            if(typeof menu == "string"){ // menu id
19737                return menus[menu];
19738            }else if(menu.events){  // menu instance
19739                return menu;
19740            }else if(typeof menu.length == 'number'){ // array of menu items?
19741                return new Roo.menu.Menu({items:menu});
19742            }else{ // otherwise, must be a config
19743                return new Roo.menu.Menu(menu);
19744            }
19745        },
19746
19747        // private
19748        unregister : function(menu){
19749            delete menus[menu.id];
19750            menu.un("beforehide", onBeforeHide);
19751            menu.un("hide", onHide);
19752            menu.un("beforeshow", onBeforeShow);
19753            menu.un("show", onShow);
19754            var g = menu.group;
19755            if(g && menu.events["checkchange"]){
19756                groups[g].remove(menu);
19757                menu.un("checkchange", onCheck);
19758            }
19759        },
19760
19761        // private
19762        registerCheckable : function(menuItem){
19763            var g = menuItem.group;
19764            if(g){
19765                if(!groups[g]){
19766                    groups[g] = [];
19767                }
19768                groups[g].push(menuItem);
19769                menuItem.on("beforecheckchange", onBeforeCheck);
19770            }
19771        },
19772
19773        // private
19774        unregisterCheckable : function(menuItem){
19775            var g = menuItem.group;
19776            if(g){
19777                groups[g].remove(menuItem);
19778                menuItem.un("beforecheckchange", onBeforeCheck);
19779            }
19780        }
19781    };
19782 }();/*
19783  * Based on:
19784  * Ext JS Library 1.1.1
19785  * Copyright(c) 2006-2007, Ext JS, LLC.
19786  *
19787  * Originally Released Under LGPL - original licence link has changed is not relivant.
19788  *
19789  * Fork - LGPL
19790  * <script type="text/javascript">
19791  */
19792  
19793
19794 /**
19795  * @class Roo.menu.BaseItem
19796  * @extends Roo.Component
19797  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
19798  * management and base configuration options shared by all menu components.
19799  * @constructor
19800  * Creates a new BaseItem
19801  * @param {Object} config Configuration options
19802  */
19803 Roo.menu.BaseItem = function(config){
19804     Roo.menu.BaseItem.superclass.constructor.call(this, config);
19805
19806     this.addEvents({
19807         /**
19808          * @event click
19809          * Fires when this item is clicked
19810          * @param {Roo.menu.BaseItem} this
19811          * @param {Roo.EventObject} e
19812          */
19813         click: true,
19814         /**
19815          * @event activate
19816          * Fires when this item is activated
19817          * @param {Roo.menu.BaseItem} this
19818          */
19819         activate : true,
19820         /**
19821          * @event deactivate
19822          * Fires when this item is deactivated
19823          * @param {Roo.menu.BaseItem} this
19824          */
19825         deactivate : true
19826     });
19827
19828     if(this.handler){
19829         this.on("click", this.handler, this.scope, true);
19830     }
19831 };
19832
19833 Roo.extend(Roo.menu.BaseItem, Roo.Component, {
19834     /**
19835      * @cfg {Function} handler
19836      * A function that will handle the click event of this menu item (defaults to undefined)
19837      */
19838     /**
19839      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
19840      */
19841     canActivate : false,
19842     
19843      /**
19844      * @cfg {Boolean} hidden True to prevent creation of this menu item (defaults to false)
19845      */
19846     hidden: false,
19847     
19848     /**
19849      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
19850      */
19851     activeClass : "x-menu-item-active",
19852     /**
19853      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
19854      */
19855     hideOnClick : true,
19856     /**
19857      * @cfg {Number} hideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
19858      */
19859     hideDelay : 100,
19860
19861     // private
19862     ctype: "Roo.menu.BaseItem",
19863
19864     // private
19865     actionMode : "container",
19866
19867     // private
19868     render : function(container, parentMenu){
19869         this.parentMenu = parentMenu;
19870         Roo.menu.BaseItem.superclass.render.call(this, container);
19871         this.container.menuItemId = this.id;
19872     },
19873
19874     // private
19875     onRender : function(container, position){
19876         this.el = Roo.get(this.el);
19877         container.dom.appendChild(this.el.dom);
19878     },
19879
19880     // private
19881     onClick : function(e){
19882         if(!this.disabled && this.fireEvent("click", this, e) !== false
19883                 && this.parentMenu.fireEvent("itemclick", this, e) !== false){
19884             this.handleClick(e);
19885         }else{
19886             e.stopEvent();
19887         }
19888     },
19889
19890     // private
19891     activate : function(){
19892         if(this.disabled){
19893             return false;
19894         }
19895         var li = this.container;
19896         li.addClass(this.activeClass);
19897         this.region = li.getRegion().adjust(2, 2, -2, -2);
19898         this.fireEvent("activate", this);
19899         return true;
19900     },
19901
19902     // private
19903     deactivate : function(){
19904         this.container.removeClass(this.activeClass);
19905         this.fireEvent("deactivate", this);
19906     },
19907
19908     // private
19909     shouldDeactivate : function(e){
19910         return !this.region || !this.region.contains(e.getPoint());
19911     },
19912
19913     // private
19914     handleClick : function(e){
19915         if(this.hideOnClick){
19916             this.parentMenu.hide.defer(this.hideDelay, this.parentMenu, [true]);
19917         }
19918     },
19919
19920     // private
19921     expandMenu : function(autoActivate){
19922         // do nothing
19923     },
19924
19925     // private
19926     hideMenu : function(){
19927         // do nothing
19928     }
19929 });/*
19930  * Based on:
19931  * Ext JS Library 1.1.1
19932  * Copyright(c) 2006-2007, Ext JS, LLC.
19933  *
19934  * Originally Released Under LGPL - original licence link has changed is not relivant.
19935  *
19936  * Fork - LGPL
19937  * <script type="text/javascript">
19938  */
19939  
19940 /**
19941  * @class Roo.menu.Adapter
19942  * @extends Roo.menu.BaseItem
19943  * 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.
19944  * It provides basic rendering, activation management and enable/disable logic required to work in menus.
19945  * @constructor
19946  * Creates a new Adapter
19947  * @param {Object} config Configuration options
19948  */
19949 Roo.menu.Adapter = function(component, config){
19950     Roo.menu.Adapter.superclass.constructor.call(this, config);
19951     this.component = component;
19952 };
19953 Roo.extend(Roo.menu.Adapter, Roo.menu.BaseItem, {
19954     // private
19955     canActivate : true,
19956
19957     // private
19958     onRender : function(container, position){
19959         this.component.render(container);
19960         this.el = this.component.getEl();
19961     },
19962
19963     // private
19964     activate : function(){
19965         if(this.disabled){
19966             return false;
19967         }
19968         this.component.focus();
19969         this.fireEvent("activate", this);
19970         return true;
19971     },
19972
19973     // private
19974     deactivate : function(){
19975         this.fireEvent("deactivate", this);
19976     },
19977
19978     // private
19979     disable : function(){
19980         this.component.disable();
19981         Roo.menu.Adapter.superclass.disable.call(this);
19982     },
19983
19984     // private
19985     enable : function(){
19986         this.component.enable();
19987         Roo.menu.Adapter.superclass.enable.call(this);
19988     }
19989 });/*
19990  * Based on:
19991  * Ext JS Library 1.1.1
19992  * Copyright(c) 2006-2007, Ext JS, LLC.
19993  *
19994  * Originally Released Under LGPL - original licence link has changed is not relivant.
19995  *
19996  * Fork - LGPL
19997  * <script type="text/javascript">
19998  */
19999
20000 /**
20001  * @class Roo.menu.TextItem
20002  * @extends Roo.menu.BaseItem
20003  * Adds a static text string to a menu, usually used as either a heading or group separator.
20004  * Note: old style constructor with text is still supported.
20005  * 
20006  * @constructor
20007  * Creates a new TextItem
20008  * @param {Object} cfg Configuration
20009  */
20010 Roo.menu.TextItem = function(cfg){
20011     if (typeof(cfg) == 'string') {
20012         this.text = cfg;
20013     } else {
20014         Roo.apply(this,cfg);
20015     }
20016     
20017     Roo.menu.TextItem.superclass.constructor.call(this);
20018 };
20019
20020 Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, {
20021     /**
20022      * @cfg {Boolean} text Text to show on item.
20023      */
20024     text : '',
20025     
20026     /**
20027      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
20028      */
20029     hideOnClick : false,
20030     /**
20031      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
20032      */
20033     itemCls : "x-menu-text",
20034
20035     // private
20036     onRender : function(){
20037         var s = document.createElement("span");
20038         s.className = this.itemCls;
20039         s.innerHTML = this.text;
20040         this.el = s;
20041         Roo.menu.TextItem.superclass.onRender.apply(this, arguments);
20042     }
20043 });/*
20044  * Based on:
20045  * Ext JS Library 1.1.1
20046  * Copyright(c) 2006-2007, Ext JS, LLC.
20047  *
20048  * Originally Released Under LGPL - original licence link has changed is not relivant.
20049  *
20050  * Fork - LGPL
20051  * <script type="text/javascript">
20052  */
20053
20054 /**
20055  * @class Roo.menu.Separator
20056  * @extends Roo.menu.BaseItem
20057  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
20058  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
20059  * @constructor
20060  * @param {Object} config Configuration options
20061  */
20062 Roo.menu.Separator = function(config){
20063     Roo.menu.Separator.superclass.constructor.call(this, config);
20064 };
20065
20066 Roo.extend(Roo.menu.Separator, Roo.menu.BaseItem, {
20067     /**
20068      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
20069      */
20070     itemCls : "x-menu-sep",
20071     /**
20072      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
20073      */
20074     hideOnClick : false,
20075
20076     // private
20077     onRender : function(li){
20078         var s = document.createElement("span");
20079         s.className = this.itemCls;
20080         s.innerHTML = "&#160;";
20081         this.el = s;
20082         li.addClass("x-menu-sep-li");
20083         Roo.menu.Separator.superclass.onRender.apply(this, arguments);
20084     }
20085 });/*
20086  * Based on:
20087  * Ext JS Library 1.1.1
20088  * Copyright(c) 2006-2007, Ext JS, LLC.
20089  *
20090  * Originally Released Under LGPL - original licence link has changed is not relivant.
20091  *
20092  * Fork - LGPL
20093  * <script type="text/javascript">
20094  */
20095 /**
20096  * @class Roo.menu.Item
20097  * @extends Roo.menu.BaseItem
20098  * A base class for all menu items that require menu-related functionality (like sub-menus) and are not static
20099  * display items.  Item extends the base functionality of {@link Roo.menu.BaseItem} by adding menu-specific
20100  * activation and click handling.
20101  * @constructor
20102  * Creates a new Item
20103  * @param {Object} config Configuration options
20104  */
20105 Roo.menu.Item = function(config){
20106     Roo.menu.Item.superclass.constructor.call(this, config);
20107     if(this.menu){
20108         this.menu = Roo.menu.MenuMgr.get(this.menu);
20109     }
20110 };
20111 Roo.extend(Roo.menu.Item, Roo.menu.BaseItem, {
20112     
20113     /**
20114      * @cfg {String} text
20115      * The text to show on the menu item.
20116      */
20117     text: '',
20118      /**
20119      * @cfg {String} HTML to render in menu
20120      * The text to show on the menu item (HTML version).
20121      */
20122     html: '',
20123     /**
20124      * @cfg {String} icon
20125      * The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)
20126      */
20127     icon: undefined,
20128     /**
20129      * @cfg {String} itemCls The default CSS class to use for menu items (defaults to "x-menu-item")
20130      */
20131     itemCls : "x-menu-item",
20132     /**
20133      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to true)
20134      */
20135     canActivate : true,
20136     /**
20137      * @cfg {Number} showDelay Length of time in milliseconds to wait before showing this item (defaults to 200)
20138      */
20139     showDelay: 200,
20140     // doc'd in BaseItem
20141     hideDelay: 200,
20142
20143     // private
20144     ctype: "Roo.menu.Item",
20145     
20146     // private
20147     onRender : function(container, position){
20148         var el = document.createElement("a");
20149         el.hideFocus = true;
20150         el.unselectable = "on";
20151         el.href = this.href || "#";
20152         if(this.hrefTarget){
20153             el.target = this.hrefTarget;
20154         }
20155         el.className = this.itemCls + (this.menu ?  " x-menu-item-arrow" : "") + (this.cls ?  " " + this.cls : "");
20156         
20157         var html = this.html.length ? this.html  : String.format('{0}',this.text);
20158         
20159         el.innerHTML = String.format(
20160                 '<img src="{0}" class="x-menu-item-icon {1}" />' + html,
20161                 this.icon || Roo.BLANK_IMAGE_URL, this.iconCls || '');
20162         this.el = el;
20163         Roo.menu.Item.superclass.onRender.call(this, container, position);
20164     },
20165
20166     /**
20167      * Sets the text to display in this menu item
20168      * @param {String} text The text to display
20169      * @param {Boolean} isHTML true to indicate text is pure html.
20170      */
20171     setText : function(text, isHTML){
20172         if (isHTML) {
20173             this.html = text;
20174         } else {
20175             this.text = text;
20176             this.html = '';
20177         }
20178         if(this.rendered){
20179             var html = this.html.length ? this.html  : String.format('{0}',this.text);
20180      
20181             this.el.update(String.format(
20182                 '<img src="{0}" class="x-menu-item-icon {2}">' + html,
20183                 this.icon || Roo.BLANK_IMAGE_URL, this.text, this.iconCls || ''));
20184             this.parentMenu.autoWidth();
20185         }
20186     },
20187
20188     // private
20189     handleClick : function(e){
20190         if(!this.href){ // if no link defined, stop the event automatically
20191             e.stopEvent();
20192         }
20193         Roo.menu.Item.superclass.handleClick.apply(this, arguments);
20194     },
20195
20196     // private
20197     activate : function(autoExpand){
20198         if(Roo.menu.Item.superclass.activate.apply(this, arguments)){
20199             this.focus();
20200             if(autoExpand){
20201                 this.expandMenu();
20202             }
20203         }
20204         return true;
20205     },
20206
20207     // private
20208     shouldDeactivate : function(e){
20209         if(Roo.menu.Item.superclass.shouldDeactivate.call(this, e)){
20210             if(this.menu && this.menu.isVisible()){
20211                 return !this.menu.getEl().getRegion().contains(e.getPoint());
20212             }
20213             return true;
20214         }
20215         return false;
20216     },
20217
20218     // private
20219     deactivate : function(){
20220         Roo.menu.Item.superclass.deactivate.apply(this, arguments);
20221         this.hideMenu();
20222     },
20223
20224     // private
20225     expandMenu : function(autoActivate){
20226         if(!this.disabled && this.menu){
20227             clearTimeout(this.hideTimer);
20228             delete this.hideTimer;
20229             if(!this.menu.isVisible() && !this.showTimer){
20230                 this.showTimer = this.deferExpand.defer(this.showDelay, this, [autoActivate]);
20231             }else if (this.menu.isVisible() && autoActivate){
20232                 this.menu.tryActivate(0, 1);
20233             }
20234         }
20235     },
20236
20237     // private
20238     deferExpand : function(autoActivate){
20239         delete this.showTimer;
20240         this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
20241         if(autoActivate){
20242             this.menu.tryActivate(0, 1);
20243         }
20244     },
20245
20246     // private
20247     hideMenu : function(){
20248         clearTimeout(this.showTimer);
20249         delete this.showTimer;
20250         if(!this.hideTimer && this.menu && this.menu.isVisible()){
20251             this.hideTimer = this.deferHide.defer(this.hideDelay, this);
20252         }
20253     },
20254
20255     // private
20256     deferHide : function(){
20257         delete this.hideTimer;
20258         this.menu.hide();
20259     }
20260 });/*
20261  * Based on:
20262  * Ext JS Library 1.1.1
20263  * Copyright(c) 2006-2007, Ext JS, LLC.
20264  *
20265  * Originally Released Under LGPL - original licence link has changed is not relivant.
20266  *
20267  * Fork - LGPL
20268  * <script type="text/javascript">
20269  */
20270  
20271 /**
20272  * @class Roo.menu.CheckItem
20273  * @extends Roo.menu.Item
20274  * Adds a menu item that contains a checkbox by default, but can also be part of a radio group.
20275  * @constructor
20276  * Creates a new CheckItem
20277  * @param {Object} config Configuration options
20278  */
20279 Roo.menu.CheckItem = function(config){
20280     Roo.menu.CheckItem.superclass.constructor.call(this, config);
20281     this.addEvents({
20282         /**
20283          * @event beforecheckchange
20284          * Fires before the checked value is set, providing an opportunity to cancel if needed
20285          * @param {Roo.menu.CheckItem} this
20286          * @param {Boolean} checked The new checked value that will be set
20287          */
20288         "beforecheckchange" : true,
20289         /**
20290          * @event checkchange
20291          * Fires after the checked value has been set
20292          * @param {Roo.menu.CheckItem} this
20293          * @param {Boolean} checked The checked value that was set
20294          */
20295         "checkchange" : true
20296     });
20297     if(this.checkHandler){
20298         this.on('checkchange', this.checkHandler, this.scope);
20299     }
20300 };
20301 Roo.extend(Roo.menu.CheckItem, Roo.menu.Item, {
20302     /**
20303      * @cfg {String} group
20304      * All check items with the same group name will automatically be grouped into a single-select
20305      * radio button group (defaults to '')
20306      */
20307     /**
20308      * @cfg {String} itemCls The default CSS class to use for check items (defaults to "x-menu-item x-menu-check-item")
20309      */
20310     itemCls : "x-menu-item x-menu-check-item",
20311     /**
20312      * @cfg {String} groupClass The default CSS class to use for radio group check items (defaults to "x-menu-group-item")
20313      */
20314     groupClass : "x-menu-group-item",
20315
20316     /**
20317      * @cfg {Boolean} checked True to initialize this checkbox as checked (defaults to false).  Note that
20318      * if this checkbox is part of a radio group (group = true) only the last item in the group that is
20319      * initialized with checked = true will be rendered as checked.
20320      */
20321     checked: false,
20322
20323     // private
20324     ctype: "Roo.menu.CheckItem",
20325
20326     // private
20327     onRender : function(c){
20328         Roo.menu.CheckItem.superclass.onRender.apply(this, arguments);
20329         if(this.group){
20330             this.el.addClass(this.groupClass);
20331         }
20332         Roo.menu.MenuMgr.registerCheckable(this);
20333         if(this.checked){
20334             this.checked = false;
20335             this.setChecked(true, true);
20336         }
20337     },
20338
20339     // private
20340     destroy : function(){
20341         if(this.rendered){
20342             Roo.menu.MenuMgr.unregisterCheckable(this);
20343         }
20344         Roo.menu.CheckItem.superclass.destroy.apply(this, arguments);
20345     },
20346
20347     /**
20348      * Set the checked state of this item
20349      * @param {Boolean} checked The new checked value
20350      * @param {Boolean} suppressEvent (optional) True to prevent the checkchange event from firing (defaults to false)
20351      */
20352     setChecked : function(state, suppressEvent){
20353         if(this.checked != state && this.fireEvent("beforecheckchange", this, state) !== false){
20354             if(this.container){
20355                 this.container[state ? "addClass" : "removeClass"]("x-menu-item-checked");
20356             }
20357             this.checked = state;
20358             if(suppressEvent !== true){
20359                 this.fireEvent("checkchange", this, state);
20360             }
20361         }
20362     },
20363
20364     // private
20365     handleClick : function(e){
20366        if(!this.disabled && !(this.checked && this.group)){// disable unselect on radio item
20367            this.setChecked(!this.checked);
20368        }
20369        Roo.menu.CheckItem.superclass.handleClick.apply(this, arguments);
20370     }
20371 });/*
20372  * Based on:
20373  * Ext JS Library 1.1.1
20374  * Copyright(c) 2006-2007, Ext JS, LLC.
20375  *
20376  * Originally Released Under LGPL - original licence link has changed is not relivant.
20377  *
20378  * Fork - LGPL
20379  * <script type="text/javascript">
20380  */
20381  
20382 /**
20383  * @class Roo.menu.DateItem
20384  * @extends Roo.menu.Adapter
20385  * A menu item that wraps the {@link Roo.DatPicker} component.
20386  * @constructor
20387  * Creates a new DateItem
20388  * @param {Object} config Configuration options
20389  */
20390 Roo.menu.DateItem = function(config){
20391     Roo.menu.DateItem.superclass.constructor.call(this, new Roo.DatePicker(config), config);
20392     /** The Roo.DatePicker object @type Roo.DatePicker */
20393     this.picker = this.component;
20394     this.addEvents({select: true});
20395     
20396     this.picker.on("render", function(picker){
20397         picker.getEl().swallowEvent("click");
20398         picker.container.addClass("x-menu-date-item");
20399     });
20400
20401     this.picker.on("select", this.onSelect, this);
20402 };
20403
20404 Roo.extend(Roo.menu.DateItem, Roo.menu.Adapter, {
20405     // private
20406     onSelect : function(picker, date){
20407         this.fireEvent("select", this, date, picker);
20408         Roo.menu.DateItem.superclass.handleClick.call(this);
20409     }
20410 });/*
20411  * Based on:
20412  * Ext JS Library 1.1.1
20413  * Copyright(c) 2006-2007, Ext JS, LLC.
20414  *
20415  * Originally Released Under LGPL - original licence link has changed is not relivant.
20416  *
20417  * Fork - LGPL
20418  * <script type="text/javascript">
20419  */
20420  
20421 /**
20422  * @class Roo.menu.ColorItem
20423  * @extends Roo.menu.Adapter
20424  * A menu item that wraps the {@link Roo.ColorPalette} component.
20425  * @constructor
20426  * Creates a new ColorItem
20427  * @param {Object} config Configuration options
20428  */
20429 Roo.menu.ColorItem = function(config){
20430     Roo.menu.ColorItem.superclass.constructor.call(this, new Roo.ColorPalette(config), config);
20431     /** The Roo.ColorPalette object @type Roo.ColorPalette */
20432     this.palette = this.component;
20433     this.relayEvents(this.palette, ["select"]);
20434     if(this.selectHandler){
20435         this.on('select', this.selectHandler, this.scope);
20436     }
20437 };
20438 Roo.extend(Roo.menu.ColorItem, Roo.menu.Adapter);/*
20439  * Based on:
20440  * Ext JS Library 1.1.1
20441  * Copyright(c) 2006-2007, Ext JS, LLC.
20442  *
20443  * Originally Released Under LGPL - original licence link has changed is not relivant.
20444  *
20445  * Fork - LGPL
20446  * <script type="text/javascript">
20447  */
20448  
20449
20450 /**
20451  * @class Roo.menu.DateMenu
20452  * @extends Roo.menu.Menu
20453  * A menu containing a {@link Roo.menu.DateItem} component (which provides a date picker).
20454  * @constructor
20455  * Creates a new DateMenu
20456  * @param {Object} config Configuration options
20457  */
20458 Roo.menu.DateMenu = function(config){
20459     Roo.menu.DateMenu.superclass.constructor.call(this, config);
20460     this.plain = true;
20461     var di = new Roo.menu.DateItem(config);
20462     this.add(di);
20463     /**
20464      * The {@link Roo.DatePicker} instance for this DateMenu
20465      * @type DatePicker
20466      */
20467     this.picker = di.picker;
20468     /**
20469      * @event select
20470      * @param {DatePicker} picker
20471      * @param {Date} date
20472      */
20473     this.relayEvents(di, ["select"]);
20474     this.on('beforeshow', function(){
20475         if(this.picker){
20476             this.picker.hideMonthPicker(false);
20477         }
20478     }, this);
20479 };
20480 Roo.extend(Roo.menu.DateMenu, Roo.menu.Menu, {
20481     cls:'x-date-menu'
20482 });/*
20483  * Based on:
20484  * Ext JS Library 1.1.1
20485  * Copyright(c) 2006-2007, Ext JS, LLC.
20486  *
20487  * Originally Released Under LGPL - original licence link has changed is not relivant.
20488  *
20489  * Fork - LGPL
20490  * <script type="text/javascript">
20491  */
20492  
20493
20494 /**
20495  * @class Roo.menu.ColorMenu
20496  * @extends Roo.menu.Menu
20497  * A menu containing a {@link Roo.menu.ColorItem} component (which provides a basic color picker).
20498  * @constructor
20499  * Creates a new ColorMenu
20500  * @param {Object} config Configuration options
20501  */
20502 Roo.menu.ColorMenu = function(config){
20503     Roo.menu.ColorMenu.superclass.constructor.call(this, config);
20504     this.plain = true;
20505     var ci = new Roo.menu.ColorItem(config);
20506     this.add(ci);
20507     /**
20508      * The {@link Roo.ColorPalette} instance for this ColorMenu
20509      * @type ColorPalette
20510      */
20511     this.palette = ci.palette;
20512     /**
20513      * @event select
20514      * @param {ColorPalette} palette
20515      * @param {String} color
20516      */
20517     this.relayEvents(ci, ["select"]);
20518 };
20519 Roo.extend(Roo.menu.ColorMenu, Roo.menu.Menu);/*
20520  * Based on:
20521  * Ext JS Library 1.1.1
20522  * Copyright(c) 2006-2007, Ext JS, LLC.
20523  *
20524  * Originally Released Under LGPL - original licence link has changed is not relivant.
20525  *
20526  * Fork - LGPL
20527  * <script type="text/javascript">
20528  */
20529  
20530 /**
20531  * @class Roo.form.Field
20532  * @extends Roo.BoxComponent
20533  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
20534  * @constructor
20535  * Creates a new Field
20536  * @param {Object} config Configuration options
20537  */
20538 Roo.form.Field = function(config){
20539     Roo.form.Field.superclass.constructor.call(this, config);
20540 };
20541
20542 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
20543     /**
20544      * @cfg {String} fieldLabel Label to use when rendering a form.
20545      */
20546        /**
20547      * @cfg {String} qtip Mouse over tip
20548      */
20549      
20550     /**
20551      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
20552      */
20553     invalidClass : "x-form-invalid",
20554     /**
20555      * @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")
20556      */
20557     invalidText : "The value in this field is invalid",
20558     /**
20559      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
20560      */
20561     focusClass : "x-form-focus",
20562     /**
20563      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
20564       automatic validation (defaults to "keyup").
20565      */
20566     validationEvent : "keyup",
20567     /**
20568      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
20569      */
20570     validateOnBlur : true,
20571     /**
20572      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
20573      */
20574     validationDelay : 250,
20575     /**
20576      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
20577      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
20578      */
20579     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "off"},
20580     /**
20581      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
20582      */
20583     fieldClass : "x-form-field",
20584     /**
20585      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
20586      *<pre>
20587 Value         Description
20588 -----------   ----------------------------------------------------------------------
20589 qtip          Display a quick tip when the user hovers over the field
20590 title         Display a default browser title attribute popup
20591 under         Add a block div beneath the field containing the error text
20592 side          Add an error icon to the right of the field with a popup on hover
20593 [element id]  Add the error text directly to the innerHTML of the specified element
20594 </pre>
20595      */
20596     msgTarget : 'qtip',
20597     /**
20598      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
20599      */
20600     msgFx : 'normal',
20601
20602     /**
20603      * @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.
20604      */
20605     readOnly : false,
20606
20607     /**
20608      * @cfg {Boolean} disabled True to disable the field (defaults to false).
20609      */
20610     disabled : false,
20611
20612     /**
20613      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
20614      */
20615     inputType : undefined,
20616     
20617     /**
20618      * @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).
20619          */
20620         tabIndex : undefined,
20621         
20622     // private
20623     isFormField : true,
20624
20625     // private
20626     hasFocus : false,
20627     /**
20628      * @property {Roo.Element} fieldEl
20629      * Element Containing the rendered Field (with label etc.)
20630      */
20631     /**
20632      * @cfg {Mixed} value A value to initialize this field with.
20633      */
20634     value : undefined,
20635
20636     /**
20637      * @cfg {String} name The field's HTML name attribute.
20638      */
20639     /**
20640      * @cfg {String} cls A CSS class to apply to the field's underlying element.
20641      */
20642
20643         // private ??
20644         initComponent : function(){
20645         Roo.form.Field.superclass.initComponent.call(this);
20646         this.addEvents({
20647             /**
20648              * @event focus
20649              * Fires when this field receives input focus.
20650              * @param {Roo.form.Field} this
20651              */
20652             focus : true,
20653             /**
20654              * @event blur
20655              * Fires when this field loses input focus.
20656              * @param {Roo.form.Field} this
20657              */
20658             blur : true,
20659             /**
20660              * @event specialkey
20661              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
20662              * {@link Roo.EventObject#getKey} to determine which key was pressed.
20663              * @param {Roo.form.Field} this
20664              * @param {Roo.EventObject} e The event object
20665              */
20666             specialkey : true,
20667             /**
20668              * @event change
20669              * Fires just before the field blurs if the field value has changed.
20670              * @param {Roo.form.Field} this
20671              * @param {Mixed} newValue The new value
20672              * @param {Mixed} oldValue The original value
20673              */
20674             change : true,
20675             /**
20676              * @event invalid
20677              * Fires after the field has been marked as invalid.
20678              * @param {Roo.form.Field} this
20679              * @param {String} msg The validation message
20680              */
20681             invalid : true,
20682             /**
20683              * @event valid
20684              * Fires after the field has been validated with no errors.
20685              * @param {Roo.form.Field} this
20686              */
20687             valid : true,
20688              /**
20689              * @event keyup
20690              * Fires after the key up
20691              * @param {Roo.form.Field} this
20692              * @param {Roo.EventObject}  e The event Object
20693              */
20694             keyup : true
20695         });
20696     },
20697
20698     /**
20699      * Returns the name attribute of the field if available
20700      * @return {String} name The field name
20701      */
20702     getName: function(){
20703          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
20704     },
20705
20706     // private
20707     onRender : function(ct, position){
20708         Roo.form.Field.superclass.onRender.call(this, ct, position);
20709         if(!this.el){
20710             var cfg = this.getAutoCreate();
20711             if(!cfg.name){
20712                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
20713             }
20714             if (!cfg.name.length) {
20715                 delete cfg.name;
20716             }
20717             if(this.inputType){
20718                 cfg.type = this.inputType;
20719             }
20720             this.el = ct.createChild(cfg, position);
20721         }
20722         var type = this.el.dom.type;
20723         if(type){
20724             if(type == 'password'){
20725                 type = 'text';
20726             }
20727             this.el.addClass('x-form-'+type);
20728         }
20729         if(this.readOnly){
20730             this.el.dom.readOnly = true;
20731         }
20732         if(this.tabIndex !== undefined){
20733             this.el.dom.setAttribute('tabIndex', this.tabIndex);
20734         }
20735
20736         this.el.addClass([this.fieldClass, this.cls]);
20737         this.initValue();
20738     },
20739
20740     /**
20741      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
20742      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
20743      * @return {Roo.form.Field} this
20744      */
20745     applyTo : function(target){
20746         this.allowDomMove = false;
20747         this.el = Roo.get(target);
20748         this.render(this.el.dom.parentNode);
20749         return this;
20750     },
20751
20752     // private
20753     initValue : function(){
20754         if(this.value !== undefined){
20755             this.setValue(this.value);
20756         }else if(this.el.dom.value.length > 0){
20757             this.setValue(this.el.dom.value);
20758         }
20759     },
20760
20761     /**
20762      * Returns true if this field has been changed since it was originally loaded and is not disabled.
20763      */
20764     isDirty : function() {
20765         if(this.disabled) {
20766             return false;
20767         }
20768         return String(this.getValue()) !== String(this.originalValue);
20769     },
20770
20771     // private
20772     afterRender : function(){
20773         Roo.form.Field.superclass.afterRender.call(this);
20774         this.initEvents();
20775     },
20776
20777     // private
20778     fireKey : function(e){
20779         //Roo.log('field ' + e.getKey());
20780         if(e.isNavKeyPress()){
20781             this.fireEvent("specialkey", this, e);
20782         }
20783     },
20784
20785     /**
20786      * Resets the current field value to the originally loaded value and clears any validation messages
20787      */
20788     reset : function(){
20789         this.setValue(this.resetValue);
20790         this.clearInvalid();
20791     },
20792
20793     // private
20794     initEvents : function(){
20795         // safari killled keypress - so keydown is now used..
20796         this.el.on("keydown" , this.fireKey,  this);
20797         this.el.on("focus", this.onFocus,  this);
20798         this.el.on("blur", this.onBlur,  this);
20799         this.el.relayEvent('keyup', this);
20800
20801         // reference to original value for reset
20802         this.originalValue = this.getValue();
20803         this.resetValue =  this.getValue();
20804     },
20805
20806     // private
20807     onFocus : function(){
20808         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
20809             this.el.addClass(this.focusClass);
20810         }
20811         if(!this.hasFocus){
20812             this.hasFocus = true;
20813             this.startValue = this.getValue();
20814             this.fireEvent("focus", this);
20815         }
20816     },
20817
20818     beforeBlur : Roo.emptyFn,
20819
20820     // private
20821     onBlur : function(){
20822         this.beforeBlur();
20823         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
20824             this.el.removeClass(this.focusClass);
20825         }
20826         this.hasFocus = false;
20827         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
20828             this.validate();
20829         }
20830         var v = this.getValue();
20831         if(String(v) !== String(this.startValue)){
20832             this.fireEvent('change', this, v, this.startValue);
20833         }
20834         this.fireEvent("blur", this);
20835     },
20836
20837     /**
20838      * Returns whether or not the field value is currently valid
20839      * @param {Boolean} preventMark True to disable marking the field invalid
20840      * @return {Boolean} True if the value is valid, else false
20841      */
20842     isValid : function(preventMark){
20843         if(this.disabled){
20844             return true;
20845         }
20846         var restore = this.preventMark;
20847         this.preventMark = preventMark === true;
20848         var v = this.validateValue(this.processValue(this.getRawValue()));
20849         this.preventMark = restore;
20850         return v;
20851     },
20852
20853     /**
20854      * Validates the field value
20855      * @return {Boolean} True if the value is valid, else false
20856      */
20857     validate : function(){
20858         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
20859             this.clearInvalid();
20860             return true;
20861         }
20862         return false;
20863     },
20864
20865     processValue : function(value){
20866         return value;
20867     },
20868
20869     // private
20870     // Subclasses should provide the validation implementation by overriding this
20871     validateValue : function(value){
20872         return true;
20873     },
20874
20875     /**
20876      * Mark this field as invalid
20877      * @param {String} msg The validation message
20878      */
20879     markInvalid : function(msg){
20880         if(!this.rendered || this.preventMark){ // not rendered
20881             return;
20882         }
20883         
20884         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
20885         
20886         obj.el.addClass(this.invalidClass);
20887         msg = msg || this.invalidText;
20888         switch(this.msgTarget){
20889             case 'qtip':
20890                 obj.el.dom.qtip = msg;
20891                 obj.el.dom.qclass = 'x-form-invalid-tip';
20892                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
20893                     Roo.QuickTips.enable();
20894                 }
20895                 break;
20896             case 'title':
20897                 this.el.dom.title = msg;
20898                 break;
20899             case 'under':
20900                 if(!this.errorEl){
20901                     var elp = this.el.findParent('.x-form-element', 5, true);
20902                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
20903                     this.errorEl.setWidth(elp.getWidth(true)-20);
20904                 }
20905                 this.errorEl.update(msg);
20906                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
20907                 break;
20908             case 'side':
20909                 if(!this.errorIcon){
20910                     var elp = this.el.findParent('.x-form-element', 5, true);
20911                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
20912                 }
20913                 this.alignErrorIcon();
20914                 this.errorIcon.dom.qtip = msg;
20915                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
20916                 this.errorIcon.show();
20917                 this.on('resize', this.alignErrorIcon, this);
20918                 break;
20919             default:
20920                 var t = Roo.getDom(this.msgTarget);
20921                 t.innerHTML = msg;
20922                 t.style.display = this.msgDisplay;
20923                 break;
20924         }
20925         this.fireEvent('invalid', this, msg);
20926     },
20927
20928     // private
20929     alignErrorIcon : function(){
20930         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
20931     },
20932
20933     /**
20934      * Clear any invalid styles/messages for this field
20935      */
20936     clearInvalid : function(){
20937         if(!this.rendered || this.preventMark){ // not rendered
20938             return;
20939         }
20940         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
20941         
20942         obj.el.removeClass(this.invalidClass);
20943         switch(this.msgTarget){
20944             case 'qtip':
20945                 obj.el.dom.qtip = '';
20946                 break;
20947             case 'title':
20948                 this.el.dom.title = '';
20949                 break;
20950             case 'under':
20951                 if(this.errorEl){
20952                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
20953                 }
20954                 break;
20955             case 'side':
20956                 if(this.errorIcon){
20957                     this.errorIcon.dom.qtip = '';
20958                     this.errorIcon.hide();
20959                     this.un('resize', this.alignErrorIcon, this);
20960                 }
20961                 break;
20962             default:
20963                 var t = Roo.getDom(this.msgTarget);
20964                 t.innerHTML = '';
20965                 t.style.display = 'none';
20966                 break;
20967         }
20968         this.fireEvent('valid', this);
20969     },
20970
20971     /**
20972      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
20973      * @return {Mixed} value The field value
20974      */
20975     getRawValue : function(){
20976         var v = this.el.getValue();
20977         
20978         return v;
20979     },
20980
20981     /**
20982      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
20983      * @return {Mixed} value The field value
20984      */
20985     getValue : function(){
20986         var v = this.el.getValue();
20987          
20988         return v;
20989     },
20990
20991     /**
20992      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
20993      * @param {Mixed} value The value to set
20994      */
20995     setRawValue : function(v){
20996         return this.el.dom.value = (v === null || v === undefined ? '' : v);
20997     },
20998
20999     /**
21000      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
21001      * @param {Mixed} value The value to set
21002      */
21003     setValue : function(v){
21004         this.value = v;
21005         if(this.rendered){
21006             this.el.dom.value = (v === null || v === undefined ? '' : v);
21007              this.validate();
21008         }
21009     },
21010
21011     adjustSize : function(w, h){
21012         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
21013         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
21014         return s;
21015     },
21016
21017     adjustWidth : function(tag, w){
21018         tag = tag.toLowerCase();
21019         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
21020             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
21021                 if(tag == 'input'){
21022                     return w + 2;
21023                 }
21024                 if(tag == 'textarea'){
21025                     return w-2;
21026                 }
21027             }else if(Roo.isOpera){
21028                 if(tag == 'input'){
21029                     return w + 2;
21030                 }
21031                 if(tag == 'textarea'){
21032                     return w-2;
21033                 }
21034             }
21035         }
21036         return w;
21037     }
21038 });
21039
21040
21041 // anything other than normal should be considered experimental
21042 Roo.form.Field.msgFx = {
21043     normal : {
21044         show: function(msgEl, f){
21045             msgEl.setDisplayed('block');
21046         },
21047
21048         hide : function(msgEl, f){
21049             msgEl.setDisplayed(false).update('');
21050         }
21051     },
21052
21053     slide : {
21054         show: function(msgEl, f){
21055             msgEl.slideIn('t', {stopFx:true});
21056         },
21057
21058         hide : function(msgEl, f){
21059             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
21060         }
21061     },
21062
21063     slideRight : {
21064         show: function(msgEl, f){
21065             msgEl.fixDisplay();
21066             msgEl.alignTo(f.el, 'tl-tr');
21067             msgEl.slideIn('l', {stopFx:true});
21068         },
21069
21070         hide : function(msgEl, f){
21071             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
21072         }
21073     }
21074 };/*
21075  * Based on:
21076  * Ext JS Library 1.1.1
21077  * Copyright(c) 2006-2007, Ext JS, LLC.
21078  *
21079  * Originally Released Under LGPL - original licence link has changed is not relivant.
21080  *
21081  * Fork - LGPL
21082  * <script type="text/javascript">
21083  */
21084  
21085
21086 /**
21087  * @class Roo.form.TextField
21088  * @extends Roo.form.Field
21089  * Basic text field.  Can be used as a direct replacement for traditional text inputs, or as the base
21090  * class for more sophisticated input controls (like {@link Roo.form.TextArea} and {@link Roo.form.ComboBox}).
21091  * @constructor
21092  * Creates a new TextField
21093  * @param {Object} config Configuration options
21094  */
21095 Roo.form.TextField = function(config){
21096     Roo.form.TextField.superclass.constructor.call(this, config);
21097     this.addEvents({
21098         /**
21099          * @event autosize
21100          * Fires when the autosize function is triggered.  The field may or may not have actually changed size
21101          * according to the default logic, but this event provides a hook for the developer to apply additional
21102          * logic at runtime to resize the field if needed.
21103              * @param {Roo.form.Field} this This text field
21104              * @param {Number} width The new field width
21105              */
21106         autosize : true
21107     });
21108 };
21109
21110 Roo.extend(Roo.form.TextField, Roo.form.Field,  {
21111     /**
21112      * @cfg {Boolean} grow True if this field should automatically grow and shrink to its content
21113      */
21114     grow : false,
21115     /**
21116      * @cfg {Number} growMin The minimum width to allow when grow = true (defaults to 30)
21117      */
21118     growMin : 30,
21119     /**
21120      * @cfg {Number} growMax The maximum width to allow when grow = true (defaults to 800)
21121      */
21122     growMax : 800,
21123     /**
21124      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
21125      */
21126     vtype : null,
21127     /**
21128      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
21129      */
21130     maskRe : null,
21131     /**
21132      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
21133      */
21134     disableKeyFilter : false,
21135     /**
21136      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
21137      */
21138     allowBlank : true,
21139     /**
21140      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
21141      */
21142     minLength : 0,
21143     /**
21144      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
21145      */
21146     maxLength : Number.MAX_VALUE,
21147     /**
21148      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
21149      */
21150     minLengthText : "The minimum length for this field is {0}",
21151     /**
21152      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
21153      */
21154     maxLengthText : "The maximum length for this field is {0}",
21155     /**
21156      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
21157      */
21158     selectOnFocus : false,
21159     /**
21160      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
21161      */
21162     blankText : "This field is required",
21163     /**
21164      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
21165      * If available, this function will be called only after the basic validators all return true, and will be passed the
21166      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
21167      */
21168     validator : null,
21169     /**
21170      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
21171      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
21172      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
21173      */
21174     regex : null,
21175     /**
21176      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
21177      */
21178     regexText : "",
21179     /**
21180      * @cfg {String} emptyText The default text to display in an empty field - placeholder... (defaults to null).
21181      */
21182     emptyText : null,
21183    
21184
21185     // private
21186     initEvents : function()
21187     {
21188         if (this.emptyText) {
21189             this.el.attr('placeholder', this.emptyText);
21190         }
21191         
21192         Roo.form.TextField.superclass.initEvents.call(this);
21193         if(this.validationEvent == 'keyup'){
21194             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
21195             this.el.on('keyup', this.filterValidation, this);
21196         }
21197         else if(this.validationEvent !== false){
21198             this.el.on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
21199         }
21200         
21201         if(this.selectOnFocus){
21202             this.on("focus", this.preFocus, this);
21203             
21204         }
21205         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
21206             this.el.on("keypress", this.filterKeys, this);
21207         }
21208         if(this.grow){
21209             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
21210             this.el.on("click", this.autoSize,  this);
21211         }
21212         if(this.el.is('input[type=password]') && Roo.isSafari){
21213             this.el.on('keydown', this.SafariOnKeyDown, this);
21214         }
21215     },
21216
21217     processValue : function(value){
21218         if(this.stripCharsRe){
21219             var newValue = value.replace(this.stripCharsRe, '');
21220             if(newValue !== value){
21221                 this.setRawValue(newValue);
21222                 return newValue;
21223             }
21224         }
21225         return value;
21226     },
21227
21228     filterValidation : function(e){
21229         if(!e.isNavKeyPress()){
21230             this.validationTask.delay(this.validationDelay);
21231         }
21232     },
21233
21234     // private
21235     onKeyUp : function(e){
21236         if(!e.isNavKeyPress()){
21237             this.autoSize();
21238         }
21239     },
21240
21241     /**
21242      * Resets the current field value to the originally-loaded value and clears any validation messages.
21243      *  
21244      */
21245     reset : function(){
21246         Roo.form.TextField.superclass.reset.call(this);
21247        
21248     },
21249
21250     
21251     // private
21252     preFocus : function(){
21253         
21254         if(this.selectOnFocus){
21255             this.el.dom.select();
21256         }
21257     },
21258
21259     
21260     // private
21261     filterKeys : function(e){
21262         var k = e.getKey();
21263         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
21264             return;
21265         }
21266         var c = e.getCharCode(), cc = String.fromCharCode(c);
21267         if(Roo.isIE && (e.isSpecialKey() || !cc)){
21268             return;
21269         }
21270         if(!this.maskRe.test(cc)){
21271             e.stopEvent();
21272         }
21273     },
21274
21275     setValue : function(v){
21276         
21277         Roo.form.TextField.superclass.setValue.apply(this, arguments);
21278         
21279         this.autoSize();
21280     },
21281
21282     /**
21283      * Validates a value according to the field's validation rules and marks the field as invalid
21284      * if the validation fails
21285      * @param {Mixed} value The value to validate
21286      * @return {Boolean} True if the value is valid, else false
21287      */
21288     validateValue : function(value){
21289         if(value.length < 1)  { // if it's blank
21290              if(this.allowBlank){
21291                 this.clearInvalid();
21292                 return true;
21293              }else{
21294                 this.markInvalid(this.blankText);
21295                 return false;
21296              }
21297         }
21298         if(value.length < this.minLength){
21299             this.markInvalid(String.format(this.minLengthText, this.minLength));
21300             return false;
21301         }
21302         if(value.length > this.maxLength){
21303             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
21304             return false;
21305         }
21306         if(this.vtype){
21307             var vt = Roo.form.VTypes;
21308             if(!vt[this.vtype](value, this)){
21309                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
21310                 return false;
21311             }
21312         }
21313         if(typeof this.validator == "function"){
21314             var msg = this.validator(value);
21315             if(msg !== true){
21316                 this.markInvalid(msg);
21317                 return false;
21318             }
21319         }
21320         if(this.regex && !this.regex.test(value)){
21321             this.markInvalid(this.regexText);
21322             return false;
21323         }
21324         return true;
21325     },
21326
21327     /**
21328      * Selects text in this field
21329      * @param {Number} start (optional) The index where the selection should start (defaults to 0)
21330      * @param {Number} end (optional) The index where the selection should end (defaults to the text length)
21331      */
21332     selectText : function(start, end){
21333         var v = this.getRawValue();
21334         if(v.length > 0){
21335             start = start === undefined ? 0 : start;
21336             end = end === undefined ? v.length : end;
21337             var d = this.el.dom;
21338             if(d.setSelectionRange){
21339                 d.setSelectionRange(start, end);
21340             }else if(d.createTextRange){
21341                 var range = d.createTextRange();
21342                 range.moveStart("character", start);
21343                 range.moveEnd("character", v.length-end);
21344                 range.select();
21345             }
21346         }
21347     },
21348
21349     /**
21350      * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.
21351      * This only takes effect if grow = true, and fires the autosize event.
21352      */
21353     autoSize : function(){
21354         if(!this.grow || !this.rendered){
21355             return;
21356         }
21357         if(!this.metrics){
21358             this.metrics = Roo.util.TextMetrics.createInstance(this.el);
21359         }
21360         var el = this.el;
21361         var v = el.dom.value;
21362         var d = document.createElement('div');
21363         d.appendChild(document.createTextNode(v));
21364         v = d.innerHTML;
21365         d = null;
21366         v += "&#160;";
21367         var w = Math.min(this.growMax, Math.max(this.metrics.getWidth(v) + /* add extra padding */ 10, this.growMin));
21368         this.el.setWidth(w);
21369         this.fireEvent("autosize", this, w);
21370     },
21371     
21372     // private
21373     SafariOnKeyDown : function(event)
21374     {
21375         // this is a workaround for a password hang bug on chrome/ webkit.
21376         
21377         var isSelectAll = false;
21378         
21379         if(this.el.dom.selectionEnd > 0){
21380             isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
21381         }
21382         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
21383             event.preventDefault();
21384             this.setValue('');
21385             return;
21386         }
21387         
21388         if(isSelectAll){ // backspace and delete key
21389             
21390             event.preventDefault();
21391             // this is very hacky as keydown always get's upper case.
21392             //
21393             var cc = String.fromCharCode(event.getCharCode());
21394             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
21395             
21396         }
21397         
21398         
21399     }
21400 });/*
21401  * Based on:
21402  * Ext JS Library 1.1.1
21403  * Copyright(c) 2006-2007, Ext JS, LLC.
21404  *
21405  * Originally Released Under LGPL - original licence link has changed is not relivant.
21406  *
21407  * Fork - LGPL
21408  * <script type="text/javascript">
21409  */
21410  
21411 /**
21412  * @class Roo.form.Hidden
21413  * @extends Roo.form.TextField
21414  * Simple Hidden element used on forms 
21415  * 
21416  * usage: form.add(new Roo.form.HiddenField({ 'name' : 'test1' }));
21417  * 
21418  * @constructor
21419  * Creates a new Hidden form element.
21420  * @param {Object} config Configuration options
21421  */
21422
21423
21424
21425 // easy hidden field...
21426 Roo.form.Hidden = function(config){
21427     Roo.form.Hidden.superclass.constructor.call(this, config);
21428 };
21429   
21430 Roo.extend(Roo.form.Hidden, Roo.form.TextField, {
21431     fieldLabel:      '',
21432     inputType:      'hidden',
21433     width:          50,
21434     allowBlank:     true,
21435     labelSeparator: '',
21436     hidden:         true,
21437     itemCls :       'x-form-item-display-none'
21438
21439
21440 });
21441
21442
21443 /*
21444  * Based on:
21445  * Ext JS Library 1.1.1
21446  * Copyright(c) 2006-2007, Ext JS, LLC.
21447  *
21448  * Originally Released Under LGPL - original licence link has changed is not relivant.
21449  *
21450  * Fork - LGPL
21451  * <script type="text/javascript">
21452  */
21453  
21454 /**
21455  * @class Roo.form.TriggerField
21456  * @extends Roo.form.TextField
21457  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
21458  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
21459  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
21460  * for which you can provide a custom implementation.  For example:
21461  * <pre><code>
21462 var trigger = new Roo.form.TriggerField();
21463 trigger.onTriggerClick = myTriggerFn;
21464 trigger.applyTo('my-field');
21465 </code></pre>
21466  *
21467  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
21468  * {@link Roo.form.DateField} and {@link Roo.form.ComboBox} are perfect examples of this.
21469  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
21470  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
21471  * @constructor
21472  * Create a new TriggerField.
21473  * @param {Object} config Configuration options (valid {@Roo.form.TextField} config options will also be applied
21474  * to the base TextField)
21475  */
21476 Roo.form.TriggerField = function(config){
21477     this.mimicing = false;
21478     Roo.form.TriggerField.superclass.constructor.call(this, config);
21479 };
21480
21481 Roo.extend(Roo.form.TriggerField, Roo.form.TextField,  {
21482     /**
21483      * @cfg {String} triggerClass A CSS class to apply to the trigger
21484      */
21485     /**
21486      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
21487      * {tag: "input", type: "text", size: "16", autocomplete: "off"})
21488      */
21489     defaultAutoCreate : {tag: "input", type: "text", size: "16", autocomplete: "off"},
21490     /**
21491      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
21492      */
21493     hideTrigger:false,
21494
21495     /** @cfg {Boolean} grow @hide */
21496     /** @cfg {Number} growMin @hide */
21497     /** @cfg {Number} growMax @hide */
21498
21499     /**
21500      * @hide 
21501      * @method
21502      */
21503     autoSize: Roo.emptyFn,
21504     // private
21505     monitorTab : true,
21506     // private
21507     deferHeight : true,
21508
21509     
21510     actionMode : 'wrap',
21511     // private
21512     onResize : function(w, h){
21513         Roo.form.TriggerField.superclass.onResize.apply(this, arguments);
21514         if(typeof w == 'number'){
21515             var x = w - this.trigger.getWidth();
21516             this.el.setWidth(this.adjustWidth('input', x));
21517             this.trigger.setStyle('left', x+'px');
21518         }
21519     },
21520
21521     // private
21522     adjustSize : Roo.BoxComponent.prototype.adjustSize,
21523
21524     // private
21525     getResizeEl : function(){
21526         return this.wrap;
21527     },
21528
21529     // private
21530     getPositionEl : function(){
21531         return this.wrap;
21532     },
21533
21534     // private
21535     alignErrorIcon : function(){
21536         this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
21537     },
21538
21539     // private
21540     onRender : function(ct, position){
21541         Roo.form.TriggerField.superclass.onRender.call(this, ct, position);
21542         this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
21543         this.trigger = this.wrap.createChild(this.triggerConfig ||
21544                 {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass});
21545         if(this.hideTrigger){
21546             this.trigger.setDisplayed(false);
21547         }
21548         this.initTrigger();
21549         if(!this.width){
21550             this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
21551         }
21552     },
21553
21554     // private
21555     initTrigger : function(){
21556         this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
21557         this.trigger.addClassOnOver('x-form-trigger-over');
21558         this.trigger.addClassOnClick('x-form-trigger-click');
21559     },
21560
21561     // private
21562     onDestroy : function(){
21563         if(this.trigger){
21564             this.trigger.removeAllListeners();
21565             this.trigger.remove();
21566         }
21567         if(this.wrap){
21568             this.wrap.remove();
21569         }
21570         Roo.form.TriggerField.superclass.onDestroy.call(this);
21571     },
21572
21573     // private
21574     onFocus : function(){
21575         Roo.form.TriggerField.superclass.onFocus.call(this);
21576         if(!this.mimicing){
21577             this.wrap.addClass('x-trigger-wrap-focus');
21578             this.mimicing = true;
21579             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
21580             if(this.monitorTab){
21581                 this.el.on("keydown", this.checkTab, this);
21582             }
21583         }
21584     },
21585
21586     // private
21587     checkTab : function(e){
21588         if(e.getKey() == e.TAB){
21589             this.triggerBlur();
21590         }
21591     },
21592
21593     // private
21594     onBlur : function(){
21595         // do nothing
21596     },
21597
21598     // private
21599     mimicBlur : function(e, t){
21600         if(!this.wrap.contains(t) && this.validateBlur()){
21601             this.triggerBlur();
21602         }
21603     },
21604
21605     // private
21606     triggerBlur : function(){
21607         this.mimicing = false;
21608         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
21609         if(this.monitorTab){
21610             this.el.un("keydown", this.checkTab, this);
21611         }
21612         this.wrap.removeClass('x-trigger-wrap-focus');
21613         Roo.form.TriggerField.superclass.onBlur.call(this);
21614     },
21615
21616     // private
21617     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
21618     validateBlur : function(e, t){
21619         return true;
21620     },
21621
21622     // private
21623     onDisable : function(){
21624         Roo.form.TriggerField.superclass.onDisable.call(this);
21625         if(this.wrap){
21626             this.wrap.addClass('x-item-disabled');
21627         }
21628     },
21629
21630     // private
21631     onEnable : function(){
21632         Roo.form.TriggerField.superclass.onEnable.call(this);
21633         if(this.wrap){
21634             this.wrap.removeClass('x-item-disabled');
21635         }
21636     },
21637
21638     // private
21639     onShow : function(){
21640         var ae = this.getActionEl();
21641         
21642         if(ae){
21643             ae.dom.style.display = '';
21644             ae.dom.style.visibility = 'visible';
21645         }
21646     },
21647
21648     // private
21649     
21650     onHide : function(){
21651         var ae = this.getActionEl();
21652         ae.dom.style.display = 'none';
21653     },
21654
21655     /**
21656      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
21657      * by an implementing function.
21658      * @method
21659      * @param {EventObject} e
21660      */
21661     onTriggerClick : Roo.emptyFn
21662 });
21663
21664 // TwinTriggerField is not a public class to be used directly.  It is meant as an abstract base class
21665 // to be extended by an implementing class.  For an example of implementing this class, see the custom
21666 // SearchField implementation here: http://extjs.com/deploy/ext/examples/form/custom.html
21667 Roo.form.TwinTriggerField = Roo.extend(Roo.form.TriggerField, {
21668     initComponent : function(){
21669         Roo.form.TwinTriggerField.superclass.initComponent.call(this);
21670
21671         this.triggerConfig = {
21672             tag:'span', cls:'x-form-twin-triggers', cn:[
21673             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger1Class},
21674             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger2Class}
21675         ]};
21676     },
21677
21678     getTrigger : function(index){
21679         return this.triggers[index];
21680     },
21681
21682     initTrigger : function(){
21683         var ts = this.trigger.select('.x-form-trigger', true);
21684         this.wrap.setStyle('overflow', 'hidden');
21685         var triggerField = this;
21686         ts.each(function(t, all, index){
21687             t.hide = function(){
21688                 var w = triggerField.wrap.getWidth();
21689                 this.dom.style.display = 'none';
21690                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
21691             };
21692             t.show = function(){
21693                 var w = triggerField.wrap.getWidth();
21694                 this.dom.style.display = '';
21695                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
21696             };
21697             var triggerIndex = 'Trigger'+(index+1);
21698
21699             if(this['hide'+triggerIndex]){
21700                 t.dom.style.display = 'none';
21701             }
21702             t.on("click", this['on'+triggerIndex+'Click'], this, {preventDefault:true});
21703             t.addClassOnOver('x-form-trigger-over');
21704             t.addClassOnClick('x-form-trigger-click');
21705         }, this);
21706         this.triggers = ts.elements;
21707     },
21708
21709     onTrigger1Click : Roo.emptyFn,
21710     onTrigger2Click : Roo.emptyFn
21711 });/*
21712  * Based on:
21713  * Ext JS Library 1.1.1
21714  * Copyright(c) 2006-2007, Ext JS, LLC.
21715  *
21716  * Originally Released Under LGPL - original licence link has changed is not relivant.
21717  *
21718  * Fork - LGPL
21719  * <script type="text/javascript">
21720  */
21721  
21722 /**
21723  * @class Roo.form.TextArea
21724  * @extends Roo.form.TextField
21725  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
21726  * support for auto-sizing.
21727  * @constructor
21728  * Creates a new TextArea
21729  * @param {Object} config Configuration options
21730  */
21731 Roo.form.TextArea = function(config){
21732     Roo.form.TextArea.superclass.constructor.call(this, config);
21733     // these are provided exchanges for backwards compat
21734     // minHeight/maxHeight were replaced by growMin/growMax to be
21735     // compatible with TextField growing config values
21736     if(this.minHeight !== undefined){
21737         this.growMin = this.minHeight;
21738     }
21739     if(this.maxHeight !== undefined){
21740         this.growMax = this.maxHeight;
21741     }
21742 };
21743
21744 Roo.extend(Roo.form.TextArea, Roo.form.TextField,  {
21745     /**
21746      * @cfg {Number} growMin The minimum height to allow when grow = true (defaults to 60)
21747      */
21748     growMin : 60,
21749     /**
21750      * @cfg {Number} growMax The maximum height to allow when grow = true (defaults to 1000)
21751      */
21752     growMax: 1000,
21753     /**
21754      * @cfg {Boolean} preventScrollbars True to prevent scrollbars from appearing regardless of how much text is
21755      * in the field (equivalent to setting overflow: hidden, defaults to false)
21756      */
21757     preventScrollbars: false,
21758     /**
21759      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
21760      * {tag: "textarea", style: "width:300px;height:60px;", autocomplete: "off"})
21761      */
21762
21763     // private
21764     onRender : function(ct, position){
21765         if(!this.el){
21766             this.defaultAutoCreate = {
21767                 tag: "textarea",
21768                 style:"width:300px;height:60px;",
21769                 autocomplete: "off"
21770             };
21771         }
21772         Roo.form.TextArea.superclass.onRender.call(this, ct, position);
21773         if(this.grow){
21774             this.textSizeEl = Roo.DomHelper.append(document.body, {
21775                 tag: "pre", cls: "x-form-grow-sizer"
21776             });
21777             if(this.preventScrollbars){
21778                 this.el.setStyle("overflow", "hidden");
21779             }
21780             this.el.setHeight(this.growMin);
21781         }
21782     },
21783
21784     onDestroy : function(){
21785         if(this.textSizeEl){
21786             this.textSizeEl.parentNode.removeChild(this.textSizeEl);
21787         }
21788         Roo.form.TextArea.superclass.onDestroy.call(this);
21789     },
21790
21791     // private
21792     onKeyUp : function(e){
21793         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
21794             this.autoSize();
21795         }
21796     },
21797
21798     /**
21799      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
21800      * This only takes effect if grow = true, and fires the autosize event if the height changes.
21801      */
21802     autoSize : function(){
21803         if(!this.grow || !this.textSizeEl){
21804             return;
21805         }
21806         var el = this.el;
21807         var v = el.dom.value;
21808         var ts = this.textSizeEl;
21809
21810         ts.innerHTML = '';
21811         ts.appendChild(document.createTextNode(v));
21812         v = ts.innerHTML;
21813
21814         Roo.fly(ts).setWidth(this.el.getWidth());
21815         if(v.length < 1){
21816             v = "&#160;&#160;";
21817         }else{
21818             if(Roo.isIE){
21819                 v = v.replace(/\n/g, '<p>&#160;</p>');
21820             }
21821             v += "&#160;\n&#160;";
21822         }
21823         ts.innerHTML = v;
21824         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
21825         if(h != this.lastHeight){
21826             this.lastHeight = h;
21827             this.el.setHeight(h);
21828             this.fireEvent("autosize", this, h);
21829         }
21830     }
21831 });/*
21832  * Based on:
21833  * Ext JS Library 1.1.1
21834  * Copyright(c) 2006-2007, Ext JS, LLC.
21835  *
21836  * Originally Released Under LGPL - original licence link has changed is not relivant.
21837  *
21838  * Fork - LGPL
21839  * <script type="text/javascript">
21840  */
21841  
21842
21843 /**
21844  * @class Roo.form.NumberField
21845  * @extends Roo.form.TextField
21846  * Numeric text field that provides automatic keystroke filtering and numeric validation.
21847  * @constructor
21848  * Creates a new NumberField
21849  * @param {Object} config Configuration options
21850  */
21851 Roo.form.NumberField = function(config){
21852     Roo.form.NumberField.superclass.constructor.call(this, config);
21853 };
21854
21855 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
21856     /**
21857      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
21858      */
21859     fieldClass: "x-form-field x-form-num-field",
21860     /**
21861      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
21862      */
21863     allowDecimals : true,
21864     /**
21865      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
21866      */
21867     decimalSeparator : ".",
21868     /**
21869      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
21870      */
21871     decimalPrecision : 2,
21872     /**
21873      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
21874      */
21875     allowNegative : true,
21876     /**
21877      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
21878      */
21879     minValue : Number.NEGATIVE_INFINITY,
21880     /**
21881      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
21882      */
21883     maxValue : Number.MAX_VALUE,
21884     /**
21885      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
21886      */
21887     minText : "The minimum value for this field is {0}",
21888     /**
21889      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
21890      */
21891     maxText : "The maximum value for this field is {0}",
21892     /**
21893      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
21894      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
21895      */
21896     nanText : "{0} is not a valid number",
21897
21898     // private
21899     initEvents : function(){
21900         Roo.form.NumberField.superclass.initEvents.call(this);
21901         var allowed = "0123456789";
21902         if(this.allowDecimals){
21903             allowed += this.decimalSeparator;
21904         }
21905         if(this.allowNegative){
21906             allowed += "-";
21907         }
21908         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
21909         var keyPress = function(e){
21910             var k = e.getKey();
21911             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
21912                 return;
21913             }
21914             var c = e.getCharCode();
21915             if(allowed.indexOf(String.fromCharCode(c)) === -1){
21916                 e.stopEvent();
21917             }
21918         };
21919         this.el.on("keypress", keyPress, this);
21920     },
21921
21922     // private
21923     validateValue : function(value){
21924         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
21925             return false;
21926         }
21927         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
21928              return true;
21929         }
21930         var num = this.parseValue(value);
21931         if(isNaN(num)){
21932             this.markInvalid(String.format(this.nanText, value));
21933             return false;
21934         }
21935         if(num < this.minValue){
21936             this.markInvalid(String.format(this.minText, this.minValue));
21937             return false;
21938         }
21939         if(num > this.maxValue){
21940             this.markInvalid(String.format(this.maxText, this.maxValue));
21941             return false;
21942         }
21943         return true;
21944     },
21945
21946     getValue : function(){
21947         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
21948     },
21949
21950     // private
21951     parseValue : function(value){
21952         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
21953         return isNaN(value) ? '' : value;
21954     },
21955
21956     // private
21957     fixPrecision : function(value){
21958         var nan = isNaN(value);
21959         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
21960             return nan ? '' : value;
21961         }
21962         return parseFloat(value).toFixed(this.decimalPrecision);
21963     },
21964
21965     setValue : function(v){
21966         v = this.fixPrecision(v);
21967         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
21968     },
21969
21970     // private
21971     decimalPrecisionFcn : function(v){
21972         return Math.floor(v);
21973     },
21974
21975     beforeBlur : function(){
21976         var v = this.parseValue(this.getRawValue());
21977         if(v){
21978             this.setValue(v);
21979         }
21980     }
21981 });/*
21982  * Based on:
21983  * Ext JS Library 1.1.1
21984  * Copyright(c) 2006-2007, Ext JS, LLC.
21985  *
21986  * Originally Released Under LGPL - original licence link has changed is not relivant.
21987  *
21988  * Fork - LGPL
21989  * <script type="text/javascript">
21990  */
21991  
21992 /**
21993  * @class Roo.form.DateField
21994  * @extends Roo.form.TriggerField
21995  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
21996 * @constructor
21997 * Create a new DateField
21998 * @param {Object} config
21999  */
22000 Roo.form.DateField = function(config){
22001     Roo.form.DateField.superclass.constructor.call(this, config);
22002     
22003       this.addEvents({
22004          
22005         /**
22006          * @event select
22007          * Fires when a date is selected
22008              * @param {Roo.form.DateField} combo This combo box
22009              * @param {Date} date The date selected
22010              */
22011         'select' : true
22012          
22013     });
22014     
22015     
22016     if(typeof this.minValue == "string") this.minValue = this.parseDate(this.minValue);
22017     if(typeof this.maxValue == "string") this.maxValue = this.parseDate(this.maxValue);
22018     this.ddMatch = null;
22019     if(this.disabledDates){
22020         var dd = this.disabledDates;
22021         var re = "(?:";
22022         for(var i = 0; i < dd.length; i++){
22023             re += dd[i];
22024             if(i != dd.length-1) re += "|";
22025         }
22026         this.ddMatch = new RegExp(re + ")");
22027     }
22028 };
22029
22030 Roo.extend(Roo.form.DateField, Roo.form.TriggerField,  {
22031     /**
22032      * @cfg {String} format
22033      * The default date format string which can be overriden for localization support.  The format must be
22034      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
22035      */
22036     format : "m/d/y",
22037     /**
22038      * @cfg {String} altFormats
22039      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
22040      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
22041      */
22042     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
22043     /**
22044      * @cfg {Array} disabledDays
22045      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
22046      */
22047     disabledDays : null,
22048     /**
22049      * @cfg {String} disabledDaysText
22050      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
22051      */
22052     disabledDaysText : "Disabled",
22053     /**
22054      * @cfg {Array} disabledDates
22055      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
22056      * expression so they are very powerful. Some examples:
22057      * <ul>
22058      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
22059      * <li>["03/08", "09/16"] would disable those days for every year</li>
22060      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
22061      * <li>["03/../2006"] would disable every day in March 2006</li>
22062      * <li>["^03"] would disable every day in every March</li>
22063      * </ul>
22064      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
22065      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
22066      */
22067     disabledDates : null,
22068     /**
22069      * @cfg {String} disabledDatesText
22070      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
22071      */
22072     disabledDatesText : "Disabled",
22073     /**
22074      * @cfg {Date/String} minValue
22075      * The minimum allowed date. Can be either a Javascript date object or a string date in a
22076      * valid format (defaults to null).
22077      */
22078     minValue : null,
22079     /**
22080      * @cfg {Date/String} maxValue
22081      * The maximum allowed date. Can be either a Javascript date object or a string date in a
22082      * valid format (defaults to null).
22083      */
22084     maxValue : null,
22085     /**
22086      * @cfg {String} minText
22087      * The error text to display when the date in the cell is before minValue (defaults to
22088      * 'The date in this field must be after {minValue}').
22089      */
22090     minText : "The date in this field must be equal to or after {0}",
22091     /**
22092      * @cfg {String} maxText
22093      * The error text to display when the date in the cell is after maxValue (defaults to
22094      * 'The date in this field must be before {maxValue}').
22095      */
22096     maxText : "The date in this field must be equal to or before {0}",
22097     /**
22098      * @cfg {String} invalidText
22099      * The error text to display when the date in the field is invalid (defaults to
22100      * '{value} is not a valid date - it must be in the format {format}').
22101      */
22102     invalidText : "{0} is not a valid date - it must be in the format {1}",
22103     /**
22104      * @cfg {String} triggerClass
22105      * An additional CSS class used to style the trigger button.  The trigger will always get the
22106      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
22107      * which displays a calendar icon).
22108      */
22109     triggerClass : 'x-form-date-trigger',
22110     
22111
22112     /**
22113      * @cfg {Boolean} useIso
22114      * if enabled, then the date field will use a hidden field to store the 
22115      * real value as iso formated date. default (false)
22116      */ 
22117     useIso : false,
22118     /**
22119      * @cfg {String/Object} autoCreate
22120      * A DomHelper element spec, or true for a default element spec (defaults to
22121      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
22122      */ 
22123     // private
22124     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
22125     
22126     // private
22127     hiddenField: false,
22128     
22129     onRender : function(ct, position)
22130     {
22131         Roo.form.DateField.superclass.onRender.call(this, ct, position);
22132         if (this.useIso) {
22133             //this.el.dom.removeAttribute('name'); 
22134             Roo.log("Changing name?");
22135             this.el.dom.setAttribute('name', this.name + '____hidden___' ); 
22136             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
22137                     'before', true);
22138             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
22139             // prevent input submission
22140             this.hiddenName = this.name;
22141         }
22142             
22143             
22144     },
22145     
22146     // private
22147     validateValue : function(value)
22148     {
22149         value = this.formatDate(value);
22150         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
22151             Roo.log('super failed');
22152             return false;
22153         }
22154         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
22155              return true;
22156         }
22157         var svalue = value;
22158         value = this.parseDate(value);
22159         if(!value){
22160             Roo.log('parse date failed' + svalue);
22161             this.markInvalid(String.format(this.invalidText, svalue, this.format));
22162             return false;
22163         }
22164         var time = value.getTime();
22165         if(this.minValue && time < this.minValue.getTime()){
22166             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
22167             return false;
22168         }
22169         if(this.maxValue && time > this.maxValue.getTime()){
22170             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
22171             return false;
22172         }
22173         if(this.disabledDays){
22174             var day = value.getDay();
22175             for(var i = 0; i < this.disabledDays.length; i++) {
22176                 if(day === this.disabledDays[i]){
22177                     this.markInvalid(this.disabledDaysText);
22178                     return false;
22179                 }
22180             }
22181         }
22182         var fvalue = this.formatDate(value);
22183         if(this.ddMatch && this.ddMatch.test(fvalue)){
22184             this.markInvalid(String.format(this.disabledDatesText, fvalue));
22185             return false;
22186         }
22187         return true;
22188     },
22189
22190     // private
22191     // Provides logic to override the default TriggerField.validateBlur which just returns true
22192     validateBlur : function(){
22193         return !this.menu || !this.menu.isVisible();
22194     },
22195     
22196     getName: function()
22197     {
22198         // returns hidden if it's set..
22199         if (!this.rendered) {return ''};
22200         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
22201         
22202     },
22203
22204     /**
22205      * Returns the current date value of the date field.
22206      * @return {Date} The date value
22207      */
22208     getValue : function(){
22209         
22210         return  this.hiddenField ?
22211                 this.hiddenField.value :
22212                 this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
22213     },
22214
22215     /**
22216      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
22217      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
22218      * (the default format used is "m/d/y").
22219      * <br />Usage:
22220      * <pre><code>
22221 //All of these calls set the same date value (May 4, 2006)
22222
22223 //Pass a date object:
22224 var dt = new Date('5/4/06');
22225 dateField.setValue(dt);
22226
22227 //Pass a date string (default format):
22228 dateField.setValue('5/4/06');
22229
22230 //Pass a date string (custom format):
22231 dateField.format = 'Y-m-d';
22232 dateField.setValue('2006-5-4');
22233 </code></pre>
22234      * @param {String/Date} date The date or valid date string
22235      */
22236     setValue : function(date){
22237         if (this.hiddenField) {
22238             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
22239         }
22240         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
22241         // make sure the value field is always stored as a date..
22242         this.value = this.parseDate(date);
22243         
22244         
22245     },
22246
22247     // private
22248     parseDate : function(value){
22249         if(!value || value instanceof Date){
22250             return value;
22251         }
22252         var v = Date.parseDate(value, this.format);
22253          if (!v && this.useIso) {
22254             v = Date.parseDate(value, 'Y-m-d');
22255         }
22256         if(!v && this.altFormats){
22257             if(!this.altFormatsArray){
22258                 this.altFormatsArray = this.altFormats.split("|");
22259             }
22260             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
22261                 v = Date.parseDate(value, this.altFormatsArray[i]);
22262             }
22263         }
22264         return v;
22265     },
22266
22267     // private
22268     formatDate : function(date, fmt){
22269         return (!date || !(date instanceof Date)) ?
22270                date : date.dateFormat(fmt || this.format);
22271     },
22272
22273     // private
22274     menuListeners : {
22275         select: function(m, d){
22276             
22277             this.setValue(d);
22278             this.fireEvent('select', this, d);
22279         },
22280         show : function(){ // retain focus styling
22281             this.onFocus();
22282         },
22283         hide : function(){
22284             this.focus.defer(10, this);
22285             var ml = this.menuListeners;
22286             this.menu.un("select", ml.select,  this);
22287             this.menu.un("show", ml.show,  this);
22288             this.menu.un("hide", ml.hide,  this);
22289         }
22290     },
22291
22292     // private
22293     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
22294     onTriggerClick : function(){
22295         if(this.disabled){
22296             return;
22297         }
22298         if(this.menu == null){
22299             this.menu = new Roo.menu.DateMenu();
22300         }
22301         Roo.apply(this.menu.picker,  {
22302             showClear: this.allowBlank,
22303             minDate : this.minValue,
22304             maxDate : this.maxValue,
22305             disabledDatesRE : this.ddMatch,
22306             disabledDatesText : this.disabledDatesText,
22307             disabledDays : this.disabledDays,
22308             disabledDaysText : this.disabledDaysText,
22309             format : this.useIso ? 'Y-m-d' : this.format,
22310             minText : String.format(this.minText, this.formatDate(this.minValue)),
22311             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
22312         });
22313         this.menu.on(Roo.apply({}, this.menuListeners, {
22314             scope:this
22315         }));
22316         this.menu.picker.setValue(this.getValue() || new Date());
22317         this.menu.show(this.el, "tl-bl?");
22318     },
22319
22320     beforeBlur : function(){
22321         var v = this.parseDate(this.getRawValue());
22322         if(v){
22323             this.setValue(v);
22324         }
22325     },
22326
22327     /*@
22328      * overide
22329      * 
22330      */
22331     isDirty : function() {
22332         if(this.disabled) {
22333             return false;
22334         }
22335         
22336         if(typeof(this.startValue) === 'undefined'){
22337             return false;
22338         }
22339         
22340         return String(this.getValue()) !== String(this.startValue);
22341         
22342     }
22343 });/*
22344  * Based on:
22345  * Ext JS Library 1.1.1
22346  * Copyright(c) 2006-2007, Ext JS, LLC.
22347  *
22348  * Originally Released Under LGPL - original licence link has changed is not relivant.
22349  *
22350  * Fork - LGPL
22351  * <script type="text/javascript">
22352  */
22353  
22354 /**
22355  * @class Roo.form.MonthField
22356  * @extends Roo.form.TriggerField
22357  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
22358 * @constructor
22359 * Create a new MonthField
22360 * @param {Object} config
22361  */
22362 Roo.form.MonthField = function(config){
22363     
22364     Roo.form.MonthField.superclass.constructor.call(this, config);
22365     
22366       this.addEvents({
22367          
22368         /**
22369          * @event select
22370          * Fires when a date is selected
22371              * @param {Roo.form.MonthFieeld} combo This combo box
22372              * @param {Date} date The date selected
22373              */
22374         'select' : true
22375          
22376     });
22377     
22378     
22379     if(typeof this.minValue == "string") this.minValue = this.parseDate(this.minValue);
22380     if(typeof this.maxValue == "string") this.maxValue = this.parseDate(this.maxValue);
22381     this.ddMatch = null;
22382     if(this.disabledDates){
22383         var dd = this.disabledDates;
22384         var re = "(?:";
22385         for(var i = 0; i < dd.length; i++){
22386             re += dd[i];
22387             if(i != dd.length-1) re += "|";
22388         }
22389         this.ddMatch = new RegExp(re + ")");
22390     }
22391 };
22392
22393 Roo.extend(Roo.form.MonthField, Roo.form.TriggerField,  {
22394     /**
22395      * @cfg {String} format
22396      * The default date format string which can be overriden for localization support.  The format must be
22397      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
22398      */
22399     format : "M Y",
22400     /**
22401      * @cfg {String} altFormats
22402      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
22403      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
22404      */
22405     altFormats : "M Y|m/Y|m-y|m-Y|my|mY",
22406     /**
22407      * @cfg {Array} disabledDays
22408      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
22409      */
22410     disabledDays : [0,1,2,3,4,5,6],
22411     /**
22412      * @cfg {String} disabledDaysText
22413      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
22414      */
22415     disabledDaysText : "Disabled",
22416     /**
22417      * @cfg {Array} disabledDates
22418      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
22419      * expression so they are very powerful. Some examples:
22420      * <ul>
22421      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
22422      * <li>["03/08", "09/16"] would disable those days for every year</li>
22423      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
22424      * <li>["03/../2006"] would disable every day in March 2006</li>
22425      * <li>["^03"] would disable every day in every March</li>
22426      * </ul>
22427      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
22428      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
22429      */
22430     disabledDates : null,
22431     /**
22432      * @cfg {String} disabledDatesText
22433      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
22434      */
22435     disabledDatesText : "Disabled",
22436     /**
22437      * @cfg {Date/String} minValue
22438      * The minimum allowed date. Can be either a Javascript date object or a string date in a
22439      * valid format (defaults to null).
22440      */
22441     minValue : null,
22442     /**
22443      * @cfg {Date/String} maxValue
22444      * The maximum allowed date. Can be either a Javascript date object or a string date in a
22445      * valid format (defaults to null).
22446      */
22447     maxValue : null,
22448     /**
22449      * @cfg {String} minText
22450      * The error text to display when the date in the cell is before minValue (defaults to
22451      * 'The date in this field must be after {minValue}').
22452      */
22453     minText : "The date in this field must be equal to or after {0}",
22454     /**
22455      * @cfg {String} maxTextf
22456      * The error text to display when the date in the cell is after maxValue (defaults to
22457      * 'The date in this field must be before {maxValue}').
22458      */
22459     maxText : "The date in this field must be equal to or before {0}",
22460     /**
22461      * @cfg {String} invalidText
22462      * The error text to display when the date in the field is invalid (defaults to
22463      * '{value} is not a valid date - it must be in the format {format}').
22464      */
22465     invalidText : "{0} is not a valid date - it must be in the format {1}",
22466     /**
22467      * @cfg {String} triggerClass
22468      * An additional CSS class used to style the trigger button.  The trigger will always get the
22469      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
22470      * which displays a calendar icon).
22471      */
22472     triggerClass : 'x-form-date-trigger',
22473     
22474
22475     /**
22476      * @cfg {Boolean} useIso
22477      * if enabled, then the date field will use a hidden field to store the 
22478      * real value as iso formated date. default (true)
22479      */ 
22480     useIso : true,
22481     /**
22482      * @cfg {String/Object} autoCreate
22483      * A DomHelper element spec, or true for a default element spec (defaults to
22484      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
22485      */ 
22486     // private
22487     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
22488     
22489     // private
22490     hiddenField: false,
22491     
22492     hideMonthPicker : false,
22493     
22494     onRender : function(ct, position)
22495     {
22496         Roo.form.MonthField.superclass.onRender.call(this, ct, position);
22497         if (this.useIso) {
22498             this.el.dom.removeAttribute('name'); 
22499             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
22500                     'before', true);
22501             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
22502             // prevent input submission
22503             this.hiddenName = this.name;
22504         }
22505             
22506             
22507     },
22508     
22509     // private
22510     validateValue : function(value)
22511     {
22512         value = this.formatDate(value);
22513         if(!Roo.form.MonthField.superclass.validateValue.call(this, value)){
22514             return false;
22515         }
22516         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
22517              return true;
22518         }
22519         var svalue = value;
22520         value = this.parseDate(value);
22521         if(!value){
22522             this.markInvalid(String.format(this.invalidText, svalue, this.format));
22523             return false;
22524         }
22525         var time = value.getTime();
22526         if(this.minValue && time < this.minValue.getTime()){
22527             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
22528             return false;
22529         }
22530         if(this.maxValue && time > this.maxValue.getTime()){
22531             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
22532             return false;
22533         }
22534         /*if(this.disabledDays){
22535             var day = value.getDay();
22536             for(var i = 0; i < this.disabledDays.length; i++) {
22537                 if(day === this.disabledDays[i]){
22538                     this.markInvalid(this.disabledDaysText);
22539                     return false;
22540                 }
22541             }
22542         }
22543         */
22544         var fvalue = this.formatDate(value);
22545         /*if(this.ddMatch && this.ddMatch.test(fvalue)){
22546             this.markInvalid(String.format(this.disabledDatesText, fvalue));
22547             return false;
22548         }
22549         */
22550         return true;
22551     },
22552
22553     // private
22554     // Provides logic to override the default TriggerField.validateBlur which just returns true
22555     validateBlur : function(){
22556         return !this.menu || !this.menu.isVisible();
22557     },
22558
22559     /**
22560      * Returns the current date value of the date field.
22561      * @return {Date} The date value
22562      */
22563     getValue : function(){
22564         
22565         
22566         
22567         return  this.hiddenField ?
22568                 this.hiddenField.value :
22569                 this.parseDate(Roo.form.MonthField.superclass.getValue.call(this)) || "";
22570     },
22571
22572     /**
22573      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
22574      * date, using MonthField.format as the date format, according to the same rules as {@link Date#parseDate}
22575      * (the default format used is "m/d/y").
22576      * <br />Usage:
22577      * <pre><code>
22578 //All of these calls set the same date value (May 4, 2006)
22579
22580 //Pass a date object:
22581 var dt = new Date('5/4/06');
22582 monthField.setValue(dt);
22583
22584 //Pass a date string (default format):
22585 monthField.setValue('5/4/06');
22586
22587 //Pass a date string (custom format):
22588 monthField.format = 'Y-m-d';
22589 monthField.setValue('2006-5-4');
22590 </code></pre>
22591      * @param {String/Date} date The date or valid date string
22592      */
22593     setValue : function(date){
22594         Roo.log('month setValue' + date);
22595         // can only be first of month..
22596         
22597         var val = this.parseDate(date);
22598         
22599         if (this.hiddenField) {
22600             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
22601         }
22602         Roo.form.MonthField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
22603         this.value = this.parseDate(date);
22604     },
22605
22606     // private
22607     parseDate : function(value){
22608         if(!value || value instanceof Date){
22609             value = value ? Date.parseDate(value.format('Y-m') + '-01', 'Y-m-d') : null;
22610             return value;
22611         }
22612         var v = Date.parseDate(value, this.format);
22613         if (!v && this.useIso) {
22614             v = Date.parseDate(value, 'Y-m-d');
22615         }
22616         if (v) {
22617             // 
22618             v = Date.parseDate(v.format('Y-m') +'-01', 'Y-m-d');
22619         }
22620         
22621         
22622         if(!v && this.altFormats){
22623             if(!this.altFormatsArray){
22624                 this.altFormatsArray = this.altFormats.split("|");
22625             }
22626             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
22627                 v = Date.parseDate(value, this.altFormatsArray[i]);
22628             }
22629         }
22630         return v;
22631     },
22632
22633     // private
22634     formatDate : function(date, fmt){
22635         return (!date || !(date instanceof Date)) ?
22636                date : date.dateFormat(fmt || this.format);
22637     },
22638
22639     // private
22640     menuListeners : {
22641         select: function(m, d){
22642             this.setValue(d);
22643             this.fireEvent('select', this, d);
22644         },
22645         show : function(){ // retain focus styling
22646             this.onFocus();
22647         },
22648         hide : function(){
22649             this.focus.defer(10, this);
22650             var ml = this.menuListeners;
22651             this.menu.un("select", ml.select,  this);
22652             this.menu.un("show", ml.show,  this);
22653             this.menu.un("hide", ml.hide,  this);
22654         }
22655     },
22656     // private
22657     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
22658     onTriggerClick : function(){
22659         if(this.disabled){
22660             return;
22661         }
22662         if(this.menu == null){
22663             this.menu = new Roo.menu.DateMenu();
22664            
22665         }
22666         
22667         Roo.apply(this.menu.picker,  {
22668             
22669             showClear: this.allowBlank,
22670             minDate : this.minValue,
22671             maxDate : this.maxValue,
22672             disabledDatesRE : this.ddMatch,
22673             disabledDatesText : this.disabledDatesText,
22674             
22675             format : this.useIso ? 'Y-m-d' : this.format,
22676             minText : String.format(this.minText, this.formatDate(this.minValue)),
22677             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
22678             
22679         });
22680          this.menu.on(Roo.apply({}, this.menuListeners, {
22681             scope:this
22682         }));
22683        
22684         
22685         var m = this.menu;
22686         var p = m.picker;
22687         
22688         // hide month picker get's called when we called by 'before hide';
22689         
22690         var ignorehide = true;
22691         p.hideMonthPicker  = function(disableAnim){
22692             if (ignorehide) {
22693                 return;
22694             }
22695              if(this.monthPicker){
22696                 Roo.log("hideMonthPicker called");
22697                 if(disableAnim === true){
22698                     this.monthPicker.hide();
22699                 }else{
22700                     this.monthPicker.slideOut('t', {duration:.2});
22701                     p.setValue(new Date(m.picker.mpSelYear, m.picker.mpSelMonth, 1));
22702                     p.fireEvent("select", this, this.value);
22703                     m.hide();
22704                 }
22705             }
22706         }
22707         
22708         Roo.log('picker set value');
22709         Roo.log(this.getValue());
22710         p.setValue(this.getValue() ? this.parseDate(this.getValue()) : new Date());
22711         m.show(this.el, 'tl-bl?');
22712         ignorehide  = false;
22713         // this will trigger hideMonthPicker..
22714         
22715         
22716         // hidden the day picker
22717         Roo.select('.x-date-picker table', true).first().dom.style.visibility = "hidden";
22718         
22719         
22720         
22721       
22722         
22723         p.showMonthPicker.defer(100, p);
22724     
22725         
22726        
22727     },
22728
22729     beforeBlur : function(){
22730         var v = this.parseDate(this.getRawValue());
22731         if(v){
22732             this.setValue(v);
22733         }
22734     }
22735
22736     /** @cfg {Boolean} grow @hide */
22737     /** @cfg {Number} growMin @hide */
22738     /** @cfg {Number} growMax @hide */
22739     /**
22740      * @hide
22741      * @method autoSize
22742      */
22743 });/*
22744  * Based on:
22745  * Ext JS Library 1.1.1
22746  * Copyright(c) 2006-2007, Ext JS, LLC.
22747  *
22748  * Originally Released Under LGPL - original licence link has changed is not relivant.
22749  *
22750  * Fork - LGPL
22751  * <script type="text/javascript">
22752  */
22753  
22754
22755 /**
22756  * @class Roo.form.ComboBox
22757  * @extends Roo.form.TriggerField
22758  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
22759  * @constructor
22760  * Create a new ComboBox.
22761  * @param {Object} config Configuration options
22762  */
22763 Roo.form.ComboBox = function(config){
22764     Roo.form.ComboBox.superclass.constructor.call(this, config);
22765     this.addEvents({
22766         /**
22767          * @event expand
22768          * Fires when the dropdown list is expanded
22769              * @param {Roo.form.ComboBox} combo This combo box
22770              */
22771         'expand' : true,
22772         /**
22773          * @event collapse
22774          * Fires when the dropdown list is collapsed
22775              * @param {Roo.form.ComboBox} combo This combo box
22776              */
22777         'collapse' : true,
22778         /**
22779          * @event beforeselect
22780          * Fires before a list item is selected. Return false to cancel the selection.
22781              * @param {Roo.form.ComboBox} combo This combo box
22782              * @param {Roo.data.Record} record The data record returned from the underlying store
22783              * @param {Number} index The index of the selected item in the dropdown list
22784              */
22785         'beforeselect' : true,
22786         /**
22787          * @event select
22788          * Fires when a list item is selected
22789              * @param {Roo.form.ComboBox} combo This combo box
22790              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
22791              * @param {Number} index The index of the selected item in the dropdown list
22792              */
22793         'select' : true,
22794         /**
22795          * @event beforequery
22796          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
22797          * The event object passed has these properties:
22798              * @param {Roo.form.ComboBox} combo This combo box
22799              * @param {String} query The query
22800              * @param {Boolean} forceAll true to force "all" query
22801              * @param {Boolean} cancel true to cancel the query
22802              * @param {Object} e The query event object
22803              */
22804         'beforequery': true,
22805          /**
22806          * @event add
22807          * Fires when the 'add' icon is pressed (add a listener to enable add button)
22808              * @param {Roo.form.ComboBox} combo This combo box
22809              */
22810         'add' : true,
22811         /**
22812          * @event edit
22813          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
22814              * @param {Roo.form.ComboBox} combo This combo box
22815              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
22816              */
22817         'edit' : true
22818         
22819         
22820     });
22821     if(this.transform){
22822         this.allowDomMove = false;
22823         var s = Roo.getDom(this.transform);
22824         if(!this.hiddenName){
22825             this.hiddenName = s.name;
22826         }
22827         if(!this.store){
22828             this.mode = 'local';
22829             var d = [], opts = s.options;
22830             for(var i = 0, len = opts.length;i < len; i++){
22831                 var o = opts[i];
22832                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
22833                 if(o.selected) {
22834                     this.value = value;
22835                 }
22836                 d.push([value, o.text]);
22837             }
22838             this.store = new Roo.data.SimpleStore({
22839                 'id': 0,
22840                 fields: ['value', 'text'],
22841                 data : d
22842             });
22843             this.valueField = 'value';
22844             this.displayField = 'text';
22845         }
22846         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
22847         if(!this.lazyRender){
22848             this.target = true;
22849             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
22850             s.parentNode.removeChild(s); // remove it
22851             this.render(this.el.parentNode);
22852         }else{
22853             s.parentNode.removeChild(s); // remove it
22854         }
22855
22856     }
22857     if (this.store) {
22858         this.store = Roo.factory(this.store, Roo.data);
22859     }
22860     
22861     this.selectedIndex = -1;
22862     if(this.mode == 'local'){
22863         if(config.queryDelay === undefined){
22864             this.queryDelay = 10;
22865         }
22866         if(config.minChars === undefined){
22867             this.minChars = 0;
22868         }
22869     }
22870 };
22871
22872 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
22873     /**
22874      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
22875      */
22876     /**
22877      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
22878      * rendering into an Roo.Editor, defaults to false)
22879      */
22880     /**
22881      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
22882      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
22883      */
22884     /**
22885      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
22886      */
22887     /**
22888      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
22889      * the dropdown list (defaults to undefined, with no header element)
22890      */
22891
22892      /**
22893      * @cfg {String/Roo.Template} tpl The template to use to render the output
22894      */
22895      
22896     // private
22897     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
22898     /**
22899      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
22900      */
22901     listWidth: undefined,
22902     /**
22903      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
22904      * mode = 'remote' or 'text' if mode = 'local')
22905      */
22906     displayField: undefined,
22907     /**
22908      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
22909      * mode = 'remote' or 'value' if mode = 'local'). 
22910      * Note: use of a valueField requires the user make a selection
22911      * in order for a value to be mapped.
22912      */
22913     valueField: undefined,
22914     
22915     
22916     /**
22917      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
22918      * field's data value (defaults to the underlying DOM element's name)
22919      */
22920     hiddenName: undefined,
22921     /**
22922      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
22923      */
22924     listClass: '',
22925     /**
22926      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
22927      */
22928     selectedClass: 'x-combo-selected',
22929     /**
22930      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
22931      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
22932      * which displays a downward arrow icon).
22933      */
22934     triggerClass : 'x-form-arrow-trigger',
22935     /**
22936      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
22937      */
22938     shadow:'sides',
22939     /**
22940      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
22941      * anchor positions (defaults to 'tl-bl')
22942      */
22943     listAlign: 'tl-bl?',
22944     /**
22945      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
22946      */
22947     maxHeight: 300,
22948     /**
22949      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
22950      * query specified by the allQuery config option (defaults to 'query')
22951      */
22952     triggerAction: 'query',
22953     /**
22954      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
22955      * (defaults to 4, does not apply if editable = false)
22956      */
22957     minChars : 4,
22958     /**
22959      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
22960      * delay (typeAheadDelay) if it matches a known value (defaults to false)
22961      */
22962     typeAhead: false,
22963     /**
22964      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
22965      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
22966      */
22967     queryDelay: 500,
22968     /**
22969      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
22970      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
22971      */
22972     pageSize: 0,
22973     /**
22974      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
22975      * when editable = true (defaults to false)
22976      */
22977     selectOnFocus:false,
22978     /**
22979      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
22980      */
22981     queryParam: 'query',
22982     /**
22983      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
22984      * when mode = 'remote' (defaults to 'Loading...')
22985      */
22986     loadingText: 'Loading...',
22987     /**
22988      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
22989      */
22990     resizable: false,
22991     /**
22992      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
22993      */
22994     handleHeight : 8,
22995     /**
22996      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
22997      * traditional select (defaults to true)
22998      */
22999     editable: true,
23000     /**
23001      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
23002      */
23003     allQuery: '',
23004     /**
23005      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
23006      */
23007     mode: 'remote',
23008     /**
23009      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
23010      * listWidth has a higher value)
23011      */
23012     minListWidth : 70,
23013     /**
23014      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
23015      * allow the user to set arbitrary text into the field (defaults to false)
23016      */
23017     forceSelection:false,
23018     /**
23019      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
23020      * if typeAhead = true (defaults to 250)
23021      */
23022     typeAheadDelay : 250,
23023     /**
23024      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
23025      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
23026      */
23027     valueNotFoundText : undefined,
23028     /**
23029      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
23030      */
23031     blockFocus : false,
23032     
23033     /**
23034      * @cfg {Boolean} disableClear Disable showing of clear button.
23035      */
23036     disableClear : false,
23037     /**
23038      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
23039      */
23040     alwaysQuery : false,
23041     
23042     //private
23043     addicon : false,
23044     editicon: false,
23045     
23046     // element that contains real text value.. (when hidden is used..)
23047      
23048     // private
23049     onRender : function(ct, position){
23050         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
23051         if(this.hiddenName){
23052             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
23053                     'before', true);
23054             this.hiddenField.value =
23055                 this.hiddenValue !== undefined ? this.hiddenValue :
23056                 this.value !== undefined ? this.value : '';
23057
23058             // prevent input submission
23059             this.el.dom.removeAttribute('name');
23060              
23061              
23062         }
23063         if(Roo.isGecko){
23064             this.el.dom.setAttribute('autocomplete', 'off');
23065         }
23066
23067         var cls = 'x-combo-list';
23068
23069         this.list = new Roo.Layer({
23070             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
23071         });
23072
23073         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
23074         this.list.setWidth(lw);
23075         this.list.swallowEvent('mousewheel');
23076         this.assetHeight = 0;
23077
23078         if(this.title){
23079             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
23080             this.assetHeight += this.header.getHeight();
23081         }
23082
23083         this.innerList = this.list.createChild({cls:cls+'-inner'});
23084         this.innerList.on('mouseover', this.onViewOver, this);
23085         this.innerList.on('mousemove', this.onViewMove, this);
23086         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
23087         
23088         if(this.allowBlank && !this.pageSize && !this.disableClear){
23089             this.footer = this.list.createChild({cls:cls+'-ft'});
23090             this.pageTb = new Roo.Toolbar(this.footer);
23091            
23092         }
23093         if(this.pageSize){
23094             this.footer = this.list.createChild({cls:cls+'-ft'});
23095             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
23096                     {pageSize: this.pageSize});
23097             
23098         }
23099         
23100         if (this.pageTb && this.allowBlank && !this.disableClear) {
23101             var _this = this;
23102             this.pageTb.add(new Roo.Toolbar.Fill(), {
23103                 cls: 'x-btn-icon x-btn-clear',
23104                 text: '&#160;',
23105                 handler: function()
23106                 {
23107                     _this.collapse();
23108                     _this.clearValue();
23109                     _this.onSelect(false, -1);
23110                 }
23111             });
23112         }
23113         if (this.footer) {
23114             this.assetHeight += this.footer.getHeight();
23115         }
23116         
23117
23118         if(!this.tpl){
23119             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
23120         }
23121
23122         this.view = new Roo.View(this.innerList, this.tpl, {
23123             singleSelect:true, store: this.store, selectedClass: this.selectedClass
23124         });
23125
23126         this.view.on('click', this.onViewClick, this);
23127
23128         this.store.on('beforeload', this.onBeforeLoad, this);
23129         this.store.on('load', this.onLoad, this);
23130         this.store.on('loadexception', this.onLoadException, this);
23131
23132         if(this.resizable){
23133             this.resizer = new Roo.Resizable(this.list,  {
23134                pinned:true, handles:'se'
23135             });
23136             this.resizer.on('resize', function(r, w, h){
23137                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
23138                 this.listWidth = w;
23139                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
23140                 this.restrictHeight();
23141             }, this);
23142             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
23143         }
23144         if(!this.editable){
23145             this.editable = true;
23146             this.setEditable(false);
23147         }  
23148         
23149         
23150         if (typeof(this.events.add.listeners) != 'undefined') {
23151             
23152             this.addicon = this.wrap.createChild(
23153                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
23154        
23155             this.addicon.on('click', function(e) {
23156                 this.fireEvent('add', this);
23157             }, this);
23158         }
23159         if (typeof(this.events.edit.listeners) != 'undefined') {
23160             
23161             this.editicon = this.wrap.createChild(
23162                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
23163             if (this.addicon) {
23164                 this.editicon.setStyle('margin-left', '40px');
23165             }
23166             this.editicon.on('click', function(e) {
23167                 
23168                 // we fire even  if inothing is selected..
23169                 this.fireEvent('edit', this, this.lastData );
23170                 
23171             }, this);
23172         }
23173         
23174         
23175         
23176     },
23177
23178     // private
23179     initEvents : function(){
23180         Roo.form.ComboBox.superclass.initEvents.call(this);
23181
23182         this.keyNav = new Roo.KeyNav(this.el, {
23183             "up" : function(e){
23184                 this.inKeyMode = true;
23185                 this.selectPrev();
23186             },
23187
23188             "down" : function(e){
23189                 if(!this.isExpanded()){
23190                     this.onTriggerClick();
23191                 }else{
23192                     this.inKeyMode = true;
23193                     this.selectNext();
23194                 }
23195             },
23196
23197             "enter" : function(e){
23198                 this.onViewClick();
23199                 //return true;
23200             },
23201
23202             "esc" : function(e){
23203                 this.collapse();
23204             },
23205
23206             "tab" : function(e){
23207                 this.onViewClick(false);
23208                 this.fireEvent("specialkey", this, e);
23209                 return true;
23210             },
23211
23212             scope : this,
23213
23214             doRelay : function(foo, bar, hname){
23215                 if(hname == 'down' || this.scope.isExpanded()){
23216                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
23217                 }
23218                 return true;
23219             },
23220
23221             forceKeyDown: true
23222         });
23223         this.queryDelay = Math.max(this.queryDelay || 10,
23224                 this.mode == 'local' ? 10 : 250);
23225         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
23226         if(this.typeAhead){
23227             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
23228         }
23229         if(this.editable !== false){
23230             this.el.on("keyup", this.onKeyUp, this);
23231         }
23232         if(this.forceSelection){
23233             this.on('blur', this.doForce, this);
23234         }
23235     },
23236
23237     onDestroy : function(){
23238         if(this.view){
23239             this.view.setStore(null);
23240             this.view.el.removeAllListeners();
23241             this.view.el.remove();
23242             this.view.purgeListeners();
23243         }
23244         if(this.list){
23245             this.list.destroy();
23246         }
23247         if(this.store){
23248             this.store.un('beforeload', this.onBeforeLoad, this);
23249             this.store.un('load', this.onLoad, this);
23250             this.store.un('loadexception', this.onLoadException, this);
23251         }
23252         Roo.form.ComboBox.superclass.onDestroy.call(this);
23253     },
23254
23255     // private
23256     fireKey : function(e){
23257         if(e.isNavKeyPress() && !this.list.isVisible()){
23258             this.fireEvent("specialkey", this, e);
23259         }
23260     },
23261
23262     // private
23263     onResize: function(w, h){
23264         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
23265         
23266         if(typeof w != 'number'){
23267             // we do not handle it!?!?
23268             return;
23269         }
23270         var tw = this.trigger.getWidth();
23271         tw += this.addicon ? this.addicon.getWidth() : 0;
23272         tw += this.editicon ? this.editicon.getWidth() : 0;
23273         var x = w - tw;
23274         this.el.setWidth( this.adjustWidth('input', x));
23275             
23276         this.trigger.setStyle('left', x+'px');
23277         
23278         if(this.list && this.listWidth === undefined){
23279             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
23280             this.list.setWidth(lw);
23281             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
23282         }
23283         
23284     
23285         
23286     },
23287
23288     /**
23289      * Allow or prevent the user from directly editing the field text.  If false is passed,
23290      * the user will only be able to select from the items defined in the dropdown list.  This method
23291      * is the runtime equivalent of setting the 'editable' config option at config time.
23292      * @param {Boolean} value True to allow the user to directly edit the field text
23293      */
23294     setEditable : function(value){
23295         if(value == this.editable){
23296             return;
23297         }
23298         this.editable = value;
23299         if(!value){
23300             this.el.dom.setAttribute('readOnly', true);
23301             this.el.on('mousedown', this.onTriggerClick,  this);
23302             this.el.addClass('x-combo-noedit');
23303         }else{
23304             this.el.dom.setAttribute('readOnly', false);
23305             this.el.un('mousedown', this.onTriggerClick,  this);
23306             this.el.removeClass('x-combo-noedit');
23307         }
23308     },
23309
23310     // private
23311     onBeforeLoad : function(){
23312         if(!this.hasFocus){
23313             return;
23314         }
23315         this.innerList.update(this.loadingText ?
23316                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
23317         this.restrictHeight();
23318         this.selectedIndex = -1;
23319     },
23320
23321     // private
23322     onLoad : function(){
23323         if(!this.hasFocus){
23324             return;
23325         }
23326         if(this.store.getCount() > 0){
23327             this.expand();
23328             this.restrictHeight();
23329             if(this.lastQuery == this.allQuery){
23330                 if(this.editable){
23331                     this.el.dom.select();
23332                 }
23333                 if(!this.selectByValue(this.value, true)){
23334                     this.select(0, true);
23335                 }
23336             }else{
23337                 this.selectNext();
23338                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
23339                     this.taTask.delay(this.typeAheadDelay);
23340                 }
23341             }
23342         }else{
23343             this.onEmptyResults();
23344         }
23345         //this.el.focus();
23346     },
23347     // private
23348     onLoadException : function()
23349     {
23350         this.collapse();
23351         Roo.log(this.store.reader.jsonData);
23352         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
23353             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
23354         }
23355         
23356         
23357     },
23358     // private
23359     onTypeAhead : function(){
23360         if(this.store.getCount() > 0){
23361             var r = this.store.getAt(0);
23362             var newValue = r.data[this.displayField];
23363             var len = newValue.length;
23364             var selStart = this.getRawValue().length;
23365             if(selStart != len){
23366                 this.setRawValue(newValue);
23367                 this.selectText(selStart, newValue.length);
23368             }
23369         }
23370     },
23371
23372     // private
23373     onSelect : function(record, index){
23374         if(this.fireEvent('beforeselect', this, record, index) !== false){
23375             this.setFromData(index > -1 ? record.data : false);
23376             this.collapse();
23377             this.fireEvent('select', this, record, index);
23378         }
23379     },
23380
23381     /**
23382      * Returns the currently selected field value or empty string if no value is set.
23383      * @return {String} value The selected value
23384      */
23385     getValue : function(){
23386         if(this.valueField){
23387             return typeof this.value != 'undefined' ? this.value : '';
23388         }else{
23389             return Roo.form.ComboBox.superclass.getValue.call(this);
23390         }
23391     },
23392
23393     /**
23394      * Clears any text/value currently set in the field
23395      */
23396     clearValue : function(){
23397         if(this.hiddenField){
23398             this.hiddenField.value = '';
23399         }
23400         this.value = '';
23401         this.setRawValue('');
23402         this.lastSelectionText = '';
23403         
23404     },
23405
23406     /**
23407      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
23408      * will be displayed in the field.  If the value does not match the data value of an existing item,
23409      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
23410      * Otherwise the field will be blank (although the value will still be set).
23411      * @param {String} value The value to match
23412      */
23413     setValue : function(v){
23414         var text = v;
23415         if(this.valueField){
23416             var r = this.findRecord(this.valueField, v);
23417             if(r){
23418                 text = r.data[this.displayField];
23419             }else if(this.valueNotFoundText !== undefined){
23420                 text = this.valueNotFoundText;
23421             }
23422         }
23423         this.lastSelectionText = text;
23424         if(this.hiddenField){
23425             this.hiddenField.value = v;
23426         }
23427         Roo.form.ComboBox.superclass.setValue.call(this, text);
23428         this.value = v;
23429     },
23430     /**
23431      * @property {Object} the last set data for the element
23432      */
23433     
23434     lastData : false,
23435     /**
23436      * Sets the value of the field based on a object which is related to the record format for the store.
23437      * @param {Object} value the value to set as. or false on reset?
23438      */
23439     setFromData : function(o){
23440         var dv = ''; // display value
23441         var vv = ''; // value value..
23442         this.lastData = o;
23443         if (this.displayField) {
23444             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
23445         } else {
23446             // this is an error condition!!!
23447             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
23448         }
23449         
23450         if(this.valueField){
23451             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
23452         }
23453         if(this.hiddenField){
23454             this.hiddenField.value = vv;
23455             
23456             this.lastSelectionText = dv;
23457             Roo.form.ComboBox.superclass.setValue.call(this, dv);
23458             this.value = vv;
23459             return;
23460         }
23461         // no hidden field.. - we store the value in 'value', but still display
23462         // display field!!!!
23463         this.lastSelectionText = dv;
23464         Roo.form.ComboBox.superclass.setValue.call(this, dv);
23465         this.value = vv;
23466         
23467         
23468     },
23469     // private
23470     reset : function(){
23471         // overridden so that last data is reset..
23472         this.setValue(this.resetValue);
23473         this.clearInvalid();
23474         this.lastData = false;
23475         if (this.view) {
23476             this.view.clearSelections();
23477         }
23478     },
23479     // private
23480     findRecord : function(prop, value){
23481         var record;
23482         if(this.store.getCount() > 0){
23483             this.store.each(function(r){
23484                 if(r.data[prop] == value){
23485                     record = r;
23486                     return false;
23487                 }
23488                 return true;
23489             });
23490         }
23491         return record;
23492     },
23493     
23494     getName: function()
23495     {
23496         // returns hidden if it's set..
23497         if (!this.rendered) {return ''};
23498         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
23499         
23500     },
23501     // private
23502     onViewMove : function(e, t){
23503         this.inKeyMode = false;
23504     },
23505
23506     // private
23507     onViewOver : function(e, t){
23508         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
23509             return;
23510         }
23511         var item = this.view.findItemFromChild(t);
23512         if(item){
23513             var index = this.view.indexOf(item);
23514             this.select(index, false);
23515         }
23516     },
23517
23518     // private
23519     onViewClick : function(doFocus)
23520     {
23521         var index = this.view.getSelectedIndexes()[0];
23522         var r = this.store.getAt(index);
23523         if(r){
23524             this.onSelect(r, index);
23525         }
23526         if(doFocus !== false && !this.blockFocus){
23527             this.el.focus();
23528         }
23529     },
23530
23531     // private
23532     restrictHeight : function(){
23533         this.innerList.dom.style.height = '';
23534         var inner = this.innerList.dom;
23535         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
23536         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
23537         this.list.beginUpdate();
23538         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
23539         this.list.alignTo(this.el, this.listAlign);
23540         this.list.endUpdate();
23541     },
23542
23543     // private
23544     onEmptyResults : function(){
23545         this.collapse();
23546     },
23547
23548     /**
23549      * Returns true if the dropdown list is expanded, else false.
23550      */
23551     isExpanded : function(){
23552         return this.list.isVisible();
23553     },
23554
23555     /**
23556      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
23557      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
23558      * @param {String} value The data value of the item to select
23559      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
23560      * selected item if it is not currently in view (defaults to true)
23561      * @return {Boolean} True if the value matched an item in the list, else false
23562      */
23563     selectByValue : function(v, scrollIntoView){
23564         if(v !== undefined && v !== null){
23565             var r = this.findRecord(this.valueField || this.displayField, v);
23566             if(r){
23567                 this.select(this.store.indexOf(r), scrollIntoView);
23568                 return true;
23569             }
23570         }
23571         return false;
23572     },
23573
23574     /**
23575      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
23576      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
23577      * @param {Number} index The zero-based index of the list item to select
23578      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
23579      * selected item if it is not currently in view (defaults to true)
23580      */
23581     select : function(index, scrollIntoView){
23582         this.selectedIndex = index;
23583         this.view.select(index);
23584         if(scrollIntoView !== false){
23585             var el = this.view.getNode(index);
23586             if(el){
23587                 this.innerList.scrollChildIntoView(el, false);
23588             }
23589         }
23590     },
23591
23592     // private
23593     selectNext : function(){
23594         var ct = this.store.getCount();
23595         if(ct > 0){
23596             if(this.selectedIndex == -1){
23597                 this.select(0);
23598             }else if(this.selectedIndex < ct-1){
23599                 this.select(this.selectedIndex+1);
23600             }
23601         }
23602     },
23603
23604     // private
23605     selectPrev : function(){
23606         var ct = this.store.getCount();
23607         if(ct > 0){
23608             if(this.selectedIndex == -1){
23609                 this.select(0);
23610             }else if(this.selectedIndex != 0){
23611                 this.select(this.selectedIndex-1);
23612             }
23613         }
23614     },
23615
23616     // private
23617     onKeyUp : function(e){
23618         if(this.editable !== false && !e.isSpecialKey()){
23619             this.lastKey = e.getKey();
23620             this.dqTask.delay(this.queryDelay);
23621         }
23622     },
23623
23624     // private
23625     validateBlur : function(){
23626         return !this.list || !this.list.isVisible();   
23627     },
23628
23629     // private
23630     initQuery : function(){
23631         this.doQuery(this.getRawValue());
23632     },
23633
23634     // private
23635     doForce : function(){
23636         if(this.el.dom.value.length > 0){
23637             this.el.dom.value =
23638                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
23639              
23640         }
23641     },
23642
23643     /**
23644      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
23645      * query allowing the query action to be canceled if needed.
23646      * @param {String} query The SQL query to execute
23647      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
23648      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
23649      * saved in the current store (defaults to false)
23650      */
23651     doQuery : function(q, forceAll){
23652         if(q === undefined || q === null){
23653             q = '';
23654         }
23655         var qe = {
23656             query: q,
23657             forceAll: forceAll,
23658             combo: this,
23659             cancel:false
23660         };
23661         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
23662             return false;
23663         }
23664         q = qe.query;
23665         forceAll = qe.forceAll;
23666         if(forceAll === true || (q.length >= this.minChars)){
23667             if(this.lastQuery != q || this.alwaysQuery){
23668                 this.lastQuery = q;
23669                 if(this.mode == 'local'){
23670                     this.selectedIndex = -1;
23671                     if(forceAll){
23672                         this.store.clearFilter();
23673                     }else{
23674                         this.store.filter(this.displayField, q);
23675                     }
23676                     this.onLoad();
23677                 }else{
23678                     this.store.baseParams[this.queryParam] = q;
23679                     this.store.load({
23680                         params: this.getParams(q)
23681                     });
23682                     this.expand();
23683                 }
23684             }else{
23685                 this.selectedIndex = -1;
23686                 this.onLoad();   
23687             }
23688         }
23689     },
23690
23691     // private
23692     getParams : function(q){
23693         var p = {};
23694         //p[this.queryParam] = q;
23695         if(this.pageSize){
23696             p.start = 0;
23697             p.limit = this.pageSize;
23698         }
23699         return p;
23700     },
23701
23702     /**
23703      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
23704      */
23705     collapse : function(){
23706         if(!this.isExpanded()){
23707             return;
23708         }
23709         this.list.hide();
23710         Roo.get(document).un('mousedown', this.collapseIf, this);
23711         Roo.get(document).un('mousewheel', this.collapseIf, this);
23712         if (!this.editable) {
23713             Roo.get(document).un('keydown', this.listKeyPress, this);
23714         }
23715         this.fireEvent('collapse', this);
23716     },
23717
23718     // private
23719     collapseIf : function(e){
23720         if(!e.within(this.wrap) && !e.within(this.list)){
23721             this.collapse();
23722         }
23723     },
23724
23725     /**
23726      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
23727      */
23728     expand : function(){
23729         if(this.isExpanded() || !this.hasFocus){
23730             return;
23731         }
23732         this.list.alignTo(this.el, this.listAlign);
23733         this.list.show();
23734         Roo.get(document).on('mousedown', this.collapseIf, this);
23735         Roo.get(document).on('mousewheel', this.collapseIf, this);
23736         if (!this.editable) {
23737             Roo.get(document).on('keydown', this.listKeyPress, this);
23738         }
23739         
23740         this.fireEvent('expand', this);
23741     },
23742
23743     // private
23744     // Implements the default empty TriggerField.onTriggerClick function
23745     onTriggerClick : function(){
23746         if(this.disabled){
23747             return;
23748         }
23749         if(this.isExpanded()){
23750             this.collapse();
23751             if (!this.blockFocus) {
23752                 this.el.focus();
23753             }
23754             
23755         }else {
23756             this.hasFocus = true;
23757             if(this.triggerAction == 'all') {
23758                 this.doQuery(this.allQuery, true);
23759             } else {
23760                 this.doQuery(this.getRawValue());
23761             }
23762             if (!this.blockFocus) {
23763                 this.el.focus();
23764             }
23765         }
23766     },
23767     listKeyPress : function(e)
23768     {
23769         //Roo.log('listkeypress');
23770         // scroll to first matching element based on key pres..
23771         if (e.isSpecialKey()) {
23772             return false;
23773         }
23774         var k = String.fromCharCode(e.getKey()).toUpperCase();
23775         //Roo.log(k);
23776         var match  = false;
23777         var csel = this.view.getSelectedNodes();
23778         var cselitem = false;
23779         if (csel.length) {
23780             var ix = this.view.indexOf(csel[0]);
23781             cselitem  = this.store.getAt(ix);
23782             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
23783                 cselitem = false;
23784             }
23785             
23786         }
23787         
23788         this.store.each(function(v) { 
23789             if (cselitem) {
23790                 // start at existing selection.
23791                 if (cselitem.id == v.id) {
23792                     cselitem = false;
23793                 }
23794                 return;
23795             }
23796                 
23797             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
23798                 match = this.store.indexOf(v);
23799                 return false;
23800             }
23801         }, this);
23802         
23803         if (match === false) {
23804             return true; // no more action?
23805         }
23806         // scroll to?
23807         this.view.select(match);
23808         var sn = Roo.get(this.view.getSelectedNodes()[0])
23809         sn.scrollIntoView(sn.dom.parentNode, false);
23810     }
23811
23812     /** 
23813     * @cfg {Boolean} grow 
23814     * @hide 
23815     */
23816     /** 
23817     * @cfg {Number} growMin 
23818     * @hide 
23819     */
23820     /** 
23821     * @cfg {Number} growMax 
23822     * @hide 
23823     */
23824     /**
23825      * @hide
23826      * @method autoSize
23827      */
23828 });/*
23829  * Copyright(c) 2010-2012, Roo J Solutions Limited
23830  *
23831  * Licence LGPL
23832  *
23833  */
23834
23835 /**
23836  * @class Roo.form.ComboBoxArray
23837  * @extends Roo.form.TextField
23838  * A facebook style adder... for lists of email / people / countries  etc...
23839  * pick multiple items from a combo box, and shows each one.
23840  *
23841  *  Fred [x]  Brian [x]  [Pick another |v]
23842  *
23843  *
23844  *  For this to work: it needs various extra information
23845  *    - normal combo problay has
23846  *      name, hiddenName
23847  *    + displayField, valueField
23848  *
23849  *    For our purpose...
23850  *
23851  *
23852  *   If we change from 'extends' to wrapping...
23853  *   
23854  *  
23855  *
23856  
23857  
23858  * @constructor
23859  * Create a new ComboBoxArray.
23860  * @param {Object} config Configuration options
23861  */
23862  
23863
23864 Roo.form.ComboBoxArray = function(config)
23865 {
23866     this.addEvents({
23867         /**
23868          * @event remove
23869          * Fires when remove the value from the list
23870              * @param {Roo.form.ComboBoxArray} _self This combo box array
23871              * @param {Roo.form.ComboBoxArray.Item} item removed item
23872              */
23873         'remove' : true
23874         
23875         
23876     });
23877     
23878     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
23879     
23880     this.items = new Roo.util.MixedCollection(false);
23881     
23882     // construct the child combo...
23883     
23884     
23885     
23886     
23887    
23888     
23889 }
23890
23891  
23892 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
23893
23894     /**
23895      * @cfg {Roo.form.Combo} combo The combo box that is wrapped
23896      */
23897     
23898     lastData : false,
23899     
23900     // behavies liek a hiddne field
23901     inputType:      'hidden',
23902     /**
23903      * @cfg {Number} width The width of the box that displays the selected element
23904      */ 
23905     width:          300,
23906
23907     
23908     
23909     /**
23910      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
23911      */
23912     name : false,
23913     /**
23914      * @cfg {String} hiddenName    The hidden name of the field, often contains an comma seperated list of names
23915      */
23916     hiddenName : false,
23917     
23918     
23919     // private the array of items that are displayed..
23920     items  : false,
23921     // private - the hidden field el.
23922     hiddenEl : false,
23923     // private - the filed el..
23924     el : false,
23925     
23926     //validateValue : function() { return true; }, // all values are ok!
23927     //onAddClick: function() { },
23928     
23929     onRender : function(ct, position) 
23930     {
23931         
23932         // create the standard hidden element
23933         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
23934         
23935         
23936         // give fake names to child combo;
23937         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
23938         this.combo.name = this.name? (this.name+'-subcombo') : this.name;
23939         
23940         this.combo = Roo.factory(this.combo, Roo.form);
23941         this.combo.onRender(ct, position);
23942         if (typeof(this.combo.width) != 'undefined') {
23943             this.combo.onResize(this.combo.width,0);
23944         }
23945         
23946         this.combo.initEvents();
23947         
23948         // assigned so form know we need to do this..
23949         this.store          = this.combo.store;
23950         this.valueField     = this.combo.valueField;
23951         this.displayField   = this.combo.displayField ;
23952         
23953         
23954         this.combo.wrap.addClass('x-cbarray-grp');
23955         
23956         var cbwrap = this.combo.wrap.createChild(
23957             {tag: 'div', cls: 'x-cbarray-cb'},
23958             this.combo.el.dom
23959         );
23960         
23961              
23962         this.hiddenEl = this.combo.wrap.createChild({
23963             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
23964         });
23965         this.el = this.combo.wrap.createChild({
23966             tag: 'input',  type:'hidden' , name: this.name, value : ''
23967         });
23968          //   this.el.dom.removeAttribute("name");
23969         
23970         
23971         this.outerWrap = this.combo.wrap;
23972         this.wrap = cbwrap;
23973         
23974         this.outerWrap.setWidth(this.width);
23975         this.outerWrap.dom.removeChild(this.el.dom);
23976         
23977         this.wrap.dom.appendChild(this.el.dom);
23978         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
23979         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
23980         
23981         this.combo.trigger.setStyle('position','relative');
23982         this.combo.trigger.setStyle('left', '0px');
23983         this.combo.trigger.setStyle('top', '2px');
23984         
23985         this.combo.el.setStyle('vertical-align', 'text-bottom');
23986         
23987         //this.trigger.setStyle('vertical-align', 'top');
23988         
23989         // this should use the code from combo really... on('add' ....)
23990         if (this.adder) {
23991             
23992         
23993             this.adder = this.outerWrap.createChild(
23994                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
23995             var _t = this;
23996             this.adder.on('click', function(e) {
23997                 _t.fireEvent('adderclick', this, e);
23998             }, _t);
23999         }
24000         //var _t = this;
24001         //this.adder.on('click', this.onAddClick, _t);
24002         
24003         
24004         this.combo.on('select', function(cb, rec, ix) {
24005             this.addItem(rec.data);
24006             
24007             cb.setValue('');
24008             cb.el.dom.value = '';
24009             //cb.lastData = rec.data;
24010             // add to list
24011             
24012         }, this);
24013         
24014         
24015     },
24016     
24017     
24018     getName: function()
24019     {
24020         // returns hidden if it's set..
24021         if (!this.rendered) {return ''};
24022         return  this.hiddenName ? this.hiddenName : this.name;
24023         
24024     },
24025     
24026     
24027     onResize: function(w, h){
24028         
24029         return;
24030         // not sure if this is needed..
24031         //this.combo.onResize(w,h);
24032         
24033         if(typeof w != 'number'){
24034             // we do not handle it!?!?
24035             return;
24036         }
24037         var tw = this.combo.trigger.getWidth();
24038         tw += this.addicon ? this.addicon.getWidth() : 0;
24039         tw += this.editicon ? this.editicon.getWidth() : 0;
24040         var x = w - tw;
24041         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
24042             
24043         this.combo.trigger.setStyle('left', '0px');
24044         
24045         if(this.list && this.listWidth === undefined){
24046             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
24047             this.list.setWidth(lw);
24048             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
24049         }
24050         
24051     
24052         
24053     },
24054     
24055     addItem: function(rec)
24056     {
24057         var valueField = this.combo.valueField;
24058         var displayField = this.combo.displayField;
24059         if (this.items.indexOfKey(rec[valueField]) > -1) {
24060             //console.log("GOT " + rec.data.id);
24061             return;
24062         }
24063         
24064         var x = new Roo.form.ComboBoxArray.Item({
24065             //id : rec[this.idField],
24066             data : rec,
24067             displayField : displayField ,
24068             tipField : displayField ,
24069             cb : this
24070         });
24071         // use the 
24072         this.items.add(rec[valueField],x);
24073         // add it before the element..
24074         this.updateHiddenEl();
24075         x.render(this.outerWrap, this.wrap.dom);
24076         // add the image handler..
24077     },
24078     
24079     updateHiddenEl : function()
24080     {
24081         this.validate();
24082         if (!this.hiddenEl) {
24083             return;
24084         }
24085         var ar = [];
24086         var idField = this.combo.valueField;
24087         
24088         this.items.each(function(f) {
24089             ar.push(f.data[idField]);
24090            
24091         });
24092         this.hiddenEl.dom.value = ar.join(',');
24093         this.validate();
24094     },
24095     
24096     reset : function()
24097     {
24098         //Roo.form.ComboBoxArray.superclass.reset.call(this); 
24099         this.items.each(function(f) {
24100            f.remove(); 
24101         });
24102         this.el.dom.value = '';
24103         if (this.hiddenEl) {
24104             this.hiddenEl.dom.value = '';
24105         }
24106         
24107     },
24108     getValue: function()
24109     {
24110         return this.hiddenEl ? this.hiddenEl.dom.value : '';
24111     },
24112     setValue: function(v) // not a valid action - must use addItems..
24113     {
24114          
24115         this.reset();
24116         
24117         
24118         
24119         if (this.store.isLocal && (typeof(v) == 'string')) {
24120             // then we can use the store to find the values..
24121             // comma seperated at present.. this needs to allow JSON based encoding..
24122             this.hiddenEl.value  = v;
24123             var v_ar = [];
24124             Roo.each(v.split(','), function(k) {
24125                 Roo.log("CHECK " + this.valueField + ',' + k);
24126                 var li = this.store.query(this.valueField, k);
24127                 if (!li.length) {
24128                     return;
24129                 }
24130                 var add = {};
24131                 add[this.valueField] = k;
24132                 add[this.displayField] = li.item(0).data[this.displayField];
24133                 
24134                 this.addItem(add);
24135             }, this) 
24136              
24137         }
24138         if (typeof(v) == 'object') {
24139             // then let's assume it's an array of objects..
24140             Roo.each(v, function(l) {
24141                 this.addItem(l);
24142             }, this);
24143              
24144         }
24145         
24146         
24147     },
24148     setFromData: function(v)
24149     {
24150         // this recieves an object, if setValues is called.
24151         this.reset();
24152         this.el.dom.value = v[this.displayField];
24153         this.hiddenEl.dom.value = v[this.valueField];
24154         if (typeof(v[this.valueField]) != 'string' || !v[this.valueField].length) {
24155             return;
24156         }
24157         var kv = v[this.valueField];
24158         var dv = v[this.displayField];
24159         kv = typeof(kv) != 'string' ? '' : kv;
24160         dv = typeof(dv) != 'string' ? '' : dv;
24161         
24162         
24163         var keys = kv.split(',');
24164         var display = dv.split(',');
24165         for (var i = 0 ; i < keys.length; i++) {
24166             
24167             add = {};
24168             add[this.valueField] = keys[i];
24169             add[this.displayField] = display[i];
24170             this.addItem(add);
24171         }
24172       
24173         
24174     },
24175     
24176     /**
24177      * Validates the combox array value
24178      * @return {Boolean} True if the value is valid, else false
24179      */
24180     validate : function(){
24181         if(this.disabled || this.validateValue(this.processValue(this.getValue()))){
24182             this.clearInvalid();
24183             return true;
24184         }
24185         return false;
24186     },
24187     
24188     validateValue : function(value){
24189         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
24190         
24191     },
24192     
24193     /*@
24194      * overide
24195      * 
24196      */
24197     isDirty : function() {
24198         if(this.disabled) {
24199             return false;
24200         }
24201         
24202         try {
24203             var d = Roo.decode(String(this.originalValue));
24204         } catch (e) {
24205             return String(this.getValue()) !== String(this.originalValue);
24206         }
24207         
24208         var originalValue = [];
24209         
24210         for (var i = 0; i < d.length; i++){
24211             originalValue.push(d[i][this.valueField]);
24212         }
24213         
24214         return String(this.getValue()) !== String(originalValue.join(','));
24215         
24216     }
24217     
24218 });
24219
24220
24221
24222 /**
24223  * @class Roo.form.ComboBoxArray.Item
24224  * @extends Roo.BoxComponent
24225  * A selected item in the list
24226  *  Fred [x]  Brian [x]  [Pick another |v]
24227  * 
24228  * @constructor
24229  * Create a new item.
24230  * @param {Object} config Configuration options
24231  */
24232  
24233 Roo.form.ComboBoxArray.Item = function(config) {
24234     config.id = Roo.id();
24235     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
24236 }
24237
24238 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
24239     data : {},
24240     cb: false,
24241     displayField : false,
24242     tipField : false,
24243     
24244     
24245     defaultAutoCreate : {
24246         tag: 'div',
24247         cls: 'x-cbarray-item',
24248         cn : [ 
24249             { tag: 'div' },
24250             {
24251                 tag: 'img',
24252                 width:16,
24253                 height : 16,
24254                 src : Roo.BLANK_IMAGE_URL ,
24255                 align: 'center'
24256             }
24257         ]
24258         
24259     },
24260     
24261  
24262     onRender : function(ct, position)
24263     {
24264         Roo.form.Field.superclass.onRender.call(this, ct, position);
24265         
24266         if(!this.el){
24267             var cfg = this.getAutoCreate();
24268             this.el = ct.createChild(cfg, position);
24269         }
24270         
24271         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
24272         
24273         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
24274             this.cb.renderer(this.data) :
24275             String.format('{0}',this.data[this.displayField]);
24276         
24277             
24278         this.el.child('div').dom.setAttribute('qtip',
24279                         String.format('{0}',this.data[this.tipField])
24280         );
24281         
24282         this.el.child('img').on('click', this.remove, this);
24283         
24284     },
24285    
24286     remove : function()
24287     {
24288         this.cb.items.remove(this);
24289         this.el.child('img').un('click', this.remove, this);
24290         this.el.remove();
24291         this.cb.updateHiddenEl();
24292         
24293         this.cb.fireEvent('remove', this.cb, this);
24294     }
24295 });/*
24296  * Based on:
24297  * Ext JS Library 1.1.1
24298  * Copyright(c) 2006-2007, Ext JS, LLC.
24299  *
24300  * Originally Released Under LGPL - original licence link has changed is not relivant.
24301  *
24302  * Fork - LGPL
24303  * <script type="text/javascript">
24304  */
24305 /**
24306  * @class Roo.form.Checkbox
24307  * @extends Roo.form.Field
24308  * Single checkbox field.  Can be used as a direct replacement for traditional checkbox fields.
24309  * @constructor
24310  * Creates a new Checkbox
24311  * @param {Object} config Configuration options
24312  */
24313 Roo.form.Checkbox = function(config){
24314     Roo.form.Checkbox.superclass.constructor.call(this, config);
24315     this.addEvents({
24316         /**
24317          * @event check
24318          * Fires when the checkbox is checked or unchecked.
24319              * @param {Roo.form.Checkbox} this This checkbox
24320              * @param {Boolean} checked The new checked value
24321              */
24322         check : true
24323     });
24324 };
24325
24326 Roo.extend(Roo.form.Checkbox, Roo.form.Field,  {
24327     /**
24328      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
24329      */
24330     focusClass : undefined,
24331     /**
24332      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
24333      */
24334     fieldClass: "x-form-field",
24335     /**
24336      * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
24337      */
24338     checked: false,
24339     /**
24340      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
24341      * {tag: "input", type: "checkbox", autocomplete: "off"})
24342      */
24343     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
24344     /**
24345      * @cfg {String} boxLabel The text that appears beside the checkbox
24346      */
24347     boxLabel : "",
24348     /**
24349      * @cfg {String} inputValue The value that should go into the generated input element's value attribute
24350      */  
24351     inputValue : '1',
24352     /**
24353      * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
24354      */
24355      valueOff: '0', // value when not checked..
24356
24357     actionMode : 'viewEl', 
24358     //
24359     // private
24360     itemCls : 'x-menu-check-item x-form-item',
24361     groupClass : 'x-menu-group-item',
24362     inputType : 'hidden',
24363     
24364     
24365     inSetChecked: false, // check that we are not calling self...
24366     
24367     inputElement: false, // real input element?
24368     basedOn: false, // ????
24369     
24370     isFormField: true, // not sure where this is needed!!!!
24371
24372     onResize : function(){
24373         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
24374         if(!this.boxLabel){
24375             this.el.alignTo(this.wrap, 'c-c');
24376         }
24377     },
24378
24379     initEvents : function(){
24380         Roo.form.Checkbox.superclass.initEvents.call(this);
24381         this.el.on("click", this.onClick,  this);
24382         this.el.on("change", this.onClick,  this);
24383     },
24384
24385
24386     getResizeEl : function(){
24387         return this.wrap;
24388     },
24389
24390     getPositionEl : function(){
24391         return this.wrap;
24392     },
24393
24394     // private
24395     onRender : function(ct, position){
24396         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
24397         /*
24398         if(this.inputValue !== undefined){
24399             this.el.dom.value = this.inputValue;
24400         }
24401         */
24402         //this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
24403         this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
24404         var viewEl = this.wrap.createChild({ 
24405             tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
24406         this.viewEl = viewEl;   
24407         this.wrap.on('click', this.onClick,  this); 
24408         
24409         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
24410         this.el.on('propertychange', this.setFromHidden,  this);  //ie
24411         
24412         
24413         
24414         if(this.boxLabel){
24415             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
24416         //    viewEl.on('click', this.onClick,  this); 
24417         }
24418         //if(this.checked){
24419             this.setChecked(this.checked);
24420         //}else{
24421             //this.checked = this.el.dom;
24422         //}
24423
24424     },
24425
24426     // private
24427     initValue : Roo.emptyFn,
24428
24429     /**
24430      * Returns the checked state of the checkbox.
24431      * @return {Boolean} True if checked, else false
24432      */
24433     getValue : function(){
24434         if(this.el){
24435             return String(this.el.dom.value) == String(this.inputValue ) ? this.inputValue : this.valueOff;
24436         }
24437         return this.valueOff;
24438         
24439     },
24440
24441         // private
24442     onClick : function(){ 
24443         this.setChecked(!this.checked);
24444
24445         //if(this.el.dom.checked != this.checked){
24446         //    this.setValue(this.el.dom.checked);
24447        // }
24448     },
24449
24450     /**
24451      * Sets the checked state of the checkbox.
24452      * On is always based on a string comparison between inputValue and the param.
24453      * @param {Boolean/String} value - the value to set 
24454      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
24455      */
24456     setValue : function(v,suppressEvent){
24457         
24458         
24459         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
24460         //if(this.el && this.el.dom){
24461         //    this.el.dom.checked = this.checked;
24462         //    this.el.dom.defaultChecked = this.checked;
24463         //}
24464         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
24465         //this.fireEvent("check", this, this.checked);
24466     },
24467     // private..
24468     setChecked : function(state,suppressEvent)
24469     {
24470         if (this.inSetChecked) {
24471             this.checked = state;
24472             return;
24473         }
24474         
24475     
24476         if(this.wrap){
24477             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
24478         }
24479         this.checked = state;
24480         if(suppressEvent !== true){
24481             this.fireEvent('check', this, state);
24482         }
24483         this.inSetChecked = true;
24484         this.el.dom.value = state ? this.inputValue : this.valueOff;
24485         this.inSetChecked = false;
24486         
24487     },
24488     // handle setting of hidden value by some other method!!?!?
24489     setFromHidden: function()
24490     {
24491         if(!this.el){
24492             return;
24493         }
24494         //console.log("SET FROM HIDDEN");
24495         //alert('setFrom hidden');
24496         this.setValue(this.el.dom.value);
24497     },
24498     
24499     onDestroy : function()
24500     {
24501         if(this.viewEl){
24502             Roo.get(this.viewEl).remove();
24503         }
24504          
24505         Roo.form.Checkbox.superclass.onDestroy.call(this);
24506     }
24507
24508 });/*
24509  * Based on:
24510  * Ext JS Library 1.1.1
24511  * Copyright(c) 2006-2007, Ext JS, LLC.
24512  *
24513  * Originally Released Under LGPL - original licence link has changed is not relivant.
24514  *
24515  * Fork - LGPL
24516  * <script type="text/javascript">
24517  */
24518  
24519 /**
24520  * @class Roo.form.Radio
24521  * @extends Roo.form.Checkbox
24522  * Single radio field.  Same as Checkbox, but provided as a convenience for automatically setting the input type.
24523  * Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
24524  * @constructor
24525  * Creates a new Radio
24526  * @param {Object} config Configuration options
24527  */
24528 Roo.form.Radio = function(){
24529     Roo.form.Radio.superclass.constructor.apply(this, arguments);
24530 };
24531 Roo.extend(Roo.form.Radio, Roo.form.Checkbox, {
24532     inputType: 'radio',
24533
24534     /**
24535      * If this radio is part of a group, it will return the selected value
24536      * @return {String}
24537      */
24538     getGroupValue : function(){
24539         return this.el.up('form').child('input[name='+this.el.dom.name+']:checked', true).value;
24540     },
24541     
24542     
24543     onRender : function(ct, position){
24544         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
24545         
24546         if(this.inputValue !== undefined){
24547             this.el.dom.value = this.inputValue;
24548         }
24549          
24550         this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
24551         //this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
24552         //var viewEl = this.wrap.createChild({ 
24553         //    tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
24554         //this.viewEl = viewEl;   
24555         //this.wrap.on('click', this.onClick,  this); 
24556         
24557         //this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
24558         //this.el.on('propertychange', this.setFromHidden,  this);  //ie
24559         
24560         
24561         
24562         if(this.boxLabel){
24563             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
24564         //    viewEl.on('click', this.onClick,  this); 
24565         }
24566          if(this.checked){
24567             this.el.dom.checked =   'checked' ;
24568         }
24569          
24570     } 
24571     
24572     
24573 });//<script type="text/javascript">
24574
24575 /*
24576  * Based  Ext JS Library 1.1.1
24577  * Copyright(c) 2006-2007, Ext JS, LLC.
24578  * LGPL
24579  *
24580  */
24581  
24582 /**
24583  * @class Roo.HtmlEditorCore
24584  * @extends Roo.Component
24585  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
24586  *
24587  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
24588  */
24589
24590 Roo.HtmlEditorCore = function(config){
24591     
24592     
24593     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
24594     this.addEvents({
24595         /**
24596          * @event initialize
24597          * Fires when the editor is fully initialized (including the iframe)
24598          * @param {Roo.HtmlEditorCore} this
24599          */
24600         initialize: true,
24601         /**
24602          * @event activate
24603          * Fires when the editor is first receives the focus. Any insertion must wait
24604          * until after this event.
24605          * @param {Roo.HtmlEditorCore} this
24606          */
24607         activate: true,
24608          /**
24609          * @event beforesync
24610          * Fires before the textarea is updated with content from the editor iframe. Return false
24611          * to cancel the sync.
24612          * @param {Roo.HtmlEditorCore} this
24613          * @param {String} html
24614          */
24615         beforesync: true,
24616          /**
24617          * @event beforepush
24618          * Fires before the iframe editor is updated with content from the textarea. Return false
24619          * to cancel the push.
24620          * @param {Roo.HtmlEditorCore} this
24621          * @param {String} html
24622          */
24623         beforepush: true,
24624          /**
24625          * @event sync
24626          * Fires when the textarea is updated with content from the editor iframe.
24627          * @param {Roo.HtmlEditorCore} this
24628          * @param {String} html
24629          */
24630         sync: true,
24631          /**
24632          * @event push
24633          * Fires when the iframe editor is updated with content from the textarea.
24634          * @param {Roo.HtmlEditorCore} this
24635          * @param {String} html
24636          */
24637         push: true,
24638         
24639         /**
24640          * @event editorevent
24641          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
24642          * @param {Roo.HtmlEditorCore} this
24643          */
24644         editorevent: true
24645     });
24646      
24647 };
24648
24649
24650 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
24651
24652
24653      /**
24654      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
24655      */
24656     
24657     owner : false,
24658     
24659      /**
24660      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
24661      *                        Roo.resizable.
24662      */
24663     resizable : false,
24664      /**
24665      * @cfg {Number} height (in pixels)
24666      */   
24667     height: 300,
24668    /**
24669      * @cfg {Number} width (in pixels)
24670      */   
24671     width: 500,
24672     
24673     /**
24674      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
24675      * 
24676      */
24677     stylesheets: false,
24678     
24679     // id of frame..
24680     frameId: false,
24681     
24682     // private properties
24683     validationEvent : false,
24684     deferHeight: true,
24685     initialized : false,
24686     activated : false,
24687     sourceEditMode : false,
24688     onFocus : Roo.emptyFn,
24689     iframePad:3,
24690     hideMode:'offsets',
24691     
24692     clearUp: true,
24693     
24694      
24695     
24696
24697     /**
24698      * Protected method that will not generally be called directly. It
24699      * is called when the editor initializes the iframe with HTML contents. Override this method if you
24700      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
24701      */
24702     getDocMarkup : function(){
24703         // body styles..
24704         var st = '';
24705         Roo.log(this.stylesheets);
24706         
24707         // inherit styels from page...?? 
24708         if (this.stylesheets === false) {
24709             
24710             Roo.get(document.head).select('style').each(function(node) {
24711                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
24712             });
24713             
24714             Roo.get(document.head).select('link').each(function(node) { 
24715                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
24716             });
24717             
24718         } else if (!this.stylesheets.length) {
24719                 // simple..
24720                 st = '<style type="text/css">' +
24721                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
24722                    '</style>';
24723         } else {
24724             Roo.each(this.stylesheets, function(s) {
24725                 st += '<link rel="stylesheet" type="text/css" href="' + s +'" />'
24726             });
24727             
24728         }
24729         
24730         st +=  '<style type="text/css">' +
24731             'IMG { cursor: pointer } ' +
24732         '</style>';
24733
24734         
24735         return '<html><head>' + st  +
24736             //<style type="text/css">' +
24737             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
24738             //'</style>' +
24739             ' </head><body class="roo-htmleditor-body"></body></html>';
24740     },
24741
24742     // private
24743     onRender : function(ct, position)
24744     {
24745         var _t = this;
24746         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
24747         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
24748         
24749         
24750         this.el.dom.style.border = '0 none';
24751         this.el.dom.setAttribute('tabIndex', -1);
24752         this.el.addClass('x-hidden hide');
24753         
24754         
24755         
24756         if(Roo.isIE){ // fix IE 1px bogus margin
24757             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
24758         }
24759        
24760         
24761         this.frameId = Roo.id();
24762         
24763          
24764         
24765         var iframe = this.owner.wrap.createChild({
24766             tag: 'iframe',
24767             cls: 'form-control', // bootstrap..
24768             id: this.frameId,
24769             name: this.frameId,
24770             frameBorder : 'no',
24771             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
24772         }, this.el
24773         );
24774         
24775         
24776         this.iframe = iframe.dom;
24777
24778          this.assignDocWin();
24779         
24780         this.doc.designMode = 'on';
24781        
24782         this.doc.open();
24783         this.doc.write(this.getDocMarkup());
24784         this.doc.close();
24785
24786         
24787         var task = { // must defer to wait for browser to be ready
24788             run : function(){
24789                 //console.log("run task?" + this.doc.readyState);
24790                 this.assignDocWin();
24791                 if(this.doc.body || this.doc.readyState == 'complete'){
24792                     try {
24793                         this.doc.designMode="on";
24794                     } catch (e) {
24795                         return;
24796                     }
24797                     Roo.TaskMgr.stop(task);
24798                     this.initEditor.defer(10, this);
24799                 }
24800             },
24801             interval : 10,
24802             duration: 10000,
24803             scope: this
24804         };
24805         Roo.TaskMgr.start(task);
24806
24807         
24808          
24809     },
24810
24811     // private
24812     onResize : function(w, h)
24813     {
24814          Roo.log('resize: ' +w + ',' + h );
24815         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
24816         if(!this.iframe){
24817             return;
24818         }
24819         if(typeof w == 'number'){
24820             
24821             this.iframe.style.width = w + 'px';
24822         }
24823         if(typeof h == 'number'){
24824             
24825             this.iframe.style.height = h + 'px';
24826             if(this.doc){
24827                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
24828             }
24829         }
24830         
24831     },
24832
24833     /**
24834      * Toggles the editor between standard and source edit mode.
24835      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
24836      */
24837     toggleSourceEdit : function(sourceEditMode){
24838         
24839         this.sourceEditMode = sourceEditMode === true;
24840         
24841         if(this.sourceEditMode){
24842  
24843             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
24844             
24845         }else{
24846             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
24847             //this.iframe.className = '';
24848             this.deferFocus();
24849         }
24850         //this.setSize(this.owner.wrap.getSize());
24851         //this.fireEvent('editmodechange', this, this.sourceEditMode);
24852     },
24853
24854     
24855   
24856
24857     /**
24858      * Protected method that will not generally be called directly. If you need/want
24859      * custom HTML cleanup, this is the method you should override.
24860      * @param {String} html The HTML to be cleaned
24861      * return {String} The cleaned HTML
24862      */
24863     cleanHtml : function(html){
24864         html = String(html);
24865         if(html.length > 5){
24866             if(Roo.isSafari){ // strip safari nonsense
24867                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
24868             }
24869         }
24870         if(html == '&nbsp;'){
24871             html = '';
24872         }
24873         return html;
24874     },
24875
24876     /**
24877      * HTML Editor -> Textarea
24878      * Protected method that will not generally be called directly. Syncs the contents
24879      * of the editor iframe with the textarea.
24880      */
24881     syncValue : function(){
24882         if(this.initialized){
24883             var bd = (this.doc.body || this.doc.documentElement);
24884             //this.cleanUpPaste(); -- this is done else where and causes havoc..
24885             var html = bd.innerHTML;
24886             if(Roo.isSafari){
24887                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
24888                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
24889                 if(m && m[1]){
24890                     html = '<div style="'+m[0]+'">' + html + '</div>';
24891                 }
24892             }
24893             html = this.cleanHtml(html);
24894             // fix up the special chars.. normaly like back quotes in word...
24895             // however we do not want to do this with chinese..
24896             html = html.replace(/([\x80-\uffff])/g, function (a, b) {
24897                 var cc = b.charCodeAt();
24898                 if (
24899                     (cc >= 0x4E00 && cc < 0xA000 ) ||
24900                     (cc >= 0x3400 && cc < 0x4E00 ) ||
24901                     (cc >= 0xf900 && cc < 0xfb00 )
24902                 ) {
24903                         return b;
24904                 }
24905                 return "&#"+cc+";" 
24906             });
24907             if(this.owner.fireEvent('beforesync', this, html) !== false){
24908                 this.el.dom.value = html;
24909                 this.owner.fireEvent('sync', this, html);
24910             }
24911         }
24912     },
24913
24914     /**
24915      * Protected method that will not generally be called directly. Pushes the value of the textarea
24916      * into the iframe editor.
24917      */
24918     pushValue : function(){
24919         if(this.initialized){
24920             var v = this.el.dom.value.trim();
24921             
24922 //            if(v.length < 1){
24923 //                v = '&#160;';
24924 //            }
24925             
24926             if(this.owner.fireEvent('beforepush', this, v) !== false){
24927                 var d = (this.doc.body || this.doc.documentElement);
24928                 d.innerHTML = v;
24929                 this.cleanUpPaste();
24930                 this.el.dom.value = d.innerHTML;
24931                 this.owner.fireEvent('push', this, v);
24932             }
24933         }
24934     },
24935
24936     // private
24937     deferFocus : function(){
24938         this.focus.defer(10, this);
24939     },
24940
24941     // doc'ed in Field
24942     focus : function(){
24943         if(this.win && !this.sourceEditMode){
24944             this.win.focus();
24945         }else{
24946             this.el.focus();
24947         }
24948     },
24949     
24950     assignDocWin: function()
24951     {
24952         var iframe = this.iframe;
24953         
24954          if(Roo.isIE){
24955             this.doc = iframe.contentWindow.document;
24956             this.win = iframe.contentWindow;
24957         } else {
24958             if (!Roo.get(this.frameId)) {
24959                 return;
24960             }
24961             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
24962             this.win = Roo.get(this.frameId).dom.contentWindow;
24963         }
24964     },
24965     
24966     // private
24967     initEditor : function(){
24968         //console.log("INIT EDITOR");
24969         this.assignDocWin();
24970         
24971         
24972         
24973         this.doc.designMode="on";
24974         this.doc.open();
24975         this.doc.write(this.getDocMarkup());
24976         this.doc.close();
24977         
24978         var dbody = (this.doc.body || this.doc.documentElement);
24979         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
24980         // this copies styles from the containing element into thsi one..
24981         // not sure why we need all of this..
24982         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
24983         
24984         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
24985         //ss['background-attachment'] = 'fixed'; // w3c
24986         dbody.bgProperties = 'fixed'; // ie
24987         //Roo.DomHelper.applyStyles(dbody, ss);
24988         Roo.EventManager.on(this.doc, {
24989             //'mousedown': this.onEditorEvent,
24990             'mouseup': this.onEditorEvent,
24991             'dblclick': this.onEditorEvent,
24992             'click': this.onEditorEvent,
24993             'keyup': this.onEditorEvent,
24994             buffer:100,
24995             scope: this
24996         });
24997         if(Roo.isGecko){
24998             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
24999         }
25000         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
25001             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
25002         }
25003         this.initialized = true;
25004
25005         this.owner.fireEvent('initialize', this);
25006         this.pushValue();
25007     },
25008
25009     // private
25010     onDestroy : function(){
25011         
25012         
25013         
25014         if(this.rendered){
25015             
25016             //for (var i =0; i < this.toolbars.length;i++) {
25017             //    // fixme - ask toolbars for heights?
25018             //    this.toolbars[i].onDestroy();
25019            // }
25020             
25021             //this.wrap.dom.innerHTML = '';
25022             //this.wrap.remove();
25023         }
25024     },
25025
25026     // private
25027     onFirstFocus : function(){
25028         
25029         this.assignDocWin();
25030         
25031         
25032         this.activated = true;
25033          
25034     
25035         if(Roo.isGecko){ // prevent silly gecko errors
25036             this.win.focus();
25037             var s = this.win.getSelection();
25038             if(!s.focusNode || s.focusNode.nodeType != 3){
25039                 var r = s.getRangeAt(0);
25040                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
25041                 r.collapse(true);
25042                 this.deferFocus();
25043             }
25044             try{
25045                 this.execCmd('useCSS', true);
25046                 this.execCmd('styleWithCSS', false);
25047             }catch(e){}
25048         }
25049         this.owner.fireEvent('activate', this);
25050     },
25051
25052     // private
25053     adjustFont: function(btn){
25054         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
25055         //if(Roo.isSafari){ // safari
25056         //    adjust *= 2;
25057        // }
25058         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
25059         if(Roo.isSafari){ // safari
25060             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
25061             v =  (v < 10) ? 10 : v;
25062             v =  (v > 48) ? 48 : v;
25063             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
25064             
25065         }
25066         
25067         
25068         v = Math.max(1, v+adjust);
25069         
25070         this.execCmd('FontSize', v  );
25071     },
25072
25073     onEditorEvent : function(e){
25074         this.owner.fireEvent('editorevent', this, e);
25075       //  this.updateToolbar();
25076         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
25077     },
25078
25079     insertTag : function(tg)
25080     {
25081         // could be a bit smarter... -> wrap the current selected tRoo..
25082         if (tg.toLowerCase() == 'span' || tg.toLowerCase() == 'code') {
25083             
25084             range = this.createRange(this.getSelection());
25085             var wrappingNode = this.doc.createElement(tg.toLowerCase());
25086             wrappingNode.appendChild(range.extractContents());
25087             range.insertNode(wrappingNode);
25088
25089             return;
25090             
25091             
25092             
25093         }
25094         this.execCmd("formatblock",   tg);
25095         
25096     },
25097     
25098     insertText : function(txt)
25099     {
25100         
25101         
25102         var range = this.createRange();
25103         range.deleteContents();
25104                //alert(Sender.getAttribute('label'));
25105                
25106         range.insertNode(this.doc.createTextNode(txt));
25107     } ,
25108     
25109      
25110
25111     /**
25112      * Executes a Midas editor command on the editor document and performs necessary focus and
25113      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
25114      * @param {String} cmd The Midas command
25115      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
25116      */
25117     relayCmd : function(cmd, value){
25118         this.win.focus();
25119         this.execCmd(cmd, value);
25120         this.owner.fireEvent('editorevent', this);
25121         //this.updateToolbar();
25122         this.owner.deferFocus();
25123     },
25124
25125     /**
25126      * Executes a Midas editor command directly on the editor document.
25127      * For visual commands, you should use {@link #relayCmd} instead.
25128      * <b>This should only be called after the editor is initialized.</b>
25129      * @param {String} cmd The Midas command
25130      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
25131      */
25132     execCmd : function(cmd, value){
25133         this.doc.execCommand(cmd, false, value === undefined ? null : value);
25134         this.syncValue();
25135     },
25136  
25137  
25138    
25139     /**
25140      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
25141      * to insert tRoo.
25142      * @param {String} text | dom node.. 
25143      */
25144     insertAtCursor : function(text)
25145     {
25146         
25147         
25148         
25149         if(!this.activated){
25150             return;
25151         }
25152         /*
25153         if(Roo.isIE){
25154             this.win.focus();
25155             var r = this.doc.selection.createRange();
25156             if(r){
25157                 r.collapse(true);
25158                 r.pasteHTML(text);
25159                 this.syncValue();
25160                 this.deferFocus();
25161             
25162             }
25163             return;
25164         }
25165         */
25166         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
25167             this.win.focus();
25168             
25169             
25170             // from jquery ui (MIT licenced)
25171             var range, node;
25172             var win = this.win;
25173             
25174             if (win.getSelection && win.getSelection().getRangeAt) {
25175                 range = win.getSelection().getRangeAt(0);
25176                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
25177                 range.insertNode(node);
25178             } else if (win.document.selection && win.document.selection.createRange) {
25179                 // no firefox support
25180                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
25181                 win.document.selection.createRange().pasteHTML(txt);
25182             } else {
25183                 // no firefox support
25184                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
25185                 this.execCmd('InsertHTML', txt);
25186             } 
25187             
25188             this.syncValue();
25189             
25190             this.deferFocus();
25191         }
25192     },
25193  // private
25194     mozKeyPress : function(e){
25195         if(e.ctrlKey){
25196             var c = e.getCharCode(), cmd;
25197           
25198             if(c > 0){
25199                 c = String.fromCharCode(c).toLowerCase();
25200                 switch(c){
25201                     case 'b':
25202                         cmd = 'bold';
25203                         break;
25204                     case 'i':
25205                         cmd = 'italic';
25206                         break;
25207                     
25208                     case 'u':
25209                         cmd = 'underline';
25210                         break;
25211                     
25212                     case 'v':
25213                         this.cleanUpPaste.defer(100, this);
25214                         return;
25215                         
25216                 }
25217                 if(cmd){
25218                     this.win.focus();
25219                     this.execCmd(cmd);
25220                     this.deferFocus();
25221                     e.preventDefault();
25222                 }
25223                 
25224             }
25225         }
25226     },
25227
25228     // private
25229     fixKeys : function(){ // load time branching for fastest keydown performance
25230         if(Roo.isIE){
25231             return function(e){
25232                 var k = e.getKey(), r;
25233                 if(k == e.TAB){
25234                     e.stopEvent();
25235                     r = this.doc.selection.createRange();
25236                     if(r){
25237                         r.collapse(true);
25238                         r.pasteHTML('&#160;&#160;&#160;&#160;');
25239                         this.deferFocus();
25240                     }
25241                     return;
25242                 }
25243                 
25244                 if(k == e.ENTER){
25245                     r = this.doc.selection.createRange();
25246                     if(r){
25247                         var target = r.parentElement();
25248                         if(!target || target.tagName.toLowerCase() != 'li'){
25249                             e.stopEvent();
25250                             r.pasteHTML('<br />');
25251                             r.collapse(false);
25252                             r.select();
25253                         }
25254                     }
25255                 }
25256                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
25257                     this.cleanUpPaste.defer(100, this);
25258                     return;
25259                 }
25260                 
25261                 
25262             };
25263         }else if(Roo.isOpera){
25264             return function(e){
25265                 var k = e.getKey();
25266                 if(k == e.TAB){
25267                     e.stopEvent();
25268                     this.win.focus();
25269                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
25270                     this.deferFocus();
25271                 }
25272                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
25273                     this.cleanUpPaste.defer(100, this);
25274                     return;
25275                 }
25276                 
25277             };
25278         }else if(Roo.isSafari){
25279             return function(e){
25280                 var k = e.getKey();
25281                 
25282                 if(k == e.TAB){
25283                     e.stopEvent();
25284                     this.execCmd('InsertText','\t');
25285                     this.deferFocus();
25286                     return;
25287                 }
25288                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
25289                     this.cleanUpPaste.defer(100, this);
25290                     return;
25291                 }
25292                 
25293              };
25294         }
25295     }(),
25296     
25297     getAllAncestors: function()
25298     {
25299         var p = this.getSelectedNode();
25300         var a = [];
25301         if (!p) {
25302             a.push(p); // push blank onto stack..
25303             p = this.getParentElement();
25304         }
25305         
25306         
25307         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
25308             a.push(p);
25309             p = p.parentNode;
25310         }
25311         a.push(this.doc.body);
25312         return a;
25313     },
25314     lastSel : false,
25315     lastSelNode : false,
25316     
25317     
25318     getSelection : function() 
25319     {
25320         this.assignDocWin();
25321         return Roo.isIE ? this.doc.selection : this.win.getSelection();
25322     },
25323     
25324     getSelectedNode: function() 
25325     {
25326         // this may only work on Gecko!!!
25327         
25328         // should we cache this!!!!
25329         
25330         
25331         
25332          
25333         var range = this.createRange(this.getSelection()).cloneRange();
25334         
25335         if (Roo.isIE) {
25336             var parent = range.parentElement();
25337             while (true) {
25338                 var testRange = range.duplicate();
25339                 testRange.moveToElementText(parent);
25340                 if (testRange.inRange(range)) {
25341                     break;
25342                 }
25343                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
25344                     break;
25345                 }
25346                 parent = parent.parentElement;
25347             }
25348             return parent;
25349         }
25350         
25351         // is ancestor a text element.
25352         var ac =  range.commonAncestorContainer;
25353         if (ac.nodeType == 3) {
25354             ac = ac.parentNode;
25355         }
25356         
25357         var ar = ac.childNodes;
25358          
25359         var nodes = [];
25360         var other_nodes = [];
25361         var has_other_nodes = false;
25362         for (var i=0;i<ar.length;i++) {
25363             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
25364                 continue;
25365             }
25366             // fullly contained node.
25367             
25368             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
25369                 nodes.push(ar[i]);
25370                 continue;
25371             }
25372             
25373             // probably selected..
25374             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
25375                 other_nodes.push(ar[i]);
25376                 continue;
25377             }
25378             // outer..
25379             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
25380                 continue;
25381             }
25382             
25383             
25384             has_other_nodes = true;
25385         }
25386         if (!nodes.length && other_nodes.length) {
25387             nodes= other_nodes;
25388         }
25389         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
25390             return false;
25391         }
25392         
25393         return nodes[0];
25394     },
25395     createRange: function(sel)
25396     {
25397         // this has strange effects when using with 
25398         // top toolbar - not sure if it's a great idea.
25399         //this.editor.contentWindow.focus();
25400         if (typeof sel != "undefined") {
25401             try {
25402                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
25403             } catch(e) {
25404                 return this.doc.createRange();
25405             }
25406         } else {
25407             return this.doc.createRange();
25408         }
25409     },
25410     getParentElement: function()
25411     {
25412         
25413         this.assignDocWin();
25414         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
25415         
25416         var range = this.createRange(sel);
25417          
25418         try {
25419             var p = range.commonAncestorContainer;
25420             while (p.nodeType == 3) { // text node
25421                 p = p.parentNode;
25422             }
25423             return p;
25424         } catch (e) {
25425             return null;
25426         }
25427     
25428     },
25429     /***
25430      *
25431      * Range intersection.. the hard stuff...
25432      *  '-1' = before
25433      *  '0' = hits..
25434      *  '1' = after.
25435      *         [ -- selected range --- ]
25436      *   [fail]                        [fail]
25437      *
25438      *    basically..
25439      *      if end is before start or  hits it. fail.
25440      *      if start is after end or hits it fail.
25441      *
25442      *   if either hits (but other is outside. - then it's not 
25443      *   
25444      *    
25445      **/
25446     
25447     
25448     // @see http://www.thismuchiknow.co.uk/?p=64.
25449     rangeIntersectsNode : function(range, node)
25450     {
25451         var nodeRange = node.ownerDocument.createRange();
25452         try {
25453             nodeRange.selectNode(node);
25454         } catch (e) {
25455             nodeRange.selectNodeContents(node);
25456         }
25457     
25458         var rangeStartRange = range.cloneRange();
25459         rangeStartRange.collapse(true);
25460     
25461         var rangeEndRange = range.cloneRange();
25462         rangeEndRange.collapse(false);
25463     
25464         var nodeStartRange = nodeRange.cloneRange();
25465         nodeStartRange.collapse(true);
25466     
25467         var nodeEndRange = nodeRange.cloneRange();
25468         nodeEndRange.collapse(false);
25469     
25470         return rangeStartRange.compareBoundaryPoints(
25471                  Range.START_TO_START, nodeEndRange) == -1 &&
25472                rangeEndRange.compareBoundaryPoints(
25473                  Range.START_TO_START, nodeStartRange) == 1;
25474         
25475          
25476     },
25477     rangeCompareNode : function(range, node)
25478     {
25479         var nodeRange = node.ownerDocument.createRange();
25480         try {
25481             nodeRange.selectNode(node);
25482         } catch (e) {
25483             nodeRange.selectNodeContents(node);
25484         }
25485         
25486         
25487         range.collapse(true);
25488     
25489         nodeRange.collapse(true);
25490      
25491         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
25492         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
25493          
25494         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
25495         
25496         var nodeIsBefore   =  ss == 1;
25497         var nodeIsAfter    = ee == -1;
25498         
25499         if (nodeIsBefore && nodeIsAfter)
25500             return 0; // outer
25501         if (!nodeIsBefore && nodeIsAfter)
25502             return 1; //right trailed.
25503         
25504         if (nodeIsBefore && !nodeIsAfter)
25505             return 2;  // left trailed.
25506         // fully contined.
25507         return 3;
25508     },
25509
25510     // private? - in a new class?
25511     cleanUpPaste :  function()
25512     {
25513         // cleans up the whole document..
25514         Roo.log('cleanuppaste');
25515         
25516         this.cleanUpChildren(this.doc.body);
25517         var clean = this.cleanWordChars(this.doc.body.innerHTML);
25518         if (clean != this.doc.body.innerHTML) {
25519             this.doc.body.innerHTML = clean;
25520         }
25521         
25522     },
25523     
25524     cleanWordChars : function(input) {// change the chars to hex code
25525         var he = Roo.HtmlEditorCore;
25526         
25527         var output = input;
25528         Roo.each(he.swapCodes, function(sw) { 
25529             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
25530             
25531             output = output.replace(swapper, sw[1]);
25532         });
25533         
25534         return output;
25535     },
25536     
25537     
25538     cleanUpChildren : function (n)
25539     {
25540         if (!n.childNodes.length) {
25541             return;
25542         }
25543         for (var i = n.childNodes.length-1; i > -1 ; i--) {
25544            this.cleanUpChild(n.childNodes[i]);
25545         }
25546     },
25547     
25548     
25549         
25550     
25551     cleanUpChild : function (node)
25552     {
25553         var ed = this;
25554         //console.log(node);
25555         if (node.nodeName == "#text") {
25556             // clean up silly Windows -- stuff?
25557             return; 
25558         }
25559         if (node.nodeName == "#comment") {
25560             node.parentNode.removeChild(node);
25561             // clean up silly Windows -- stuff?
25562             return; 
25563         }
25564         
25565         if (Roo.HtmlEditorCore.black.indexOf(node.tagName.toLowerCase()) > -1 && this.clearUp) {
25566             // remove node.
25567             node.parentNode.removeChild(node);
25568             return;
25569             
25570         }
25571         
25572         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
25573         
25574         // remove <a name=....> as rendering on yahoo mailer is borked with this.
25575         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
25576         
25577         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
25578         //    remove_keep_children = true;
25579         //}
25580         
25581         if (remove_keep_children) {
25582             this.cleanUpChildren(node);
25583             // inserts everything just before this node...
25584             while (node.childNodes.length) {
25585                 var cn = node.childNodes[0];
25586                 node.removeChild(cn);
25587                 node.parentNode.insertBefore(cn, node);
25588             }
25589             node.parentNode.removeChild(node);
25590             return;
25591         }
25592         
25593         if (!node.attributes || !node.attributes.length) {
25594             this.cleanUpChildren(node);
25595             return;
25596         }
25597         
25598         function cleanAttr(n,v)
25599         {
25600             
25601             if (v.match(/^\./) || v.match(/^\//)) {
25602                 return;
25603             }
25604             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/)) {
25605                 return;
25606             }
25607             if (v.match(/^#/)) {
25608                 return;
25609             }
25610 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
25611             node.removeAttribute(n);
25612             
25613         }
25614         
25615         function cleanStyle(n,v)
25616         {
25617             if (v.match(/expression/)) { //XSS?? should we even bother..
25618                 node.removeAttribute(n);
25619                 return;
25620             }
25621             var cwhite = typeof(ed.cwhite) == 'undefined' ? Roo.HtmlEditorCore.cwhite : ed.cwhite;
25622             var cblack = typeof(ed.cblack) == 'undefined' ? Roo.HtmlEditorCore.cblack : ed.cblack;
25623             
25624             
25625             var parts = v.split(/;/);
25626             var clean = [];
25627             
25628             Roo.each(parts, function(p) {
25629                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
25630                 if (!p.length) {
25631                     return true;
25632                 }
25633                 var l = p.split(':').shift().replace(/\s+/g,'');
25634                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
25635                 
25636                 if ( cblack.indexOf(l) > -1) {
25637 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
25638                     //node.removeAttribute(n);
25639                     return true;
25640                 }
25641                 //Roo.log()
25642                 // only allow 'c whitelisted system attributes'
25643                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
25644 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
25645                     //node.removeAttribute(n);
25646                     return true;
25647                 }
25648                 
25649                 
25650                  
25651                 
25652                 clean.push(p);
25653                 return true;
25654             });
25655             if (clean.length) { 
25656                 node.setAttribute(n, clean.join(';'));
25657             } else {
25658                 node.removeAttribute(n);
25659             }
25660             
25661         }
25662         
25663         
25664         for (var i = node.attributes.length-1; i > -1 ; i--) {
25665             var a = node.attributes[i];
25666             //console.log(a);
25667             
25668             if (a.name.toLowerCase().substr(0,2)=='on')  {
25669                 node.removeAttribute(a.name);
25670                 continue;
25671             }
25672             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
25673                 node.removeAttribute(a.name);
25674                 continue;
25675             }
25676             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
25677                 cleanAttr(a.name,a.value); // fixme..
25678                 continue;
25679             }
25680             if (a.name == 'style') {
25681                 cleanStyle(a.name,a.value);
25682                 continue;
25683             }
25684             /// clean up MS crap..
25685             // tecnically this should be a list of valid class'es..
25686             
25687             
25688             if (a.name == 'class') {
25689                 if (a.value.match(/^Mso/)) {
25690                     node.className = '';
25691                 }
25692                 
25693                 if (a.value.match(/body/)) {
25694                     node.className = '';
25695                 }
25696                 continue;
25697             }
25698             
25699             // style cleanup!?
25700             // class cleanup?
25701             
25702         }
25703         
25704         
25705         this.cleanUpChildren(node);
25706         
25707         
25708     },
25709     /**
25710      * Clean up MS wordisms...
25711      */
25712     cleanWord : function(node)
25713     {
25714         var _t = this;
25715         var cleanWordChildren = function()
25716         {
25717             if (!node.childNodes.length) {
25718                 return;
25719             }
25720             for (var i = node.childNodes.length-1; i > -1 ; i--) {
25721                _t.cleanWord(node.childNodes[i]);
25722             }
25723         }
25724         
25725         
25726         if (!node) {
25727             this.cleanWord(this.doc.body);
25728             return;
25729         }
25730         if (node.nodeName == "#text") {
25731             // clean up silly Windows -- stuff?
25732             return; 
25733         }
25734         if (node.nodeName == "#comment") {
25735             node.parentNode.removeChild(node);
25736             // clean up silly Windows -- stuff?
25737             return; 
25738         }
25739         
25740         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
25741             node.parentNode.removeChild(node);
25742             return;
25743         }
25744         
25745         // remove - but keep children..
25746         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|font)/)) {
25747             while (node.childNodes.length) {
25748                 var cn = node.childNodes[0];
25749                 node.removeChild(cn);
25750                 node.parentNode.insertBefore(cn, node);
25751             }
25752             node.parentNode.removeChild(node);
25753             cleanWordChildren();
25754             return;
25755         }
25756         // clean styles
25757         if (node.className.length) {
25758             
25759             var cn = node.className.split(/\W+/);
25760             var cna = [];
25761             Roo.each(cn, function(cls) {
25762                 if (cls.match(/Mso[a-zA-Z]+/)) {
25763                     return;
25764                 }
25765                 cna.push(cls);
25766             });
25767             node.className = cna.length ? cna.join(' ') : '';
25768             if (!cna.length) {
25769                 node.removeAttribute("class");
25770             }
25771         }
25772         
25773         if (node.hasAttribute("lang")) {
25774             node.removeAttribute("lang");
25775         }
25776         
25777         if (node.hasAttribute("style")) {
25778             
25779             var styles = node.getAttribute("style").split(";");
25780             var nstyle = [];
25781             Roo.each(styles, function(s) {
25782                 if (!s.match(/:/)) {
25783                     return;
25784                 }
25785                 var kv = s.split(":");
25786                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
25787                     return;
25788                 }
25789                 // what ever is left... we allow.
25790                 nstyle.push(s);
25791             });
25792             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
25793             if (!nstyle.length) {
25794                 node.removeAttribute('style');
25795             }
25796         }
25797         
25798         cleanWordChildren();
25799         
25800         
25801     },
25802     domToHTML : function(currentElement, depth, nopadtext) {
25803         
25804             depth = depth || 0;
25805             nopadtext = nopadtext || false;
25806         
25807             if (!currentElement) {
25808                 return this.domToHTML(this.doc.body);
25809             }
25810             
25811             //Roo.log(currentElement);
25812             var j;
25813             var allText = false;
25814             var nodeName = currentElement.nodeName;
25815             var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
25816             
25817             if  (nodeName == '#text') {
25818                 return currentElement.nodeValue;
25819             }
25820             
25821             
25822             var ret = '';
25823             if (nodeName != 'BODY') {
25824                  
25825                 var i = 0;
25826                 // Prints the node tagName, such as <A>, <IMG>, etc
25827                 if (tagName) {
25828                     var attr = [];
25829                     for(i = 0; i < currentElement.attributes.length;i++) {
25830                         // quoting?
25831                         var aname = currentElement.attributes.item(i).name;
25832                         if (!currentElement.attributes.item(i).value.length) {
25833                             continue;
25834                         }
25835                         attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
25836                     }
25837                     
25838                     ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
25839                 } 
25840                 else {
25841                     
25842                     // eack
25843                 }
25844             } else {
25845                 tagName = false;
25846             }
25847             if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
25848                 return ret;
25849             }
25850             if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
25851                 nopadtext = true;
25852             }
25853             
25854             
25855             // Traverse the tree
25856             i = 0;
25857             var currentElementChild = currentElement.childNodes.item(i);
25858             var allText = true;
25859             var innerHTML  = '';
25860             lastnode = '';
25861             while (currentElementChild) {
25862                 // Formatting code (indent the tree so it looks nice on the screen)
25863                 var nopad = nopadtext;
25864                 if (lastnode == 'SPAN') {
25865                     nopad  = true;
25866                 }
25867                 // text
25868                 if  (currentElementChild.nodeName == '#text') {
25869                     var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
25870                     if (!nopad && toadd.length > 80) {
25871                         innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
25872                     }
25873                     innerHTML  += toadd;
25874                     
25875                     i++;
25876                     currentElementChild = currentElement.childNodes.item(i);
25877                     lastNode = '';
25878                     continue;
25879                 }
25880                 allText = false;
25881                 
25882                 innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
25883                     
25884                 // Recursively traverse the tree structure of the child node
25885                 innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
25886                 lastnode = currentElementChild.nodeName;
25887                 i++;
25888                 currentElementChild=currentElement.childNodes.item(i);
25889             }
25890             
25891             ret += innerHTML;
25892             
25893             if (!allText) {
25894                     // The remaining code is mostly for formatting the tree
25895                 ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
25896             }
25897             
25898             
25899             if (tagName) {
25900                 ret+= "</"+tagName+">";
25901             }
25902             return ret;
25903             
25904         }
25905     
25906     // hide stuff that is not compatible
25907     /**
25908      * @event blur
25909      * @hide
25910      */
25911     /**
25912      * @event change
25913      * @hide
25914      */
25915     /**
25916      * @event focus
25917      * @hide
25918      */
25919     /**
25920      * @event specialkey
25921      * @hide
25922      */
25923     /**
25924      * @cfg {String} fieldClass @hide
25925      */
25926     /**
25927      * @cfg {String} focusClass @hide
25928      */
25929     /**
25930      * @cfg {String} autoCreate @hide
25931      */
25932     /**
25933      * @cfg {String} inputType @hide
25934      */
25935     /**
25936      * @cfg {String} invalidClass @hide
25937      */
25938     /**
25939      * @cfg {String} invalidText @hide
25940      */
25941     /**
25942      * @cfg {String} msgFx @hide
25943      */
25944     /**
25945      * @cfg {String} validateOnBlur @hide
25946      */
25947 });
25948
25949 Roo.HtmlEditorCore.white = [
25950         'area', 'br', 'img', 'input', 'hr', 'wbr',
25951         
25952        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
25953        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
25954        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
25955        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
25956        'table',   'ul',         'xmp', 
25957        
25958        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
25959       'thead',   'tr', 
25960      
25961       'dir', 'menu', 'ol', 'ul', 'dl',
25962        
25963       'embed',  'object'
25964 ];
25965
25966
25967 Roo.HtmlEditorCore.black = [
25968     //    'embed',  'object', // enable - backend responsiblity to clean thiese
25969         'applet', // 
25970         'base',   'basefont', 'bgsound', 'blink',  'body', 
25971         'frame',  'frameset', 'head',    'html',   'ilayer', 
25972         'iframe', 'layer',  'link',     'meta',    'object',   
25973         'script', 'style' ,'title',  'xml' // clean later..
25974 ];
25975 Roo.HtmlEditorCore.clean = [
25976     'script', 'style', 'title', 'xml'
25977 ];
25978 Roo.HtmlEditorCore.remove = [
25979     'font'
25980 ];
25981 // attributes..
25982
25983 Roo.HtmlEditorCore.ablack = [
25984     'on'
25985 ];
25986     
25987 Roo.HtmlEditorCore.aclean = [ 
25988     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
25989 ];
25990
25991 // protocols..
25992 Roo.HtmlEditorCore.pwhite= [
25993         'http',  'https',  'mailto'
25994 ];
25995
25996 // white listed style attributes.
25997 Roo.HtmlEditorCore.cwhite= [
25998       //  'text-align', /// default is to allow most things..
25999       
26000          
26001 //        'font-size'//??
26002 ];
26003
26004 // black listed style attributes.
26005 Roo.HtmlEditorCore.cblack= [
26006       //  'font-size' -- this can be set by the project 
26007 ];
26008
26009
26010 Roo.HtmlEditorCore.swapCodes   =[ 
26011     [    8211, "--" ], 
26012     [    8212, "--" ], 
26013     [    8216,  "'" ],  
26014     [    8217, "'" ],  
26015     [    8220, '"' ],  
26016     [    8221, '"' ],  
26017     [    8226, "*" ],  
26018     [    8230, "..." ]
26019 ]; 
26020
26021     //<script type="text/javascript">
26022
26023 /*
26024  * Ext JS Library 1.1.1
26025  * Copyright(c) 2006-2007, Ext JS, LLC.
26026  * Licence LGPL
26027  * 
26028  */
26029  
26030  
26031 Roo.form.HtmlEditor = function(config){
26032     
26033     
26034     
26035     Roo.form.HtmlEditor.superclass.constructor.call(this, config);
26036     
26037     if (!this.toolbars) {
26038         this.toolbars = [];
26039     }
26040     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
26041     
26042     
26043 };
26044
26045 /**
26046  * @class Roo.form.HtmlEditor
26047  * @extends Roo.form.Field
26048  * Provides a lightweight HTML Editor component.
26049  *
26050  * This has been tested on Fireforx / Chrome.. IE may not be so great..
26051  * 
26052  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
26053  * supported by this editor.</b><br/><br/>
26054  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
26055  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
26056  */
26057 Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
26058     /**
26059      * @cfg {Boolean} clearUp
26060      */
26061     clearUp : true,
26062       /**
26063      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
26064      */
26065     toolbars : false,
26066    
26067      /**
26068      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
26069      *                        Roo.resizable.
26070      */
26071     resizable : false,
26072      /**
26073      * @cfg {Number} height (in pixels)
26074      */   
26075     height: 300,
26076    /**
26077      * @cfg {Number} width (in pixels)
26078      */   
26079     width: 500,
26080     
26081     /**
26082      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
26083      * 
26084      */
26085     stylesheets: false,
26086     
26087     // id of frame..
26088     frameId: false,
26089     
26090     // private properties
26091     validationEvent : false,
26092     deferHeight: true,
26093     initialized : false,
26094     activated : false,
26095     
26096     onFocus : Roo.emptyFn,
26097     iframePad:3,
26098     hideMode:'offsets',
26099     
26100     defaultAutoCreate : { // modified by initCompnoent..
26101         tag: "textarea",
26102         style:"width:500px;height:300px;",
26103         autocomplete: "off"
26104     },
26105
26106     // private
26107     initComponent : function(){
26108         this.addEvents({
26109             /**
26110              * @event initialize
26111              * Fires when the editor is fully initialized (including the iframe)
26112              * @param {HtmlEditor} this
26113              */
26114             initialize: true,
26115             /**
26116              * @event activate
26117              * Fires when the editor is first receives the focus. Any insertion must wait
26118              * until after this event.
26119              * @param {HtmlEditor} this
26120              */
26121             activate: true,
26122              /**
26123              * @event beforesync
26124              * Fires before the textarea is updated with content from the editor iframe. Return false
26125              * to cancel the sync.
26126              * @param {HtmlEditor} this
26127              * @param {String} html
26128              */
26129             beforesync: true,
26130              /**
26131              * @event beforepush
26132              * Fires before the iframe editor is updated with content from the textarea. Return false
26133              * to cancel the push.
26134              * @param {HtmlEditor} this
26135              * @param {String} html
26136              */
26137             beforepush: true,
26138              /**
26139              * @event sync
26140              * Fires when the textarea is updated with content from the editor iframe.
26141              * @param {HtmlEditor} this
26142              * @param {String} html
26143              */
26144             sync: true,
26145              /**
26146              * @event push
26147              * Fires when the iframe editor is updated with content from the textarea.
26148              * @param {HtmlEditor} this
26149              * @param {String} html
26150              */
26151             push: true,
26152              /**
26153              * @event editmodechange
26154              * Fires when the editor switches edit modes
26155              * @param {HtmlEditor} this
26156              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
26157              */
26158             editmodechange: true,
26159             /**
26160              * @event editorevent
26161              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
26162              * @param {HtmlEditor} this
26163              */
26164             editorevent: true,
26165             /**
26166              * @event firstfocus
26167              * Fires when on first focus - needed by toolbars..
26168              * @param {HtmlEditor} this
26169              */
26170             firstfocus: true,
26171             /**
26172              * @event autosave
26173              * Auto save the htmlEditor value as a file into Events
26174              * @param {HtmlEditor} this
26175              */
26176             autosave: true,
26177             /**
26178              * @event savedpreview
26179              * preview the saved version of htmlEditor
26180              * @param {HtmlEditor} this
26181              */
26182             savedpreview: true
26183         });
26184         this.defaultAutoCreate =  {
26185             tag: "textarea",
26186             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
26187             autocomplete: "off"
26188         };
26189     },
26190
26191     /**
26192      * Protected method that will not generally be called directly. It
26193      * is called when the editor creates its toolbar. Override this method if you need to
26194      * add custom toolbar buttons.
26195      * @param {HtmlEditor} editor
26196      */
26197     createToolbar : function(editor){
26198         Roo.log("create toolbars");
26199         if (!editor.toolbars || !editor.toolbars.length) {
26200             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
26201         }
26202         
26203         for (var i =0 ; i < editor.toolbars.length;i++) {
26204             editor.toolbars[i] = Roo.factory(
26205                     typeof(editor.toolbars[i]) == 'string' ?
26206                         { xtype: editor.toolbars[i]} : editor.toolbars[i],
26207                 Roo.form.HtmlEditor);
26208             editor.toolbars[i].init(editor);
26209         }
26210          
26211         
26212     },
26213
26214      
26215     // private
26216     onRender : function(ct, position)
26217     {
26218         var _t = this;
26219         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
26220         
26221         this.wrap = this.el.wrap({
26222             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
26223         });
26224         
26225         this.editorcore.onRender(ct, position);
26226          
26227         if (this.resizable) {
26228             this.resizeEl = new Roo.Resizable(this.wrap, {
26229                 pinned : true,
26230                 wrap: true,
26231                 dynamic : true,
26232                 minHeight : this.height,
26233                 height: this.height,
26234                 handles : this.resizable,
26235                 width: this.width,
26236                 listeners : {
26237                     resize : function(r, w, h) {
26238                         _t.onResize(w,h); // -something
26239                     }
26240                 }
26241             });
26242             
26243         }
26244         this.createToolbar(this);
26245        
26246         
26247         if(!this.width){
26248             this.setSize(this.wrap.getSize());
26249         }
26250         if (this.resizeEl) {
26251             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
26252             // should trigger onReize..
26253         }
26254         
26255 //        if(this.autosave && this.w){
26256 //            this.autoSaveFn = setInterval(this.autosave, 1000);
26257 //        }
26258     },
26259
26260     // private
26261     onResize : function(w, h)
26262     {
26263         //Roo.log('resize: ' +w + ',' + h );
26264         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
26265         var ew = false;
26266         var eh = false;
26267         
26268         if(this.el ){
26269             if(typeof w == 'number'){
26270                 var aw = w - this.wrap.getFrameWidth('lr');
26271                 this.el.setWidth(this.adjustWidth('textarea', aw));
26272                 ew = aw;
26273             }
26274             if(typeof h == 'number'){
26275                 var tbh = 0;
26276                 for (var i =0; i < this.toolbars.length;i++) {
26277                     // fixme - ask toolbars for heights?
26278                     tbh += this.toolbars[i].tb.el.getHeight();
26279                     if (this.toolbars[i].footer) {
26280                         tbh += this.toolbars[i].footer.el.getHeight();
26281                     }
26282                 }
26283                 
26284                 
26285                 
26286                 
26287                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
26288                 ah -= 5; // knock a few pixes off for look..
26289                 this.el.setHeight(this.adjustWidth('textarea', ah));
26290                 var eh = ah;
26291             }
26292         }
26293         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
26294         this.editorcore.onResize(ew,eh);
26295         
26296     },
26297
26298     /**
26299      * Toggles the editor between standard and source edit mode.
26300      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
26301      */
26302     toggleSourceEdit : function(sourceEditMode)
26303     {
26304         this.editorcore.toggleSourceEdit(sourceEditMode);
26305         
26306         if(this.editorcore.sourceEditMode){
26307             Roo.log('editor - showing textarea');
26308             
26309 //            Roo.log('in');
26310 //            Roo.log(this.syncValue());
26311             this.editorcore.syncValue();
26312             this.el.removeClass('x-hidden');
26313             this.el.dom.removeAttribute('tabIndex');
26314             this.el.focus();
26315         }else{
26316             Roo.log('editor - hiding textarea');
26317 //            Roo.log('out')
26318 //            Roo.log(this.pushValue()); 
26319             this.editorcore.pushValue();
26320             
26321             this.el.addClass('x-hidden');
26322             this.el.dom.setAttribute('tabIndex', -1);
26323             //this.deferFocus();
26324         }
26325          
26326         this.setSize(this.wrap.getSize());
26327         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
26328     },
26329  
26330     // private (for BoxComponent)
26331     adjustSize : Roo.BoxComponent.prototype.adjustSize,
26332
26333     // private (for BoxComponent)
26334     getResizeEl : function(){
26335         return this.wrap;
26336     },
26337
26338     // private (for BoxComponent)
26339     getPositionEl : function(){
26340         return this.wrap;
26341     },
26342
26343     // private
26344     initEvents : function(){
26345         this.originalValue = this.getValue();
26346     },
26347
26348     /**
26349      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
26350      * @method
26351      */
26352     markInvalid : Roo.emptyFn,
26353     /**
26354      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
26355      * @method
26356      */
26357     clearInvalid : Roo.emptyFn,
26358
26359     setValue : function(v){
26360         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
26361         this.editorcore.pushValue();
26362     },
26363
26364      
26365     // private
26366     deferFocus : function(){
26367         this.focus.defer(10, this);
26368     },
26369
26370     // doc'ed in Field
26371     focus : function(){
26372         this.editorcore.focus();
26373         
26374     },
26375       
26376
26377     // private
26378     onDestroy : function(){
26379         
26380         
26381         
26382         if(this.rendered){
26383             
26384             for (var i =0; i < this.toolbars.length;i++) {
26385                 // fixme - ask toolbars for heights?
26386                 this.toolbars[i].onDestroy();
26387             }
26388             
26389             this.wrap.dom.innerHTML = '';
26390             this.wrap.remove();
26391         }
26392     },
26393
26394     // private
26395     onFirstFocus : function(){
26396         //Roo.log("onFirstFocus");
26397         this.editorcore.onFirstFocus();
26398          for (var i =0; i < this.toolbars.length;i++) {
26399             this.toolbars[i].onFirstFocus();
26400         }
26401         
26402     },
26403     
26404     // private
26405     syncValue : function()
26406     {
26407         this.editorcore.syncValue();
26408     },
26409     
26410     pushValue : function()
26411     {
26412         this.editorcore.pushValue();
26413     }
26414      
26415     
26416     // hide stuff that is not compatible
26417     /**
26418      * @event blur
26419      * @hide
26420      */
26421     /**
26422      * @event change
26423      * @hide
26424      */
26425     /**
26426      * @event focus
26427      * @hide
26428      */
26429     /**
26430      * @event specialkey
26431      * @hide
26432      */
26433     /**
26434      * @cfg {String} fieldClass @hide
26435      */
26436     /**
26437      * @cfg {String} focusClass @hide
26438      */
26439     /**
26440      * @cfg {String} autoCreate @hide
26441      */
26442     /**
26443      * @cfg {String} inputType @hide
26444      */
26445     /**
26446      * @cfg {String} invalidClass @hide
26447      */
26448     /**
26449      * @cfg {String} invalidText @hide
26450      */
26451     /**
26452      * @cfg {String} msgFx @hide
26453      */
26454     /**
26455      * @cfg {String} validateOnBlur @hide
26456      */
26457 });
26458  
26459     // <script type="text/javascript">
26460 /*
26461  * Based on
26462  * Ext JS Library 1.1.1
26463  * Copyright(c) 2006-2007, Ext JS, LLC.
26464  *  
26465  
26466  */
26467
26468 /**
26469  * @class Roo.form.HtmlEditorToolbar1
26470  * Basic Toolbar
26471  * 
26472  * Usage:
26473  *
26474  new Roo.form.HtmlEditor({
26475     ....
26476     toolbars : [
26477         new Roo.form.HtmlEditorToolbar1({
26478             disable : { fonts: 1 , format: 1, ..., ... , ...],
26479             btns : [ .... ]
26480         })
26481     }
26482      
26483  * 
26484  * @cfg {Object} disable List of elements to disable..
26485  * @cfg {Array} btns List of additional buttons.
26486  * 
26487  * 
26488  * NEEDS Extra CSS? 
26489  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
26490  */
26491  
26492 Roo.form.HtmlEditor.ToolbarStandard = function(config)
26493 {
26494     
26495     Roo.apply(this, config);
26496     
26497     // default disabled, based on 'good practice'..
26498     this.disable = this.disable || {};
26499     Roo.applyIf(this.disable, {
26500         fontSize : true,
26501         colors : true,
26502         specialElements : true
26503     });
26504     
26505     
26506     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
26507     // dont call parent... till later.
26508 }
26509
26510 Roo.apply(Roo.form.HtmlEditor.ToolbarStandard.prototype,  {
26511     
26512     tb: false,
26513     
26514     rendered: false,
26515     
26516     editor : false,
26517     editorcore : false,
26518     /**
26519      * @cfg {Object} disable  List of toolbar elements to disable
26520          
26521      */
26522     disable : false,
26523     
26524     
26525      /**
26526      * @cfg {String} createLinkText The default text for the create link prompt
26527      */
26528     createLinkText : 'Please enter the URL for the link:',
26529     /**
26530      * @cfg {String} defaultLinkValue The default value for the create link prompt (defaults to http:/ /)
26531      */
26532     defaultLinkValue : 'http:/'+'/',
26533    
26534     
26535       /**
26536      * @cfg {Array} fontFamilies An array of available font families
26537      */
26538     fontFamilies : [
26539         'Arial',
26540         'Courier New',
26541         'Tahoma',
26542         'Times New Roman',
26543         'Verdana'
26544     ],
26545     
26546     specialChars : [
26547            "&#169;",
26548           "&#174;",     
26549           "&#8482;",    
26550           "&#163;" ,    
26551          // "&#8212;",    
26552           "&#8230;",    
26553           "&#247;" ,    
26554         //  "&#225;" ,     ?? a acute?
26555            "&#8364;"    , //Euro
26556        //   "&#8220;"    ,
26557         //  "&#8221;"    ,
26558         //  "&#8226;"    ,
26559           "&#176;"  //   , // degrees
26560
26561          // "&#233;"     , // e ecute
26562          // "&#250;"     , // u ecute?
26563     ],
26564     
26565     specialElements : [
26566         {
26567             text: "Insert Table",
26568             xtype: 'MenuItem',
26569             xns : Roo.Menu,
26570             ihtml :  '<table><tr><td>Cell</td></tr></table>' 
26571                 
26572         },
26573         {    
26574             text: "Insert Image",
26575             xtype: 'MenuItem',
26576             xns : Roo.Menu,
26577             ihtml : '<img src="about:blank"/>'
26578             
26579         }
26580         
26581          
26582     ],
26583     
26584     
26585     inputElements : [ 
26586             "form", "input:text", "input:hidden", "input:checkbox", "input:radio", "input:password", 
26587             "input:submit", "input:button", "select", "textarea", "label" ],
26588     formats : [
26589         ["p"] ,  
26590         ["h1"],["h2"],["h3"],["h4"],["h5"],["h6"], 
26591         ["pre"],[ "code"], 
26592         ["abbr"],[ "acronym"],[ "address"],[ "cite"],[ "samp"],[ "var"],
26593         ['div'],['span']
26594     ],
26595     
26596     cleanStyles : [
26597         "font-size"
26598     ],
26599      /**
26600      * @cfg {String} defaultFont default font to use.
26601      */
26602     defaultFont: 'tahoma',
26603    
26604     fontSelect : false,
26605     
26606     
26607     formatCombo : false,
26608     
26609     init : function(editor)
26610     {
26611         this.editor = editor;
26612         this.editorcore = editor.editorcore ? editor.editorcore : editor;
26613         var editorcore = this.editorcore;
26614         
26615         var _t = this;
26616         
26617         var fid = editorcore.frameId;
26618         var etb = this;
26619         function btn(id, toggle, handler){
26620             var xid = fid + '-'+ id ;
26621             return {
26622                 id : xid,
26623                 cmd : id,
26624                 cls : 'x-btn-icon x-edit-'+id,
26625                 enableToggle:toggle !== false,
26626                 scope: _t, // was editor...
26627                 handler:handler||_t.relayBtnCmd,
26628                 clickEvent:'mousedown',
26629                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
26630                 tabIndex:-1
26631             };
26632         }
26633         
26634         
26635         
26636         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
26637         this.tb = tb;
26638          // stop form submits
26639         tb.el.on('click', function(e){
26640             e.preventDefault(); // what does this do?
26641         });
26642
26643         if(!this.disable.font) { // && !Roo.isSafari){
26644             /* why no safari for fonts 
26645             editor.fontSelect = tb.el.createChild({
26646                 tag:'select',
26647                 tabIndex: -1,
26648                 cls:'x-font-select',
26649                 html: this.createFontOptions()
26650             });
26651             
26652             editor.fontSelect.on('change', function(){
26653                 var font = editor.fontSelect.dom.value;
26654                 editor.relayCmd('fontname', font);
26655                 editor.deferFocus();
26656             }, editor);
26657             
26658             tb.add(
26659                 editor.fontSelect.dom,
26660                 '-'
26661             );
26662             */
26663             
26664         };
26665         if(!this.disable.formats){
26666             this.formatCombo = new Roo.form.ComboBox({
26667                 store: new Roo.data.SimpleStore({
26668                     id : 'tag',
26669                     fields: ['tag'],
26670                     data : this.formats // from states.js
26671                 }),
26672                 blockFocus : true,
26673                 name : '',
26674                 //autoCreate : {tag: "div",  size: "20"},
26675                 displayField:'tag',
26676                 typeAhead: false,
26677                 mode: 'local',
26678                 editable : false,
26679                 triggerAction: 'all',
26680                 emptyText:'Add tag',
26681                 selectOnFocus:true,
26682                 width:135,
26683                 listeners : {
26684                     'select': function(c, r, i) {
26685                         editorcore.insertTag(r.get('tag'));
26686                         editor.focus();
26687                     }
26688                 }
26689
26690             });
26691             tb.addField(this.formatCombo);
26692             
26693         }
26694         
26695         if(!this.disable.format){
26696             tb.add(
26697                 btn('bold'),
26698                 btn('italic'),
26699                 btn('underline')
26700             );
26701         };
26702         if(!this.disable.fontSize){
26703             tb.add(
26704                 '-',
26705                 
26706                 
26707                 btn('increasefontsize', false, editorcore.adjustFont),
26708                 btn('decreasefontsize', false, editorcore.adjustFont)
26709             );
26710         };
26711         
26712         
26713         if(!this.disable.colors){
26714             tb.add(
26715                 '-', {
26716                     id:editorcore.frameId +'-forecolor',
26717                     cls:'x-btn-icon x-edit-forecolor',
26718                     clickEvent:'mousedown',
26719                     tooltip: this.buttonTips['forecolor'] || undefined,
26720                     tabIndex:-1,
26721                     menu : new Roo.menu.ColorMenu({
26722                         allowReselect: true,
26723                         focus: Roo.emptyFn,
26724                         value:'000000',
26725                         plain:true,
26726                         selectHandler: function(cp, color){
26727                             editorcore.execCmd('forecolor', Roo.isSafari || Roo.isIE ? '#'+color : color);
26728                             editor.deferFocus();
26729                         },
26730                         scope: editorcore,
26731                         clickEvent:'mousedown'
26732                     })
26733                 }, {
26734                     id:editorcore.frameId +'backcolor',
26735                     cls:'x-btn-icon x-edit-backcolor',
26736                     clickEvent:'mousedown',
26737                     tooltip: this.buttonTips['backcolor'] || undefined,
26738                     tabIndex:-1,
26739                     menu : new Roo.menu.ColorMenu({
26740                         focus: Roo.emptyFn,
26741                         value:'FFFFFF',
26742                         plain:true,
26743                         allowReselect: true,
26744                         selectHandler: function(cp, color){
26745                             if(Roo.isGecko){
26746                                 editorcore.execCmd('useCSS', false);
26747                                 editorcore.execCmd('hilitecolor', color);
26748                                 editorcore.execCmd('useCSS', true);
26749                                 editor.deferFocus();
26750                             }else{
26751                                 editorcore.execCmd(Roo.isOpera ? 'hilitecolor' : 'backcolor', 
26752                                     Roo.isSafari || Roo.isIE ? '#'+color : color);
26753                                 editor.deferFocus();
26754                             }
26755                         },
26756                         scope:editorcore,
26757                         clickEvent:'mousedown'
26758                     })
26759                 }
26760             );
26761         };
26762         // now add all the items...
26763         
26764
26765         if(!this.disable.alignments){
26766             tb.add(
26767                 '-',
26768                 btn('justifyleft'),
26769                 btn('justifycenter'),
26770                 btn('justifyright')
26771             );
26772         };
26773
26774         //if(!Roo.isSafari){
26775             if(!this.disable.links){
26776                 tb.add(
26777                     '-',
26778                     btn('createlink', false, this.createLink)    /// MOVE TO HERE?!!?!?!?!
26779                 );
26780             };
26781
26782             if(!this.disable.lists){
26783                 tb.add(
26784                     '-',
26785                     btn('insertorderedlist'),
26786                     btn('insertunorderedlist')
26787                 );
26788             }
26789             if(!this.disable.sourceEdit){
26790                 tb.add(
26791                     '-',
26792                     btn('sourceedit', true, function(btn){
26793                         Roo.log(this);
26794                         this.toggleSourceEdit(btn.pressed);
26795                     })
26796                 );
26797             }
26798         //}
26799         
26800         var smenu = { };
26801         // special menu.. - needs to be tidied up..
26802         if (!this.disable.special) {
26803             smenu = {
26804                 text: "&#169;",
26805                 cls: 'x-edit-none',
26806                 
26807                 menu : {
26808                     items : []
26809                 }
26810             };
26811             for (var i =0; i < this.specialChars.length; i++) {
26812                 smenu.menu.items.push({
26813                     
26814                     html: this.specialChars[i],
26815                     handler: function(a,b) {
26816                         editorcore.insertAtCursor(String.fromCharCode(a.html.replace('&#','').replace(';', '')));
26817                         //editor.insertAtCursor(a.html);
26818                         
26819                     },
26820                     tabIndex:-1
26821                 });
26822             }
26823             
26824             
26825             tb.add(smenu);
26826             
26827             
26828         }
26829         
26830         var cmenu = { };
26831         if (!this.disable.cleanStyles) {
26832             cmenu = {
26833                 cls: 'x-btn-icon x-btn-clear',
26834                 
26835                 menu : {
26836                     items : []
26837                 }
26838             };
26839             for (var i =0; i < this.cleanStyles.length; i++) {
26840                 cmenu.menu.items.push({
26841                     actiontype : this.cleanStyles[i],
26842                     html: 'Remove ' + this.cleanStyles[i],
26843                     handler: function(a,b) {
26844                         Roo.log(a);
26845                         Roo.log(b);
26846                         var c = Roo.get(editorcore.doc.body);
26847                         c.select('[style]').each(function(s) {
26848                             s.dom.style.removeProperty(a.actiontype);
26849                         });
26850                         editorcore.syncValue();
26851                     },
26852                     tabIndex:-1
26853                 });
26854             }
26855             cmenu.menu.items.push({
26856                 actiontype : 'word',
26857                 html: 'Remove MS Word Formating',
26858                 handler: function(a,b) {
26859                     editorcore.cleanWord();
26860                     editorcore.syncValue();
26861                 },
26862                 tabIndex:-1
26863             });
26864             
26865             cmenu.menu.items.push({
26866                 actiontype : 'all',
26867                 html: 'Remove All Styles',
26868                 handler: function(a,b) {
26869                     
26870                     var c = Roo.get(editorcore.doc.body);
26871                     c.select('[style]').each(function(s) {
26872                         s.dom.removeAttribute('style');
26873                     });
26874                     editorcore.syncValue();
26875                 },
26876                 tabIndex:-1
26877             });
26878              cmenu.menu.items.push({
26879                 actiontype : 'word',
26880                 html: 'Tidy HTML Source',
26881                 handler: function(a,b) {
26882                     editorcore.doc.body.innerHTML = editorcore.domToHTML();
26883                     editorcore.syncValue();
26884                 },
26885                 tabIndex:-1
26886             });
26887             
26888             
26889             tb.add(cmenu);
26890         }
26891          
26892         if (!this.disable.specialElements) {
26893             var semenu = {
26894                 text: "Other;",
26895                 cls: 'x-edit-none',
26896                 menu : {
26897                     items : []
26898                 }
26899             };
26900             for (var i =0; i < this.specialElements.length; i++) {
26901                 semenu.menu.items.push(
26902                     Roo.apply({ 
26903                         handler: function(a,b) {
26904                             editor.insertAtCursor(this.ihtml);
26905                         }
26906                     }, this.specialElements[i])
26907                 );
26908                     
26909             }
26910             
26911             tb.add(semenu);
26912             
26913             
26914         }
26915          
26916         
26917         if (this.btns) {
26918             for(var i =0; i< this.btns.length;i++) {
26919                 var b = Roo.factory(this.btns[i],Roo.form);
26920                 b.cls =  'x-edit-none';
26921                 b.scope = editorcore;
26922                 tb.add(b);
26923             }
26924         
26925         }
26926         
26927         
26928         
26929         // disable everything...
26930         
26931         this.tb.items.each(function(item){
26932            if(item.id != editorcore.frameId+ '-sourceedit'){
26933                 item.disable();
26934             }
26935         });
26936         this.rendered = true;
26937         
26938         // the all the btns;
26939         editor.on('editorevent', this.updateToolbar, this);
26940         // other toolbars need to implement this..
26941         //editor.on('editmodechange', this.updateToolbar, this);
26942     },
26943     
26944     
26945     relayBtnCmd : function(btn) {
26946         this.editorcore.relayCmd(btn.cmd);
26947     },
26948     // private used internally
26949     createLink : function(){
26950         Roo.log("create link?");
26951         var url = prompt(this.createLinkText, this.defaultLinkValue);
26952         if(url && url != 'http:/'+'/'){
26953             this.editorcore.relayCmd('createlink', url);
26954         }
26955     },
26956
26957     
26958     /**
26959      * Protected method that will not generally be called directly. It triggers
26960      * a toolbar update by reading the markup state of the current selection in the editor.
26961      */
26962     updateToolbar: function(){
26963
26964         if(!this.editorcore.activated){
26965             this.editor.onFirstFocus();
26966             return;
26967         }
26968
26969         var btns = this.tb.items.map, 
26970             doc = this.editorcore.doc,
26971             frameId = this.editorcore.frameId;
26972
26973         if(!this.disable.font && !Roo.isSafari){
26974             /*
26975             var name = (doc.queryCommandValue('FontName')||this.editor.defaultFont).toLowerCase();
26976             if(name != this.fontSelect.dom.value){
26977                 this.fontSelect.dom.value = name;
26978             }
26979             */
26980         }
26981         if(!this.disable.format){
26982             btns[frameId + '-bold'].toggle(doc.queryCommandState('bold'));
26983             btns[frameId + '-italic'].toggle(doc.queryCommandState('italic'));
26984             btns[frameId + '-underline'].toggle(doc.queryCommandState('underline'));
26985         }
26986         if(!this.disable.alignments){
26987             btns[frameId + '-justifyleft'].toggle(doc.queryCommandState('justifyleft'));
26988             btns[frameId + '-justifycenter'].toggle(doc.queryCommandState('justifycenter'));
26989             btns[frameId + '-justifyright'].toggle(doc.queryCommandState('justifyright'));
26990         }
26991         if(!Roo.isSafari && !this.disable.lists){
26992             btns[frameId + '-insertorderedlist'].toggle(doc.queryCommandState('insertorderedlist'));
26993             btns[frameId + '-insertunorderedlist'].toggle(doc.queryCommandState('insertunorderedlist'));
26994         }
26995         
26996         var ans = this.editorcore.getAllAncestors();
26997         if (this.formatCombo) {
26998             
26999             
27000             var store = this.formatCombo.store;
27001             this.formatCombo.setValue("");
27002             for (var i =0; i < ans.length;i++) {
27003                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
27004                     // select it..
27005                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
27006                     break;
27007                 }
27008             }
27009         }
27010         
27011         
27012         
27013         // hides menus... - so this cant be on a menu...
27014         Roo.menu.MenuMgr.hideAll();
27015
27016         //this.editorsyncValue();
27017     },
27018    
27019     
27020     createFontOptions : function(){
27021         var buf = [], fs = this.fontFamilies, ff, lc;
27022         
27023         
27024         
27025         for(var i = 0, len = fs.length; i< len; i++){
27026             ff = fs[i];
27027             lc = ff.toLowerCase();
27028             buf.push(
27029                 '<option value="',lc,'" style="font-family:',ff,';"',
27030                     (this.defaultFont == lc ? ' selected="true">' : '>'),
27031                     ff,
27032                 '</option>'
27033             );
27034         }
27035         return buf.join('');
27036     },
27037     
27038     toggleSourceEdit : function(sourceEditMode){
27039         
27040         Roo.log("toolbar toogle");
27041         if(sourceEditMode === undefined){
27042             sourceEditMode = !this.sourceEditMode;
27043         }
27044         this.sourceEditMode = sourceEditMode === true;
27045         var btn = this.tb.items.get(this.editorcore.frameId +'-sourceedit');
27046         // just toggle the button?
27047         if(btn.pressed !== this.sourceEditMode){
27048             btn.toggle(this.sourceEditMode);
27049             return;
27050         }
27051         
27052         if(sourceEditMode){
27053             Roo.log("disabling buttons");
27054             this.tb.items.each(function(item){
27055                 if(item.cmd != 'sourceedit'){
27056                     item.disable();
27057                 }
27058             });
27059           
27060         }else{
27061             Roo.log("enabling buttons");
27062             if(this.editorcore.initialized){
27063                 this.tb.items.each(function(item){
27064                     item.enable();
27065                 });
27066             }
27067             
27068         }
27069         Roo.log("calling toggole on editor");
27070         // tell the editor that it's been pressed..
27071         this.editor.toggleSourceEdit(sourceEditMode);
27072        
27073     },
27074      /**
27075      * Object collection of toolbar tooltips for the buttons in the editor. The key
27076      * is the command id associated with that button and the value is a valid QuickTips object.
27077      * For example:
27078 <pre><code>
27079 {
27080     bold : {
27081         title: 'Bold (Ctrl+B)',
27082         text: 'Make the selected text bold.',
27083         cls: 'x-html-editor-tip'
27084     },
27085     italic : {
27086         title: 'Italic (Ctrl+I)',
27087         text: 'Make the selected text italic.',
27088         cls: 'x-html-editor-tip'
27089     },
27090     ...
27091 </code></pre>
27092     * @type Object
27093      */
27094     buttonTips : {
27095         bold : {
27096             title: 'Bold (Ctrl+B)',
27097             text: 'Make the selected text bold.',
27098             cls: 'x-html-editor-tip'
27099         },
27100         italic : {
27101             title: 'Italic (Ctrl+I)',
27102             text: 'Make the selected text italic.',
27103             cls: 'x-html-editor-tip'
27104         },
27105         underline : {
27106             title: 'Underline (Ctrl+U)',
27107             text: 'Underline the selected text.',
27108             cls: 'x-html-editor-tip'
27109         },
27110         increasefontsize : {
27111             title: 'Grow Text',
27112             text: 'Increase the font size.',
27113             cls: 'x-html-editor-tip'
27114         },
27115         decreasefontsize : {
27116             title: 'Shrink Text',
27117             text: 'Decrease the font size.',
27118             cls: 'x-html-editor-tip'
27119         },
27120         backcolor : {
27121             title: 'Text Highlight Color',
27122             text: 'Change the background color of the selected text.',
27123             cls: 'x-html-editor-tip'
27124         },
27125         forecolor : {
27126             title: 'Font Color',
27127             text: 'Change the color of the selected text.',
27128             cls: 'x-html-editor-tip'
27129         },
27130         justifyleft : {
27131             title: 'Align Text Left',
27132             text: 'Align text to the left.',
27133             cls: 'x-html-editor-tip'
27134         },
27135         justifycenter : {
27136             title: 'Center Text',
27137             text: 'Center text in the editor.',
27138             cls: 'x-html-editor-tip'
27139         },
27140         justifyright : {
27141             title: 'Align Text Right',
27142             text: 'Align text to the right.',
27143             cls: 'x-html-editor-tip'
27144         },
27145         insertunorderedlist : {
27146             title: 'Bullet List',
27147             text: 'Start a bulleted list.',
27148             cls: 'x-html-editor-tip'
27149         },
27150         insertorderedlist : {
27151             title: 'Numbered List',
27152             text: 'Start a numbered list.',
27153             cls: 'x-html-editor-tip'
27154         },
27155         createlink : {
27156             title: 'Hyperlink',
27157             text: 'Make the selected text a hyperlink.',
27158             cls: 'x-html-editor-tip'
27159         },
27160         sourceedit : {
27161             title: 'Source Edit',
27162             text: 'Switch to source editing mode.',
27163             cls: 'x-html-editor-tip'
27164         }
27165     },
27166     // private
27167     onDestroy : function(){
27168         if(this.rendered){
27169             
27170             this.tb.items.each(function(item){
27171                 if(item.menu){
27172                     item.menu.removeAll();
27173                     if(item.menu.el){
27174                         item.menu.el.destroy();
27175                     }
27176                 }
27177                 item.destroy();
27178             });
27179              
27180         }
27181     },
27182     onFirstFocus: function() {
27183         this.tb.items.each(function(item){
27184            item.enable();
27185         });
27186     }
27187 });
27188
27189
27190
27191
27192 // <script type="text/javascript">
27193 /*
27194  * Based on
27195  * Ext JS Library 1.1.1
27196  * Copyright(c) 2006-2007, Ext JS, LLC.
27197  *  
27198  
27199  */
27200
27201  
27202 /**
27203  * @class Roo.form.HtmlEditor.ToolbarContext
27204  * Context Toolbar
27205  * 
27206  * Usage:
27207  *
27208  new Roo.form.HtmlEditor({
27209     ....
27210     toolbars : [
27211         { xtype: 'ToolbarStandard', styles : {} }
27212         { xtype: 'ToolbarContext', disable : {} }
27213     ]
27214 })
27215
27216      
27217  * 
27218  * @config : {Object} disable List of elements to disable.. (not done yet.)
27219  * @config : {Object} styles  Map of styles available.
27220  * 
27221  */
27222
27223 Roo.form.HtmlEditor.ToolbarContext = function(config)
27224 {
27225     
27226     Roo.apply(this, config);
27227     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
27228     // dont call parent... till later.
27229     this.styles = this.styles || {};
27230 }
27231
27232  
27233
27234 Roo.form.HtmlEditor.ToolbarContext.types = {
27235     'IMG' : {
27236         width : {
27237             title: "Width",
27238             width: 40
27239         },
27240         height:  {
27241             title: "Height",
27242             width: 40
27243         },
27244         align: {
27245             title: "Align",
27246             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
27247             width : 80
27248             
27249         },
27250         border: {
27251             title: "Border",
27252             width: 40
27253         },
27254         alt: {
27255             title: "Alt",
27256             width: 120
27257         },
27258         src : {
27259             title: "Src",
27260             width: 220
27261         }
27262         
27263     },
27264     'A' : {
27265         name : {
27266             title: "Name",
27267             width: 50
27268         },
27269         target:  {
27270             title: "Target",
27271             width: 120
27272         },
27273         href:  {
27274             title: "Href",
27275             width: 220
27276         } // border?
27277         
27278     },
27279     'TABLE' : {
27280         rows : {
27281             title: "Rows",
27282             width: 20
27283         },
27284         cols : {
27285             title: "Cols",
27286             width: 20
27287         },
27288         width : {
27289             title: "Width",
27290             width: 40
27291         },
27292         height : {
27293             title: "Height",
27294             width: 40
27295         },
27296         border : {
27297             title: "Border",
27298             width: 20
27299         }
27300     },
27301     'TD' : {
27302         width : {
27303             title: "Width",
27304             width: 40
27305         },
27306         height : {
27307             title: "Height",
27308             width: 40
27309         },   
27310         align: {
27311             title: "Align",
27312             opts : [[""],[ "left"],[ "center"],[ "right"],[ "justify"],[ "char"]],
27313             width: 80
27314         },
27315         valign: {
27316             title: "Valign",
27317             opts : [[""],[ "top"],[ "middle"],[ "bottom"],[ "baseline"]],
27318             width: 80
27319         },
27320         colspan: {
27321             title: "Colspan",
27322             width: 20
27323             
27324         },
27325          'font-family'  : {
27326             title : "Font",
27327             style : 'fontFamily',
27328             displayField: 'display',
27329             optname : 'font-family',
27330             width: 140
27331         }
27332     },
27333     'INPUT' : {
27334         name : {
27335             title: "name",
27336             width: 120
27337         },
27338         value : {
27339             title: "Value",
27340             width: 120
27341         },
27342         width : {
27343             title: "Width",
27344             width: 40
27345         }
27346     },
27347     'LABEL' : {
27348         'for' : {
27349             title: "For",
27350             width: 120
27351         }
27352     },
27353     'TEXTAREA' : {
27354           name : {
27355             title: "name",
27356             width: 120
27357         },
27358         rows : {
27359             title: "Rows",
27360             width: 20
27361         },
27362         cols : {
27363             title: "Cols",
27364             width: 20
27365         }
27366     },
27367     'SELECT' : {
27368         name : {
27369             title: "name",
27370             width: 120
27371         },
27372         selectoptions : {
27373             title: "Options",
27374             width: 200
27375         }
27376     },
27377     
27378     // should we really allow this??
27379     // should this just be 
27380     'BODY' : {
27381         title : {
27382             title: "Title",
27383             width: 200,
27384             disabled : true
27385         }
27386     },
27387     'SPAN' : {
27388         'font-family'  : {
27389             title : "Font",
27390             style : 'fontFamily',
27391             displayField: 'display',
27392             optname : 'font-family',
27393             width: 140
27394         }
27395     },
27396     'DIV' : {
27397         'font-family'  : {
27398             title : "Font",
27399             style : 'fontFamily',
27400             displayField: 'display',
27401             optname : 'font-family',
27402             width: 140
27403         }
27404     },
27405      'P' : {
27406         'font-family'  : {
27407             title : "Font",
27408             style : 'fontFamily',
27409             displayField: 'display',
27410             optname : 'font-family',
27411             width: 140
27412         }
27413     },
27414     
27415     '*' : {
27416         // empty..
27417     }
27418
27419 };
27420
27421 // this should be configurable.. - you can either set it up using stores, or modify options somehwere..
27422 Roo.form.HtmlEditor.ToolbarContext.stores = false;
27423
27424 Roo.form.HtmlEditor.ToolbarContext.options = {
27425         'font-family'  : [ 
27426                 [ 'Helvetica,Arial,sans-serif', 'Helvetica'],
27427                 [ 'Courier New', 'Courier New'],
27428                 [ 'Tahoma', 'Tahoma'],
27429                 [ 'Times New Roman,serif', 'Times'],
27430                 [ 'Verdana','Verdana' ]
27431         ]
27432 };
27433
27434 // fixme - these need to be configurable..
27435  
27436
27437 Roo.form.HtmlEditor.ToolbarContext.types
27438
27439
27440 Roo.apply(Roo.form.HtmlEditor.ToolbarContext.prototype,  {
27441     
27442     tb: false,
27443     
27444     rendered: false,
27445     
27446     editor : false,
27447     editorcore : false,
27448     /**
27449      * @cfg {Object} disable  List of toolbar elements to disable
27450          
27451      */
27452     disable : false,
27453     /**
27454      * @cfg {Object} styles List of styles 
27455      *    eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } 
27456      *
27457      * These must be defined in the page, so they get rendered correctly..
27458      * .headline { }
27459      * TD.underline { }
27460      * 
27461      */
27462     styles : false,
27463     
27464     options: false,
27465     
27466     toolbars : false,
27467     
27468     init : function(editor)
27469     {
27470         this.editor = editor;
27471         this.editorcore = editor.editorcore ? editor.editorcore : editor;
27472         var editorcore = this.editorcore;
27473         
27474         var fid = editorcore.frameId;
27475         var etb = this;
27476         function btn(id, toggle, handler){
27477             var xid = fid + '-'+ id ;
27478             return {
27479                 id : xid,
27480                 cmd : id,
27481                 cls : 'x-btn-icon x-edit-'+id,
27482                 enableToggle:toggle !== false,
27483                 scope: editorcore, // was editor...
27484                 handler:handler||editorcore.relayBtnCmd,
27485                 clickEvent:'mousedown',
27486                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
27487                 tabIndex:-1
27488             };
27489         }
27490         // create a new element.
27491         var wdiv = editor.wrap.createChild({
27492                 tag: 'div'
27493             }, editor.wrap.dom.firstChild.nextSibling, true);
27494         
27495         // can we do this more than once??
27496         
27497          // stop form submits
27498       
27499  
27500         // disable everything...
27501         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
27502         this.toolbars = {};
27503            
27504         for (var i in  ty) {
27505           
27506             this.toolbars[i] = this.buildToolbar(ty[i],i);
27507         }
27508         this.tb = this.toolbars.BODY;
27509         this.tb.el.show();
27510         this.buildFooter();
27511         this.footer.show();
27512         editor.on('hide', function( ) { this.footer.hide() }, this);
27513         editor.on('show', function( ) { this.footer.show() }, this);
27514         
27515          
27516         this.rendered = true;
27517         
27518         // the all the btns;
27519         editor.on('editorevent', this.updateToolbar, this);
27520         // other toolbars need to implement this..
27521         //editor.on('editmodechange', this.updateToolbar, this);
27522     },
27523     
27524     
27525     
27526     /**
27527      * Protected method that will not generally be called directly. It triggers
27528      * a toolbar update by reading the markup state of the current selection in the editor.
27529      */
27530     updateToolbar: function(editor,ev,sel){
27531
27532         //Roo.log(ev);
27533         // capture mouse up - this is handy for selecting images..
27534         // perhaps should go somewhere else...
27535         if(!this.editorcore.activated){
27536              this.editor.onFirstFocus();
27537             return;
27538         }
27539         
27540         // http://developer.yahoo.com/yui/docs/simple-editor.js.html
27541         // selectNode - might want to handle IE?
27542         if (ev &&
27543             (ev.type == 'mouseup' || ev.type == 'click' ) &&
27544             ev.target && ev.target.tagName == 'IMG') {
27545             // they have click on an image...
27546             // let's see if we can change the selection...
27547             sel = ev.target;
27548          
27549               var nodeRange = sel.ownerDocument.createRange();
27550             try {
27551                 nodeRange.selectNode(sel);
27552             } catch (e) {
27553                 nodeRange.selectNodeContents(sel);
27554             }
27555             //nodeRange.collapse(true);
27556             var s = this.editorcore.win.getSelection();
27557             s.removeAllRanges();
27558             s.addRange(nodeRange);
27559         }  
27560         
27561       
27562         var updateFooter = sel ? false : true;
27563         
27564         
27565         var ans = this.editorcore.getAllAncestors();
27566         
27567         // pick
27568         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
27569         
27570         if (!sel) { 
27571             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editorcore.doc.body;
27572             sel = sel ? sel : this.editorcore.doc.body;
27573             sel = sel.tagName.length ? sel : this.editorcore.doc.body;
27574             
27575         }
27576         // pick a menu that exists..
27577         var tn = sel.tagName.toUpperCase();
27578         //sel = typeof(ty[tn]) != 'undefined' ? sel : this.editor.doc.body;
27579         
27580         tn = sel.tagName.toUpperCase();
27581         
27582         var lastSel = this.tb.selectedNode
27583         
27584         this.tb.selectedNode = sel;
27585         
27586         // if current menu does not match..
27587         if ((this.tb.name != tn) || (lastSel != this.tb.selectedNode)) {
27588                 
27589             this.tb.el.hide();
27590             ///console.log("show: " + tn);
27591             this.tb =  typeof(ty[tn]) != 'undefined' ? this.toolbars[tn] : this.toolbars['*'];
27592             this.tb.el.show();
27593             // update name
27594             this.tb.items.first().el.innerHTML = tn + ':&nbsp;';
27595             
27596             
27597             // update attributes
27598             if (this.tb.fields) {
27599                 this.tb.fields.each(function(e) {
27600                     if (e.stylename) {
27601                         e.setValue(sel.style[e.stylename]);
27602                         return;
27603                     } 
27604                    e.setValue(sel.getAttribute(e.attrname));
27605                 });
27606             }
27607             
27608             var hasStyles = false;
27609             for(var i in this.styles) {
27610                 hasStyles = true;
27611                 break;
27612             }
27613             
27614             // update styles
27615             if (hasStyles) { 
27616                 var st = this.tb.fields.item(0);
27617                 
27618                 st.store.removeAll();
27619                
27620                 
27621                 var cn = sel.className.split(/\s+/);
27622                 
27623                 var avs = [];
27624                 if (this.styles['*']) {
27625                     
27626                     Roo.each(this.styles['*'], function(v) {
27627                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
27628                     });
27629                 }
27630                 if (this.styles[tn]) { 
27631                     Roo.each(this.styles[tn], function(v) {
27632                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
27633                     });
27634                 }
27635                 
27636                 st.store.loadData(avs);
27637                 st.collapse();
27638                 st.setValue(cn);
27639             }
27640             // flag our selected Node.
27641             this.tb.selectedNode = sel;
27642            
27643            
27644             Roo.menu.MenuMgr.hideAll();
27645
27646         }
27647         
27648         if (!updateFooter) {
27649             //this.footDisp.dom.innerHTML = ''; 
27650             return;
27651         }
27652         // update the footer
27653         //
27654         var html = '';
27655         
27656         this.footerEls = ans.reverse();
27657         Roo.each(this.footerEls, function(a,i) {
27658             if (!a) { return; }
27659             html += html.length ? ' &gt; '  :  '';
27660             
27661             html += '<span class="x-ed-loc-' + i + '">' + a.tagName + '</span>';
27662             
27663         });
27664        
27665         // 
27666         var sz = this.footDisp.up('td').getSize();
27667         this.footDisp.dom.style.width = (sz.width -10) + 'px';
27668         this.footDisp.dom.style.marginLeft = '5px';
27669         
27670         this.footDisp.dom.style.overflow = 'hidden';
27671         
27672         this.footDisp.dom.innerHTML = html;
27673             
27674         //this.editorsyncValue();
27675     },
27676      
27677     
27678    
27679        
27680     // private
27681     onDestroy : function(){
27682         if(this.rendered){
27683             
27684             this.tb.items.each(function(item){
27685                 if(item.menu){
27686                     item.menu.removeAll();
27687                     if(item.menu.el){
27688                         item.menu.el.destroy();
27689                     }
27690                 }
27691                 item.destroy();
27692             });
27693              
27694         }
27695     },
27696     onFirstFocus: function() {
27697         // need to do this for all the toolbars..
27698         this.tb.items.each(function(item){
27699            item.enable();
27700         });
27701     },
27702     buildToolbar: function(tlist, nm)
27703     {
27704         var editor = this.editor;
27705         var editorcore = this.editorcore;
27706          // create a new element.
27707         var wdiv = editor.wrap.createChild({
27708                 tag: 'div'
27709             }, editor.wrap.dom.firstChild.nextSibling, true);
27710         
27711        
27712         var tb = new Roo.Toolbar(wdiv);
27713         // add the name..
27714         
27715         tb.add(nm+ ":&nbsp;");
27716         
27717         var styles = [];
27718         for(var i in this.styles) {
27719             styles.push(i);
27720         }
27721         
27722         // styles...
27723         if (styles && styles.length) {
27724             
27725             // this needs a multi-select checkbox...
27726             tb.addField( new Roo.form.ComboBox({
27727                 store: new Roo.data.SimpleStore({
27728                     id : 'val',
27729                     fields: ['val', 'selected'],
27730                     data : [] 
27731                 }),
27732                 name : '-roo-edit-className',
27733                 attrname : 'className',
27734                 displayField: 'val',
27735                 typeAhead: false,
27736                 mode: 'local',
27737                 editable : false,
27738                 triggerAction: 'all',
27739                 emptyText:'Select Style',
27740                 selectOnFocus:true,
27741                 width: 130,
27742                 listeners : {
27743                     'select': function(c, r, i) {
27744                         // initial support only for on class per el..
27745                         tb.selectedNode.className =  r ? r.get('val') : '';
27746                         editorcore.syncValue();
27747                     }
27748                 }
27749     
27750             }));
27751         }
27752         
27753         var tbc = Roo.form.HtmlEditor.ToolbarContext;
27754         var tbops = tbc.options;
27755         
27756         for (var i in tlist) {
27757             
27758             var item = tlist[i];
27759             tb.add(item.title + ":&nbsp;");
27760             
27761             
27762             //optname == used so you can configure the options available..
27763             var opts = item.opts ? item.opts : false;
27764             if (item.optname) {
27765                 opts = tbops[item.optname];
27766            
27767             }
27768             
27769             if (opts) {
27770                 // opts == pulldown..
27771                 tb.addField( new Roo.form.ComboBox({
27772                     store:   typeof(tbc.stores[i]) != 'undefined' ?  Roo.factory(tbc.stores[i],Roo.data) : new Roo.data.SimpleStore({
27773                         id : 'val',
27774                         fields: ['val', 'display'],
27775                         data : opts  
27776                     }),
27777                     name : '-roo-edit-' + i,
27778                     attrname : i,
27779                     stylename : item.style ? item.style : false,
27780                     displayField: item.displayField ? item.displayField : 'val',
27781                     valueField :  'val',
27782                     typeAhead: false,
27783                     mode: typeof(tbc.stores[i]) != 'undefined'  ? 'remote' : 'local',
27784                     editable : false,
27785                     triggerAction: 'all',
27786                     emptyText:'Select',
27787                     selectOnFocus:true,
27788                     width: item.width ? item.width  : 130,
27789                     listeners : {
27790                         'select': function(c, r, i) {
27791                             if (c.stylename) {
27792                                 tb.selectedNode.style[c.stylename] =  r.get('val');
27793                                 return;
27794                             }
27795                             tb.selectedNode.setAttribute(c.attrname, r.get('val'));
27796                         }
27797                     }
27798
27799                 }));
27800                 continue;
27801                     
27802                  
27803                 
27804                 tb.addField( new Roo.form.TextField({
27805                     name: i,
27806                     width: 100,
27807                     //allowBlank:false,
27808                     value: ''
27809                 }));
27810                 continue;
27811             }
27812             tb.addField( new Roo.form.TextField({
27813                 name: '-roo-edit-' + i,
27814                 attrname : i,
27815                 
27816                 width: item.width,
27817                 //allowBlank:true,
27818                 value: '',
27819                 listeners: {
27820                     'change' : function(f, nv, ov) {
27821                         tb.selectedNode.setAttribute(f.attrname, nv);
27822                     }
27823                 }
27824             }));
27825              
27826         }
27827         tb.addFill();
27828         var _this = this;
27829         tb.addButton( {
27830             text: 'Remove Tag',
27831     
27832             listeners : {
27833                 click : function ()
27834                 {
27835                     // remove
27836                     // undo does not work.
27837                      
27838                     var sn = tb.selectedNode;
27839                     
27840                     var pn = sn.parentNode;
27841                     
27842                     var stn =  sn.childNodes[0];
27843                     var en = sn.childNodes[sn.childNodes.length - 1 ];
27844                     while (sn.childNodes.length) {
27845                         var node = sn.childNodes[0];
27846                         sn.removeChild(node);
27847                         //Roo.log(node);
27848                         pn.insertBefore(node, sn);
27849                         
27850                     }
27851                     pn.removeChild(sn);
27852                     var range = editorcore.createRange();
27853         
27854                     range.setStart(stn,0);
27855                     range.setEnd(en,0); //????
27856                     //range.selectNode(sel);
27857                     
27858                     
27859                     var selection = editorcore.getSelection();
27860                     selection.removeAllRanges();
27861                     selection.addRange(range);
27862                     
27863                     
27864                     
27865                     //_this.updateToolbar(null, null, pn);
27866                     _this.updateToolbar(null, null, null);
27867                     _this.footDisp.dom.innerHTML = ''; 
27868                 }
27869             }
27870             
27871                     
27872                 
27873             
27874         });
27875         
27876         
27877         tb.el.on('click', function(e){
27878             e.preventDefault(); // what does this do?
27879         });
27880         tb.el.setVisibilityMode( Roo.Element.DISPLAY);
27881         tb.el.hide();
27882         tb.name = nm;
27883         // dont need to disable them... as they will get hidden
27884         return tb;
27885          
27886         
27887     },
27888     buildFooter : function()
27889     {
27890         
27891         var fel = this.editor.wrap.createChild();
27892         this.footer = new Roo.Toolbar(fel);
27893         // toolbar has scrolly on left / right?
27894         var footDisp= new Roo.Toolbar.Fill();
27895         var _t = this;
27896         this.footer.add(
27897             {
27898                 text : '&lt;',
27899                 xtype: 'Button',
27900                 handler : function() {
27901                     _t.footDisp.scrollTo('left',0,true)
27902                 }
27903             }
27904         );
27905         this.footer.add( footDisp );
27906         this.footer.add( 
27907             {
27908                 text : '&gt;',
27909                 xtype: 'Button',
27910                 handler : function() {
27911                     // no animation..
27912                     _t.footDisp.select('span').last().scrollIntoView(_t.footDisp,true);
27913                 }
27914             }
27915         );
27916         var fel = Roo.get(footDisp.el);
27917         fel.addClass('x-editor-context');
27918         this.footDispWrap = fel; 
27919         this.footDispWrap.overflow  = 'hidden';
27920         
27921         this.footDisp = fel.createChild();
27922         this.footDispWrap.on('click', this.onContextClick, this)
27923         
27924         
27925     },
27926     onContextClick : function (ev,dom)
27927     {
27928         ev.preventDefault();
27929         var  cn = dom.className;
27930         //Roo.log(cn);
27931         if (!cn.match(/x-ed-loc-/)) {
27932             return;
27933         }
27934         var n = cn.split('-').pop();
27935         var ans = this.footerEls;
27936         var sel = ans[n];
27937         
27938          // pick
27939         var range = this.editorcore.createRange();
27940         
27941         range.selectNodeContents(sel);
27942         //range.selectNode(sel);
27943         
27944         
27945         var selection = this.editorcore.getSelection();
27946         selection.removeAllRanges();
27947         selection.addRange(range);
27948         
27949         
27950         
27951         this.updateToolbar(null, null, sel);
27952         
27953         
27954     }
27955     
27956     
27957     
27958     
27959     
27960 });
27961
27962
27963
27964
27965
27966 /*
27967  * Based on:
27968  * Ext JS Library 1.1.1
27969  * Copyright(c) 2006-2007, Ext JS, LLC.
27970  *
27971  * Originally Released Under LGPL - original licence link has changed is not relivant.
27972  *
27973  * Fork - LGPL
27974  * <script type="text/javascript">
27975  */
27976  
27977 /**
27978  * @class Roo.form.BasicForm
27979  * @extends Roo.util.Observable
27980  * Supplies the functionality to do "actions" on forms and initialize Roo.form.Field types on existing markup.
27981  * @constructor
27982  * @param {String/HTMLElement/Roo.Element} el The form element or its id
27983  * @param {Object} config Configuration options
27984  */
27985 Roo.form.BasicForm = function(el, config){
27986     this.allItems = [];
27987     this.childForms = [];
27988     Roo.apply(this, config);
27989     /*
27990      * The Roo.form.Field items in this form.
27991      * @type MixedCollection
27992      */
27993      
27994      
27995     this.items = new Roo.util.MixedCollection(false, function(o){
27996         return o.id || (o.id = Roo.id());
27997     });
27998     this.addEvents({
27999         /**
28000          * @event beforeaction
28001          * Fires before any action is performed. Return false to cancel the action.
28002          * @param {Form} this
28003          * @param {Action} action The action to be performed
28004          */
28005         beforeaction: true,
28006         /**
28007          * @event actionfailed
28008          * Fires when an action fails.
28009          * @param {Form} this
28010          * @param {Action} action The action that failed
28011          */
28012         actionfailed : true,
28013         /**
28014          * @event actioncomplete
28015          * Fires when an action is completed.
28016          * @param {Form} this
28017          * @param {Action} action The action that completed
28018          */
28019         actioncomplete : true
28020     });
28021     if(el){
28022         this.initEl(el);
28023     }
28024     Roo.form.BasicForm.superclass.constructor.call(this);
28025 };
28026
28027 Roo.extend(Roo.form.BasicForm, Roo.util.Observable, {
28028     /**
28029      * @cfg {String} method
28030      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
28031      */
28032     /**
28033      * @cfg {DataReader} reader
28034      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing "load" actions.
28035      * This is optional as there is built-in support for processing JSON.
28036      */
28037     /**
28038      * @cfg {DataReader} errorReader
28039      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on "submit" actions.
28040      * This is completely optional as there is built-in support for processing JSON.
28041      */
28042     /**
28043      * @cfg {String} url
28044      * The URL to use for form actions if one isn't supplied in the action options.
28045      */
28046     /**
28047      * @cfg {Boolean} fileUpload
28048      * Set to true if this form is a file upload.
28049      */
28050      
28051     /**
28052      * @cfg {Object} baseParams
28053      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
28054      */
28055      /**
28056      
28057     /**
28058      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
28059      */
28060     timeout: 30,
28061
28062     // private
28063     activeAction : null,
28064
28065     /**
28066      * @cfg {Boolean} trackResetOnLoad If set to true, form.reset() resets to the last loaded
28067      * or setValues() data instead of when the form was first created.
28068      */
28069     trackResetOnLoad : false,
28070     
28071     
28072     /**
28073      * childForms - used for multi-tab forms
28074      * @type {Array}
28075      */
28076     childForms : false,
28077     
28078     /**
28079      * allItems - full list of fields.
28080      * @type {Array}
28081      */
28082     allItems : false,
28083     
28084     /**
28085      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
28086      * element by passing it or its id or mask the form itself by passing in true.
28087      * @type Mixed
28088      */
28089     waitMsgTarget : false,
28090
28091     // private
28092     initEl : function(el){
28093         this.el = Roo.get(el);
28094         this.id = this.el.id || Roo.id();
28095         this.el.on('submit', this.onSubmit, this);
28096         this.el.addClass('x-form');
28097     },
28098
28099     // private
28100     onSubmit : function(e){
28101         e.stopEvent();
28102     },
28103
28104     /**
28105      * Returns true if client-side validation on the form is successful.
28106      * @return Boolean
28107      */
28108     isValid : function(){
28109         var valid = true;
28110         this.items.each(function(f){
28111            if(!f.validate()){
28112                valid = false;
28113            }
28114         });
28115         return valid;
28116     },
28117
28118     /**
28119      * Returns true if any fields in this form have changed since their original load.
28120      * @return Boolean
28121      */
28122     isDirty : function(){
28123         var dirty = false;
28124         this.items.each(function(f){
28125            if(f.isDirty()){
28126                dirty = true;
28127                return false;
28128            }
28129         });
28130         return dirty;
28131     },
28132
28133     /**
28134      * Performs a predefined action (submit or load) or custom actions you define on this form.
28135      * @param {String} actionName The name of the action type
28136      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
28137      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
28138      * accept other config options):
28139      * <pre>
28140 Property          Type             Description
28141 ----------------  ---------------  ----------------------------------------------------------------------------------
28142 url               String           The url for the action (defaults to the form's url)
28143 method            String           The form method to use (defaults to the form's method, or POST if not defined)
28144 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
28145 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
28146                                    validate the form on the client (defaults to false)
28147      * </pre>
28148      * @return {BasicForm} this
28149      */
28150     doAction : function(action, options){
28151         if(typeof action == 'string'){
28152             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
28153         }
28154         if(this.fireEvent('beforeaction', this, action) !== false){
28155             this.beforeAction(action);
28156             action.run.defer(100, action);
28157         }
28158         return this;
28159     },
28160
28161     /**
28162      * Shortcut to do a submit action.
28163      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
28164      * @return {BasicForm} this
28165      */
28166     submit : function(options){
28167         this.doAction('submit', options);
28168         return this;
28169     },
28170
28171     /**
28172      * Shortcut to do a load action.
28173      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
28174      * @return {BasicForm} this
28175      */
28176     load : function(options){
28177         this.doAction('load', options);
28178         return this;
28179     },
28180
28181     /**
28182      * Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block.
28183      * @param {Record} record The record to edit
28184      * @return {BasicForm} this
28185      */
28186     updateRecord : function(record){
28187         record.beginEdit();
28188         var fs = record.fields;
28189         fs.each(function(f){
28190             var field = this.findField(f.name);
28191             if(field){
28192                 record.set(f.name, field.getValue());
28193             }
28194         }, this);
28195         record.endEdit();
28196         return this;
28197     },
28198
28199     /**
28200      * Loads an Roo.data.Record into this form.
28201      * @param {Record} record The record to load
28202      * @return {BasicForm} this
28203      */
28204     loadRecord : function(record){
28205         this.setValues(record.data);
28206         return this;
28207     },
28208
28209     // private
28210     beforeAction : function(action){
28211         var o = action.options;
28212         
28213        
28214         if(this.waitMsgTarget === true){
28215             this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
28216         }else if(this.waitMsgTarget){
28217             this.waitMsgTarget = Roo.get(this.waitMsgTarget);
28218             this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
28219         }else {
28220             Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
28221         }
28222          
28223     },
28224
28225     // private
28226     afterAction : function(action, success){
28227         this.activeAction = null;
28228         var o = action.options;
28229         
28230         if(this.waitMsgTarget === true){
28231             this.el.unmask();
28232         }else if(this.waitMsgTarget){
28233             this.waitMsgTarget.unmask();
28234         }else{
28235             Roo.MessageBox.updateProgress(1);
28236             Roo.MessageBox.hide();
28237         }
28238          
28239         if(success){
28240             if(o.reset){
28241                 this.reset();
28242             }
28243             Roo.callback(o.success, o.scope, [this, action]);
28244             this.fireEvent('actioncomplete', this, action);
28245             
28246         }else{
28247             
28248             // failure condition..
28249             // we have a scenario where updates need confirming.
28250             // eg. if a locking scenario exists..
28251             // we look for { errors : { needs_confirm : true }} in the response.
28252             if (
28253                 (typeof(action.result) != 'undefined')  &&
28254                 (typeof(action.result.errors) != 'undefined')  &&
28255                 (typeof(action.result.errors.needs_confirm) != 'undefined')
28256            ){
28257                 var _t = this;
28258                 Roo.MessageBox.confirm(
28259                     "Change requires confirmation",
28260                     action.result.errorMsg,
28261                     function(r) {
28262                         if (r != 'yes') {
28263                             return;
28264                         }
28265                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
28266                     }
28267                     
28268                 );
28269                 
28270                 
28271                 
28272                 return;
28273             }
28274             
28275             Roo.callback(o.failure, o.scope, [this, action]);
28276             // show an error message if no failed handler is set..
28277             if (!this.hasListener('actionfailed')) {
28278                 Roo.MessageBox.alert("Error",
28279                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
28280                         action.result.errorMsg :
28281                         "Saving Failed, please check your entries or try again"
28282                 );
28283             }
28284             
28285             this.fireEvent('actionfailed', this, action);
28286         }
28287         
28288     },
28289
28290     /**
28291      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
28292      * @param {String} id The value to search for
28293      * @return Field
28294      */
28295     findField : function(id){
28296         var field = this.items.get(id);
28297         if(!field){
28298             this.items.each(function(f){
28299                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
28300                     field = f;
28301                     return false;
28302                 }
28303             });
28304         }
28305         return field || null;
28306     },
28307
28308     /**
28309      * Add a secondary form to this one, 
28310      * Used to provide tabbed forms. One form is primary, with hidden values 
28311      * which mirror the elements from the other forms.
28312      * 
28313      * @param {Roo.form.Form} form to add.
28314      * 
28315      */
28316     addForm : function(form)
28317     {
28318        
28319         if (this.childForms.indexOf(form) > -1) {
28320             // already added..
28321             return;
28322         }
28323         this.childForms.push(form);
28324         var n = '';
28325         Roo.each(form.allItems, function (fe) {
28326             
28327             n = typeof(fe.getName) == 'undefined' ? fe.name : fe.getName();
28328             if (this.findField(n)) { // already added..
28329                 return;
28330             }
28331             var add = new Roo.form.Hidden({
28332                 name : n
28333             });
28334             add.render(this.el);
28335             
28336             this.add( add );
28337         }, this);
28338         
28339     },
28340     /**
28341      * Mark fields in this form invalid in bulk.
28342      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
28343      * @return {BasicForm} this
28344      */
28345     markInvalid : function(errors){
28346         if(errors instanceof Array){
28347             for(var i = 0, len = errors.length; i < len; i++){
28348                 var fieldError = errors[i];
28349                 var f = this.findField(fieldError.id);
28350                 if(f){
28351                     f.markInvalid(fieldError.msg);
28352                 }
28353             }
28354         }else{
28355             var field, id;
28356             for(id in errors){
28357                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
28358                     field.markInvalid(errors[id]);
28359                 }
28360             }
28361         }
28362         Roo.each(this.childForms || [], function (f) {
28363             f.markInvalid(errors);
28364         });
28365         
28366         return this;
28367     },
28368
28369     /**
28370      * Set values for fields in this form in bulk.
28371      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
28372      * @return {BasicForm} this
28373      */
28374     setValues : function(values){
28375         if(values instanceof Array){ // array of objects
28376             for(var i = 0, len = values.length; i < len; i++){
28377                 var v = values[i];
28378                 var f = this.findField(v.id);
28379                 if(f){
28380                     f.setValue(v.value);
28381                     if(this.trackResetOnLoad){
28382                         f.originalValue = f.getValue();
28383                     }
28384                 }
28385             }
28386         }else{ // object hash
28387             var field, id;
28388             for(id in values){
28389                 if(typeof values[id] != 'function' && (field = this.findField(id))){
28390                     
28391                     if (field.setFromData && 
28392                         field.valueField && 
28393                         field.displayField &&
28394                         // combos' with local stores can 
28395                         // be queried via setValue()
28396                         // to set their value..
28397                         (field.store && !field.store.isLocal)
28398                         ) {
28399                         // it's a combo
28400                         var sd = { };
28401                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
28402                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
28403                         field.setFromData(sd);
28404                         
28405                     } else {
28406                         field.setValue(values[id]);
28407                     }
28408                     
28409                     
28410                     if(this.trackResetOnLoad){
28411                         field.originalValue = field.getValue();
28412                     }
28413                 }
28414             }
28415         }
28416          
28417         Roo.each(this.childForms || [], function (f) {
28418             f.setValues(values);
28419         });
28420                 
28421         return this;
28422     },
28423
28424     /**
28425      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
28426      * they are returned as an array.
28427      * @param {Boolean} asString
28428      * @return {Object}
28429      */
28430     getValues : function(asString){
28431         if (this.childForms) {
28432             // copy values from the child forms
28433             Roo.each(this.childForms, function (f) {
28434                 this.setValues(f.getValues());
28435             }, this);
28436         }
28437         
28438         
28439         
28440         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
28441         if(asString === true){
28442             return fs;
28443         }
28444         return Roo.urlDecode(fs);
28445     },
28446     
28447     /**
28448      * Returns the fields in this form as an object with key/value pairs. 
28449      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
28450      * @return {Object}
28451      */
28452     getFieldValues : function(with_hidden)
28453     {
28454         if (this.childForms) {
28455             // copy values from the child forms
28456             // should this call getFieldValues - probably not as we do not currently copy
28457             // hidden fields when we generate..
28458             Roo.each(this.childForms, function (f) {
28459                 this.setValues(f.getValues());
28460             }, this);
28461         }
28462         
28463         var ret = {};
28464         this.items.each(function(f){
28465             if (!f.getName()) {
28466                 return;
28467             }
28468             var v = f.getValue();
28469             if (f.inputType =='radio') {
28470                 if (typeof(ret[f.getName()]) == 'undefined') {
28471                     ret[f.getName()] = ''; // empty..
28472                 }
28473                 
28474                 if (!f.el.dom.checked) {
28475                     return;
28476                     
28477                 }
28478                 v = f.el.dom.value;
28479                 
28480             }
28481             
28482             // not sure if this supported any more..
28483             if ((typeof(v) == 'object') && f.getRawValue) {
28484                 v = f.getRawValue() ; // dates..
28485             }
28486             // combo boxes where name != hiddenName...
28487             if (f.name != f.getName()) {
28488                 ret[f.name] = f.getRawValue();
28489             }
28490             ret[f.getName()] = v;
28491         });
28492         
28493         return ret;
28494     },
28495
28496     /**
28497      * Clears all invalid messages in this form.
28498      * @return {BasicForm} this
28499      */
28500     clearInvalid : function(){
28501         this.items.each(function(f){
28502            f.clearInvalid();
28503         });
28504         
28505         Roo.each(this.childForms || [], function (f) {
28506             f.clearInvalid();
28507         });
28508         
28509         
28510         return this;
28511     },
28512
28513     /**
28514      * Resets this form.
28515      * @return {BasicForm} this
28516      */
28517     reset : function(){
28518         this.items.each(function(f){
28519             f.reset();
28520         });
28521         
28522         Roo.each(this.childForms || [], function (f) {
28523             f.reset();
28524         });
28525        
28526         
28527         return this;
28528     },
28529
28530     /**
28531      * Add Roo.form components to this form.
28532      * @param {Field} field1
28533      * @param {Field} field2 (optional)
28534      * @param {Field} etc (optional)
28535      * @return {BasicForm} this
28536      */
28537     add : function(){
28538         this.items.addAll(Array.prototype.slice.call(arguments, 0));
28539         return this;
28540     },
28541
28542
28543     /**
28544      * Removes a field from the items collection (does NOT remove its markup).
28545      * @param {Field} field
28546      * @return {BasicForm} this
28547      */
28548     remove : function(field){
28549         this.items.remove(field);
28550         return this;
28551     },
28552
28553     /**
28554      * Looks at the fields in this form, checks them for an id attribute,
28555      * and calls applyTo on the existing dom element with that id.
28556      * @return {BasicForm} this
28557      */
28558     render : function(){
28559         this.items.each(function(f){
28560             if(f.isFormField && !f.rendered && document.getElementById(f.id)){ // if the element exists
28561                 f.applyTo(f.id);
28562             }
28563         });
28564         return this;
28565     },
28566
28567     /**
28568      * Calls {@link Ext#apply} for all fields in this form with the passed object.
28569      * @param {Object} values
28570      * @return {BasicForm} this
28571      */
28572     applyToFields : function(o){
28573         this.items.each(function(f){
28574            Roo.apply(f, o);
28575         });
28576         return this;
28577     },
28578
28579     /**
28580      * Calls {@link Ext#applyIf} for all field in this form with the passed object.
28581      * @param {Object} values
28582      * @return {BasicForm} this
28583      */
28584     applyIfToFields : function(o){
28585         this.items.each(function(f){
28586            Roo.applyIf(f, o);
28587         });
28588         return this;
28589     }
28590 });
28591
28592 // back compat
28593 Roo.BasicForm = Roo.form.BasicForm;/*
28594  * Based on:
28595  * Ext JS Library 1.1.1
28596  * Copyright(c) 2006-2007, Ext JS, LLC.
28597  *
28598  * Originally Released Under LGPL - original licence link has changed is not relivant.
28599  *
28600  * Fork - LGPL
28601  * <script type="text/javascript">
28602  */
28603
28604 /**
28605  * @class Roo.form.Form
28606  * @extends Roo.form.BasicForm
28607  * Adds the ability to dynamically render forms with JavaScript to {@link Roo.form.BasicForm}.
28608  * @constructor
28609  * @param {Object} config Configuration options
28610  */
28611 Roo.form.Form = function(config){
28612     var xitems =  [];
28613     if (config.items) {
28614         xitems = config.items;
28615         delete config.items;
28616     }
28617    
28618     
28619     Roo.form.Form.superclass.constructor.call(this, null, config);
28620     this.url = this.url || this.action;
28621     if(!this.root){
28622         this.root = new Roo.form.Layout(Roo.applyIf({
28623             id: Roo.id()
28624         }, config));
28625     }
28626     this.active = this.root;
28627     /**
28628      * Array of all the buttons that have been added to this form via {@link addButton}
28629      * @type Array
28630      */
28631     this.buttons = [];
28632     this.allItems = [];
28633     this.addEvents({
28634         /**
28635          * @event clientvalidation
28636          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
28637          * @param {Form} this
28638          * @param {Boolean} valid true if the form has passed client-side validation
28639          */
28640         clientvalidation: true,
28641         /**
28642          * @event rendered
28643          * Fires when the form is rendered
28644          * @param {Roo.form.Form} form
28645          */
28646         rendered : true
28647     });
28648     
28649     if (this.progressUrl) {
28650             // push a hidden field onto the list of fields..
28651             this.addxtype( {
28652                     xns: Roo.form, 
28653                     xtype : 'Hidden', 
28654                     name : 'UPLOAD_IDENTIFIER' 
28655             });
28656         }
28657         
28658     
28659     Roo.each(xitems, this.addxtype, this);
28660     
28661     
28662     
28663 };
28664
28665 Roo.extend(Roo.form.Form, Roo.form.BasicForm, {
28666     /**
28667      * @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
28668      */
28669     /**
28670      * @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
28671      */
28672     /**
28673      * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "center")
28674      */
28675     buttonAlign:'center',
28676
28677     /**
28678      * @cfg {Number} minButtonWidth Minimum width of all buttons in pixels (defaults to 75)
28679      */
28680     minButtonWidth:75,
28681
28682     /**
28683      * @cfg {String} labelAlign Valid values are "left," "top" and "right" (defaults to "left").
28684      * This property cascades to child containers if not set.
28685      */
28686     labelAlign:'left',
28687
28688     /**
28689      * @cfg {Boolean} monitorValid If true the form monitors its valid state <b>client-side</b> and
28690      * fires a looping event with that state. This is required to bind buttons to the valid
28691      * state using the config value formBind:true on the button.
28692      */
28693     monitorValid : false,
28694
28695     /**
28696      * @cfg {Number} monitorPoll The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)
28697      */
28698     monitorPoll : 200,
28699     
28700     /**
28701      * @cfg {String} progressUrl - Url to return progress data 
28702      */
28703     
28704     progressUrl : false,
28705   
28706     /**
28707      * Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the
28708      * fields are added and the column is closed. If no fields are passed the column remains open
28709      * until end() is called.
28710      * @param {Object} config The config to pass to the column
28711      * @param {Field} field1 (optional)
28712      * @param {Field} field2 (optional)
28713      * @param {Field} etc (optional)
28714      * @return Column The column container object
28715      */
28716     column : function(c){
28717         var col = new Roo.form.Column(c);
28718         this.start(col);
28719         if(arguments.length > 1){ // duplicate code required because of Opera
28720             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
28721             this.end();
28722         }
28723         return col;
28724     },
28725
28726     /**
28727      * Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the
28728      * fields are added and the fieldset is closed. If no fields are passed the fieldset remains open
28729      * until end() is called.
28730      * @param {Object} config The config to pass to the fieldset
28731      * @param {Field} field1 (optional)
28732      * @param {Field} field2 (optional)
28733      * @param {Field} etc (optional)
28734      * @return FieldSet The fieldset container object
28735      */
28736     fieldset : function(c){
28737         var fs = new Roo.form.FieldSet(c);
28738         this.start(fs);
28739         if(arguments.length > 1){ // duplicate code required because of Opera
28740             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
28741             this.end();
28742         }
28743         return fs;
28744     },
28745
28746     /**
28747      * Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the
28748      * fields are added and the container is closed. If no fields are passed the container remains open
28749      * until end() is called.
28750      * @param {Object} config The config to pass to the Layout
28751      * @param {Field} field1 (optional)
28752      * @param {Field} field2 (optional)
28753      * @param {Field} etc (optional)
28754      * @return Layout The container object
28755      */
28756     container : function(c){
28757         var l = new Roo.form.Layout(c);
28758         this.start(l);
28759         if(arguments.length > 1){ // duplicate code required because of Opera
28760             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
28761             this.end();
28762         }
28763         return l;
28764     },
28765
28766     /**
28767      * Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass.
28768      * @param {Object} container A Roo.form.Layout or subclass of Layout
28769      * @return {Form} this
28770      */
28771     start : function(c){
28772         // cascade label info
28773         Roo.applyIf(c, {'labelAlign': this.active.labelAlign, 'labelWidth': this.active.labelWidth, 'itemCls': this.active.itemCls});
28774         this.active.stack.push(c);
28775         c.ownerCt = this.active;
28776         this.active = c;
28777         return this;
28778     },
28779
28780     /**
28781      * Closes the current open container
28782      * @return {Form} this
28783      */
28784     end : function(){
28785         if(this.active == this.root){
28786             return this;
28787         }
28788         this.active = this.active.ownerCt;
28789         return this;
28790     },
28791
28792     /**
28793      * Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method
28794      * can also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display
28795      * as the label of the field.
28796      * @param {Field} field1
28797      * @param {Field} field2 (optional)
28798      * @param {Field} etc. (optional)
28799      * @return {Form} this
28800      */
28801     add : function(){
28802         this.active.stack.push.apply(this.active.stack, arguments);
28803         this.allItems.push.apply(this.allItems,arguments);
28804         var r = [];
28805         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
28806             if(a[i].isFormField){
28807                 r.push(a[i]);
28808             }
28809         }
28810         if(r.length > 0){
28811             Roo.form.Form.superclass.add.apply(this, r);
28812         }
28813         return this;
28814     },
28815     
28816
28817     
28818     
28819     
28820      /**
28821      * Find any element that has been added to a form, using it's ID or name
28822      * This can include framesets, columns etc. along with regular fields..
28823      * @param {String} id - id or name to find.
28824      
28825      * @return {Element} e - or false if nothing found.
28826      */
28827     findbyId : function(id)
28828     {
28829         var ret = false;
28830         if (!id) {
28831             return ret;
28832         }
28833         Roo.each(this.allItems, function(f){
28834             if (f.id == id || f.name == id ){
28835                 ret = f;
28836                 return false;
28837             }
28838         });
28839         return ret;
28840     },
28841
28842     
28843     
28844     /**
28845      * Render this form into the passed container. This should only be called once!
28846      * @param {String/HTMLElement/Element} container The element this component should be rendered into
28847      * @return {Form} this
28848      */
28849     render : function(ct)
28850     {
28851         
28852         
28853         
28854         ct = Roo.get(ct);
28855         var o = this.autoCreate || {
28856             tag: 'form',
28857             method : this.method || 'POST',
28858             id : this.id || Roo.id()
28859         };
28860         this.initEl(ct.createChild(o));
28861
28862         this.root.render(this.el);
28863         
28864        
28865              
28866         this.items.each(function(f){
28867             f.render('x-form-el-'+f.id);
28868         });
28869
28870         if(this.buttons.length > 0){
28871             // tables are required to maintain order and for correct IE layout
28872             var tb = this.el.createChild({cls:'x-form-btns-ct', cn: {
28873                 cls:"x-form-btns x-form-btns-"+this.buttonAlign,
28874                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
28875             }}, null, true);
28876             var tr = tb.getElementsByTagName('tr')[0];
28877             for(var i = 0, len = this.buttons.length; i < len; i++) {
28878                 var b = this.buttons[i];
28879                 var td = document.createElement('td');
28880                 td.className = 'x-form-btn-td';
28881                 b.render(tr.appendChild(td));
28882             }
28883         }
28884         if(this.monitorValid){ // initialize after render
28885             this.startMonitoring();
28886         }
28887         this.fireEvent('rendered', this);
28888         return this;
28889     },
28890
28891     /**
28892      * Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered.
28893      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
28894      * object or a valid Roo.DomHelper element config
28895      * @param {Function} handler The function called when the button is clicked
28896      * @param {Object} scope (optional) The scope of the handler function
28897      * @return {Roo.Button}
28898      */
28899     addButton : function(config, handler, scope){
28900         var bc = {
28901             handler: handler,
28902             scope: scope,
28903             minWidth: this.minButtonWidth,
28904             hideParent:true
28905         };
28906         if(typeof config == "string"){
28907             bc.text = config;
28908         }else{
28909             Roo.apply(bc, config);
28910         }
28911         var btn = new Roo.Button(null, bc);
28912         this.buttons.push(btn);
28913         return btn;
28914     },
28915
28916      /**
28917      * Adds a series of form elements (using the xtype property as the factory method.
28918      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)
28919      * @param {Object} config 
28920      */
28921     
28922     addxtype : function()
28923     {
28924         var ar = Array.prototype.slice.call(arguments, 0);
28925         var ret = false;
28926         for(var i = 0; i < ar.length; i++) {
28927             if (!ar[i]) {
28928                 continue; // skip -- if this happends something invalid got sent, we 
28929                 // should ignore it, as basically that interface element will not show up
28930                 // and that should be pretty obvious!!
28931             }
28932             
28933             if (Roo.form[ar[i].xtype]) {
28934                 ar[i].form = this;
28935                 var fe = Roo.factory(ar[i], Roo.form);
28936                 if (!ret) {
28937                     ret = fe;
28938                 }
28939                 fe.form = this;
28940                 if (fe.store) {
28941                     fe.store.form = this;
28942                 }
28943                 if (fe.isLayout) {  
28944                          
28945                     this.start(fe);
28946                     this.allItems.push(fe);
28947                     if (fe.items && fe.addxtype) {
28948                         fe.addxtype.apply(fe, fe.items);
28949                         delete fe.items;
28950                     }
28951                      this.end();
28952                     continue;
28953                 }
28954                 
28955                 
28956                  
28957                 this.add(fe);
28958               //  console.log('adding ' + ar[i].xtype);
28959             }
28960             if (ar[i].xtype == 'Button') {  
28961                 //console.log('adding button');
28962                 //console.log(ar[i]);
28963                 this.addButton(ar[i]);
28964                 this.allItems.push(fe);
28965                 continue;
28966             }
28967             
28968             if (ar[i].xtype == 'end') { // so we can add fieldsets... / layout etc.
28969                 alert('end is not supported on xtype any more, use items');
28970             //    this.end();
28971             //    //console.log('adding end');
28972             }
28973             
28974         }
28975         return ret;
28976     },
28977     
28978     /**
28979      * Starts monitoring of the valid state of this form. Usually this is done by passing the config
28980      * option "monitorValid"
28981      */
28982     startMonitoring : function(){
28983         if(!this.bound){
28984             this.bound = true;
28985             Roo.TaskMgr.start({
28986                 run : this.bindHandler,
28987                 interval : this.monitorPoll || 200,
28988                 scope: this
28989             });
28990         }
28991     },
28992
28993     /**
28994      * Stops monitoring of the valid state of this form
28995      */
28996     stopMonitoring : function(){
28997         this.bound = false;
28998     },
28999
29000     // private
29001     bindHandler : function(){
29002         if(!this.bound){
29003             return false; // stops binding
29004         }
29005         var valid = true;
29006         this.items.each(function(f){
29007             if(!f.isValid(true)){
29008                 valid = false;
29009                 return false;
29010             }
29011         });
29012         for(var i = 0, len = this.buttons.length; i < len; i++){
29013             var btn = this.buttons[i];
29014             if(btn.formBind === true && btn.disabled === valid){
29015                 btn.setDisabled(!valid);
29016             }
29017         }
29018         this.fireEvent('clientvalidation', this, valid);
29019     }
29020     
29021     
29022     
29023     
29024     
29025     
29026     
29027     
29028 });
29029
29030
29031 // back compat
29032 Roo.Form = Roo.form.Form;
29033 /*
29034  * Based on:
29035  * Ext JS Library 1.1.1
29036  * Copyright(c) 2006-2007, Ext JS, LLC.
29037  *
29038  * Originally Released Under LGPL - original licence link has changed is not relivant.
29039  *
29040  * Fork - LGPL
29041  * <script type="text/javascript">
29042  */
29043
29044 // as we use this in bootstrap.
29045 Roo.namespace('Roo.form');
29046  /**
29047  * @class Roo.form.Action
29048  * Internal Class used to handle form actions
29049  * @constructor
29050  * @param {Roo.form.BasicForm} el The form element or its id
29051  * @param {Object} config Configuration options
29052  */
29053
29054  
29055  
29056 // define the action interface
29057 Roo.form.Action = function(form, options){
29058     this.form = form;
29059     this.options = options || {};
29060 };
29061 /**
29062  * Client Validation Failed
29063  * @const 
29064  */
29065 Roo.form.Action.CLIENT_INVALID = 'client';
29066 /**
29067  * Server Validation Failed
29068  * @const 
29069  */
29070 Roo.form.Action.SERVER_INVALID = 'server';
29071  /**
29072  * Connect to Server Failed
29073  * @const 
29074  */
29075 Roo.form.Action.CONNECT_FAILURE = 'connect';
29076 /**
29077  * Reading Data from Server Failed
29078  * @const 
29079  */
29080 Roo.form.Action.LOAD_FAILURE = 'load';
29081
29082 Roo.form.Action.prototype = {
29083     type : 'default',
29084     failureType : undefined,
29085     response : undefined,
29086     result : undefined,
29087
29088     // interface method
29089     run : function(options){
29090
29091     },
29092
29093     // interface method
29094     success : function(response){
29095
29096     },
29097
29098     // interface method
29099     handleResponse : function(response){
29100
29101     },
29102
29103     // default connection failure
29104     failure : function(response){
29105         
29106         this.response = response;
29107         this.failureType = Roo.form.Action.CONNECT_FAILURE;
29108         this.form.afterAction(this, false);
29109     },
29110
29111     processResponse : function(response){
29112         this.response = response;
29113         if(!response.responseText){
29114             return true;
29115         }
29116         this.result = this.handleResponse(response);
29117         return this.result;
29118     },
29119
29120     // utility functions used internally
29121     getUrl : function(appendParams){
29122         var url = this.options.url || this.form.url || this.form.el.dom.action;
29123         if(appendParams){
29124             var p = this.getParams();
29125             if(p){
29126                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
29127             }
29128         }
29129         return url;
29130     },
29131
29132     getMethod : function(){
29133         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
29134     },
29135
29136     getParams : function(){
29137         var bp = this.form.baseParams;
29138         var p = this.options.params;
29139         if(p){
29140             if(typeof p == "object"){
29141                 p = Roo.urlEncode(Roo.applyIf(p, bp));
29142             }else if(typeof p == 'string' && bp){
29143                 p += '&' + Roo.urlEncode(bp);
29144             }
29145         }else if(bp){
29146             p = Roo.urlEncode(bp);
29147         }
29148         return p;
29149     },
29150
29151     createCallback : function(){
29152         return {
29153             success: this.success,
29154             failure: this.failure,
29155             scope: this,
29156             timeout: (this.form.timeout*1000),
29157             upload: this.form.fileUpload ? this.success : undefined
29158         };
29159     }
29160 };
29161
29162 Roo.form.Action.Submit = function(form, options){
29163     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
29164 };
29165
29166 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
29167     type : 'submit',
29168
29169     haveProgress : false,
29170     uploadComplete : false,
29171     
29172     // uploadProgress indicator.
29173     uploadProgress : function()
29174     {
29175         if (!this.form.progressUrl) {
29176             return;
29177         }
29178         
29179         if (!this.haveProgress) {
29180             Roo.MessageBox.progress("Uploading", "Uploading");
29181         }
29182         if (this.uploadComplete) {
29183            Roo.MessageBox.hide();
29184            return;
29185         }
29186         
29187         this.haveProgress = true;
29188    
29189         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
29190         
29191         var c = new Roo.data.Connection();
29192         c.request({
29193             url : this.form.progressUrl,
29194             params: {
29195                 id : uid
29196             },
29197             method: 'GET',
29198             success : function(req){
29199                //console.log(data);
29200                 var rdata = false;
29201                 var edata;
29202                 try  {
29203                    rdata = Roo.decode(req.responseText)
29204                 } catch (e) {
29205                     Roo.log("Invalid data from server..");
29206                     Roo.log(edata);
29207                     return;
29208                 }
29209                 if (!rdata || !rdata.success) {
29210                     Roo.log(rdata);
29211                     Roo.MessageBox.alert(Roo.encode(rdata));
29212                     return;
29213                 }
29214                 var data = rdata.data;
29215                 
29216                 if (this.uploadComplete) {
29217                    Roo.MessageBox.hide();
29218                    return;
29219                 }
29220                    
29221                 if (data){
29222                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
29223                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
29224                     );
29225                 }
29226                 this.uploadProgress.defer(2000,this);
29227             },
29228        
29229             failure: function(data) {
29230                 Roo.log('progress url failed ');
29231                 Roo.log(data);
29232             },
29233             scope : this
29234         });
29235            
29236     },
29237     
29238     
29239     run : function()
29240     {
29241         // run get Values on the form, so it syncs any secondary forms.
29242         this.form.getValues();
29243         
29244         var o = this.options;
29245         var method = this.getMethod();
29246         var isPost = method == 'POST';
29247         if(o.clientValidation === false || this.form.isValid()){
29248             
29249             if (this.form.progressUrl) {
29250                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
29251                     (new Date() * 1) + '' + Math.random());
29252                     
29253             } 
29254             
29255             
29256             Roo.Ajax.request(Roo.apply(this.createCallback(), {
29257                 form:this.form.el.dom,
29258                 url:this.getUrl(!isPost),
29259                 method: method,
29260                 params:isPost ? this.getParams() : null,
29261                 isUpload: this.form.fileUpload
29262             }));
29263             
29264             this.uploadProgress();
29265
29266         }else if (o.clientValidation !== false){ // client validation failed
29267             this.failureType = Roo.form.Action.CLIENT_INVALID;
29268             this.form.afterAction(this, false);
29269         }
29270     },
29271
29272     success : function(response)
29273     {
29274         this.uploadComplete= true;
29275         if (this.haveProgress) {
29276             Roo.MessageBox.hide();
29277         }
29278         
29279         
29280         var result = this.processResponse(response);
29281         if(result === true || result.success){
29282             this.form.afterAction(this, true);
29283             return;
29284         }
29285         if(result.errors){
29286             this.form.markInvalid(result.errors);
29287             this.failureType = Roo.form.Action.SERVER_INVALID;
29288         }
29289         this.form.afterAction(this, false);
29290     },
29291     failure : function(response)
29292     {
29293         this.uploadComplete= true;
29294         if (this.haveProgress) {
29295             Roo.MessageBox.hide();
29296         }
29297         
29298         this.response = response;
29299         this.failureType = Roo.form.Action.CONNECT_FAILURE;
29300         this.form.afterAction(this, false);
29301     },
29302     
29303     handleResponse : function(response){
29304         if(this.form.errorReader){
29305             var rs = this.form.errorReader.read(response);
29306             var errors = [];
29307             if(rs.records){
29308                 for(var i = 0, len = rs.records.length; i < len; i++) {
29309                     var r = rs.records[i];
29310                     errors[i] = r.data;
29311                 }
29312             }
29313             if(errors.length < 1){
29314                 errors = null;
29315             }
29316             return {
29317                 success : rs.success,
29318                 errors : errors
29319             };
29320         }
29321         var ret = false;
29322         try {
29323             ret = Roo.decode(response.responseText);
29324         } catch (e) {
29325             ret = {
29326                 success: false,
29327                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
29328                 errors : []
29329             };
29330         }
29331         return ret;
29332         
29333     }
29334 });
29335
29336
29337 Roo.form.Action.Load = function(form, options){
29338     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
29339     this.reader = this.form.reader;
29340 };
29341
29342 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
29343     type : 'load',
29344
29345     run : function(){
29346         
29347         Roo.Ajax.request(Roo.apply(
29348                 this.createCallback(), {
29349                     method:this.getMethod(),
29350                     url:this.getUrl(false),
29351                     params:this.getParams()
29352         }));
29353     },
29354
29355     success : function(response){
29356         
29357         var result = this.processResponse(response);
29358         if(result === true || !result.success || !result.data){
29359             this.failureType = Roo.form.Action.LOAD_FAILURE;
29360             this.form.afterAction(this, false);
29361             return;
29362         }
29363         this.form.clearInvalid();
29364         this.form.setValues(result.data);
29365         this.form.afterAction(this, true);
29366     },
29367
29368     handleResponse : function(response){
29369         if(this.form.reader){
29370             var rs = this.form.reader.read(response);
29371             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
29372             return {
29373                 success : rs.success,
29374                 data : data
29375             };
29376         }
29377         return Roo.decode(response.responseText);
29378     }
29379 });
29380
29381 Roo.form.Action.ACTION_TYPES = {
29382     'load' : Roo.form.Action.Load,
29383     'submit' : Roo.form.Action.Submit
29384 };/*
29385  * Based on:
29386  * Ext JS Library 1.1.1
29387  * Copyright(c) 2006-2007, Ext JS, LLC.
29388  *
29389  * Originally Released Under LGPL - original licence link has changed is not relivant.
29390  *
29391  * Fork - LGPL
29392  * <script type="text/javascript">
29393  */
29394  
29395 /**
29396  * @class Roo.form.Layout
29397  * @extends Roo.Component
29398  * Creates a container for layout and rendering of fields in an {@link Roo.form.Form}.
29399  * @constructor
29400  * @param {Object} config Configuration options
29401  */
29402 Roo.form.Layout = function(config){
29403     var xitems = [];
29404     if (config.items) {
29405         xitems = config.items;
29406         delete config.items;
29407     }
29408     Roo.form.Layout.superclass.constructor.call(this, config);
29409     this.stack = [];
29410     Roo.each(xitems, this.addxtype, this);
29411      
29412 };
29413
29414 Roo.extend(Roo.form.Layout, Roo.Component, {
29415     /**
29416      * @cfg {String/Object} autoCreate
29417      * A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})
29418      */
29419     /**
29420      * @cfg {String/Object/Function} style
29421      * A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
29422      * a function which returns such a specification.
29423      */
29424     /**
29425      * @cfg {String} labelAlign
29426      * Valid values are "left," "top" and "right" (defaults to "left")
29427      */
29428     /**
29429      * @cfg {Number} labelWidth
29430      * Fixed width in pixels of all field labels (defaults to undefined)
29431      */
29432     /**
29433      * @cfg {Boolean} clear
29434      * True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)
29435      */
29436     clear : true,
29437     /**
29438      * @cfg {String} labelSeparator
29439      * The separator to use after field labels (defaults to ':')
29440      */
29441     labelSeparator : ':',
29442     /**
29443      * @cfg {Boolean} hideLabels
29444      * True to suppress the display of field labels in this layout (defaults to false)
29445      */
29446     hideLabels : false,
29447
29448     // private
29449     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct'},
29450     
29451     isLayout : true,
29452     
29453     // private
29454     onRender : function(ct, position){
29455         if(this.el){ // from markup
29456             this.el = Roo.get(this.el);
29457         }else {  // generate
29458             var cfg = this.getAutoCreate();
29459             this.el = ct.createChild(cfg, position);
29460         }
29461         if(this.style){
29462             this.el.applyStyles(this.style);
29463         }
29464         if(this.labelAlign){
29465             this.el.addClass('x-form-label-'+this.labelAlign);
29466         }
29467         if(this.hideLabels){
29468             this.labelStyle = "display:none";
29469             this.elementStyle = "padding-left:0;";
29470         }else{
29471             if(typeof this.labelWidth == 'number'){
29472                 this.labelStyle = "width:"+this.labelWidth+"px;";
29473                 this.elementStyle = "padding-left:"+((this.labelWidth+(typeof this.labelPad == 'number' ? this.labelPad : 5))+'px')+";";
29474             }
29475             if(this.labelAlign == 'top'){
29476                 this.labelStyle = "width:auto;";
29477                 this.elementStyle = "padding-left:0;";
29478             }
29479         }
29480         var stack = this.stack;
29481         var slen = stack.length;
29482         if(slen > 0){
29483             if(!this.fieldTpl){
29484                 var t = new Roo.Template(
29485                     '<div class="x-form-item {5}">',
29486                         '<label for="{0}" style="{2}">{1}{4}</label>',
29487                         '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
29488                         '</div>',
29489                     '</div><div class="x-form-clear-left"></div>'
29490                 );
29491                 t.disableFormats = true;
29492                 t.compile();
29493                 Roo.form.Layout.prototype.fieldTpl = t;
29494             }
29495             for(var i = 0; i < slen; i++) {
29496                 if(stack[i].isFormField){
29497                     this.renderField(stack[i]);
29498                 }else{
29499                     this.renderComponent(stack[i]);
29500                 }
29501             }
29502         }
29503         if(this.clear){
29504             this.el.createChild({cls:'x-form-clear'});
29505         }
29506     },
29507
29508     // private
29509     renderField : function(f){
29510         f.fieldEl = Roo.get(this.fieldTpl.append(this.el, [
29511                f.id, //0
29512                f.fieldLabel, //1
29513                f.labelStyle||this.labelStyle||'', //2
29514                this.elementStyle||'', //3
29515                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator, //4
29516                f.itemCls||this.itemCls||''  //5
29517        ], true).getPrevSibling());
29518     },
29519
29520     // private
29521     renderComponent : function(c){
29522         c.render(c.isLayout ? this.el : this.el.createChild());    
29523     },
29524     /**
29525      * Adds a object form elements (using the xtype property as the factory method.)
29526      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column
29527      * @param {Object} config 
29528      */
29529     addxtype : function(o)
29530     {
29531         // create the lement.
29532         o.form = this.form;
29533         var fe = Roo.factory(o, Roo.form);
29534         this.form.allItems.push(fe);
29535         this.stack.push(fe);
29536         
29537         if (fe.isFormField) {
29538             this.form.items.add(fe);
29539         }
29540          
29541         return fe;
29542     }
29543 });
29544
29545 /**
29546  * @class Roo.form.Column
29547  * @extends Roo.form.Layout
29548  * Creates a column container for layout and rendering of fields in an {@link Roo.form.Form}.
29549  * @constructor
29550  * @param {Object} config Configuration options
29551  */
29552 Roo.form.Column = function(config){
29553     Roo.form.Column.superclass.constructor.call(this, config);
29554 };
29555
29556 Roo.extend(Roo.form.Column, Roo.form.Layout, {
29557     /**
29558      * @cfg {Number/String} width
29559      * The fixed width of the column in pixels or CSS value (defaults to "auto")
29560      */
29561     /**
29562      * @cfg {String/Object} autoCreate
29563      * A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})
29564      */
29565
29566     // private
29567     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-column'},
29568
29569     // private
29570     onRender : function(ct, position){
29571         Roo.form.Column.superclass.onRender.call(this, ct, position);
29572         if(this.width){
29573             this.el.setWidth(this.width);
29574         }
29575     }
29576 });
29577
29578
29579 /**
29580  * @class Roo.form.Row
29581  * @extends Roo.form.Layout
29582  * Creates a row container for layout and rendering of fields in an {@link Roo.form.Form}.
29583  * @constructor
29584  * @param {Object} config Configuration options
29585  */
29586
29587  
29588 Roo.form.Row = function(config){
29589     Roo.form.Row.superclass.constructor.call(this, config);
29590 };
29591  
29592 Roo.extend(Roo.form.Row, Roo.form.Layout, {
29593       /**
29594      * @cfg {Number/String} width
29595      * The fixed width of the column in pixels or CSS value (defaults to "auto")
29596      */
29597     /**
29598      * @cfg {Number/String} height
29599      * The fixed height of the column in pixels or CSS value (defaults to "auto")
29600      */
29601     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-row'},
29602     
29603     padWidth : 20,
29604     // private
29605     onRender : function(ct, position){
29606         //console.log('row render');
29607         if(!this.rowTpl){
29608             var t = new Roo.Template(
29609                 '<div class="x-form-item {5}" style="float:left;width:{6}px">',
29610                     '<label for="{0}" style="{2}">{1}{4}</label>',
29611                     '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
29612                     '</div>',
29613                 '</div>'
29614             );
29615             t.disableFormats = true;
29616             t.compile();
29617             Roo.form.Layout.prototype.rowTpl = t;
29618         }
29619         this.fieldTpl = this.rowTpl;
29620         
29621         //console.log('lw' + this.labelWidth +', la:' + this.labelAlign);
29622         var labelWidth = 100;
29623         
29624         if ((this.labelAlign != 'top')) {
29625             if (typeof this.labelWidth == 'number') {
29626                 labelWidth = this.labelWidth
29627             }
29628             this.padWidth =  20 + labelWidth;
29629             
29630         }
29631         
29632         Roo.form.Column.superclass.onRender.call(this, ct, position);
29633         if(this.width){
29634             this.el.setWidth(this.width);
29635         }
29636         if(this.height){
29637             this.el.setHeight(this.height);
29638         }
29639     },
29640     
29641     // private
29642     renderField : function(f){
29643         f.fieldEl = this.fieldTpl.append(this.el, [
29644                f.id, f.fieldLabel,
29645                f.labelStyle||this.labelStyle||'',
29646                this.elementStyle||'',
29647                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator,
29648                f.itemCls||this.itemCls||'',
29649                f.width ? f.width + this.padWidth : 160 + this.padWidth
29650        ],true);
29651     }
29652 });
29653  
29654
29655 /**
29656  * @class Roo.form.FieldSet
29657  * @extends Roo.form.Layout
29658  * Creates a fieldset container for layout and rendering of fields in an {@link Roo.form.Form}.
29659  * @constructor
29660  * @param {Object} config Configuration options
29661  */
29662 Roo.form.FieldSet = function(config){
29663     Roo.form.FieldSet.superclass.constructor.call(this, config);
29664 };
29665
29666 Roo.extend(Roo.form.FieldSet, Roo.form.Layout, {
29667     /**
29668      * @cfg {String} legend
29669      * The text to display as the legend for the FieldSet (defaults to '')
29670      */
29671     /**
29672      * @cfg {String/Object} autoCreate
29673      * A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})
29674      */
29675
29676     // private
29677     defaultAutoCreate : {tag: 'fieldset', cn: {tag:'legend'}},
29678
29679     // private
29680     onRender : function(ct, position){
29681         Roo.form.FieldSet.superclass.onRender.call(this, ct, position);
29682         if(this.legend){
29683             this.setLegend(this.legend);
29684         }
29685     },
29686
29687     // private
29688     setLegend : function(text){
29689         if(this.rendered){
29690             this.el.child('legend').update(text);
29691         }
29692     }
29693 });/*
29694  * Based on:
29695  * Ext JS Library 1.1.1
29696  * Copyright(c) 2006-2007, Ext JS, LLC.
29697  *
29698  * Originally Released Under LGPL - original licence link has changed is not relivant.
29699  *
29700  * Fork - LGPL
29701  * <script type="text/javascript">
29702  */
29703 /**
29704  * @class Roo.form.VTypes
29705  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
29706  * @singleton
29707  */
29708 Roo.form.VTypes = function(){
29709     // closure these in so they are only created once.
29710     var alpha = /^[a-zA-Z_]+$/;
29711     var alphanum = /^[a-zA-Z0-9_]+$/;
29712     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,4}$/;
29713     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
29714
29715     // All these messages and functions are configurable
29716     return {
29717         /**
29718          * The function used to validate email addresses
29719          * @param {String} value The email address
29720          */
29721         'email' : function(v){
29722             return email.test(v);
29723         },
29724         /**
29725          * The error text to display when the email validation function returns false
29726          * @type String
29727          */
29728         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
29729         /**
29730          * The keystroke filter mask to be applied on email input
29731          * @type RegExp
29732          */
29733         'emailMask' : /[a-z0-9_\.\-@]/i,
29734
29735         /**
29736          * The function used to validate URLs
29737          * @param {String} value The URL
29738          */
29739         'url' : function(v){
29740             return url.test(v);
29741         },
29742         /**
29743          * The error text to display when the url validation function returns false
29744          * @type String
29745          */
29746         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
29747         
29748         /**
29749          * The function used to validate alpha values
29750          * @param {String} value The value
29751          */
29752         'alpha' : function(v){
29753             return alpha.test(v);
29754         },
29755         /**
29756          * The error text to display when the alpha validation function returns false
29757          * @type String
29758          */
29759         'alphaText' : 'This field should only contain letters and _',
29760         /**
29761          * The keystroke filter mask to be applied on alpha input
29762          * @type RegExp
29763          */
29764         'alphaMask' : /[a-z_]/i,
29765
29766         /**
29767          * The function used to validate alphanumeric values
29768          * @param {String} value The value
29769          */
29770         'alphanum' : function(v){
29771             return alphanum.test(v);
29772         },
29773         /**
29774          * The error text to display when the alphanumeric validation function returns false
29775          * @type String
29776          */
29777         'alphanumText' : 'This field should only contain letters, numbers and _',
29778         /**
29779          * The keystroke filter mask to be applied on alphanumeric input
29780          * @type RegExp
29781          */
29782         'alphanumMask' : /[a-z0-9_]/i
29783     };
29784 }();//<script type="text/javascript">
29785
29786 /**
29787  * @class Roo.form.FCKeditor
29788  * @extends Roo.form.TextArea
29789  * Wrapper around the FCKEditor http://www.fckeditor.net
29790  * @constructor
29791  * Creates a new FCKeditor
29792  * @param {Object} config Configuration options
29793  */
29794 Roo.form.FCKeditor = function(config){
29795     Roo.form.FCKeditor.superclass.constructor.call(this, config);
29796     this.addEvents({
29797          /**
29798          * @event editorinit
29799          * Fired when the editor is initialized - you can add extra handlers here..
29800          * @param {FCKeditor} this
29801          * @param {Object} the FCK object.
29802          */
29803         editorinit : true
29804     });
29805     
29806     
29807 };
29808 Roo.form.FCKeditor.editors = { };
29809 Roo.extend(Roo.form.FCKeditor, Roo.form.TextArea,
29810 {
29811     //defaultAutoCreate : {
29812     //    tag : "textarea",style   : "width:100px;height:60px;" ,autocomplete    : "off"
29813     //},
29814     // private
29815     /**
29816      * @cfg {Object} fck options - see fck manual for details.
29817      */
29818     fckconfig : false,
29819     
29820     /**
29821      * @cfg {Object} fck toolbar set (Basic or Default)
29822      */
29823     toolbarSet : 'Basic',
29824     /**
29825      * @cfg {Object} fck BasePath
29826      */ 
29827     basePath : '/fckeditor/',
29828     
29829     
29830     frame : false,
29831     
29832     value : '',
29833     
29834    
29835     onRender : function(ct, position)
29836     {
29837         if(!this.el){
29838             this.defaultAutoCreate = {
29839                 tag: "textarea",
29840                 style:"width:300px;height:60px;",
29841                 autocomplete: "off"
29842             };
29843         }
29844         Roo.form.FCKeditor.superclass.onRender.call(this, ct, position);
29845         /*
29846         if(this.grow){
29847             this.textSizeEl = Roo.DomHelper.append(document.body, {tag: "pre", cls: "x-form-grow-sizer"});
29848             if(this.preventScrollbars){
29849                 this.el.setStyle("overflow", "hidden");
29850             }
29851             this.el.setHeight(this.growMin);
29852         }
29853         */
29854         //console.log('onrender' + this.getId() );
29855         Roo.form.FCKeditor.editors[this.getId()] = this;
29856          
29857
29858         this.replaceTextarea() ;
29859         
29860     },
29861     
29862     getEditor : function() {
29863         return this.fckEditor;
29864     },
29865     /**
29866      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
29867      * @param {Mixed} value The value to set
29868      */
29869     
29870     
29871     setValue : function(value)
29872     {
29873         //console.log('setValue: ' + value);
29874         
29875         if(typeof(value) == 'undefined') { // not sure why this is happending...
29876             return;
29877         }
29878         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
29879         
29880         //if(!this.el || !this.getEditor()) {
29881         //    this.value = value;
29882             //this.setValue.defer(100,this,[value]);    
29883         //    return;
29884         //} 
29885         
29886         if(!this.getEditor()) {
29887             return;
29888         }
29889         
29890         this.getEditor().SetData(value);
29891         
29892         //
29893
29894     },
29895
29896     /**
29897      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
29898      * @return {Mixed} value The field value
29899      */
29900     getValue : function()
29901     {
29902         
29903         if (this.frame && this.frame.dom.style.display == 'none') {
29904             return Roo.form.FCKeditor.superclass.getValue.call(this);
29905         }
29906         
29907         if(!this.el || !this.getEditor()) {
29908            
29909            // this.getValue.defer(100,this); 
29910             return this.value;
29911         }
29912        
29913         
29914         var value=this.getEditor().GetData();
29915         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
29916         return Roo.form.FCKeditor.superclass.getValue.call(this);
29917         
29918
29919     },
29920
29921     /**
29922      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
29923      * @return {Mixed} value The field value
29924      */
29925     getRawValue : function()
29926     {
29927         if (this.frame && this.frame.dom.style.display == 'none') {
29928             return Roo.form.FCKeditor.superclass.getRawValue.call(this);
29929         }
29930         
29931         if(!this.el || !this.getEditor()) {
29932             //this.getRawValue.defer(100,this); 
29933             return this.value;
29934             return;
29935         }
29936         
29937         
29938         
29939         var value=this.getEditor().GetData();
29940         Roo.form.FCKeditor.superclass.setRawValue.apply(this,[value]);
29941         return Roo.form.FCKeditor.superclass.getRawValue.call(this);
29942          
29943     },
29944     
29945     setSize : function(w,h) {
29946         
29947         
29948         
29949         //if (this.frame && this.frame.dom.style.display == 'none') {
29950         //    Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
29951         //    return;
29952         //}
29953         //if(!this.el || !this.getEditor()) {
29954         //    this.setSize.defer(100,this, [w,h]); 
29955         //    return;
29956         //}
29957         
29958         
29959         
29960         Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
29961         
29962         this.frame.dom.setAttribute('width', w);
29963         this.frame.dom.setAttribute('height', h);
29964         this.frame.setSize(w,h);
29965         
29966     },
29967     
29968     toggleSourceEdit : function(value) {
29969         
29970       
29971          
29972         this.el.dom.style.display = value ? '' : 'none';
29973         this.frame.dom.style.display = value ?  'none' : '';
29974         
29975     },
29976     
29977     
29978     focus: function(tag)
29979     {
29980         if (this.frame.dom.style.display == 'none') {
29981             return Roo.form.FCKeditor.superclass.focus.call(this);
29982         }
29983         if(!this.el || !this.getEditor()) {
29984             this.focus.defer(100,this, [tag]); 
29985             return;
29986         }
29987         
29988         
29989         
29990         
29991         var tgs = this.getEditor().EditorDocument.getElementsByTagName(tag);
29992         this.getEditor().Focus();
29993         if (tgs.length) {
29994             if (!this.getEditor().Selection.GetSelection()) {
29995                 this.focus.defer(100,this, [tag]); 
29996                 return;
29997             }
29998             
29999             
30000             var r = this.getEditor().EditorDocument.createRange();
30001             r.setStart(tgs[0],0);
30002             r.setEnd(tgs[0],0);
30003             this.getEditor().Selection.GetSelection().removeAllRanges();
30004             this.getEditor().Selection.GetSelection().addRange(r);
30005             this.getEditor().Focus();
30006         }
30007         
30008     },
30009     
30010     
30011     
30012     replaceTextarea : function()
30013     {
30014         if ( document.getElementById( this.getId() + '___Frame' ) )
30015             return ;
30016         //if ( !this.checkBrowser || this._isCompatibleBrowser() )
30017         //{
30018             // We must check the elements firstly using the Id and then the name.
30019         var oTextarea = document.getElementById( this.getId() );
30020         
30021         var colElementsByName = document.getElementsByName( this.getId() ) ;
30022          
30023         oTextarea.style.display = 'none' ;
30024
30025         if ( oTextarea.tabIndex ) {            
30026             this.TabIndex = oTextarea.tabIndex ;
30027         }
30028         
30029         this._insertHtmlBefore( this._getConfigHtml(), oTextarea ) ;
30030         this._insertHtmlBefore( this._getIFrameHtml(), oTextarea ) ;
30031         this.frame = Roo.get(this.getId() + '___Frame')
30032     },
30033     
30034     _getConfigHtml : function()
30035     {
30036         var sConfig = '' ;
30037
30038         for ( var o in this.fckconfig ) {
30039             sConfig += sConfig.length > 0  ? '&amp;' : '';
30040             sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.fckconfig[o] ) ;
30041         }
30042
30043         return '<input type="hidden" id="' + this.getId() + '___Config" value="' + sConfig + '" style="display:none" />' ;
30044     },
30045     
30046     
30047     _getIFrameHtml : function()
30048     {
30049         var sFile = 'fckeditor.html' ;
30050         /* no idea what this is about..
30051         try
30052         {
30053             if ( (/fcksource=true/i).test( window.top.location.search ) )
30054                 sFile = 'fckeditor.original.html' ;
30055         }
30056         catch (e) { 
30057         */
30058
30059         var sLink = this.basePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.getId() ) ;
30060         sLink += this.toolbarSet ? ( '&amp;Toolbar=' + this.toolbarSet)  : '';
30061         
30062         
30063         var html = '<iframe id="' + this.getId() +
30064             '___Frame" src="' + sLink +
30065             '" width="' + this.width +
30066             '" height="' + this.height + '"' +
30067             (this.tabIndex ?  ' tabindex="' + this.tabIndex + '"' :'' ) +
30068             ' frameborder="0" scrolling="no"></iframe>' ;
30069
30070         return html ;
30071     },
30072     
30073     _insertHtmlBefore : function( html, element )
30074     {
30075         if ( element.insertAdjacentHTML )       {
30076             // IE
30077             element.insertAdjacentHTML( 'beforeBegin', html ) ;
30078         } else { // Gecko
30079             var oRange = document.createRange() ;
30080             oRange.setStartBefore( element ) ;
30081             var oFragment = oRange.createContextualFragment( html );
30082             element.parentNode.insertBefore( oFragment, element ) ;
30083         }
30084     }
30085     
30086     
30087   
30088     
30089     
30090     
30091     
30092
30093 });
30094
30095 //Roo.reg('fckeditor', Roo.form.FCKeditor);
30096
30097 function FCKeditor_OnComplete(editorInstance){
30098     var f = Roo.form.FCKeditor.editors[editorInstance.Name];
30099     f.fckEditor = editorInstance;
30100     //console.log("loaded");
30101     f.fireEvent('editorinit', f, editorInstance);
30102
30103   
30104
30105  
30106
30107
30108
30109
30110
30111
30112
30113
30114
30115
30116
30117
30118
30119
30120
30121 //<script type="text/javascript">
30122 /**
30123  * @class Roo.form.GridField
30124  * @extends Roo.form.Field
30125  * Embed a grid (or editable grid into a form)
30126  * STATUS ALPHA
30127  * 
30128  * This embeds a grid in a form, the value of the field should be the json encoded array of rows
30129  * it needs 
30130  * xgrid.store = Roo.data.Store
30131  * xgrid.store.proxy = Roo.data.MemoryProxy (data = [] )
30132  * xgrid.store.reader = Roo.data.JsonReader 
30133  * 
30134  * 
30135  * @constructor
30136  * Creates a new GridField
30137  * @param {Object} config Configuration options
30138  */
30139 Roo.form.GridField = function(config){
30140     Roo.form.GridField.superclass.constructor.call(this, config);
30141      
30142 };
30143
30144 Roo.extend(Roo.form.GridField, Roo.form.Field,  {
30145     /**
30146      * @cfg {Number} width  - used to restrict width of grid..
30147      */
30148     width : 100,
30149     /**
30150      * @cfg {Number} height - used to restrict height of grid..
30151      */
30152     height : 50,
30153      /**
30154      * @cfg {Object} xgrid (xtype'd description of grid) { xtype : 'Grid', dataSource: .... }
30155          * 
30156          *}
30157      */
30158     xgrid : false, 
30159     /**
30160      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
30161      * {tag: "input", type: "checkbox", autocomplete: "off"})
30162      */
30163    // defaultAutoCreate : { tag: 'div' },
30164     defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
30165     /**
30166      * @cfg {String} addTitle Text to include for adding a title.
30167      */
30168     addTitle : false,
30169     //
30170     onResize : function(){
30171         Roo.form.Field.superclass.onResize.apply(this, arguments);
30172     },
30173
30174     initEvents : function(){
30175         // Roo.form.Checkbox.superclass.initEvents.call(this);
30176         // has no events...
30177        
30178     },
30179
30180
30181     getResizeEl : function(){
30182         return this.wrap;
30183     },
30184
30185     getPositionEl : function(){
30186         return this.wrap;
30187     },
30188
30189     // private
30190     onRender : function(ct, position){
30191         
30192         this.style = this.style || 'overflow: hidden; border:1px solid #c3daf9;';
30193         var style = this.style;
30194         delete this.style;
30195         
30196         Roo.form.GridField.superclass.onRender.call(this, ct, position);
30197         this.wrap = this.el.wrap({cls: ''}); // not sure why ive done thsi...
30198         this.viewEl = this.wrap.createChild({ tag: 'div' });
30199         if (style) {
30200             this.viewEl.applyStyles(style);
30201         }
30202         if (this.width) {
30203             this.viewEl.setWidth(this.width);
30204         }
30205         if (this.height) {
30206             this.viewEl.setHeight(this.height);
30207         }
30208         //if(this.inputValue !== undefined){
30209         //this.setValue(this.value);
30210         
30211         
30212         this.grid = new Roo.grid[this.xgrid.xtype](this.viewEl, this.xgrid);
30213         
30214         
30215         this.grid.render();
30216         this.grid.getDataSource().on('remove', this.refreshValue, this);
30217         this.grid.getDataSource().on('update', this.refreshValue, this);
30218         this.grid.on('afteredit', this.refreshValue, this);
30219  
30220     },
30221      
30222     
30223     /**
30224      * Sets the value of the item. 
30225      * @param {String} either an object  or a string..
30226      */
30227     setValue : function(v){
30228         //this.value = v;
30229         v = v || []; // empty set..
30230         // this does not seem smart - it really only affects memoryproxy grids..
30231         if (this.grid && this.grid.getDataSource() && typeof(v) != 'undefined') {
30232             var ds = this.grid.getDataSource();
30233             // assumes a json reader..
30234             var data = {}
30235             data[ds.reader.meta.root ] =  typeof(v) == 'string' ? Roo.decode(v) : v;
30236             ds.loadData( data);
30237         }
30238         // clear selection so it does not get stale.
30239         if (this.grid.sm) { 
30240             this.grid.sm.clearSelections();
30241         }
30242         
30243         Roo.form.GridField.superclass.setValue.call(this, v);
30244         this.refreshValue();
30245         // should load data in the grid really....
30246     },
30247     
30248     // private
30249     refreshValue: function() {
30250          var val = [];
30251         this.grid.getDataSource().each(function(r) {
30252             val.push(r.data);
30253         });
30254         this.el.dom.value = Roo.encode(val);
30255     }
30256     
30257      
30258     
30259     
30260 });/*
30261  * Based on:
30262  * Ext JS Library 1.1.1
30263  * Copyright(c) 2006-2007, Ext JS, LLC.
30264  *
30265  * Originally Released Under LGPL - original licence link has changed is not relivant.
30266  *
30267  * Fork - LGPL
30268  * <script type="text/javascript">
30269  */
30270 /**
30271  * @class Roo.form.DisplayField
30272  * @extends Roo.form.Field
30273  * A generic Field to display non-editable data.
30274  * @constructor
30275  * Creates a new Display Field item.
30276  * @param {Object} config Configuration options
30277  */
30278 Roo.form.DisplayField = function(config){
30279     Roo.form.DisplayField.superclass.constructor.call(this, config);
30280     
30281 };
30282
30283 Roo.extend(Roo.form.DisplayField, Roo.form.TextField,  {
30284     inputType:      'hidden',
30285     allowBlank:     true,
30286     readOnly:         true,
30287     
30288  
30289     /**
30290      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
30291      */
30292     focusClass : undefined,
30293     /**
30294      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
30295      */
30296     fieldClass: 'x-form-field',
30297     
30298      /**
30299      * @cfg {Function} valueRenderer The renderer for the field (so you can reformat output). should return raw HTML
30300      */
30301     valueRenderer: undefined,
30302     
30303     width: 100,
30304     /**
30305      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
30306      * {tag: "input", type: "checkbox", autocomplete: "off"})
30307      */
30308      
30309  //   defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
30310
30311     onResize : function(){
30312         Roo.form.DisplayField.superclass.onResize.apply(this, arguments);
30313         
30314     },
30315
30316     initEvents : function(){
30317         // Roo.form.Checkbox.superclass.initEvents.call(this);
30318         // has no events...
30319        
30320     },
30321
30322
30323     getResizeEl : function(){
30324         return this.wrap;
30325     },
30326
30327     getPositionEl : function(){
30328         return this.wrap;
30329     },
30330
30331     // private
30332     onRender : function(ct, position){
30333         
30334         Roo.form.DisplayField.superclass.onRender.call(this, ct, position);
30335         //if(this.inputValue !== undefined){
30336         this.wrap = this.el.wrap();
30337         
30338         this.viewEl = this.wrap.createChild({ tag: 'div', cls: 'x-form-displayfield'});
30339         
30340         if (this.bodyStyle) {
30341             this.viewEl.applyStyles(this.bodyStyle);
30342         }
30343         //this.viewEl.setStyle('padding', '2px');
30344         
30345         this.setValue(this.value);
30346         
30347     },
30348 /*
30349     // private
30350     initValue : Roo.emptyFn,
30351
30352   */
30353
30354         // private
30355     onClick : function(){
30356         
30357     },
30358
30359     /**
30360      * Sets the checked state of the checkbox.
30361      * @param {Boolean/String} checked True, 'true', '1', or 'on' to check the checkbox, any other value will uncheck it.
30362      */
30363     setValue : function(v){
30364         this.value = v;
30365         var html = this.valueRenderer ?  this.valueRenderer(v) : String.format('{0}', v);
30366         // this might be called before we have a dom element..
30367         if (!this.viewEl) {
30368             return;
30369         }
30370         this.viewEl.dom.innerHTML = html;
30371         Roo.form.DisplayField.superclass.setValue.call(this, v);
30372
30373     }
30374 });/*
30375  * 
30376  * Licence- LGPL
30377  * 
30378  */
30379
30380 /**
30381  * @class Roo.form.DayPicker
30382  * @extends Roo.form.Field
30383  * A Day picker show [M] [T] [W] ....
30384  * @constructor
30385  * Creates a new Day Picker
30386  * @param {Object} config Configuration options
30387  */
30388 Roo.form.DayPicker= function(config){
30389     Roo.form.DayPicker.superclass.constructor.call(this, config);
30390      
30391 };
30392
30393 Roo.extend(Roo.form.DayPicker, Roo.form.Field,  {
30394     /**
30395      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
30396      */
30397     focusClass : undefined,
30398     /**
30399      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
30400      */
30401     fieldClass: "x-form-field",
30402    
30403     /**
30404      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
30405      * {tag: "input", type: "checkbox", autocomplete: "off"})
30406      */
30407     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
30408     
30409    
30410     actionMode : 'viewEl', 
30411     //
30412     // private
30413  
30414     inputType : 'hidden',
30415     
30416      
30417     inputElement: false, // real input element?
30418     basedOn: false, // ????
30419     
30420     isFormField: true, // not sure where this is needed!!!!
30421
30422     onResize : function(){
30423         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
30424         if(!this.boxLabel){
30425             this.el.alignTo(this.wrap, 'c-c');
30426         }
30427     },
30428
30429     initEvents : function(){
30430         Roo.form.Checkbox.superclass.initEvents.call(this);
30431         this.el.on("click", this.onClick,  this);
30432         this.el.on("change", this.onClick,  this);
30433     },
30434
30435
30436     getResizeEl : function(){
30437         return this.wrap;
30438     },
30439
30440     getPositionEl : function(){
30441         return this.wrap;
30442     },
30443
30444     
30445     // private
30446     onRender : function(ct, position){
30447         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
30448        
30449         this.wrap = this.el.wrap({cls: 'x-form-daypick-item '});
30450         
30451         var r1 = '<table><tr>';
30452         var r2 = '<tr class="x-form-daypick-icons">';
30453         for (var i=0; i < 7; i++) {
30454             r1+= '<td><div>' + Date.dayNames[i].substring(0,3) + '</div></td>';
30455             r2+= '<td><img class="x-menu-item-icon" src="' + Roo.BLANK_IMAGE_URL  +'"></td>';
30456         }
30457         
30458         var viewEl = this.wrap.createChild( r1 + '</tr>' + r2 + '</tr></table>');
30459         viewEl.select('img').on('click', this.onClick, this);
30460         this.viewEl = viewEl;   
30461         
30462         
30463         // this will not work on Chrome!!!
30464         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
30465         this.el.on('propertychange', this.setFromHidden,  this);  //ie
30466         
30467         
30468           
30469
30470     },
30471
30472     // private
30473     initValue : Roo.emptyFn,
30474
30475     /**
30476      * Returns the checked state of the checkbox.
30477      * @return {Boolean} True if checked, else false
30478      */
30479     getValue : function(){
30480         return this.el.dom.value;
30481         
30482     },
30483
30484         // private
30485     onClick : function(e){ 
30486         //this.setChecked(!this.checked);
30487         Roo.get(e.target).toggleClass('x-menu-item-checked');
30488         this.refreshValue();
30489         //if(this.el.dom.checked != this.checked){
30490         //    this.setValue(this.el.dom.checked);
30491        // }
30492     },
30493     
30494     // private
30495     refreshValue : function()
30496     {
30497         var val = '';
30498         this.viewEl.select('img',true).each(function(e,i,n)  {
30499             val += e.is(".x-menu-item-checked") ? String(n) : '';
30500         });
30501         this.setValue(val, true);
30502     },
30503
30504     /**
30505      * Sets the checked state of the checkbox.
30506      * On is always based on a string comparison between inputValue and the param.
30507      * @param {Boolean/String} value - the value to set 
30508      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
30509      */
30510     setValue : function(v,suppressEvent){
30511         if (!this.el.dom) {
30512             return;
30513         }
30514         var old = this.el.dom.value ;
30515         this.el.dom.value = v;
30516         if (suppressEvent) {
30517             return ;
30518         }
30519          
30520         // update display..
30521         this.viewEl.select('img',true).each(function(e,i,n)  {
30522             
30523             var on = e.is(".x-menu-item-checked");
30524             var newv = v.indexOf(String(n)) > -1;
30525             if (on != newv) {
30526                 e.toggleClass('x-menu-item-checked');
30527             }
30528             
30529         });
30530         
30531         
30532         this.fireEvent('change', this, v, old);
30533         
30534         
30535     },
30536    
30537     // handle setting of hidden value by some other method!!?!?
30538     setFromHidden: function()
30539     {
30540         if(!this.el){
30541             return;
30542         }
30543         //console.log("SET FROM HIDDEN");
30544         //alert('setFrom hidden');
30545         this.setValue(this.el.dom.value);
30546     },
30547     
30548     onDestroy : function()
30549     {
30550         if(this.viewEl){
30551             Roo.get(this.viewEl).remove();
30552         }
30553          
30554         Roo.form.DayPicker.superclass.onDestroy.call(this);
30555     }
30556
30557 });/*
30558  * RooJS Library 1.1.1
30559  * Copyright(c) 2008-2011  Alan Knowles
30560  *
30561  * License - LGPL
30562  */
30563  
30564
30565 /**
30566  * @class Roo.form.ComboCheck
30567  * @extends Roo.form.ComboBox
30568  * A combobox for multiple select items.
30569  *
30570  * FIXME - could do with a reset button..
30571  * 
30572  * @constructor
30573  * Create a new ComboCheck
30574  * @param {Object} config Configuration options
30575  */
30576 Roo.form.ComboCheck = function(config){
30577     Roo.form.ComboCheck.superclass.constructor.call(this, config);
30578     // should verify some data...
30579     // like
30580     // hiddenName = required..
30581     // displayField = required
30582     // valudField == required
30583     var req= [ 'hiddenName', 'displayField', 'valueField' ];
30584     var _t = this;
30585     Roo.each(req, function(e) {
30586         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
30587             throw "Roo.form.ComboCheck : missing value for: " + e;
30588         }
30589     });
30590     
30591     
30592 };
30593
30594 Roo.extend(Roo.form.ComboCheck, Roo.form.ComboBox, {
30595      
30596      
30597     editable : false,
30598      
30599     selectedClass: 'x-menu-item-checked', 
30600     
30601     // private
30602     onRender : function(ct, position){
30603         var _t = this;
30604         
30605         
30606         
30607         if(!this.tpl){
30608             var cls = 'x-combo-list';
30609
30610             
30611             this.tpl =  new Roo.Template({
30612                 html :  '<div class="'+cls+'-item x-menu-check-item">' +
30613                    '<img class="x-menu-item-icon" style="margin: 0px;" src="' + Roo.BLANK_IMAGE_URL + '">' + 
30614                    '<span>{' + this.displayField + '}</span>' +
30615                     '</div>' 
30616                 
30617             });
30618         }
30619  
30620         
30621         Roo.form.ComboCheck.superclass.onRender.call(this, ct, position);
30622         this.view.singleSelect = false;
30623         this.view.multiSelect = true;
30624         this.view.toggleSelect = true;
30625         this.pageTb.add(new Roo.Toolbar.Fill(), {
30626             
30627             text: 'Done',
30628             handler: function()
30629             {
30630                 _t.collapse();
30631             }
30632         });
30633     },
30634     
30635     onViewOver : function(e, t){
30636         // do nothing...
30637         return;
30638         
30639     },
30640     
30641     onViewClick : function(doFocus,index){
30642         return;
30643         
30644     },
30645     select: function () {
30646         //Roo.log("SELECT CALLED");
30647     },
30648      
30649     selectByValue : function(xv, scrollIntoView){
30650         var ar = this.getValueArray();
30651         var sels = [];
30652         
30653         Roo.each(ar, function(v) {
30654             if(v === undefined || v === null){
30655                 return;
30656             }
30657             var r = this.findRecord(this.valueField, v);
30658             if(r){
30659                 sels.push(this.store.indexOf(r))
30660                 
30661             }
30662         },this);
30663         this.view.select(sels);
30664         return false;
30665     },
30666     
30667     
30668     
30669     onSelect : function(record, index){
30670        // Roo.log("onselect Called");
30671        // this is only called by the clear button now..
30672         this.view.clearSelections();
30673         this.setValue('[]');
30674         if (this.value != this.valueBefore) {
30675             this.fireEvent('change', this, this.value, this.valueBefore);
30676             this.valueBefore = this.value;
30677         }
30678     },
30679     getValueArray : function()
30680     {
30681         var ar = [] ;
30682         
30683         try {
30684             //Roo.log(this.value);
30685             if (typeof(this.value) == 'undefined') {
30686                 return [];
30687             }
30688             var ar = Roo.decode(this.value);
30689             return  ar instanceof Array ? ar : []; //?? valid?
30690             
30691         } catch(e) {
30692             Roo.log(e + "\nRoo.form.ComboCheck:getValueArray  invalid data:" + this.getValue());
30693             return [];
30694         }
30695          
30696     },
30697     expand : function ()
30698     {
30699         
30700         Roo.form.ComboCheck.superclass.expand.call(this);
30701         this.valueBefore = typeof(this.value) == 'undefined' ? '' : this.value;
30702         //this.valueBefore = typeof(this.valueBefore) == 'undefined' ? '' : this.valueBefore;
30703         
30704
30705     },
30706     
30707     collapse : function(){
30708         Roo.form.ComboCheck.superclass.collapse.call(this);
30709         var sl = this.view.getSelectedIndexes();
30710         var st = this.store;
30711         var nv = [];
30712         var tv = [];
30713         var r;
30714         Roo.each(sl, function(i) {
30715             r = st.getAt(i);
30716             nv.push(r.get(this.valueField));
30717         },this);
30718         this.setValue(Roo.encode(nv));
30719         if (this.value != this.valueBefore) {
30720
30721             this.fireEvent('change', this, this.value, this.valueBefore);
30722             this.valueBefore = this.value;
30723         }
30724         
30725     },
30726     
30727     setValue : function(v){
30728         // Roo.log(v);
30729         this.value = v;
30730         
30731         var vals = this.getValueArray();
30732         var tv = [];
30733         Roo.each(vals, function(k) {
30734             var r = this.findRecord(this.valueField, k);
30735             if(r){
30736                 tv.push(r.data[this.displayField]);
30737             }else if(this.valueNotFoundText !== undefined){
30738                 tv.push( this.valueNotFoundText );
30739             }
30740         },this);
30741        // Roo.log(tv);
30742         
30743         Roo.form.ComboBox.superclass.setValue.call(this, tv.join(', '));
30744         this.hiddenField.value = v;
30745         this.value = v;
30746     }
30747     
30748 });/*
30749  * Based on:
30750  * Ext JS Library 1.1.1
30751  * Copyright(c) 2006-2007, Ext JS, LLC.
30752  *
30753  * Originally Released Under LGPL - original licence link has changed is not relivant.
30754  *
30755  * Fork - LGPL
30756  * <script type="text/javascript">
30757  */
30758  
30759 /**
30760  * @class Roo.form.Signature
30761  * @extends Roo.form.Field
30762  * Signature field.  
30763  * @constructor
30764  * 
30765  * @param {Object} config Configuration options
30766  */
30767
30768 Roo.form.Signature = function(config){
30769     Roo.form.Signature.superclass.constructor.call(this, config);
30770     
30771     this.addEvents({// not in used??
30772          /**
30773          * @event confirm
30774          * Fires when the 'confirm' icon is pressed (add a listener to enable add button)
30775              * @param {Roo.form.Signature} combo This combo box
30776              */
30777         'confirm' : true,
30778         /**
30779          * @event reset
30780          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
30781              * @param {Roo.form.ComboBox} combo This combo box
30782              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
30783              */
30784         'reset' : true
30785     });
30786 };
30787
30788 Roo.extend(Roo.form.Signature, Roo.form.Field,  {
30789     /**
30790      * @cfg {Object} labels Label to use when rendering a form.
30791      * defaults to 
30792      * labels : { 
30793      *      clear : "Clear",
30794      *      confirm : "Confirm"
30795      *  }
30796      */
30797     labels : { 
30798         clear : "Clear",
30799         confirm : "Confirm"
30800     },
30801     /**
30802      * @cfg {Number} width The signature panel width (defaults to 300)
30803      */
30804     width: 300,
30805     /**
30806      * @cfg {Number} height The signature panel height (defaults to 100)
30807      */
30808     height : 100,
30809     /**
30810      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to false)
30811      */
30812     allowBlank : false,
30813     
30814     //private
30815     // {Object} signPanel The signature SVG panel element (defaults to {})
30816     signPanel : {},
30817     // {Boolean} isMouseDown False to validate that the mouse down event (defaults to false)
30818     isMouseDown : false,
30819     // {Boolean} isConfirmed validate the signature is confirmed or not for submitting form (defaults to false)
30820     isConfirmed : false,
30821     // {String} signatureTmp SVG mapping string (defaults to empty string)
30822     signatureTmp : '',
30823     
30824     
30825     defaultAutoCreate : { // modified by initCompnoent..
30826         tag: "input",
30827         type:"hidden"
30828     },
30829
30830     // private
30831     onRender : function(ct, position){
30832         
30833         Roo.form.Signature.superclass.onRender.call(this, ct, position);
30834         
30835         this.wrap = this.el.wrap({
30836             cls:'x-form-signature-wrap', style : 'width: ' + this.width + 'px', cn:{cls:'x-form-signature'}
30837         });
30838         
30839         this.createToolbar(this);
30840         this.signPanel = this.wrap.createChild({
30841                 tag: 'div',
30842                 style: 'width: ' + this.width + 'px; height: ' + this.height + 'px; border: 0;'
30843             }, this.el
30844         );
30845             
30846         this.svgID = Roo.id();
30847         this.svgEl = this.signPanel.createChild({
30848               xmlns : 'http://www.w3.org/2000/svg',
30849               tag : 'svg',
30850               id : this.svgID + "-svg",
30851               width: this.width,
30852               height: this.height,
30853               viewBox: '0 0 '+this.width+' '+this.height,
30854               cn : [
30855                 {
30856                     tag: "rect",
30857                     id: this.svgID + "-svg-r",
30858                     width: this.width,
30859                     height: this.height,
30860                     fill: "#ffa"
30861                 },
30862                 {
30863                     tag: "line",
30864                     id: this.svgID + "-svg-l",
30865                     x1: "0", // start
30866                     y1: (this.height*0.8), // start set the line in 80% of height
30867                     x2: this.width, // end
30868                     y2: (this.height*0.8), // end set the line in 80% of height
30869                     'stroke': "#666",
30870                     'stroke-width': "1",
30871                     'stroke-dasharray': "3",
30872                     'shape-rendering': "crispEdges",
30873                     'pointer-events': "none"
30874                 },
30875                 {
30876                     tag: "path",
30877                     id: this.svgID + "-svg-p",
30878                     'stroke': "navy",
30879                     'stroke-width': "3",
30880                     'fill': "none",
30881                     'pointer-events': 'none'
30882                 }
30883               ]
30884         });
30885         this.createSVG();
30886         this.svgBox = this.svgEl.dom.getScreenCTM();
30887     },
30888     createSVG : function(){ 
30889         var svg = this.signPanel;
30890         var r = svg.select('#'+ this.svgID + '-svg-r', true).first().dom;
30891         var t = this;
30892
30893         r.addEventListener('mousedown', function(e) { return t.down(e); }, false);
30894         r.addEventListener('mousemove', function(e) { return t.move(e); }, false);
30895         r.addEventListener('mouseup', function(e) { return t.up(e); }, false);
30896         r.addEventListener('mouseout', function(e) { return t.up(e); }, false);
30897         r.addEventListener('touchstart', function(e) { return t.down(e); }, false);
30898         r.addEventListener('touchmove', function(e) { return t.move(e); }, false);
30899         r.addEventListener('touchend', function(e) { return t.up(e); }, false);
30900         
30901     },
30902     isTouchEvent : function(e){
30903         return e.type.match(/^touch/);
30904     },
30905     getCoords : function (e) {
30906         var pt    = this.svgEl.dom.createSVGPoint();
30907         pt.x = e.clientX; 
30908         pt.y = e.clientY;
30909         if (this.isTouchEvent(e)) {
30910             pt.x =  e.targetTouches[0].clientX 
30911             pt.y = e.targetTouches[0].clientY;
30912         }
30913         var a = this.svgEl.dom.getScreenCTM();
30914         var b = a.inverse();
30915         var mx = pt.matrixTransform(b);
30916         return mx.x + ',' + mx.y;
30917     },
30918     //mouse event headler 
30919     down : function (e) {
30920         this.signatureTmp += 'M' + this.getCoords(e) + ' ';
30921         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr('d', this.signatureTmp);
30922         
30923         this.isMouseDown = true;
30924         
30925         e.preventDefault();
30926     },
30927     move : function (e) {
30928         if (this.isMouseDown) {
30929             this.signatureTmp += 'L' + this.getCoords(e) + ' ';
30930             this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', this.signatureTmp);
30931         }
30932         
30933         e.preventDefault();
30934     },
30935     up : function (e) {
30936         this.isMouseDown = false;
30937         var sp = this.signatureTmp.split(' ');
30938         
30939         if(sp.length > 1){
30940             if(!sp[sp.length-2].match(/^L/)){
30941                 sp.pop();
30942                 sp.pop();
30943                 sp.push("");
30944                 this.signatureTmp = sp.join(" ");
30945             }
30946         }
30947         if(this.getValue() != this.signatureTmp){
30948             this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
30949             this.isConfirmed = false;
30950         }
30951         e.preventDefault();
30952     },
30953     
30954     /**
30955      * Protected method that will not generally be called directly. It
30956      * is called when the editor creates its toolbar. Override this method if you need to
30957      * add custom toolbar buttons.
30958      * @param {HtmlEditor} editor
30959      */
30960     createToolbar : function(editor){
30961          function btn(id, toggle, handler){
30962             var xid = fid + '-'+ id ;
30963             return {
30964                 id : xid,
30965                 cmd : id,
30966                 cls : 'x-btn-icon x-edit-'+id,
30967                 enableToggle:toggle !== false,
30968                 scope: editor, // was editor...
30969                 handler:handler||editor.relayBtnCmd,
30970                 clickEvent:'mousedown',
30971                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
30972                 tabIndex:-1
30973             };
30974         }
30975         
30976         
30977         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
30978         this.tb = tb;
30979         this.tb.add(
30980            {
30981                 cls : ' x-signature-btn x-signature-'+id,
30982                 scope: editor, // was editor...
30983                 handler: this.reset,
30984                 clickEvent:'mousedown',
30985                 text: this.labels.clear
30986             },
30987             {
30988                  xtype : 'Fill',
30989                  xns: Roo.Toolbar
30990             }, 
30991             {
30992                 cls : '  x-signature-btn x-signature-'+id,
30993                 scope: editor, // was editor...
30994                 handler: this.confirmHandler,
30995                 clickEvent:'mousedown',
30996                 text: this.labels.confirm
30997             }
30998         );
30999     
31000     },
31001     //public
31002     /**
31003      * when user is clicked confirm then show this image.....
31004      * 
31005      * @return {String} Image Data URI
31006      */
31007     getImageDataURI : function(){
31008         var svg = this.svgEl.dom.parentNode.innerHTML;
31009         var src = 'data:image/svg+xml;base64,'+window.btoa(svg);
31010         return src; 
31011     },
31012     /**
31013      * 
31014      * @return {Boolean} this.isConfirmed
31015      */
31016     getConfirmed : function(){
31017         return this.isConfirmed;
31018     },
31019     /**
31020      * 
31021      * @return {Number} this.width
31022      */
31023     getWidth : function(){
31024         return this.width;
31025     },
31026     /**
31027      * 
31028      * @return {Number} this.height
31029      */
31030     getHeight : function(){
31031         return this.height;
31032     },
31033     // private
31034     getSignature : function(){
31035         return this.signatureTmp;
31036     },
31037     // private
31038     reset : function(){
31039         this.signatureTmp = '';
31040         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
31041         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', '');
31042         this.isConfirmed = false;
31043         Roo.form.Signature.superclass.reset.call(this);
31044     },
31045     setSignature : function(s){
31046         this.signatureTmp = s;
31047         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
31048         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', s);
31049         this.setValue(s);
31050         this.isConfirmed = false;
31051         Roo.form.Signature.superclass.reset.call(this);
31052     }, 
31053     test : function(){
31054 //        Roo.log(this.signPanel.dom.contentWindow.up())
31055     },
31056     //private
31057     setConfirmed : function(){
31058         
31059         
31060         
31061 //        Roo.log(Roo.get(this.signPanel.dom.contentWindow.r).attr('fill', '#cfc'));
31062     },
31063     // private
31064     confirmHandler : function(){
31065         if(!this.getSignature()){
31066             return;
31067         }
31068         
31069         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#cfc');
31070         this.setValue(this.getSignature());
31071         this.isConfirmed = true;
31072         
31073         this.fireEvent('confirm', this);
31074     },
31075     // private
31076     // Subclasses should provide the validation implementation by overriding this
31077     validateValue : function(value){
31078         if(this.allowBlank){
31079             return true;
31080         }
31081         
31082         if(this.isConfirmed){
31083             return true;
31084         }
31085         return false;
31086     }
31087 });/*
31088  * Based on:
31089  * Ext JS Library 1.1.1
31090  * Copyright(c) 2006-2007, Ext JS, LLC.
31091  *
31092  * Originally Released Under LGPL - original licence link has changed is not relivant.
31093  *
31094  * Fork - LGPL
31095  * <script type="text/javascript">
31096  */
31097  
31098
31099 /**
31100  * @class Roo.form.ComboBox
31101  * @extends Roo.form.TriggerField
31102  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
31103  * @constructor
31104  * Create a new ComboBox.
31105  * @param {Object} config Configuration options
31106  */
31107 Roo.form.Select = function(config){
31108     Roo.form.Select.superclass.constructor.call(this, config);
31109      
31110 };
31111
31112 Roo.extend(Roo.form.Select , Roo.form.ComboBox, {
31113     /**
31114      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
31115      */
31116     /**
31117      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
31118      * rendering into an Roo.Editor, defaults to false)
31119      */
31120     /**
31121      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
31122      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
31123      */
31124     /**
31125      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
31126      */
31127     /**
31128      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
31129      * the dropdown list (defaults to undefined, with no header element)
31130      */
31131
31132      /**
31133      * @cfg {String/Roo.Template} tpl The template to use to render the output
31134      */
31135      
31136     // private
31137     defaultAutoCreate : {tag: "select"  },
31138     /**
31139      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
31140      */
31141     listWidth: undefined,
31142     /**
31143      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
31144      * mode = 'remote' or 'text' if mode = 'local')
31145      */
31146     displayField: undefined,
31147     /**
31148      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
31149      * mode = 'remote' or 'value' if mode = 'local'). 
31150      * Note: use of a valueField requires the user make a selection
31151      * in order for a value to be mapped.
31152      */
31153     valueField: undefined,
31154     
31155     
31156     /**
31157      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
31158      * field's data value (defaults to the underlying DOM element's name)
31159      */
31160     hiddenName: undefined,
31161     /**
31162      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
31163      */
31164     listClass: '',
31165     /**
31166      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
31167      */
31168     selectedClass: 'x-combo-selected',
31169     /**
31170      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
31171      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
31172      * which displays a downward arrow icon).
31173      */
31174     triggerClass : 'x-form-arrow-trigger',
31175     /**
31176      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
31177      */
31178     shadow:'sides',
31179     /**
31180      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
31181      * anchor positions (defaults to 'tl-bl')
31182      */
31183     listAlign: 'tl-bl?',
31184     /**
31185      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
31186      */
31187     maxHeight: 300,
31188     /**
31189      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
31190      * query specified by the allQuery config option (defaults to 'query')
31191      */
31192     triggerAction: 'query',
31193     /**
31194      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
31195      * (defaults to 4, does not apply if editable = false)
31196      */
31197     minChars : 4,
31198     /**
31199      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
31200      * delay (typeAheadDelay) if it matches a known value (defaults to false)
31201      */
31202     typeAhead: false,
31203     /**
31204      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
31205      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
31206      */
31207     queryDelay: 500,
31208     /**
31209      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
31210      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
31211      */
31212     pageSize: 0,
31213     /**
31214      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
31215      * when editable = true (defaults to false)
31216      */
31217     selectOnFocus:false,
31218     /**
31219      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
31220      */
31221     queryParam: 'query',
31222     /**
31223      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
31224      * when mode = 'remote' (defaults to 'Loading...')
31225      */
31226     loadingText: 'Loading...',
31227     /**
31228      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
31229      */
31230     resizable: false,
31231     /**
31232      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
31233      */
31234     handleHeight : 8,
31235     /**
31236      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
31237      * traditional select (defaults to true)
31238      */
31239     editable: true,
31240     /**
31241      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
31242      */
31243     allQuery: '',
31244     /**
31245      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
31246      */
31247     mode: 'remote',
31248     /**
31249      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
31250      * listWidth has a higher value)
31251      */
31252     minListWidth : 70,
31253     /**
31254      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
31255      * allow the user to set arbitrary text into the field (defaults to false)
31256      */
31257     forceSelection:false,
31258     /**
31259      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
31260      * if typeAhead = true (defaults to 250)
31261      */
31262     typeAheadDelay : 250,
31263     /**
31264      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
31265      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
31266      */
31267     valueNotFoundText : undefined,
31268     
31269     /**
31270      * @cfg {String} defaultValue The value displayed after loading the store.
31271      */
31272     defaultValue: '',
31273     
31274     /**
31275      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
31276      */
31277     blockFocus : false,
31278     
31279     /**
31280      * @cfg {Boolean} disableClear Disable showing of clear button.
31281      */
31282     disableClear : false,
31283     /**
31284      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
31285      */
31286     alwaysQuery : false,
31287     
31288     //private
31289     addicon : false,
31290     editicon: false,
31291     
31292     // element that contains real text value.. (when hidden is used..)
31293      
31294     // private
31295     onRender : function(ct, position){
31296         Roo.form.Field.prototype.onRender.call(this, ct, position);
31297         
31298         if(this.store){
31299             this.store.on('beforeload', this.onBeforeLoad, this);
31300             this.store.on('load', this.onLoad, this);
31301             this.store.on('loadexception', this.onLoadException, this);
31302             this.store.load({});
31303         }
31304         
31305         
31306         
31307     },
31308
31309     // private
31310     initEvents : function(){
31311         //Roo.form.ComboBox.superclass.initEvents.call(this);
31312  
31313     },
31314
31315     onDestroy : function(){
31316        
31317         if(this.store){
31318             this.store.un('beforeload', this.onBeforeLoad, this);
31319             this.store.un('load', this.onLoad, this);
31320             this.store.un('loadexception', this.onLoadException, this);
31321         }
31322         //Roo.form.ComboBox.superclass.onDestroy.call(this);
31323     },
31324
31325     // private
31326     fireKey : function(e){
31327         if(e.isNavKeyPress() && !this.list.isVisible()){
31328             this.fireEvent("specialkey", this, e);
31329         }
31330     },
31331
31332     // private
31333     onResize: function(w, h){
31334         
31335         return; 
31336     
31337         
31338     },
31339
31340     /**
31341      * Allow or prevent the user from directly editing the field text.  If false is passed,
31342      * the user will only be able to select from the items defined in the dropdown list.  This method
31343      * is the runtime equivalent of setting the 'editable' config option at config time.
31344      * @param {Boolean} value True to allow the user to directly edit the field text
31345      */
31346     setEditable : function(value){
31347          
31348     },
31349
31350     // private
31351     onBeforeLoad : function(){
31352         
31353         Roo.log("Select before load");
31354         return;
31355     
31356         this.innerList.update(this.loadingText ?
31357                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
31358         //this.restrictHeight();
31359         this.selectedIndex = -1;
31360     },
31361
31362     // private
31363     onLoad : function(){
31364
31365     
31366         var dom = this.el.dom;
31367         dom.innerHTML = '';
31368          var od = dom.ownerDocument;
31369          
31370         if (this.emptyText) {
31371             var op = od.createElement('option');
31372             op.setAttribute('value', '');
31373             op.innerHTML = String.format('{0}', this.emptyText);
31374             dom.appendChild(op);
31375         }
31376         if(this.store.getCount() > 0){
31377            
31378             var vf = this.valueField;
31379             var df = this.displayField;
31380             this.store.data.each(function(r) {
31381                 // which colmsn to use... testing - cdoe / title..
31382                 var op = od.createElement('option');
31383                 op.setAttribute('value', r.data[vf]);
31384                 op.innerHTML = String.format('{0}', r.data[df]);
31385                 dom.appendChild(op);
31386             });
31387             if (typeof(this.defaultValue != 'undefined')) {
31388                 this.setValue(this.defaultValue);
31389             }
31390             
31391              
31392         }else{
31393             //this.onEmptyResults();
31394         }
31395         //this.el.focus();
31396     },
31397     // private
31398     onLoadException : function()
31399     {
31400         dom.innerHTML = '';
31401             
31402         Roo.log("Select on load exception");
31403         return;
31404     
31405         this.collapse();
31406         Roo.log(this.store.reader.jsonData);
31407         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
31408             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
31409         }
31410         
31411         
31412     },
31413     // private
31414     onTypeAhead : function(){
31415          
31416     },
31417
31418     // private
31419     onSelect : function(record, index){
31420         Roo.log('on select?');
31421         return;
31422         if(this.fireEvent('beforeselect', this, record, index) !== false){
31423             this.setFromData(index > -1 ? record.data : false);
31424             this.collapse();
31425             this.fireEvent('select', this, record, index);
31426         }
31427     },
31428
31429     /**
31430      * Returns the currently selected field value or empty string if no value is set.
31431      * @return {String} value The selected value
31432      */
31433     getValue : function(){
31434         var dom = this.el.dom;
31435         this.value = dom.options[dom.selectedIndex].value;
31436         return this.value;
31437         
31438     },
31439
31440     /**
31441      * Clears any text/value currently set in the field
31442      */
31443     clearValue : function(){
31444         this.value = '';
31445         this.el.dom.selectedIndex = this.emptyText ? 0 : -1;
31446         
31447     },
31448
31449     /**
31450      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
31451      * will be displayed in the field.  If the value does not match the data value of an existing item,
31452      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
31453      * Otherwise the field will be blank (although the value will still be set).
31454      * @param {String} value The value to match
31455      */
31456     setValue : function(v){
31457         var d = this.el.dom;
31458         for (var i =0; i < d.options.length;i++) {
31459             if (v == d.options[i].value) {
31460                 d.selectedIndex = i;
31461                 this.value = v;
31462                 return;
31463             }
31464         }
31465         this.clearValue();
31466     },
31467     /**
31468      * @property {Object} the last set data for the element
31469      */
31470     
31471     lastData : false,
31472     /**
31473      * Sets the value of the field based on a object which is related to the record format for the store.
31474      * @param {Object} value the value to set as. or false on reset?
31475      */
31476     setFromData : function(o){
31477         Roo.log('setfrom data?');
31478          
31479         
31480         
31481     },
31482     // private
31483     reset : function(){
31484         this.clearValue();
31485     },
31486     // private
31487     findRecord : function(prop, value){
31488         
31489         return false;
31490     
31491         var record;
31492         if(this.store.getCount() > 0){
31493             this.store.each(function(r){
31494                 if(r.data[prop] == value){
31495                     record = r;
31496                     return false;
31497                 }
31498                 return true;
31499             });
31500         }
31501         return record;
31502     },
31503     
31504     getName: function()
31505     {
31506         // returns hidden if it's set..
31507         if (!this.rendered) {return ''};
31508         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
31509         
31510     },
31511      
31512
31513     
31514
31515     // private
31516     onEmptyResults : function(){
31517         Roo.log('empty results');
31518         //this.collapse();
31519     },
31520
31521     /**
31522      * Returns true if the dropdown list is expanded, else false.
31523      */
31524     isExpanded : function(){
31525         return false;
31526     },
31527
31528     /**
31529      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
31530      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
31531      * @param {String} value The data value of the item to select
31532      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
31533      * selected item if it is not currently in view (defaults to true)
31534      * @return {Boolean} True if the value matched an item in the list, else false
31535      */
31536     selectByValue : function(v, scrollIntoView){
31537         Roo.log('select By Value');
31538         return false;
31539     
31540         if(v !== undefined && v !== null){
31541             var r = this.findRecord(this.valueField || this.displayField, v);
31542             if(r){
31543                 this.select(this.store.indexOf(r), scrollIntoView);
31544                 return true;
31545             }
31546         }
31547         return false;
31548     },
31549
31550     /**
31551      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
31552      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
31553      * @param {Number} index The zero-based index of the list item to select
31554      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
31555      * selected item if it is not currently in view (defaults to true)
31556      */
31557     select : function(index, scrollIntoView){
31558         Roo.log('select ');
31559         return  ;
31560         
31561         this.selectedIndex = index;
31562         this.view.select(index);
31563         if(scrollIntoView !== false){
31564             var el = this.view.getNode(index);
31565             if(el){
31566                 this.innerList.scrollChildIntoView(el, false);
31567             }
31568         }
31569     },
31570
31571       
31572
31573     // private
31574     validateBlur : function(){
31575         
31576         return;
31577         
31578     },
31579
31580     // private
31581     initQuery : function(){
31582         this.doQuery(this.getRawValue());
31583     },
31584
31585     // private
31586     doForce : function(){
31587         if(this.el.dom.value.length > 0){
31588             this.el.dom.value =
31589                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
31590              
31591         }
31592     },
31593
31594     /**
31595      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
31596      * query allowing the query action to be canceled if needed.
31597      * @param {String} query The SQL query to execute
31598      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
31599      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
31600      * saved in the current store (defaults to false)
31601      */
31602     doQuery : function(q, forceAll){
31603         
31604         Roo.log('doQuery?');
31605         if(q === undefined || q === null){
31606             q = '';
31607         }
31608         var qe = {
31609             query: q,
31610             forceAll: forceAll,
31611             combo: this,
31612             cancel:false
31613         };
31614         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
31615             return false;
31616         }
31617         q = qe.query;
31618         forceAll = qe.forceAll;
31619         if(forceAll === true || (q.length >= this.minChars)){
31620             if(this.lastQuery != q || this.alwaysQuery){
31621                 this.lastQuery = q;
31622                 if(this.mode == 'local'){
31623                     this.selectedIndex = -1;
31624                     if(forceAll){
31625                         this.store.clearFilter();
31626                     }else{
31627                         this.store.filter(this.displayField, q);
31628                     }
31629                     this.onLoad();
31630                 }else{
31631                     this.store.baseParams[this.queryParam] = q;
31632                     this.store.load({
31633                         params: this.getParams(q)
31634                     });
31635                     this.expand();
31636                 }
31637             }else{
31638                 this.selectedIndex = -1;
31639                 this.onLoad();   
31640             }
31641         }
31642     },
31643
31644     // private
31645     getParams : function(q){
31646         var p = {};
31647         //p[this.queryParam] = q;
31648         if(this.pageSize){
31649             p.start = 0;
31650             p.limit = this.pageSize;
31651         }
31652         return p;
31653     },
31654
31655     /**
31656      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
31657      */
31658     collapse : function(){
31659         
31660     },
31661
31662     // private
31663     collapseIf : function(e){
31664         
31665     },
31666
31667     /**
31668      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
31669      */
31670     expand : function(){
31671         
31672     } ,
31673
31674     // private
31675      
31676
31677     /** 
31678     * @cfg {Boolean} grow 
31679     * @hide 
31680     */
31681     /** 
31682     * @cfg {Number} growMin 
31683     * @hide 
31684     */
31685     /** 
31686     * @cfg {Number} growMax 
31687     * @hide 
31688     */
31689     /**
31690      * @hide
31691      * @method autoSize
31692      */
31693     
31694     setWidth : function()
31695     {
31696         
31697     },
31698     getResizeEl : function(){
31699         return this.el;
31700     }
31701 });//<script type="text/javasscript">
31702  
31703
31704 /**
31705  * @class Roo.DDView
31706  * A DnD enabled version of Roo.View.
31707  * @param {Element/String} container The Element in which to create the View.
31708  * @param {String} tpl The template string used to create the markup for each element of the View
31709  * @param {Object} config The configuration properties. These include all the config options of
31710  * {@link Roo.View} plus some specific to this class.<br>
31711  * <p>
31712  * Drag/drop is implemented by adding {@link Roo.data.Record}s to the target DDView. If copying is
31713  * not being performed, the original {@link Roo.data.Record} is removed from the source DDView.<br>
31714  * <p>
31715  * The following extra CSS rules are needed to provide insertion point highlighting:<pre><code>
31716 .x-view-drag-insert-above {
31717         border-top:1px dotted #3366cc;
31718 }
31719 .x-view-drag-insert-below {
31720         border-bottom:1px dotted #3366cc;
31721 }
31722 </code></pre>
31723  * 
31724  */
31725  
31726 Roo.DDView = function(container, tpl, config) {
31727     Roo.DDView.superclass.constructor.apply(this, arguments);
31728     this.getEl().setStyle("outline", "0px none");
31729     this.getEl().unselectable();
31730     if (this.dragGroup) {
31731                 this.setDraggable(this.dragGroup.split(","));
31732     }
31733     if (this.dropGroup) {
31734                 this.setDroppable(this.dropGroup.split(","));
31735     }
31736     if (this.deletable) {
31737         this.setDeletable();
31738     }
31739     this.isDirtyFlag = false;
31740         this.addEvents({
31741                 "drop" : true
31742         });
31743 };
31744
31745 Roo.extend(Roo.DDView, Roo.View, {
31746 /**     @cfg {String/Array} dragGroup The ddgroup name(s) for the View's DragZone. */
31747 /**     @cfg {String/Array} dropGroup The ddgroup name(s) for the View's DropZone. */
31748 /**     @cfg {Boolean} copy Causes drag operations to copy nodes rather than move. */
31749 /**     @cfg {Boolean} allowCopy Causes ctrl/drag operations to copy nodes rather than move. */
31750
31751         isFormField: true,
31752
31753         reset: Roo.emptyFn,
31754         
31755         clearInvalid: Roo.form.Field.prototype.clearInvalid,
31756
31757         validate: function() {
31758                 return true;
31759         },
31760         
31761         destroy: function() {
31762                 this.purgeListeners();
31763                 this.getEl.removeAllListeners();
31764                 this.getEl().remove();
31765                 if (this.dragZone) {
31766                         if (this.dragZone.destroy) {
31767                                 this.dragZone.destroy();
31768                         }
31769                 }
31770                 if (this.dropZone) {
31771                         if (this.dropZone.destroy) {
31772                                 this.dropZone.destroy();
31773                         }
31774                 }
31775         },
31776
31777 /**     Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}. */
31778         getName: function() {
31779                 return this.name;
31780         },
31781
31782 /**     Loads the View from a JSON string representing the Records to put into the Store. */
31783         setValue: function(v) {
31784                 if (!this.store) {
31785                         throw "DDView.setValue(). DDView must be constructed with a valid Store";
31786                 }
31787                 var data = {};
31788                 data[this.store.reader.meta.root] = v ? [].concat(v) : [];
31789                 this.store.proxy = new Roo.data.MemoryProxy(data);
31790                 this.store.load();
31791         },
31792
31793 /**     @return {String} a parenthesised list of the ids of the Records in the View. */
31794         getValue: function() {
31795                 var result = '(';
31796                 this.store.each(function(rec) {
31797                         result += rec.id + ',';
31798                 });
31799                 return result.substr(0, result.length - 1) + ')';
31800         },
31801         
31802         getIds: function() {
31803                 var i = 0, result = new Array(this.store.getCount());
31804                 this.store.each(function(rec) {
31805                         result[i++] = rec.id;
31806                 });
31807                 return result;
31808         },
31809         
31810         isDirty: function() {
31811                 return this.isDirtyFlag;
31812         },
31813
31814 /**
31815  *      Part of the Roo.dd.DropZone interface. If no target node is found, the
31816  *      whole Element becomes the target, and this causes the drop gesture to append.
31817  */
31818     getTargetFromEvent : function(e) {
31819                 var target = e.getTarget();
31820                 while ((target !== null) && (target.parentNode != this.el.dom)) {
31821                 target = target.parentNode;
31822                 }
31823                 if (!target) {
31824                         target = this.el.dom.lastChild || this.el.dom;
31825                 }
31826                 return target;
31827     },
31828
31829 /**
31830  *      Create the drag data which consists of an object which has the property "ddel" as
31831  *      the drag proxy element. 
31832  */
31833     getDragData : function(e) {
31834         var target = this.findItemFromChild(e.getTarget());
31835                 if(target) {
31836                         this.handleSelection(e);
31837                         var selNodes = this.getSelectedNodes();
31838             var dragData = {
31839                 source: this,
31840                 copy: this.copy || (this.allowCopy && e.ctrlKey),
31841                 nodes: selNodes,
31842                 records: []
31843                         };
31844                         var selectedIndices = this.getSelectedIndexes();
31845                         for (var i = 0; i < selectedIndices.length; i++) {
31846                                 dragData.records.push(this.store.getAt(selectedIndices[i]));
31847                         }
31848                         if (selNodes.length == 1) {
31849                                 dragData.ddel = target.cloneNode(true); // the div element
31850                         } else {
31851                                 var div = document.createElement('div'); // create the multi element drag "ghost"
31852                                 div.className = 'multi-proxy';
31853                                 for (var i = 0, len = selNodes.length; i < len; i++) {
31854                                         div.appendChild(selNodes[i].cloneNode(true));
31855                                 }
31856                                 dragData.ddel = div;
31857                         }
31858             //console.log(dragData)
31859             //console.log(dragData.ddel.innerHTML)
31860                         return dragData;
31861                 }
31862         //console.log('nodragData')
31863                 return false;
31864     },
31865     
31866 /**     Specify to which ddGroup items in this DDView may be dragged. */
31867     setDraggable: function(ddGroup) {
31868         if (ddGroup instanceof Array) {
31869                 Roo.each(ddGroup, this.setDraggable, this);
31870                 return;
31871         }
31872         if (this.dragZone) {
31873                 this.dragZone.addToGroup(ddGroup);
31874         } else {
31875                         this.dragZone = new Roo.dd.DragZone(this.getEl(), {
31876                                 containerScroll: true,
31877                                 ddGroup: ddGroup 
31878
31879                         });
31880 //                      Draggability implies selection. DragZone's mousedown selects the element.
31881                         if (!this.multiSelect) { this.singleSelect = true; }
31882
31883 //                      Wire the DragZone's handlers up to methods in *this*
31884                         this.dragZone.getDragData = this.getDragData.createDelegate(this);
31885                 }
31886     },
31887
31888 /**     Specify from which ddGroup this DDView accepts drops. */
31889     setDroppable: function(ddGroup) {
31890         if (ddGroup instanceof Array) {
31891                 Roo.each(ddGroup, this.setDroppable, this);
31892                 return;
31893         }
31894         if (this.dropZone) {
31895                 this.dropZone.addToGroup(ddGroup);
31896         } else {
31897                         this.dropZone = new Roo.dd.DropZone(this.getEl(), {
31898                                 containerScroll: true,
31899                                 ddGroup: ddGroup
31900                         });
31901
31902 //                      Wire the DropZone's handlers up to methods in *this*
31903                         this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
31904                         this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
31905                         this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
31906                         this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
31907                         this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
31908                 }
31909     },
31910
31911 /**     Decide whether to drop above or below a View node. */
31912     getDropPoint : function(e, n, dd){
31913         if (n == this.el.dom) { return "above"; }
31914                 var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
31915                 var c = t + (b - t) / 2;
31916                 var y = Roo.lib.Event.getPageY(e);
31917                 if(y <= c) {
31918                         return "above";
31919                 }else{
31920                         return "below";
31921                 }
31922     },
31923
31924     onNodeEnter : function(n, dd, e, data){
31925                 return false;
31926     },
31927     
31928     onNodeOver : function(n, dd, e, data){
31929                 var pt = this.getDropPoint(e, n, dd);
31930                 // set the insert point style on the target node
31931                 var dragElClass = this.dropNotAllowed;
31932                 if (pt) {
31933                         var targetElClass;
31934                         if (pt == "above"){
31935                                 dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
31936                                 targetElClass = "x-view-drag-insert-above";
31937                         } else {
31938                                 dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
31939                                 targetElClass = "x-view-drag-insert-below";
31940                         }
31941                         if (this.lastInsertClass != targetElClass){
31942                                 Roo.fly(n).replaceClass(this.lastInsertClass, targetElClass);
31943                                 this.lastInsertClass = targetElClass;
31944                         }
31945                 }
31946                 return dragElClass;
31947         },
31948
31949     onNodeOut : function(n, dd, e, data){
31950                 this.removeDropIndicators(n);
31951     },
31952
31953     onNodeDrop : function(n, dd, e, data){
31954         if (this.fireEvent("drop", this, n, dd, e, data) === false) {
31955                 return false;
31956         }
31957         var pt = this.getDropPoint(e, n, dd);
31958                 var insertAt = (n == this.el.dom) ? this.nodes.length : n.nodeIndex;
31959                 if (pt == "below") { insertAt++; }
31960                 for (var i = 0; i < data.records.length; i++) {
31961                         var r = data.records[i];
31962                         var dup = this.store.getById(r.id);
31963                         if (dup && (dd != this.dragZone)) {
31964                                 Roo.fly(this.getNode(this.store.indexOf(dup))).frame("red", 1);
31965                         } else {
31966                                 if (data.copy) {
31967                                         this.store.insert(insertAt++, r.copy());
31968                                 } else {
31969                                         data.source.isDirtyFlag = true;
31970                                         r.store.remove(r);
31971                                         this.store.insert(insertAt++, r);
31972                                 }
31973                                 this.isDirtyFlag = true;
31974                         }
31975                 }
31976                 this.dragZone.cachedTarget = null;
31977                 return true;
31978     },
31979
31980     removeDropIndicators : function(n){
31981                 if(n){
31982                         Roo.fly(n).removeClass([
31983                                 "x-view-drag-insert-above",
31984                                 "x-view-drag-insert-below"]);
31985                         this.lastInsertClass = "_noclass";
31986                 }
31987     },
31988
31989 /**
31990  *      Utility method. Add a delete option to the DDView's context menu.
31991  *      @param {String} imageUrl The URL of the "delete" icon image.
31992  */
31993         setDeletable: function(imageUrl) {
31994                 if (!this.singleSelect && !this.multiSelect) {
31995                         this.singleSelect = true;
31996                 }
31997                 var c = this.getContextMenu();
31998                 this.contextMenu.on("itemclick", function(item) {
31999                         switch (item.id) {
32000                                 case "delete":
32001                                         this.remove(this.getSelectedIndexes());
32002                                         break;
32003                         }
32004                 }, this);
32005                 this.contextMenu.add({
32006                         icon: imageUrl,
32007                         id: "delete",
32008                         text: 'Delete'
32009                 });
32010         },
32011         
32012 /**     Return the context menu for this DDView. */
32013         getContextMenu: function() {
32014                 if (!this.contextMenu) {
32015 //                      Create the View's context menu
32016                         this.contextMenu = new Roo.menu.Menu({
32017                                 id: this.id + "-contextmenu"
32018                         });
32019                         this.el.on("contextmenu", this.showContextMenu, this);
32020                 }
32021                 return this.contextMenu;
32022         },
32023         
32024         disableContextMenu: function() {
32025                 if (this.contextMenu) {
32026                         this.el.un("contextmenu", this.showContextMenu, this);
32027                 }
32028         },
32029
32030         showContextMenu: function(e, item) {
32031         item = this.findItemFromChild(e.getTarget());
32032                 if (item) {
32033                         e.stopEvent();
32034                         this.select(this.getNode(item), this.multiSelect && e.ctrlKey, true);
32035                         this.contextMenu.showAt(e.getXY());
32036             }
32037     },
32038
32039 /**
32040  *      Remove {@link Roo.data.Record}s at the specified indices.
32041  *      @param {Array/Number} selectedIndices The index (or Array of indices) of Records to remove.
32042  */
32043     remove: function(selectedIndices) {
32044                 selectedIndices = [].concat(selectedIndices);
32045                 for (var i = 0; i < selectedIndices.length; i++) {
32046                         var rec = this.store.getAt(selectedIndices[i]);
32047                         this.store.remove(rec);
32048                 }
32049     },
32050
32051 /**
32052  *      Double click fires the event, but also, if this is draggable, and there is only one other
32053  *      related DropZone, it transfers the selected node.
32054  */
32055     onDblClick : function(e){
32056         var item = this.findItemFromChild(e.getTarget());
32057         if(item){
32058             if (this.fireEvent("dblclick", this, this.indexOf(item), item, e) === false) {
32059                 return false;
32060             }
32061             if (this.dragGroup) {
32062                     var targets = Roo.dd.DragDropMgr.getRelated(this.dragZone, true);
32063                     while (targets.indexOf(this.dropZone) > -1) {
32064                             targets.remove(this.dropZone);
32065                                 }
32066                     if (targets.length == 1) {
32067                                         this.dragZone.cachedTarget = null;
32068                         var el = Roo.get(targets[0].getEl());
32069                         var box = el.getBox(true);
32070                         targets[0].onNodeDrop(el.dom, {
32071                                 target: el.dom,
32072                                 xy: [box.x, box.y + box.height - 1]
32073                         }, null, this.getDragData(e));
32074                     }
32075                 }
32076         }
32077     },
32078     
32079     handleSelection: function(e) {
32080                 this.dragZone.cachedTarget = null;
32081         var item = this.findItemFromChild(e.getTarget());
32082         if (!item) {
32083                 this.clearSelections(true);
32084                 return;
32085         }
32086                 if (item && (this.multiSelect || this.singleSelect)){
32087                         if(this.multiSelect && e.shiftKey && (!e.ctrlKey) && this.lastSelection){
32088                                 this.select(this.getNodes(this.indexOf(this.lastSelection), item.nodeIndex), false);
32089                         }else if (this.isSelected(this.getNode(item)) && e.ctrlKey){
32090                                 this.unselect(item);
32091                         } else {
32092                                 this.select(item, this.multiSelect && e.ctrlKey);
32093                                 this.lastSelection = item;
32094                         }
32095                 }
32096     },
32097
32098     onItemClick : function(item, index, e){
32099                 if(this.fireEvent("beforeclick", this, index, item, e) === false){
32100                         return false;
32101                 }
32102                 return true;
32103     },
32104
32105     unselect : function(nodeInfo, suppressEvent){
32106                 var node = this.getNode(nodeInfo);
32107                 if(node && this.isSelected(node)){
32108                         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
32109                                 Roo.fly(node).removeClass(this.selectedClass);
32110                                 this.selections.remove(node);
32111                                 if(!suppressEvent){
32112                                         this.fireEvent("selectionchange", this, this.selections);
32113                                 }
32114                         }
32115                 }
32116     }
32117 });
32118 /*
32119  * Based on:
32120  * Ext JS Library 1.1.1
32121  * Copyright(c) 2006-2007, Ext JS, LLC.
32122  *
32123  * Originally Released Under LGPL - original licence link has changed is not relivant.
32124  *
32125  * Fork - LGPL
32126  * <script type="text/javascript">
32127  */
32128  
32129 /**
32130  * @class Roo.LayoutManager
32131  * @extends Roo.util.Observable
32132  * Base class for layout managers.
32133  */
32134 Roo.LayoutManager = function(container, config){
32135     Roo.LayoutManager.superclass.constructor.call(this);
32136     this.el = Roo.get(container);
32137     // ie scrollbar fix
32138     if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
32139         document.body.scroll = "no";
32140     }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
32141         this.el.position('relative');
32142     }
32143     this.id = this.el.id;
32144     this.el.addClass("x-layout-container");
32145     /** false to disable window resize monitoring @type Boolean */
32146     this.monitorWindowResize = true;
32147     this.regions = {};
32148     this.addEvents({
32149         /**
32150          * @event layout
32151          * Fires when a layout is performed. 
32152          * @param {Roo.LayoutManager} this
32153          */
32154         "layout" : true,
32155         /**
32156          * @event regionresized
32157          * Fires when the user resizes a region. 
32158          * @param {Roo.LayoutRegion} region The resized region
32159          * @param {Number} newSize The new size (width for east/west, height for north/south)
32160          */
32161         "regionresized" : true,
32162         /**
32163          * @event regioncollapsed
32164          * Fires when a region is collapsed. 
32165          * @param {Roo.LayoutRegion} region The collapsed region
32166          */
32167         "regioncollapsed" : true,
32168         /**
32169          * @event regionexpanded
32170          * Fires when a region is expanded.  
32171          * @param {Roo.LayoutRegion} region The expanded region
32172          */
32173         "regionexpanded" : true
32174     });
32175     this.updating = false;
32176     Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
32177 };
32178
32179 Roo.extend(Roo.LayoutManager, Roo.util.Observable, {
32180     /**
32181      * Returns true if this layout is currently being updated
32182      * @return {Boolean}
32183      */
32184     isUpdating : function(){
32185         return this.updating; 
32186     },
32187     
32188     /**
32189      * Suspend the LayoutManager from doing auto-layouts while
32190      * making multiple add or remove calls
32191      */
32192     beginUpdate : function(){
32193         this.updating = true;    
32194     },
32195     
32196     /**
32197      * Restore auto-layouts and optionally disable the manager from performing a layout
32198      * @param {Boolean} noLayout true to disable a layout update 
32199      */
32200     endUpdate : function(noLayout){
32201         this.updating = false;
32202         if(!noLayout){
32203             this.layout();
32204         }    
32205     },
32206     
32207     layout: function(){
32208         
32209     },
32210     
32211     onRegionResized : function(region, newSize){
32212         this.fireEvent("regionresized", region, newSize);
32213         this.layout();
32214     },
32215     
32216     onRegionCollapsed : function(region){
32217         this.fireEvent("regioncollapsed", region);
32218     },
32219     
32220     onRegionExpanded : function(region){
32221         this.fireEvent("regionexpanded", region);
32222     },
32223         
32224     /**
32225      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
32226      * performs box-model adjustments.
32227      * @return {Object} The size as an object {width: (the width), height: (the height)}
32228      */
32229     getViewSize : function(){
32230         var size;
32231         if(this.el.dom != document.body){
32232             size = this.el.getSize();
32233         }else{
32234             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
32235         }
32236         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
32237         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
32238         return size;
32239     },
32240     
32241     /**
32242      * Returns the Element this layout is bound to.
32243      * @return {Roo.Element}
32244      */
32245     getEl : function(){
32246         return this.el;
32247     },
32248     
32249     /**
32250      * Returns the specified region.
32251      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
32252      * @return {Roo.LayoutRegion}
32253      */
32254     getRegion : function(target){
32255         return this.regions[target.toLowerCase()];
32256     },
32257     
32258     onWindowResize : function(){
32259         if(this.monitorWindowResize){
32260             this.layout();
32261         }
32262     }
32263 });/*
32264  * Based on:
32265  * Ext JS Library 1.1.1
32266  * Copyright(c) 2006-2007, Ext JS, LLC.
32267  *
32268  * Originally Released Under LGPL - original licence link has changed is not relivant.
32269  *
32270  * Fork - LGPL
32271  * <script type="text/javascript">
32272  */
32273 /**
32274  * @class Roo.BorderLayout
32275  * @extends Roo.LayoutManager
32276  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
32277  * please see: <br><br>
32278  * <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>
32279  * <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>
32280  * Example:
32281  <pre><code>
32282  var layout = new Roo.BorderLayout(document.body, {
32283     north: {
32284         initialSize: 25,
32285         titlebar: false
32286     },
32287     west: {
32288         split:true,
32289         initialSize: 200,
32290         minSize: 175,
32291         maxSize: 400,
32292         titlebar: true,
32293         collapsible: true
32294     },
32295     east: {
32296         split:true,
32297         initialSize: 202,
32298         minSize: 175,
32299         maxSize: 400,
32300         titlebar: true,
32301         collapsible: true
32302     },
32303     south: {
32304         split:true,
32305         initialSize: 100,
32306         minSize: 100,
32307         maxSize: 200,
32308         titlebar: true,
32309         collapsible: true
32310     },
32311     center: {
32312         titlebar: true,
32313         autoScroll:true,
32314         resizeTabs: true,
32315         minTabWidth: 50,
32316         preferredTabWidth: 150
32317     }
32318 });
32319
32320 // shorthand
32321 var CP = Roo.ContentPanel;
32322
32323 layout.beginUpdate();
32324 layout.add("north", new CP("north", "North"));
32325 layout.add("south", new CP("south", {title: "South", closable: true}));
32326 layout.add("west", new CP("west", {title: "West"}));
32327 layout.add("east", new CP("autoTabs", {title: "Auto Tabs", closable: true}));
32328 layout.add("center", new CP("center1", {title: "Close Me", closable: true}));
32329 layout.add("center", new CP("center2", {title: "Center Panel", closable: false}));
32330 layout.getRegion("center").showPanel("center1");
32331 layout.endUpdate();
32332 </code></pre>
32333
32334 <b>The container the layout is rendered into can be either the body element or any other element.
32335 If it is not the body element, the container needs to either be an absolute positioned element,
32336 or you will need to add "position:relative" to the css of the container.  You will also need to specify
32337 the container size if it is not the body element.</b>
32338
32339 * @constructor
32340 * Create a new BorderLayout
32341 * @param {String/HTMLElement/Element} container The container this layout is bound to
32342 * @param {Object} config Configuration options
32343  */
32344 Roo.BorderLayout = function(container, config){
32345     config = config || {};
32346     Roo.BorderLayout.superclass.constructor.call(this, container, config);
32347     this.factory = config.factory || Roo.BorderLayout.RegionFactory;
32348     for(var i = 0, len = this.factory.validRegions.length; i < len; i++) {
32349         var target = this.factory.validRegions[i];
32350         if(config[target]){
32351             this.addRegion(target, config[target]);
32352         }
32353     }
32354 };
32355
32356 Roo.extend(Roo.BorderLayout, Roo.LayoutManager, {
32357     /**
32358      * Creates and adds a new region if it doesn't already exist.
32359      * @param {String} target The target region key (north, south, east, west or center).
32360      * @param {Object} config The regions config object
32361      * @return {BorderLayoutRegion} The new region
32362      */
32363     addRegion : function(target, config){
32364         if(!this.regions[target]){
32365             var r = this.factory.create(target, this, config);
32366             this.bindRegion(target, r);
32367         }
32368         return this.regions[target];
32369     },
32370
32371     // private (kinda)
32372     bindRegion : function(name, r){
32373         this.regions[name] = r;
32374         r.on("visibilitychange", this.layout, this);
32375         r.on("paneladded", this.layout, this);
32376         r.on("panelremoved", this.layout, this);
32377         r.on("invalidated", this.layout, this);
32378         r.on("resized", this.onRegionResized, this);
32379         r.on("collapsed", this.onRegionCollapsed, this);
32380         r.on("expanded", this.onRegionExpanded, this);
32381     },
32382
32383     /**
32384      * Performs a layout update.
32385      */
32386     layout : function(){
32387         if(this.updating) return;
32388         var size = this.getViewSize();
32389         var w = size.width;
32390         var h = size.height;
32391         var centerW = w;
32392         var centerH = h;
32393         var centerY = 0;
32394         var centerX = 0;
32395         //var x = 0, y = 0;
32396
32397         var rs = this.regions;
32398         var north = rs["north"];
32399         var south = rs["south"]; 
32400         var west = rs["west"];
32401         var east = rs["east"];
32402         var center = rs["center"];
32403         //if(this.hideOnLayout){ // not supported anymore
32404             //c.el.setStyle("display", "none");
32405         //}
32406         if(north && north.isVisible()){
32407             var b = north.getBox();
32408             var m = north.getMargins();
32409             b.width = w - (m.left+m.right);
32410             b.x = m.left;
32411             b.y = m.top;
32412             centerY = b.height + b.y + m.bottom;
32413             centerH -= centerY;
32414             north.updateBox(this.safeBox(b));
32415         }
32416         if(south && south.isVisible()){
32417             var b = south.getBox();
32418             var m = south.getMargins();
32419             b.width = w - (m.left+m.right);
32420             b.x = m.left;
32421             var totalHeight = (b.height + m.top + m.bottom);
32422             b.y = h - totalHeight + m.top;
32423             centerH -= totalHeight;
32424             south.updateBox(this.safeBox(b));
32425         }
32426         if(west && west.isVisible()){
32427             var b = west.getBox();
32428             var m = west.getMargins();
32429             b.height = centerH - (m.top+m.bottom);
32430             b.x = m.left;
32431             b.y = centerY + m.top;
32432             var totalWidth = (b.width + m.left + m.right);
32433             centerX += totalWidth;
32434             centerW -= totalWidth;
32435             west.updateBox(this.safeBox(b));
32436         }
32437         if(east && east.isVisible()){
32438             var b = east.getBox();
32439             var m = east.getMargins();
32440             b.height = centerH - (m.top+m.bottom);
32441             var totalWidth = (b.width + m.left + m.right);
32442             b.x = w - totalWidth + m.left;
32443             b.y = centerY + m.top;
32444             centerW -= totalWidth;
32445             east.updateBox(this.safeBox(b));
32446         }
32447         if(center){
32448             var m = center.getMargins();
32449             var centerBox = {
32450                 x: centerX + m.left,
32451                 y: centerY + m.top,
32452                 width: centerW - (m.left+m.right),
32453                 height: centerH - (m.top+m.bottom)
32454             };
32455             //if(this.hideOnLayout){
32456                 //center.el.setStyle("display", "block");
32457             //}
32458             center.updateBox(this.safeBox(centerBox));
32459         }
32460         this.el.repaint();
32461         this.fireEvent("layout", this);
32462     },
32463
32464     // private
32465     safeBox : function(box){
32466         box.width = Math.max(0, box.width);
32467         box.height = Math.max(0, box.height);
32468         return box;
32469     },
32470
32471     /**
32472      * Adds a ContentPanel (or subclass) to this layout.
32473      * @param {String} target The target region key (north, south, east, west or center).
32474      * @param {Roo.ContentPanel} panel The panel to add
32475      * @return {Roo.ContentPanel} The added panel
32476      */
32477     add : function(target, panel){
32478          
32479         target = target.toLowerCase();
32480         return this.regions[target].add(panel);
32481     },
32482
32483     /**
32484      * Remove a ContentPanel (or subclass) to this layout.
32485      * @param {String} target The target region key (north, south, east, west or center).
32486      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
32487      * @return {Roo.ContentPanel} The removed panel
32488      */
32489     remove : function(target, panel){
32490         target = target.toLowerCase();
32491         return this.regions[target].remove(panel);
32492     },
32493
32494     /**
32495      * Searches all regions for a panel with the specified id
32496      * @param {String} panelId
32497      * @return {Roo.ContentPanel} The panel or null if it wasn't found
32498      */
32499     findPanel : function(panelId){
32500         var rs = this.regions;
32501         for(var target in rs){
32502             if(typeof rs[target] != "function"){
32503                 var p = rs[target].getPanel(panelId);
32504                 if(p){
32505                     return p;
32506                 }
32507             }
32508         }
32509         return null;
32510     },
32511
32512     /**
32513      * Searches all regions for a panel with the specified id and activates (shows) it.
32514      * @param {String/ContentPanel} panelId The panels id or the panel itself
32515      * @return {Roo.ContentPanel} The shown panel or null
32516      */
32517     showPanel : function(panelId) {
32518       var rs = this.regions;
32519       for(var target in rs){
32520          var r = rs[target];
32521          if(typeof r != "function"){
32522             if(r.hasPanel(panelId)){
32523                return r.showPanel(panelId);
32524             }
32525          }
32526       }
32527       return null;
32528    },
32529
32530    /**
32531      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
32532      * @param {Roo.state.Provider} provider (optional) An alternate state provider
32533      */
32534     restoreState : function(provider){
32535         if(!provider){
32536             provider = Roo.state.Manager;
32537         }
32538         var sm = new Roo.LayoutStateManager();
32539         sm.init(this, provider);
32540     },
32541
32542     /**
32543      * Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config
32544      * object should contain properties for each region to add ContentPanels to, and each property's value should be
32545      * a valid ContentPanel config object.  Example:
32546      * <pre><code>
32547 // Create the main layout
32548 var layout = new Roo.BorderLayout('main-ct', {
32549     west: {
32550         split:true,
32551         minSize: 175,
32552         titlebar: true
32553     },
32554     center: {
32555         title:'Components'
32556     }
32557 }, 'main-ct');
32558
32559 // Create and add multiple ContentPanels at once via configs
32560 layout.batchAdd({
32561    west: {
32562        id: 'source-files',
32563        autoCreate:true,
32564        title:'Ext Source Files',
32565        autoScroll:true,
32566        fitToFrame:true
32567    },
32568    center : {
32569        el: cview,
32570        autoScroll:true,
32571        fitToFrame:true,
32572        toolbar: tb,
32573        resizeEl:'cbody'
32574    }
32575 });
32576 </code></pre>
32577      * @param {Object} regions An object containing ContentPanel configs by region name
32578      */
32579     batchAdd : function(regions){
32580         this.beginUpdate();
32581         for(var rname in regions){
32582             var lr = this.regions[rname];
32583             if(lr){
32584                 this.addTypedPanels(lr, regions[rname]);
32585             }
32586         }
32587         this.endUpdate();
32588     },
32589
32590     // private
32591     addTypedPanels : function(lr, ps){
32592         if(typeof ps == 'string'){
32593             lr.add(new Roo.ContentPanel(ps));
32594         }
32595         else if(ps instanceof Array){
32596             for(var i =0, len = ps.length; i < len; i++){
32597                 this.addTypedPanels(lr, ps[i]);
32598             }
32599         }
32600         else if(!ps.events){ // raw config?
32601             var el = ps.el;
32602             delete ps.el; // prevent conflict
32603             lr.add(new Roo.ContentPanel(el || Roo.id(), ps));
32604         }
32605         else {  // panel object assumed!
32606             lr.add(ps);
32607         }
32608     },
32609     /**
32610      * Adds a xtype elements to the layout.
32611      * <pre><code>
32612
32613 layout.addxtype({
32614        xtype : 'ContentPanel',
32615        region: 'west',
32616        items: [ .... ]
32617    }
32618 );
32619
32620 layout.addxtype({
32621         xtype : 'NestedLayoutPanel',
32622         region: 'west',
32623         layout: {
32624            center: { },
32625            west: { }   
32626         },
32627         items : [ ... list of content panels or nested layout panels.. ]
32628    }
32629 );
32630 </code></pre>
32631      * @param {Object} cfg Xtype definition of item to add.
32632      */
32633     addxtype : function(cfg)
32634     {
32635         // basically accepts a pannel...
32636         // can accept a layout region..!?!?
32637         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
32638         
32639         if (!cfg.xtype.match(/Panel$/)) {
32640             return false;
32641         }
32642         var ret = false;
32643         
32644         if (typeof(cfg.region) == 'undefined') {
32645             Roo.log("Failed to add Panel, region was not set");
32646             Roo.log(cfg);
32647             return false;
32648         }
32649         var region = cfg.region;
32650         delete cfg.region;
32651         
32652           
32653         var xitems = [];
32654         if (cfg.items) {
32655             xitems = cfg.items;
32656             delete cfg.items;
32657         }
32658         var nb = false;
32659         
32660         switch(cfg.xtype) 
32661         {
32662             case 'ContentPanel':  // ContentPanel (el, cfg)
32663             case 'ScrollPanel':  // ContentPanel (el, cfg)
32664             case 'ViewPanel': 
32665                 if(cfg.autoCreate) {
32666                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
32667                 } else {
32668                     var el = this.el.createChild();
32669                     ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
32670                 }
32671                 
32672                 this.add(region, ret);
32673                 break;
32674             
32675             
32676             case 'TreePanel': // our new panel!
32677                 cfg.el = this.el.createChild();
32678                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
32679                 this.add(region, ret);
32680                 break;
32681             
32682             case 'NestedLayoutPanel': 
32683                 // create a new Layout (which is  a Border Layout...
32684                 var el = this.el.createChild();
32685                 var clayout = cfg.layout;
32686                 delete cfg.layout;
32687                 clayout.items   = clayout.items  || [];
32688                 // replace this exitems with the clayout ones..
32689                 xitems = clayout.items;
32690                  
32691                 
32692                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
32693                     cfg.background = false;
32694                 }
32695                 var layout = new Roo.BorderLayout(el, clayout);
32696                 
32697                 ret = new Roo[cfg.xtype](layout, cfg); // new panel!!!!!
32698                 //console.log('adding nested layout panel '  + cfg.toSource());
32699                 this.add(region, ret);
32700                 nb = {}; /// find first...
32701                 break;
32702                 
32703             case 'GridPanel': 
32704             
32705                 // needs grid and region
32706                 
32707                 //var el = this.getRegion(region).el.createChild();
32708                 var el = this.el.createChild();
32709                 // create the grid first...
32710                 
32711                 var grid = new Roo.grid[cfg.grid.xtype](el, cfg.grid);
32712                 delete cfg.grid;
32713                 if (region == 'center' && this.active ) {
32714                     cfg.background = false;
32715                 }
32716                 ret = new Roo[cfg.xtype](grid, cfg); // new panel!!!!!
32717                 
32718                 this.add(region, ret);
32719                 if (cfg.background) {
32720                     ret.on('activate', function(gp) {
32721                         if (!gp.grid.rendered) {
32722                             gp.grid.render();
32723                         }
32724                     });
32725                 } else {
32726                     grid.render();
32727                 }
32728                 break;
32729            
32730            
32731            
32732                 
32733                 
32734                 
32735             default:
32736                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
32737                     
32738                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
32739                     this.add(region, ret);
32740                 } else {
32741                 
32742                     alert("Can not add '" + cfg.xtype + "' to BorderLayout");
32743                     return null;
32744                 }
32745                 
32746              // GridPanel (grid, cfg)
32747             
32748         }
32749         this.beginUpdate();
32750         // add children..
32751         var region = '';
32752         var abn = {};
32753         Roo.each(xitems, function(i)  {
32754             region = nb && i.region ? i.region : false;
32755             
32756             var add = ret.addxtype(i);
32757            
32758             if (region) {
32759                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
32760                 if (!i.background) {
32761                     abn[region] = nb[region] ;
32762                 }
32763             }
32764             
32765         });
32766         this.endUpdate();
32767
32768         // make the last non-background panel active..
32769         //if (nb) { Roo.log(abn); }
32770         if (nb) {
32771             
32772             for(var r in abn) {
32773                 region = this.getRegion(r);
32774                 if (region) {
32775                     // tried using nb[r], but it does not work..
32776                      
32777                     region.showPanel(abn[r]);
32778                    
32779                 }
32780             }
32781         }
32782         return ret;
32783         
32784     }
32785 });
32786
32787 /**
32788  * Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling
32789  * the beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be
32790  * provided with each region config, which allows you to add ContentPanel configs in addition to the region configs
32791  * during creation.  The following code is equivalent to the constructor-based example at the beginning of this class:
32792  * <pre><code>
32793 // shorthand
32794 var CP = Roo.ContentPanel;
32795
32796 var layout = Roo.BorderLayout.create({
32797     north: {
32798         initialSize: 25,
32799         titlebar: false,
32800         panels: [new CP("north", "North")]
32801     },
32802     west: {
32803         split:true,
32804         initialSize: 200,
32805         minSize: 175,
32806         maxSize: 400,
32807         titlebar: true,
32808         collapsible: true,
32809         panels: [new CP("west", {title: "West"})]
32810     },
32811     east: {
32812         split:true,
32813         initialSize: 202,
32814         minSize: 175,
32815         maxSize: 400,
32816         titlebar: true,
32817         collapsible: true,
32818         panels: [new CP("autoTabs", {title: "Auto Tabs", closable: true})]
32819     },
32820     south: {
32821         split:true,
32822         initialSize: 100,
32823         minSize: 100,
32824         maxSize: 200,
32825         titlebar: true,
32826         collapsible: true,
32827         panels: [new CP("south", {title: "South", closable: true})]
32828     },
32829     center: {
32830         titlebar: true,
32831         autoScroll:true,
32832         resizeTabs: true,
32833         minTabWidth: 50,
32834         preferredTabWidth: 150,
32835         panels: [
32836             new CP("center1", {title: "Close Me", closable: true}),
32837             new CP("center2", {title: "Center Panel", closable: false})
32838         ]
32839     }
32840 }, document.body);
32841
32842 layout.getRegion("center").showPanel("center1");
32843 </code></pre>
32844  * @param config
32845  * @param targetEl
32846  */
32847 Roo.BorderLayout.create = function(config, targetEl){
32848     var layout = new Roo.BorderLayout(targetEl || document.body, config);
32849     layout.beginUpdate();
32850     var regions = Roo.BorderLayout.RegionFactory.validRegions;
32851     for(var j = 0, jlen = regions.length; j < jlen; j++){
32852         var lr = regions[j];
32853         if(layout.regions[lr] && config[lr].panels){
32854             var r = layout.regions[lr];
32855             var ps = config[lr].panels;
32856             layout.addTypedPanels(r, ps);
32857         }
32858     }
32859     layout.endUpdate();
32860     return layout;
32861 };
32862
32863 // private
32864 Roo.BorderLayout.RegionFactory = {
32865     // private
32866     validRegions : ["north","south","east","west","center"],
32867
32868     // private
32869     create : function(target, mgr, config){
32870         target = target.toLowerCase();
32871         if(config.lightweight || config.basic){
32872             return new Roo.BasicLayoutRegion(mgr, config, target);
32873         }
32874         switch(target){
32875             case "north":
32876                 return new Roo.NorthLayoutRegion(mgr, config);
32877             case "south":
32878                 return new Roo.SouthLayoutRegion(mgr, config);
32879             case "east":
32880                 return new Roo.EastLayoutRegion(mgr, config);
32881             case "west":
32882                 return new Roo.WestLayoutRegion(mgr, config);
32883             case "center":
32884                 return new Roo.CenterLayoutRegion(mgr, config);
32885         }
32886         throw 'Layout region "'+target+'" not supported.';
32887     }
32888 };/*
32889  * Based on:
32890  * Ext JS Library 1.1.1
32891  * Copyright(c) 2006-2007, Ext JS, LLC.
32892  *
32893  * Originally Released Under LGPL - original licence link has changed is not relivant.
32894  *
32895  * Fork - LGPL
32896  * <script type="text/javascript">
32897  */
32898  
32899 /**
32900  * @class Roo.BasicLayoutRegion
32901  * @extends Roo.util.Observable
32902  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
32903  * and does not have a titlebar, tabs or any other features. All it does is size and position 
32904  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
32905  */
32906 Roo.BasicLayoutRegion = function(mgr, config, pos, skipConfig){
32907     this.mgr = mgr;
32908     this.position  = pos;
32909     this.events = {
32910         /**
32911          * @scope Roo.BasicLayoutRegion
32912          */
32913         
32914         /**
32915          * @event beforeremove
32916          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
32917          * @param {Roo.LayoutRegion} this
32918          * @param {Roo.ContentPanel} panel The panel
32919          * @param {Object} e The cancel event object
32920          */
32921         "beforeremove" : true,
32922         /**
32923          * @event invalidated
32924          * Fires when the layout for this region is changed.
32925          * @param {Roo.LayoutRegion} this
32926          */
32927         "invalidated" : true,
32928         /**
32929          * @event visibilitychange
32930          * Fires when this region is shown or hidden 
32931          * @param {Roo.LayoutRegion} this
32932          * @param {Boolean} visibility true or false
32933          */
32934         "visibilitychange" : true,
32935         /**
32936          * @event paneladded
32937          * Fires when a panel is added. 
32938          * @param {Roo.LayoutRegion} this
32939          * @param {Roo.ContentPanel} panel The panel
32940          */
32941         "paneladded" : true,
32942         /**
32943          * @event panelremoved
32944          * Fires when a panel is removed. 
32945          * @param {Roo.LayoutRegion} this
32946          * @param {Roo.ContentPanel} panel The panel
32947          */
32948         "panelremoved" : true,
32949         /**
32950          * @event collapsed
32951          * Fires when this region is collapsed.
32952          * @param {Roo.LayoutRegion} this
32953          */
32954         "collapsed" : true,
32955         /**
32956          * @event expanded
32957          * Fires when this region is expanded.
32958          * @param {Roo.LayoutRegion} this
32959          */
32960         "expanded" : true,
32961         /**
32962          * @event slideshow
32963          * Fires when this region is slid into view.
32964          * @param {Roo.LayoutRegion} this
32965          */
32966         "slideshow" : true,
32967         /**
32968          * @event slidehide
32969          * Fires when this region slides out of view. 
32970          * @param {Roo.LayoutRegion} this
32971          */
32972         "slidehide" : true,
32973         /**
32974          * @event panelactivated
32975          * Fires when a panel is activated. 
32976          * @param {Roo.LayoutRegion} this
32977          * @param {Roo.ContentPanel} panel The activated panel
32978          */
32979         "panelactivated" : true,
32980         /**
32981          * @event resized
32982          * Fires when the user resizes this region. 
32983          * @param {Roo.LayoutRegion} this
32984          * @param {Number} newSize The new size (width for east/west, height for north/south)
32985          */
32986         "resized" : true
32987     };
32988     /** A collection of panels in this region. @type Roo.util.MixedCollection */
32989     this.panels = new Roo.util.MixedCollection();
32990     this.panels.getKey = this.getPanelId.createDelegate(this);
32991     this.box = null;
32992     this.activePanel = null;
32993     // ensure listeners are added...
32994     
32995     if (config.listeners || config.events) {
32996         Roo.BasicLayoutRegion.superclass.constructor.call(this, {
32997             listeners : config.listeners || {},
32998             events : config.events || {}
32999         });
33000     }
33001     
33002     if(skipConfig !== true){
33003         this.applyConfig(config);
33004     }
33005 };
33006
33007 Roo.extend(Roo.BasicLayoutRegion, Roo.util.Observable, {
33008     getPanelId : function(p){
33009         return p.getId();
33010     },
33011     
33012     applyConfig : function(config){
33013         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
33014         this.config = config;
33015         
33016     },
33017     
33018     /**
33019      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
33020      * the width, for horizontal (north, south) the height.
33021      * @param {Number} newSize The new width or height
33022      */
33023     resizeTo : function(newSize){
33024         var el = this.el ? this.el :
33025                  (this.activePanel ? this.activePanel.getEl() : null);
33026         if(el){
33027             switch(this.position){
33028                 case "east":
33029                 case "west":
33030                     el.setWidth(newSize);
33031                     this.fireEvent("resized", this, newSize);
33032                 break;
33033                 case "north":
33034                 case "south":
33035                     el.setHeight(newSize);
33036                     this.fireEvent("resized", this, newSize);
33037                 break;                
33038             }
33039         }
33040     },
33041     
33042     getBox : function(){
33043         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
33044     },
33045     
33046     getMargins : function(){
33047         return this.margins;
33048     },
33049     
33050     updateBox : function(box){
33051         this.box = box;
33052         var el = this.activePanel.getEl();
33053         el.dom.style.left = box.x + "px";
33054         el.dom.style.top = box.y + "px";
33055         this.activePanel.setSize(box.width, box.height);
33056     },
33057     
33058     /**
33059      * Returns the container element for this region.
33060      * @return {Roo.Element}
33061      */
33062     getEl : function(){
33063         return this.activePanel;
33064     },
33065     
33066     /**
33067      * Returns true if this region is currently visible.
33068      * @return {Boolean}
33069      */
33070     isVisible : function(){
33071         return this.activePanel ? true : false;
33072     },
33073     
33074     setActivePanel : function(panel){
33075         panel = this.getPanel(panel);
33076         if(this.activePanel && this.activePanel != panel){
33077             this.activePanel.setActiveState(false);
33078             this.activePanel.getEl().setLeftTop(-10000,-10000);
33079         }
33080         this.activePanel = panel;
33081         panel.setActiveState(true);
33082         if(this.box){
33083             panel.setSize(this.box.width, this.box.height);
33084         }
33085         this.fireEvent("panelactivated", this, panel);
33086         this.fireEvent("invalidated");
33087     },
33088     
33089     /**
33090      * Show the specified panel.
33091      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
33092      * @return {Roo.ContentPanel} The shown panel or null
33093      */
33094     showPanel : function(panel){
33095         if(panel = this.getPanel(panel)){
33096             this.setActivePanel(panel);
33097         }
33098         return panel;
33099     },
33100     
33101     /**
33102      * Get the active panel for this region.
33103      * @return {Roo.ContentPanel} The active panel or null
33104      */
33105     getActivePanel : function(){
33106         return this.activePanel;
33107     },
33108     
33109     /**
33110      * Add the passed ContentPanel(s)
33111      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
33112      * @return {Roo.ContentPanel} The panel added (if only one was added)
33113      */
33114     add : function(panel){
33115         if(arguments.length > 1){
33116             for(var i = 0, len = arguments.length; i < len; i++) {
33117                 this.add(arguments[i]);
33118             }
33119             return null;
33120         }
33121         if(this.hasPanel(panel)){
33122             this.showPanel(panel);
33123             return panel;
33124         }
33125         var el = panel.getEl();
33126         if(el.dom.parentNode != this.mgr.el.dom){
33127             this.mgr.el.dom.appendChild(el.dom);
33128         }
33129         if(panel.setRegion){
33130             panel.setRegion(this);
33131         }
33132         this.panels.add(panel);
33133         el.setStyle("position", "absolute");
33134         if(!panel.background){
33135             this.setActivePanel(panel);
33136             if(this.config.initialSize && this.panels.getCount()==1){
33137                 this.resizeTo(this.config.initialSize);
33138             }
33139         }
33140         this.fireEvent("paneladded", this, panel);
33141         return panel;
33142     },
33143     
33144     /**
33145      * Returns true if the panel is in this region.
33146      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
33147      * @return {Boolean}
33148      */
33149     hasPanel : function(panel){
33150         if(typeof panel == "object"){ // must be panel obj
33151             panel = panel.getId();
33152         }
33153         return this.getPanel(panel) ? true : false;
33154     },
33155     
33156     /**
33157      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
33158      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
33159      * @param {Boolean} preservePanel Overrides the config preservePanel option
33160      * @return {Roo.ContentPanel} The panel that was removed
33161      */
33162     remove : function(panel, preservePanel){
33163         panel = this.getPanel(panel);
33164         if(!panel){
33165             return null;
33166         }
33167         var e = {};
33168         this.fireEvent("beforeremove", this, panel, e);
33169         if(e.cancel === true){
33170             return null;
33171         }
33172         var panelId = panel.getId();
33173         this.panels.removeKey(panelId);
33174         return panel;
33175     },
33176     
33177     /**
33178      * Returns the panel specified or null if it's not in this region.
33179      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
33180      * @return {Roo.ContentPanel}
33181      */
33182     getPanel : function(id){
33183         if(typeof id == "object"){ // must be panel obj
33184             return id;
33185         }
33186         return this.panels.get(id);
33187     },
33188     
33189     /**
33190      * Returns this regions position (north/south/east/west/center).
33191      * @return {String} 
33192      */
33193     getPosition: function(){
33194         return this.position;    
33195     }
33196 });/*
33197  * Based on:
33198  * Ext JS Library 1.1.1
33199  * Copyright(c) 2006-2007, Ext JS, LLC.
33200  *
33201  * Originally Released Under LGPL - original licence link has changed is not relivant.
33202  *
33203  * Fork - LGPL
33204  * <script type="text/javascript">
33205  */
33206  
33207 /**
33208  * @class Roo.LayoutRegion
33209  * @extends Roo.BasicLayoutRegion
33210  * This class represents a region in a layout manager.
33211  * @cfg {Boolean}   collapsible     False to disable collapsing (defaults to true)
33212  * @cfg {Boolean}   collapsed       True to set the initial display to collapsed (defaults to false)
33213  * @cfg {Boolean}   floatable       False to disable floating (defaults to true)
33214  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
33215  * @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})
33216  * @cfg {String}    tabPosition     "top" or "bottom" (defaults to "bottom")
33217  * @cfg {String}    collapsedTitle  Optional string message to display in the collapsed block of a north or south region
33218  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
33219  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
33220  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
33221  * @cfg {String}    title           The title for the region (overrides panel titles)
33222  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
33223  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
33224  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
33225  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
33226  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
33227  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
33228  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
33229  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
33230  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
33231  * @cfg {Boolean}   showPin         True to show a pin button
33232  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
33233  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
33234  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
33235  * @cfg {Number}    width           For East/West panels
33236  * @cfg {Number}    height          For North/South panels
33237  * @cfg {Boolean}   split           To show the splitter
33238  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
33239  */
33240 Roo.LayoutRegion = function(mgr, config, pos){
33241     Roo.LayoutRegion.superclass.constructor.call(this, mgr, config, pos, true);
33242     var dh = Roo.DomHelper;
33243     /** This region's container element 
33244     * @type Roo.Element */
33245     this.el = dh.append(mgr.el.dom, {tag: "div", cls: "x-layout-panel x-layout-panel-" + this.position}, true);
33246     /** This region's title element 
33247     * @type Roo.Element */
33248
33249     this.titleEl = dh.append(this.el.dom, {tag: "div", unselectable: "on", cls: "x-unselectable x-layout-panel-hd x-layout-title-"+this.position, children:[
33250         {tag: "span", cls: "x-unselectable x-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
33251         {tag: "div", cls: "x-unselectable x-layout-panel-hd-tools", unselectable: "on"}
33252     ]}, true);
33253     this.titleEl.enableDisplayMode();
33254     /** This region's title text element 
33255     * @type HTMLElement */
33256     this.titleTextEl = this.titleEl.dom.firstChild;
33257     this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
33258     this.closeBtn = this.createTool(this.tools.dom, "x-layout-close");
33259     this.closeBtn.enableDisplayMode();
33260     this.closeBtn.on("click", this.closeClicked, this);
33261     this.closeBtn.hide();
33262
33263     this.createBody(config);
33264     this.visible = true;
33265     this.collapsed = false;
33266
33267     if(config.hideWhenEmpty){
33268         this.hide();
33269         this.on("paneladded", this.validateVisibility, this);
33270         this.on("panelremoved", this.validateVisibility, this);
33271     }
33272     this.applyConfig(config);
33273 };
33274
33275 Roo.extend(Roo.LayoutRegion, Roo.BasicLayoutRegion, {
33276
33277     createBody : function(){
33278         /** This region's body element 
33279         * @type Roo.Element */
33280         this.bodyEl = this.el.createChild({tag: "div", cls: "x-layout-panel-body"});
33281     },
33282
33283     applyConfig : function(c){
33284         if(c.collapsible && this.position != "center" && !this.collapsedEl){
33285             var dh = Roo.DomHelper;
33286             if(c.titlebar !== false){
33287                 this.collapseBtn = this.createTool(this.tools.dom, "x-layout-collapse-"+this.position);
33288                 this.collapseBtn.on("click", this.collapse, this);
33289                 this.collapseBtn.enableDisplayMode();
33290
33291                 if(c.showPin === true || this.showPin){
33292                     this.stickBtn = this.createTool(this.tools.dom, "x-layout-stick");
33293                     this.stickBtn.enableDisplayMode();
33294                     this.stickBtn.on("click", this.expand, this);
33295                     this.stickBtn.hide();
33296                 }
33297             }
33298             /** This region's collapsed element
33299             * @type Roo.Element */
33300             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
33301                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
33302             ]}, true);
33303             if(c.floatable !== false){
33304                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
33305                this.collapsedEl.on("click", this.collapseClick, this);
33306             }
33307
33308             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
33309                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
33310                    id: "message", unselectable: "on", style:{"float":"left"}});
33311                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
33312              }
33313             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
33314             this.expandBtn.on("click", this.expand, this);
33315         }
33316         if(this.collapseBtn){
33317             this.collapseBtn.setVisible(c.collapsible == true);
33318         }
33319         this.cmargins = c.cmargins || this.cmargins ||
33320                          (this.position == "west" || this.position == "east" ?
33321                              {top: 0, left: 2, right:2, bottom: 0} :
33322                              {top: 2, left: 0, right:0, bottom: 2});
33323         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
33324         this.bottomTabs = c.tabPosition != "top";
33325         this.autoScroll = c.autoScroll || false;
33326         if(this.autoScroll){
33327             this.bodyEl.setStyle("overflow", "auto");
33328         }else{
33329             this.bodyEl.setStyle("overflow", "hidden");
33330         }
33331         //if(c.titlebar !== false){
33332             if((!c.titlebar && !c.title) || c.titlebar === false){
33333                 this.titleEl.hide();
33334             }else{
33335                 this.titleEl.show();
33336                 if(c.title){
33337                     this.titleTextEl.innerHTML = c.title;
33338                 }
33339             }
33340         //}
33341         this.duration = c.duration || .30;
33342         this.slideDuration = c.slideDuration || .45;
33343         this.config = c;
33344         if(c.collapsed){
33345             this.collapse(true);
33346         }
33347         if(c.hidden){
33348             this.hide();
33349         }
33350     },
33351     /**
33352      * Returns true if this region is currently visible.
33353      * @return {Boolean}
33354      */
33355     isVisible : function(){
33356         return this.visible;
33357     },
33358
33359     /**
33360      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
33361      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
33362      */
33363     setCollapsedTitle : function(title){
33364         title = title || "&#160;";
33365         if(this.collapsedTitleTextEl){
33366             this.collapsedTitleTextEl.innerHTML = title;
33367         }
33368     },
33369
33370     getBox : function(){
33371         var b;
33372         if(!this.collapsed){
33373             b = this.el.getBox(false, true);
33374         }else{
33375             b = this.collapsedEl.getBox(false, true);
33376         }
33377         return b;
33378     },
33379
33380     getMargins : function(){
33381         return this.collapsed ? this.cmargins : this.margins;
33382     },
33383
33384     highlight : function(){
33385         this.el.addClass("x-layout-panel-dragover");
33386     },
33387
33388     unhighlight : function(){
33389         this.el.removeClass("x-layout-panel-dragover");
33390     },
33391
33392     updateBox : function(box){
33393         this.box = box;
33394         if(!this.collapsed){
33395             this.el.dom.style.left = box.x + "px";
33396             this.el.dom.style.top = box.y + "px";
33397             this.updateBody(box.width, box.height);
33398         }else{
33399             this.collapsedEl.dom.style.left = box.x + "px";
33400             this.collapsedEl.dom.style.top = box.y + "px";
33401             this.collapsedEl.setSize(box.width, box.height);
33402         }
33403         if(this.tabs){
33404             this.tabs.autoSizeTabs();
33405         }
33406     },
33407
33408     updateBody : function(w, h){
33409         if(w !== null){
33410             this.el.setWidth(w);
33411             w -= this.el.getBorderWidth("rl");
33412             if(this.config.adjustments){
33413                 w += this.config.adjustments[0];
33414             }
33415         }
33416         if(h !== null){
33417             this.el.setHeight(h);
33418             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
33419             h -= this.el.getBorderWidth("tb");
33420             if(this.config.adjustments){
33421                 h += this.config.adjustments[1];
33422             }
33423             this.bodyEl.setHeight(h);
33424             if(this.tabs){
33425                 h = this.tabs.syncHeight(h);
33426             }
33427         }
33428         if(this.panelSize){
33429             w = w !== null ? w : this.panelSize.width;
33430             h = h !== null ? h : this.panelSize.height;
33431         }
33432         if(this.activePanel){
33433             var el = this.activePanel.getEl();
33434             w = w !== null ? w : el.getWidth();
33435             h = h !== null ? h : el.getHeight();
33436             this.panelSize = {width: w, height: h};
33437             this.activePanel.setSize(w, h);
33438         }
33439         if(Roo.isIE && this.tabs){
33440             this.tabs.el.repaint();
33441         }
33442     },
33443
33444     /**
33445      * Returns the container element for this region.
33446      * @return {Roo.Element}
33447      */
33448     getEl : function(){
33449         return this.el;
33450     },
33451
33452     /**
33453      * Hides this region.
33454      */
33455     hide : function(){
33456         if(!this.collapsed){
33457             this.el.dom.style.left = "-2000px";
33458             this.el.hide();
33459         }else{
33460             this.collapsedEl.dom.style.left = "-2000px";
33461             this.collapsedEl.hide();
33462         }
33463         this.visible = false;
33464         this.fireEvent("visibilitychange", this, false);
33465     },
33466
33467     /**
33468      * Shows this region if it was previously hidden.
33469      */
33470     show : function(){
33471         if(!this.collapsed){
33472             this.el.show();
33473         }else{
33474             this.collapsedEl.show();
33475         }
33476         this.visible = true;
33477         this.fireEvent("visibilitychange", this, true);
33478     },
33479
33480     closeClicked : function(){
33481         if(this.activePanel){
33482             this.remove(this.activePanel);
33483         }
33484     },
33485
33486     collapseClick : function(e){
33487         if(this.isSlid){
33488            e.stopPropagation();
33489            this.slideIn();
33490         }else{
33491            e.stopPropagation();
33492            this.slideOut();
33493         }
33494     },
33495
33496     /**
33497      * Collapses this region.
33498      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
33499      */
33500     collapse : function(skipAnim){
33501         if(this.collapsed) return;
33502         this.collapsed = true;
33503         if(this.split){
33504             this.split.el.hide();
33505         }
33506         if(this.config.animate && skipAnim !== true){
33507             this.fireEvent("invalidated", this);
33508             this.animateCollapse();
33509         }else{
33510             this.el.setLocation(-20000,-20000);
33511             this.el.hide();
33512             this.collapsedEl.show();
33513             this.fireEvent("collapsed", this);
33514             this.fireEvent("invalidated", this);
33515         }
33516     },
33517
33518     animateCollapse : function(){
33519         // overridden
33520     },
33521
33522     /**
33523      * Expands this region if it was previously collapsed.
33524      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
33525      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
33526      */
33527     expand : function(e, skipAnim){
33528         if(e) e.stopPropagation();
33529         if(!this.collapsed || this.el.hasActiveFx()) return;
33530         if(this.isSlid){
33531             this.afterSlideIn();
33532             skipAnim = true;
33533         }
33534         this.collapsed = false;
33535         if(this.config.animate && skipAnim !== true){
33536             this.animateExpand();
33537         }else{
33538             this.el.show();
33539             if(this.split){
33540                 this.split.el.show();
33541             }
33542             this.collapsedEl.setLocation(-2000,-2000);
33543             this.collapsedEl.hide();
33544             this.fireEvent("invalidated", this);
33545             this.fireEvent("expanded", this);
33546         }
33547     },
33548
33549     animateExpand : function(){
33550         // overridden
33551     },
33552
33553     initTabs : function()
33554     {
33555         this.bodyEl.setStyle("overflow", "hidden");
33556         var ts = new Roo.TabPanel(
33557                 this.bodyEl.dom,
33558                 {
33559                     tabPosition: this.bottomTabs ? 'bottom' : 'top',
33560                     disableTooltips: this.config.disableTabTips,
33561                     toolbar : this.config.toolbar
33562                 }
33563         );
33564         if(this.config.hideTabs){
33565             ts.stripWrap.setDisplayed(false);
33566         }
33567         this.tabs = ts;
33568         ts.resizeTabs = this.config.resizeTabs === true;
33569         ts.minTabWidth = this.config.minTabWidth || 40;
33570         ts.maxTabWidth = this.config.maxTabWidth || 250;
33571         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
33572         ts.monitorResize = false;
33573         ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
33574         ts.bodyEl.addClass('x-layout-tabs-body');
33575         this.panels.each(this.initPanelAsTab, this);
33576     },
33577
33578     initPanelAsTab : function(panel){
33579         var ti = this.tabs.addTab(panel.getEl().id, panel.getTitle(), null,
33580                     this.config.closeOnTab && panel.isClosable());
33581         if(panel.tabTip !== undefined){
33582             ti.setTooltip(panel.tabTip);
33583         }
33584         ti.on("activate", function(){
33585               this.setActivePanel(panel);
33586         }, this);
33587         if(this.config.closeOnTab){
33588             ti.on("beforeclose", function(t, e){
33589                 e.cancel = true;
33590                 this.remove(panel);
33591             }, this);
33592         }
33593         return ti;
33594     },
33595
33596     updatePanelTitle : function(panel, title){
33597         if(this.activePanel == panel){
33598             this.updateTitle(title);
33599         }
33600         if(this.tabs){
33601             var ti = this.tabs.getTab(panel.getEl().id);
33602             ti.setText(title);
33603             if(panel.tabTip !== undefined){
33604                 ti.setTooltip(panel.tabTip);
33605             }
33606         }
33607     },
33608
33609     updateTitle : function(title){
33610         if(this.titleTextEl && !this.config.title){
33611             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
33612         }
33613     },
33614
33615     setActivePanel : function(panel){
33616         panel = this.getPanel(panel);
33617         if(this.activePanel && this.activePanel != panel){
33618             this.activePanel.setActiveState(false);
33619         }
33620         this.activePanel = panel;
33621         panel.setActiveState(true);
33622         if(this.panelSize){
33623             panel.setSize(this.panelSize.width, this.panelSize.height);
33624         }
33625         if(this.closeBtn){
33626             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
33627         }
33628         this.updateTitle(panel.getTitle());
33629         if(this.tabs){
33630             this.fireEvent("invalidated", this);
33631         }
33632         this.fireEvent("panelactivated", this, panel);
33633     },
33634
33635     /**
33636      * Shows the specified panel.
33637      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
33638      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
33639      */
33640     showPanel : function(panel){
33641         if(panel = this.getPanel(panel)){
33642             if(this.tabs){
33643                 var tab = this.tabs.getTab(panel.getEl().id);
33644                 if(tab.isHidden()){
33645                     this.tabs.unhideTab(tab.id);
33646                 }
33647                 tab.activate();
33648             }else{
33649                 this.setActivePanel(panel);
33650             }
33651         }
33652         return panel;
33653     },
33654
33655     /**
33656      * Get the active panel for this region.
33657      * @return {Roo.ContentPanel} The active panel or null
33658      */
33659     getActivePanel : function(){
33660         return this.activePanel;
33661     },
33662
33663     validateVisibility : function(){
33664         if(this.panels.getCount() < 1){
33665             this.updateTitle("&#160;");
33666             this.closeBtn.hide();
33667             this.hide();
33668         }else{
33669             if(!this.isVisible()){
33670                 this.show();
33671             }
33672         }
33673     },
33674
33675     /**
33676      * Adds the passed ContentPanel(s) to this region.
33677      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
33678      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
33679      */
33680     add : function(panel){
33681         if(arguments.length > 1){
33682             for(var i = 0, len = arguments.length; i < len; i++) {
33683                 this.add(arguments[i]);
33684             }
33685             return null;
33686         }
33687         if(this.hasPanel(panel)){
33688             this.showPanel(panel);
33689             return panel;
33690         }
33691         panel.setRegion(this);
33692         this.panels.add(panel);
33693         if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
33694             this.bodyEl.dom.appendChild(panel.getEl().dom);
33695             if(panel.background !== true){
33696                 this.setActivePanel(panel);
33697             }
33698             this.fireEvent("paneladded", this, panel);
33699             return panel;
33700         }
33701         if(!this.tabs){
33702             this.initTabs();
33703         }else{
33704             this.initPanelAsTab(panel);
33705         }
33706         if(panel.background !== true){
33707             this.tabs.activate(panel.getEl().id);
33708         }
33709         this.fireEvent("paneladded", this, panel);
33710         return panel;
33711     },
33712
33713     /**
33714      * Hides the tab for the specified panel.
33715      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
33716      */
33717     hidePanel : function(panel){
33718         if(this.tabs && (panel = this.getPanel(panel))){
33719             this.tabs.hideTab(panel.getEl().id);
33720         }
33721     },
33722
33723     /**
33724      * Unhides the tab for a previously hidden panel.
33725      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
33726      */
33727     unhidePanel : function(panel){
33728         if(this.tabs && (panel = this.getPanel(panel))){
33729             this.tabs.unhideTab(panel.getEl().id);
33730         }
33731     },
33732
33733     clearPanels : function(){
33734         while(this.panels.getCount() > 0){
33735              this.remove(this.panels.first());
33736         }
33737     },
33738
33739     /**
33740      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
33741      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
33742      * @param {Boolean} preservePanel Overrides the config preservePanel option
33743      * @return {Roo.ContentPanel} The panel that was removed
33744      */
33745     remove : function(panel, preservePanel){
33746         panel = this.getPanel(panel);
33747         if(!panel){
33748             return null;
33749         }
33750         var e = {};
33751         this.fireEvent("beforeremove", this, panel, e);
33752         if(e.cancel === true){
33753             return null;
33754         }
33755         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
33756         var panelId = panel.getId();
33757         this.panels.removeKey(panelId);
33758         if(preservePanel){
33759             document.body.appendChild(panel.getEl().dom);
33760         }
33761         if(this.tabs){
33762             this.tabs.removeTab(panel.getEl().id);
33763         }else if (!preservePanel){
33764             this.bodyEl.dom.removeChild(panel.getEl().dom);
33765         }
33766         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
33767             var p = this.panels.first();
33768             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
33769             tempEl.appendChild(p.getEl().dom);
33770             this.bodyEl.update("");
33771             this.bodyEl.dom.appendChild(p.getEl().dom);
33772             tempEl = null;
33773             this.updateTitle(p.getTitle());
33774             this.tabs = null;
33775             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
33776             this.setActivePanel(p);
33777         }
33778         panel.setRegion(null);
33779         if(this.activePanel == panel){
33780             this.activePanel = null;
33781         }
33782         if(this.config.autoDestroy !== false && preservePanel !== true){
33783             try{panel.destroy();}catch(e){}
33784         }
33785         this.fireEvent("panelremoved", this, panel);
33786         return panel;
33787     },
33788
33789     /**
33790      * Returns the TabPanel component used by this region
33791      * @return {Roo.TabPanel}
33792      */
33793     getTabs : function(){
33794         return this.tabs;
33795     },
33796
33797     createTool : function(parentEl, className){
33798         var btn = Roo.DomHelper.append(parentEl, {tag: "div", cls: "x-layout-tools-button",
33799             children: [{tag: "div", cls: "x-layout-tools-button-inner " + className, html: "&#160;"}]}, true);
33800         btn.addClassOnOver("x-layout-tools-button-over");
33801         return btn;
33802     }
33803 });/*
33804  * Based on:
33805  * Ext JS Library 1.1.1
33806  * Copyright(c) 2006-2007, Ext JS, LLC.
33807  *
33808  * Originally Released Under LGPL - original licence link has changed is not relivant.
33809  *
33810  * Fork - LGPL
33811  * <script type="text/javascript">
33812  */
33813  
33814
33815
33816 /**
33817  * @class Roo.SplitLayoutRegion
33818  * @extends Roo.LayoutRegion
33819  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
33820  */
33821 Roo.SplitLayoutRegion = function(mgr, config, pos, cursor){
33822     this.cursor = cursor;
33823     Roo.SplitLayoutRegion.superclass.constructor.call(this, mgr, config, pos);
33824 };
33825
33826 Roo.extend(Roo.SplitLayoutRegion, Roo.LayoutRegion, {
33827     splitTip : "Drag to resize.",
33828     collapsibleSplitTip : "Drag to resize. Double click to hide.",
33829     useSplitTips : false,
33830
33831     applyConfig : function(config){
33832         Roo.SplitLayoutRegion.superclass.applyConfig.call(this, config);
33833         if(config.split){
33834             if(!this.split){
33835                 var splitEl = Roo.DomHelper.append(this.mgr.el.dom, 
33836                         {tag: "div", id: this.el.id + "-split", cls: "x-layout-split x-layout-split-"+this.position, html: "&#160;"});
33837                 /** The SplitBar for this region 
33838                 * @type Roo.SplitBar */
33839                 this.split = new Roo.SplitBar(splitEl, this.el, this.orientation);
33840                 this.split.on("moved", this.onSplitMove, this);
33841                 this.split.useShim = config.useShim === true;
33842                 this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
33843                 if(this.useSplitTips){
33844                     this.split.el.dom.title = config.collapsible ? this.collapsibleSplitTip : this.splitTip;
33845                 }
33846                 if(config.collapsible){
33847                     this.split.el.on("dblclick", this.collapse,  this);
33848                 }
33849             }
33850             if(typeof config.minSize != "undefined"){
33851                 this.split.minSize = config.minSize;
33852             }
33853             if(typeof config.maxSize != "undefined"){
33854                 this.split.maxSize = config.maxSize;
33855             }
33856             if(config.hideWhenEmpty || config.hidden || config.collapsed){
33857                 this.hideSplitter();
33858             }
33859         }
33860     },
33861
33862     getHMaxSize : function(){
33863          var cmax = this.config.maxSize || 10000;
33864          var center = this.mgr.getRegion("center");
33865          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
33866     },
33867
33868     getVMaxSize : function(){
33869          var cmax = this.config.maxSize || 10000;
33870          var center = this.mgr.getRegion("center");
33871          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
33872     },
33873
33874     onSplitMove : function(split, newSize){
33875         this.fireEvent("resized", this, newSize);
33876     },
33877     
33878     /** 
33879      * Returns the {@link Roo.SplitBar} for this region.
33880      * @return {Roo.SplitBar}
33881      */
33882     getSplitBar : function(){
33883         return this.split;
33884     },
33885     
33886     hide : function(){
33887         this.hideSplitter();
33888         Roo.SplitLayoutRegion.superclass.hide.call(this);
33889     },
33890
33891     hideSplitter : function(){
33892         if(this.split){
33893             this.split.el.setLocation(-2000,-2000);
33894             this.split.el.hide();
33895         }
33896     },
33897
33898     show : function(){
33899         if(this.split){
33900             this.split.el.show();
33901         }
33902         Roo.SplitLayoutRegion.superclass.show.call(this);
33903     },
33904     
33905     beforeSlide: function(){
33906         if(Roo.isGecko){// firefox overflow auto bug workaround
33907             this.bodyEl.clip();
33908             if(this.tabs) this.tabs.bodyEl.clip();
33909             if(this.activePanel){
33910                 this.activePanel.getEl().clip();
33911                 
33912                 if(this.activePanel.beforeSlide){
33913                     this.activePanel.beforeSlide();
33914                 }
33915             }
33916         }
33917     },
33918     
33919     afterSlide : function(){
33920         if(Roo.isGecko){// firefox overflow auto bug workaround
33921             this.bodyEl.unclip();
33922             if(this.tabs) this.tabs.bodyEl.unclip();
33923             if(this.activePanel){
33924                 this.activePanel.getEl().unclip();
33925                 if(this.activePanel.afterSlide){
33926                     this.activePanel.afterSlide();
33927                 }
33928             }
33929         }
33930     },
33931
33932     initAutoHide : function(){
33933         if(this.autoHide !== false){
33934             if(!this.autoHideHd){
33935                 var st = new Roo.util.DelayedTask(this.slideIn, this);
33936                 this.autoHideHd = {
33937                     "mouseout": function(e){
33938                         if(!e.within(this.el, true)){
33939                             st.delay(500);
33940                         }
33941                     },
33942                     "mouseover" : function(e){
33943                         st.cancel();
33944                     },
33945                     scope : this
33946                 };
33947             }
33948             this.el.on(this.autoHideHd);
33949         }
33950     },
33951
33952     clearAutoHide : function(){
33953         if(this.autoHide !== false){
33954             this.el.un("mouseout", this.autoHideHd.mouseout);
33955             this.el.un("mouseover", this.autoHideHd.mouseover);
33956         }
33957     },
33958
33959     clearMonitor : function(){
33960         Roo.get(document).un("click", this.slideInIf, this);
33961     },
33962
33963     // these names are backwards but not changed for compat
33964     slideOut : function(){
33965         if(this.isSlid || this.el.hasActiveFx()){
33966             return;
33967         }
33968         this.isSlid = true;
33969         if(this.collapseBtn){
33970             this.collapseBtn.hide();
33971         }
33972         this.closeBtnState = this.closeBtn.getStyle('display');
33973         this.closeBtn.hide();
33974         if(this.stickBtn){
33975             this.stickBtn.show();
33976         }
33977         this.el.show();
33978         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
33979         this.beforeSlide();
33980         this.el.setStyle("z-index", 10001);
33981         this.el.slideIn(this.getSlideAnchor(), {
33982             callback: function(){
33983                 this.afterSlide();
33984                 this.initAutoHide();
33985                 Roo.get(document).on("click", this.slideInIf, this);
33986                 this.fireEvent("slideshow", this);
33987             },
33988             scope: this,
33989             block: true
33990         });
33991     },
33992
33993     afterSlideIn : function(){
33994         this.clearAutoHide();
33995         this.isSlid = false;
33996         this.clearMonitor();
33997         this.el.setStyle("z-index", "");
33998         if(this.collapseBtn){
33999             this.collapseBtn.show();
34000         }
34001         this.closeBtn.setStyle('display', this.closeBtnState);
34002         if(this.stickBtn){
34003             this.stickBtn.hide();
34004         }
34005         this.fireEvent("slidehide", this);
34006     },
34007
34008     slideIn : function(cb){
34009         if(!this.isSlid || this.el.hasActiveFx()){
34010             Roo.callback(cb);
34011             return;
34012         }
34013         this.isSlid = false;
34014         this.beforeSlide();
34015         this.el.slideOut(this.getSlideAnchor(), {
34016             callback: function(){
34017                 this.el.setLeftTop(-10000, -10000);
34018                 this.afterSlide();
34019                 this.afterSlideIn();
34020                 Roo.callback(cb);
34021             },
34022             scope: this,
34023             block: true
34024         });
34025     },
34026     
34027     slideInIf : function(e){
34028         if(!e.within(this.el)){
34029             this.slideIn();
34030         }
34031     },
34032
34033     animateCollapse : function(){
34034         this.beforeSlide();
34035         this.el.setStyle("z-index", 20000);
34036         var anchor = this.getSlideAnchor();
34037         this.el.slideOut(anchor, {
34038             callback : function(){
34039                 this.el.setStyle("z-index", "");
34040                 this.collapsedEl.slideIn(anchor, {duration:.3});
34041                 this.afterSlide();
34042                 this.el.setLocation(-10000,-10000);
34043                 this.el.hide();
34044                 this.fireEvent("collapsed", this);
34045             },
34046             scope: this,
34047             block: true
34048         });
34049     },
34050
34051     animateExpand : function(){
34052         this.beforeSlide();
34053         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
34054         this.el.setStyle("z-index", 20000);
34055         this.collapsedEl.hide({
34056             duration:.1
34057         });
34058         this.el.slideIn(this.getSlideAnchor(), {
34059             callback : function(){
34060                 this.el.setStyle("z-index", "");
34061                 this.afterSlide();
34062                 if(this.split){
34063                     this.split.el.show();
34064                 }
34065                 this.fireEvent("invalidated", this);
34066                 this.fireEvent("expanded", this);
34067             },
34068             scope: this,
34069             block: true
34070         });
34071     },
34072
34073     anchors : {
34074         "west" : "left",
34075         "east" : "right",
34076         "north" : "top",
34077         "south" : "bottom"
34078     },
34079
34080     sanchors : {
34081         "west" : "l",
34082         "east" : "r",
34083         "north" : "t",
34084         "south" : "b"
34085     },
34086
34087     canchors : {
34088         "west" : "tl-tr",
34089         "east" : "tr-tl",
34090         "north" : "tl-bl",
34091         "south" : "bl-tl"
34092     },
34093
34094     getAnchor : function(){
34095         return this.anchors[this.position];
34096     },
34097
34098     getCollapseAnchor : function(){
34099         return this.canchors[this.position];
34100     },
34101
34102     getSlideAnchor : function(){
34103         return this.sanchors[this.position];
34104     },
34105
34106     getAlignAdj : function(){
34107         var cm = this.cmargins;
34108         switch(this.position){
34109             case "west":
34110                 return [0, 0];
34111             break;
34112             case "east":
34113                 return [0, 0];
34114             break;
34115             case "north":
34116                 return [0, 0];
34117             break;
34118             case "south":
34119                 return [0, 0];
34120             break;
34121         }
34122     },
34123
34124     getExpandAdj : function(){
34125         var c = this.collapsedEl, cm = this.cmargins;
34126         switch(this.position){
34127             case "west":
34128                 return [-(cm.right+c.getWidth()+cm.left), 0];
34129             break;
34130             case "east":
34131                 return [cm.right+c.getWidth()+cm.left, 0];
34132             break;
34133             case "north":
34134                 return [0, -(cm.top+cm.bottom+c.getHeight())];
34135             break;
34136             case "south":
34137                 return [0, cm.top+cm.bottom+c.getHeight()];
34138             break;
34139         }
34140     }
34141 });/*
34142  * Based on:
34143  * Ext JS Library 1.1.1
34144  * Copyright(c) 2006-2007, Ext JS, LLC.
34145  *
34146  * Originally Released Under LGPL - original licence link has changed is not relivant.
34147  *
34148  * Fork - LGPL
34149  * <script type="text/javascript">
34150  */
34151 /*
34152  * These classes are private internal classes
34153  */
34154 Roo.CenterLayoutRegion = function(mgr, config){
34155     Roo.LayoutRegion.call(this, mgr, config, "center");
34156     this.visible = true;
34157     this.minWidth = config.minWidth || 20;
34158     this.minHeight = config.minHeight || 20;
34159 };
34160
34161 Roo.extend(Roo.CenterLayoutRegion, Roo.LayoutRegion, {
34162     hide : function(){
34163         // center panel can't be hidden
34164     },
34165     
34166     show : function(){
34167         // center panel can't be hidden
34168     },
34169     
34170     getMinWidth: function(){
34171         return this.minWidth;
34172     },
34173     
34174     getMinHeight: function(){
34175         return this.minHeight;
34176     }
34177 });
34178
34179
34180 Roo.NorthLayoutRegion = function(mgr, config){
34181     Roo.LayoutRegion.call(this, mgr, config, "north", "n-resize");
34182     if(this.split){
34183         this.split.placement = Roo.SplitBar.TOP;
34184         this.split.orientation = Roo.SplitBar.VERTICAL;
34185         this.split.el.addClass("x-layout-split-v");
34186     }
34187     var size = config.initialSize || config.height;
34188     if(typeof size != "undefined"){
34189         this.el.setHeight(size);
34190     }
34191 };
34192 Roo.extend(Roo.NorthLayoutRegion, Roo.SplitLayoutRegion, {
34193     orientation: Roo.SplitBar.VERTICAL,
34194     getBox : function(){
34195         if(this.collapsed){
34196             return this.collapsedEl.getBox();
34197         }
34198         var box = this.el.getBox();
34199         if(this.split){
34200             box.height += this.split.el.getHeight();
34201         }
34202         return box;
34203     },
34204     
34205     updateBox : function(box){
34206         if(this.split && !this.collapsed){
34207             box.height -= this.split.el.getHeight();
34208             this.split.el.setLeft(box.x);
34209             this.split.el.setTop(box.y+box.height);
34210             this.split.el.setWidth(box.width);
34211         }
34212         if(this.collapsed){
34213             this.updateBody(box.width, null);
34214         }
34215         Roo.LayoutRegion.prototype.updateBox.call(this, box);
34216     }
34217 });
34218
34219 Roo.SouthLayoutRegion = function(mgr, config){
34220     Roo.SplitLayoutRegion.call(this, mgr, config, "south", "s-resize");
34221     if(this.split){
34222         this.split.placement = Roo.SplitBar.BOTTOM;
34223         this.split.orientation = Roo.SplitBar.VERTICAL;
34224         this.split.el.addClass("x-layout-split-v");
34225     }
34226     var size = config.initialSize || config.height;
34227     if(typeof size != "undefined"){
34228         this.el.setHeight(size);
34229     }
34230 };
34231 Roo.extend(Roo.SouthLayoutRegion, Roo.SplitLayoutRegion, {
34232     orientation: Roo.SplitBar.VERTICAL,
34233     getBox : function(){
34234         if(this.collapsed){
34235             return this.collapsedEl.getBox();
34236         }
34237         var box = this.el.getBox();
34238         if(this.split){
34239             var sh = this.split.el.getHeight();
34240             box.height += sh;
34241             box.y -= sh;
34242         }
34243         return box;
34244     },
34245     
34246     updateBox : function(box){
34247         if(this.split && !this.collapsed){
34248             var sh = this.split.el.getHeight();
34249             box.height -= sh;
34250             box.y += sh;
34251             this.split.el.setLeft(box.x);
34252             this.split.el.setTop(box.y-sh);
34253             this.split.el.setWidth(box.width);
34254         }
34255         if(this.collapsed){
34256             this.updateBody(box.width, null);
34257         }
34258         Roo.LayoutRegion.prototype.updateBox.call(this, box);
34259     }
34260 });
34261
34262 Roo.EastLayoutRegion = function(mgr, config){
34263     Roo.SplitLayoutRegion.call(this, mgr, config, "east", "e-resize");
34264     if(this.split){
34265         this.split.placement = Roo.SplitBar.RIGHT;
34266         this.split.orientation = Roo.SplitBar.HORIZONTAL;
34267         this.split.el.addClass("x-layout-split-h");
34268     }
34269     var size = config.initialSize || config.width;
34270     if(typeof size != "undefined"){
34271         this.el.setWidth(size);
34272     }
34273 };
34274 Roo.extend(Roo.EastLayoutRegion, Roo.SplitLayoutRegion, {
34275     orientation: Roo.SplitBar.HORIZONTAL,
34276     getBox : function(){
34277         if(this.collapsed){
34278             return this.collapsedEl.getBox();
34279         }
34280         var box = this.el.getBox();
34281         if(this.split){
34282             var sw = this.split.el.getWidth();
34283             box.width += sw;
34284             box.x -= sw;
34285         }
34286         return box;
34287     },
34288
34289     updateBox : function(box){
34290         if(this.split && !this.collapsed){
34291             var sw = this.split.el.getWidth();
34292             box.width -= sw;
34293             this.split.el.setLeft(box.x);
34294             this.split.el.setTop(box.y);
34295             this.split.el.setHeight(box.height);
34296             box.x += sw;
34297         }
34298         if(this.collapsed){
34299             this.updateBody(null, box.height);
34300         }
34301         Roo.LayoutRegion.prototype.updateBox.call(this, box);
34302     }
34303 });
34304
34305 Roo.WestLayoutRegion = function(mgr, config){
34306     Roo.SplitLayoutRegion.call(this, mgr, config, "west", "w-resize");
34307     if(this.split){
34308         this.split.placement = Roo.SplitBar.LEFT;
34309         this.split.orientation = Roo.SplitBar.HORIZONTAL;
34310         this.split.el.addClass("x-layout-split-h");
34311     }
34312     var size = config.initialSize || config.width;
34313     if(typeof size != "undefined"){
34314         this.el.setWidth(size);
34315     }
34316 };
34317 Roo.extend(Roo.WestLayoutRegion, Roo.SplitLayoutRegion, {
34318     orientation: Roo.SplitBar.HORIZONTAL,
34319     getBox : function(){
34320         if(this.collapsed){
34321             return this.collapsedEl.getBox();
34322         }
34323         var box = this.el.getBox();
34324         if(this.split){
34325             box.width += this.split.el.getWidth();
34326         }
34327         return box;
34328     },
34329     
34330     updateBox : function(box){
34331         if(this.split && !this.collapsed){
34332             var sw = this.split.el.getWidth();
34333             box.width -= sw;
34334             this.split.el.setLeft(box.x+box.width);
34335             this.split.el.setTop(box.y);
34336             this.split.el.setHeight(box.height);
34337         }
34338         if(this.collapsed){
34339             this.updateBody(null, box.height);
34340         }
34341         Roo.LayoutRegion.prototype.updateBox.call(this, box);
34342     }
34343 });
34344 /*
34345  * Based on:
34346  * Ext JS Library 1.1.1
34347  * Copyright(c) 2006-2007, Ext JS, LLC.
34348  *
34349  * Originally Released Under LGPL - original licence link has changed is not relivant.
34350  *
34351  * Fork - LGPL
34352  * <script type="text/javascript">
34353  */
34354  
34355  
34356 /*
34357  * Private internal class for reading and applying state
34358  */
34359 Roo.LayoutStateManager = function(layout){
34360      // default empty state
34361      this.state = {
34362         north: {},
34363         south: {},
34364         east: {},
34365         west: {}       
34366     };
34367 };
34368
34369 Roo.LayoutStateManager.prototype = {
34370     init : function(layout, provider){
34371         this.provider = provider;
34372         var state = provider.get(layout.id+"-layout-state");
34373         if(state){
34374             var wasUpdating = layout.isUpdating();
34375             if(!wasUpdating){
34376                 layout.beginUpdate();
34377             }
34378             for(var key in state){
34379                 if(typeof state[key] != "function"){
34380                     var rstate = state[key];
34381                     var r = layout.getRegion(key);
34382                     if(r && rstate){
34383                         if(rstate.size){
34384                             r.resizeTo(rstate.size);
34385                         }
34386                         if(rstate.collapsed == true){
34387                             r.collapse(true);
34388                         }else{
34389                             r.expand(null, true);
34390                         }
34391                     }
34392                 }
34393             }
34394             if(!wasUpdating){
34395                 layout.endUpdate();
34396             }
34397             this.state = state; 
34398         }
34399         this.layout = layout;
34400         layout.on("regionresized", this.onRegionResized, this);
34401         layout.on("regioncollapsed", this.onRegionCollapsed, this);
34402         layout.on("regionexpanded", this.onRegionExpanded, this);
34403     },
34404     
34405     storeState : function(){
34406         this.provider.set(this.layout.id+"-layout-state", this.state);
34407     },
34408     
34409     onRegionResized : function(region, newSize){
34410         this.state[region.getPosition()].size = newSize;
34411         this.storeState();
34412     },
34413     
34414     onRegionCollapsed : function(region){
34415         this.state[region.getPosition()].collapsed = true;
34416         this.storeState();
34417     },
34418     
34419     onRegionExpanded : function(region){
34420         this.state[region.getPosition()].collapsed = false;
34421         this.storeState();
34422     }
34423 };/*
34424  * Based on:
34425  * Ext JS Library 1.1.1
34426  * Copyright(c) 2006-2007, Ext JS, LLC.
34427  *
34428  * Originally Released Under LGPL - original licence link has changed is not relivant.
34429  *
34430  * Fork - LGPL
34431  * <script type="text/javascript">
34432  */
34433 /**
34434  * @class Roo.ContentPanel
34435  * @extends Roo.util.Observable
34436  * A basic ContentPanel element.
34437  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
34438  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
34439  * @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
34440  * @cfg {Boolean}   closable      True if the panel can be closed/removed
34441  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
34442  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
34443  * @cfg {Toolbar}   toolbar       A toolbar for this panel
34444  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
34445  * @cfg {String} title          The title for this panel
34446  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
34447  * @cfg {String} url            Calls {@link #setUrl} with this value
34448  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
34449  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
34450  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
34451  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
34452
34453  * @constructor
34454  * Create a new ContentPanel.
34455  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
34456  * @param {String/Object} config A string to set only the title or a config object
34457  * @param {String} content (optional) Set the HTML content for this panel
34458  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
34459  */
34460 Roo.ContentPanel = function(el, config, content){
34461     
34462      
34463     /*
34464     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
34465         config = el;
34466         el = Roo.id();
34467     }
34468     if (config && config.parentLayout) { 
34469         el = config.parentLayout.el.createChild(); 
34470     }
34471     */
34472     if(el.autoCreate){ // xtype is available if this is called from factory
34473         config = el;
34474         el = Roo.id();
34475     }
34476     this.el = Roo.get(el);
34477     if(!this.el && config && config.autoCreate){
34478         if(typeof config.autoCreate == "object"){
34479             if(!config.autoCreate.id){
34480                 config.autoCreate.id = config.id||el;
34481             }
34482             this.el = Roo.DomHelper.append(document.body,
34483                         config.autoCreate, true);
34484         }else{
34485             this.el = Roo.DomHelper.append(document.body,
34486                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
34487         }
34488     }
34489     this.closable = false;
34490     this.loaded = false;
34491     this.active = false;
34492     if(typeof config == "string"){
34493         this.title = config;
34494     }else{
34495         Roo.apply(this, config);
34496     }
34497     
34498     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
34499         this.wrapEl = this.el.wrap();
34500         this.toolbar.container = this.el.insertSibling(false, 'before');
34501         this.toolbar = new Roo.Toolbar(this.toolbar);
34502     }
34503     
34504     // xtype created footer. - not sure if will work as we normally have to render first..
34505     if (this.footer && !this.footer.el && this.footer.xtype) {
34506         if (!this.wrapEl) {
34507             this.wrapEl = this.el.wrap();
34508         }
34509     
34510         this.footer.container = this.wrapEl.createChild();
34511          
34512         this.footer = Roo.factory(this.footer, Roo);
34513         
34514     }
34515     
34516     if(this.resizeEl){
34517         this.resizeEl = Roo.get(this.resizeEl, true);
34518     }else{
34519         this.resizeEl = this.el;
34520     }
34521     // handle view.xtype
34522     
34523  
34524     
34525     
34526     this.addEvents({
34527         /**
34528          * @event activate
34529          * Fires when this panel is activated. 
34530          * @param {Roo.ContentPanel} this
34531          */
34532         "activate" : true,
34533         /**
34534          * @event deactivate
34535          * Fires when this panel is activated. 
34536          * @param {Roo.ContentPanel} this
34537          */
34538         "deactivate" : true,
34539
34540         /**
34541          * @event resize
34542          * Fires when this panel is resized if fitToFrame is true.
34543          * @param {Roo.ContentPanel} this
34544          * @param {Number} width The width after any component adjustments
34545          * @param {Number} height The height after any component adjustments
34546          */
34547         "resize" : true,
34548         
34549          /**
34550          * @event render
34551          * Fires when this tab is created
34552          * @param {Roo.ContentPanel} this
34553          */
34554         "render" : true
34555         
34556         
34557         
34558     });
34559     
34560
34561     
34562     
34563     if(this.autoScroll){
34564         this.resizeEl.setStyle("overflow", "auto");
34565     } else {
34566         // fix randome scrolling
34567         this.el.on('scroll', function() {
34568             Roo.log('fix random scolling');
34569             this.scrollTo('top',0); 
34570         });
34571     }
34572     content = content || this.content;
34573     if(content){
34574         this.setContent(content);
34575     }
34576     if(config && config.url){
34577         this.setUrl(this.url, this.params, this.loadOnce);
34578     }
34579     
34580     
34581     
34582     Roo.ContentPanel.superclass.constructor.call(this);
34583     
34584     if (this.view && typeof(this.view.xtype) != 'undefined') {
34585         this.view.el = this.el.appendChild(document.createElement("div"));
34586         this.view = Roo.factory(this.view); 
34587         this.view.render  &&  this.view.render(false, '');  
34588     }
34589     
34590     
34591     this.fireEvent('render', this);
34592 };
34593
34594 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
34595     tabTip:'',
34596     setRegion : function(region){
34597         this.region = region;
34598         if(region){
34599            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
34600         }else{
34601            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
34602         } 
34603     },
34604     
34605     /**
34606      * Returns the toolbar for this Panel if one was configured. 
34607      * @return {Roo.Toolbar} 
34608      */
34609     getToolbar : function(){
34610         return this.toolbar;
34611     },
34612     
34613     setActiveState : function(active){
34614         this.active = active;
34615         if(!active){
34616             this.fireEvent("deactivate", this);
34617         }else{
34618             this.fireEvent("activate", this);
34619         }
34620     },
34621     /**
34622      * Updates this panel's element
34623      * @param {String} content The new content
34624      * @param {Boolean} loadScripts (optional) true to look for and process scripts
34625     */
34626     setContent : function(content, loadScripts){
34627         this.el.update(content, loadScripts);
34628     },
34629
34630     ignoreResize : function(w, h){
34631         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
34632             return true;
34633         }else{
34634             this.lastSize = {width: w, height: h};
34635             return false;
34636         }
34637     },
34638     /**
34639      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
34640      * @return {Roo.UpdateManager} The UpdateManager
34641      */
34642     getUpdateManager : function(){
34643         return this.el.getUpdateManager();
34644     },
34645      /**
34646      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
34647      * @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:
34648 <pre><code>
34649 panel.load({
34650     url: "your-url.php",
34651     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
34652     callback: yourFunction,
34653     scope: yourObject, //(optional scope)
34654     discardUrl: false,
34655     nocache: false,
34656     text: "Loading...",
34657     timeout: 30,
34658     scripts: false
34659 });
34660 </code></pre>
34661      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
34662      * 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.
34663      * @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}
34664      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
34665      * @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.
34666      * @return {Roo.ContentPanel} this
34667      */
34668     load : function(){
34669         var um = this.el.getUpdateManager();
34670         um.update.apply(um, arguments);
34671         return this;
34672     },
34673
34674
34675     /**
34676      * 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.
34677      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
34678      * @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)
34679      * @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)
34680      * @return {Roo.UpdateManager} The UpdateManager
34681      */
34682     setUrl : function(url, params, loadOnce){
34683         if(this.refreshDelegate){
34684             this.removeListener("activate", this.refreshDelegate);
34685         }
34686         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
34687         this.on("activate", this.refreshDelegate);
34688         return this.el.getUpdateManager();
34689     },
34690     
34691     _handleRefresh : function(url, params, loadOnce){
34692         if(!loadOnce || !this.loaded){
34693             var updater = this.el.getUpdateManager();
34694             updater.update(url, params, this._setLoaded.createDelegate(this));
34695         }
34696     },
34697     
34698     _setLoaded : function(){
34699         this.loaded = true;
34700     }, 
34701     
34702     /**
34703      * Returns this panel's id
34704      * @return {String} 
34705      */
34706     getId : function(){
34707         return this.el.id;
34708     },
34709     
34710     /** 
34711      * Returns this panel's element - used by regiosn to add.
34712      * @return {Roo.Element} 
34713      */
34714     getEl : function(){
34715         return this.wrapEl || this.el;
34716     },
34717     
34718     adjustForComponents : function(width, height)
34719     {
34720         //Roo.log('adjustForComponents ');
34721         if(this.resizeEl != this.el){
34722             width -= this.el.getFrameWidth('lr');
34723             height -= this.el.getFrameWidth('tb');
34724         }
34725         if(this.toolbar){
34726             var te = this.toolbar.getEl();
34727             height -= te.getHeight();
34728             te.setWidth(width);
34729         }
34730         if(this.footer){
34731             var te = this.footer.getEl();
34732             Roo.log("footer:" + te.getHeight());
34733             
34734             height -= te.getHeight();
34735             te.setWidth(width);
34736         }
34737         
34738         
34739         if(this.adjustments){
34740             width += this.adjustments[0];
34741             height += this.adjustments[1];
34742         }
34743         return {"width": width, "height": height};
34744     },
34745     
34746     setSize : function(width, height){
34747         if(this.fitToFrame && !this.ignoreResize(width, height)){
34748             if(this.fitContainer && this.resizeEl != this.el){
34749                 this.el.setSize(width, height);
34750             }
34751             var size = this.adjustForComponents(width, height);
34752             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
34753             this.fireEvent('resize', this, size.width, size.height);
34754         }
34755     },
34756     
34757     /**
34758      * Returns this panel's title
34759      * @return {String} 
34760      */
34761     getTitle : function(){
34762         return this.title;
34763     },
34764     
34765     /**
34766      * Set this panel's title
34767      * @param {String} title
34768      */
34769     setTitle : function(title){
34770         this.title = title;
34771         if(this.region){
34772             this.region.updatePanelTitle(this, title);
34773         }
34774     },
34775     
34776     /**
34777      * Returns true is this panel was configured to be closable
34778      * @return {Boolean} 
34779      */
34780     isClosable : function(){
34781         return this.closable;
34782     },
34783     
34784     beforeSlide : function(){
34785         this.el.clip();
34786         this.resizeEl.clip();
34787     },
34788     
34789     afterSlide : function(){
34790         this.el.unclip();
34791         this.resizeEl.unclip();
34792     },
34793     
34794     /**
34795      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
34796      *   Will fail silently if the {@link #setUrl} method has not been called.
34797      *   This does not activate the panel, just updates its content.
34798      */
34799     refresh : function(){
34800         if(this.refreshDelegate){
34801            this.loaded = false;
34802            this.refreshDelegate();
34803         }
34804     },
34805     
34806     /**
34807      * Destroys this panel
34808      */
34809     destroy : function(){
34810         this.el.removeAllListeners();
34811         var tempEl = document.createElement("span");
34812         tempEl.appendChild(this.el.dom);
34813         tempEl.innerHTML = "";
34814         this.el.remove();
34815         this.el = null;
34816     },
34817     
34818     /**
34819      * form - if the content panel contains a form - this is a reference to it.
34820      * @type {Roo.form.Form}
34821      */
34822     form : false,
34823     /**
34824      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
34825      *    This contains a reference to it.
34826      * @type {Roo.View}
34827      */
34828     view : false,
34829     
34830       /**
34831      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
34832      * <pre><code>
34833
34834 layout.addxtype({
34835        xtype : 'Form',
34836        items: [ .... ]
34837    }
34838 );
34839
34840 </code></pre>
34841      * @param {Object} cfg Xtype definition of item to add.
34842      */
34843     
34844     addxtype : function(cfg) {
34845         // add form..
34846         if (cfg.xtype.match(/^Form$/)) {
34847             
34848             var el;
34849             //if (this.footer) {
34850             //    el = this.footer.container.insertSibling(false, 'before');
34851             //} else {
34852                 el = this.el.createChild();
34853             //}
34854
34855             this.form = new  Roo.form.Form(cfg);
34856             
34857             
34858             if ( this.form.allItems.length) this.form.render(el.dom);
34859             return this.form;
34860         }
34861         // should only have one of theses..
34862         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
34863             // views.. should not be just added - used named prop 'view''
34864             
34865             cfg.el = this.el.appendChild(document.createElement("div"));
34866             // factory?
34867             
34868             var ret = new Roo.factory(cfg);
34869              
34870              ret.render && ret.render(false, ''); // render blank..
34871             this.view = ret;
34872             return ret;
34873         }
34874         return false;
34875     }
34876 });
34877
34878 /**
34879  * @class Roo.GridPanel
34880  * @extends Roo.ContentPanel
34881  * @constructor
34882  * Create a new GridPanel.
34883  * @param {Roo.grid.Grid} grid The grid for this panel
34884  * @param {String/Object} config A string to set only the panel's title, or a config object
34885  */
34886 Roo.GridPanel = function(grid, config){
34887     
34888   
34889     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
34890         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
34891         
34892     this.wrapper.dom.appendChild(grid.getGridEl().dom);
34893     
34894     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
34895     
34896     if(this.toolbar){
34897         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
34898     }
34899     // xtype created footer. - not sure if will work as we normally have to render first..
34900     if (this.footer && !this.footer.el && this.footer.xtype) {
34901         
34902         this.footer.container = this.grid.getView().getFooterPanel(true);
34903         this.footer.dataSource = this.grid.dataSource;
34904         this.footer = Roo.factory(this.footer, Roo);
34905         
34906     }
34907     
34908     grid.monitorWindowResize = false; // turn off autosizing
34909     grid.autoHeight = false;
34910     grid.autoWidth = false;
34911     this.grid = grid;
34912     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
34913 };
34914
34915 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
34916     getId : function(){
34917         return this.grid.id;
34918     },
34919     
34920     /**
34921      * Returns the grid for this panel
34922      * @return {Roo.grid.Grid} 
34923      */
34924     getGrid : function(){
34925         return this.grid;    
34926     },
34927     
34928     setSize : function(width, height){
34929         if(!this.ignoreResize(width, height)){
34930             var grid = this.grid;
34931             var size = this.adjustForComponents(width, height);
34932             grid.getGridEl().setSize(size.width, size.height);
34933             grid.autoSize();
34934         }
34935     },
34936     
34937     beforeSlide : function(){
34938         this.grid.getView().scroller.clip();
34939     },
34940     
34941     afterSlide : function(){
34942         this.grid.getView().scroller.unclip();
34943     },
34944     
34945     destroy : function(){
34946         this.grid.destroy();
34947         delete this.grid;
34948         Roo.GridPanel.superclass.destroy.call(this); 
34949     }
34950 });
34951
34952
34953 /**
34954  * @class Roo.NestedLayoutPanel
34955  * @extends Roo.ContentPanel
34956  * @constructor
34957  * Create a new NestedLayoutPanel.
34958  * 
34959  * 
34960  * @param {Roo.BorderLayout} layout The layout for this panel
34961  * @param {String/Object} config A string to set only the title or a config object
34962  */
34963 Roo.NestedLayoutPanel = function(layout, config)
34964 {
34965     // construct with only one argument..
34966     /* FIXME - implement nicer consturctors
34967     if (layout.layout) {
34968         config = layout;
34969         layout = config.layout;
34970         delete config.layout;
34971     }
34972     if (layout.xtype && !layout.getEl) {
34973         // then layout needs constructing..
34974         layout = Roo.factory(layout, Roo);
34975     }
34976     */
34977     
34978     
34979     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
34980     
34981     layout.monitorWindowResize = false; // turn off autosizing
34982     this.layout = layout;
34983     this.layout.getEl().addClass("x-layout-nested-layout");
34984     
34985     
34986     
34987     
34988 };
34989
34990 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
34991
34992     setSize : function(width, height){
34993         if(!this.ignoreResize(width, height)){
34994             var size = this.adjustForComponents(width, height);
34995             var el = this.layout.getEl();
34996             el.setSize(size.width, size.height);
34997             var touch = el.dom.offsetWidth;
34998             this.layout.layout();
34999             // ie requires a double layout on the first pass
35000             if(Roo.isIE && !this.initialized){
35001                 this.initialized = true;
35002                 this.layout.layout();
35003             }
35004         }
35005     },
35006     
35007     // activate all subpanels if not currently active..
35008     
35009     setActiveState : function(active){
35010         this.active = active;
35011         if(!active){
35012             this.fireEvent("deactivate", this);
35013             return;
35014         }
35015         
35016         this.fireEvent("activate", this);
35017         // not sure if this should happen before or after..
35018         if (!this.layout) {
35019             return; // should not happen..
35020         }
35021         var reg = false;
35022         for (var r in this.layout.regions) {
35023             reg = this.layout.getRegion(r);
35024             if (reg.getActivePanel()) {
35025                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
35026                 reg.setActivePanel(reg.getActivePanel());
35027                 continue;
35028             }
35029             if (!reg.panels.length) {
35030                 continue;
35031             }
35032             reg.showPanel(reg.getPanel(0));
35033         }
35034         
35035         
35036         
35037         
35038     },
35039     
35040     /**
35041      * Returns the nested BorderLayout for this panel
35042      * @return {Roo.BorderLayout} 
35043      */
35044     getLayout : function(){
35045         return this.layout;
35046     },
35047     
35048      /**
35049      * Adds a xtype elements to the layout of the nested panel
35050      * <pre><code>
35051
35052 panel.addxtype({
35053        xtype : 'ContentPanel',
35054        region: 'west',
35055        items: [ .... ]
35056    }
35057 );
35058
35059 panel.addxtype({
35060         xtype : 'NestedLayoutPanel',
35061         region: 'west',
35062         layout: {
35063            center: { },
35064            west: { }   
35065         },
35066         items : [ ... list of content panels or nested layout panels.. ]
35067    }
35068 );
35069 </code></pre>
35070      * @param {Object} cfg Xtype definition of item to add.
35071      */
35072     addxtype : function(cfg) {
35073         return this.layout.addxtype(cfg);
35074     
35075     }
35076 });
35077
35078 Roo.ScrollPanel = function(el, config, content){
35079     config = config || {};
35080     config.fitToFrame = true;
35081     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
35082     
35083     this.el.dom.style.overflow = "hidden";
35084     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
35085     this.el.removeClass("x-layout-inactive-content");
35086     this.el.on("mousewheel", this.onWheel, this);
35087
35088     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
35089     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
35090     up.unselectable(); down.unselectable();
35091     up.on("click", this.scrollUp, this);
35092     down.on("click", this.scrollDown, this);
35093     up.addClassOnOver("x-scroller-btn-over");
35094     down.addClassOnOver("x-scroller-btn-over");
35095     up.addClassOnClick("x-scroller-btn-click");
35096     down.addClassOnClick("x-scroller-btn-click");
35097     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
35098
35099     this.resizeEl = this.el;
35100     this.el = wrap; this.up = up; this.down = down;
35101 };
35102
35103 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
35104     increment : 100,
35105     wheelIncrement : 5,
35106     scrollUp : function(){
35107         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
35108     },
35109
35110     scrollDown : function(){
35111         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
35112     },
35113
35114     afterScroll : function(){
35115         var el = this.resizeEl;
35116         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
35117         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
35118         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
35119     },
35120
35121     setSize : function(){
35122         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
35123         this.afterScroll();
35124     },
35125
35126     onWheel : function(e){
35127         var d = e.getWheelDelta();
35128         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
35129         this.afterScroll();
35130         e.stopEvent();
35131     },
35132
35133     setContent : function(content, loadScripts){
35134         this.resizeEl.update(content, loadScripts);
35135     }
35136
35137 });
35138
35139
35140
35141
35142
35143
35144
35145
35146
35147 /**
35148  * @class Roo.TreePanel
35149  * @extends Roo.ContentPanel
35150  * @constructor
35151  * Create a new TreePanel. - defaults to fit/scoll contents.
35152  * @param {String/Object} config A string to set only the panel's title, or a config object
35153  * @cfg {Roo.tree.TreePanel} tree The tree TreePanel, with config etc.
35154  */
35155 Roo.TreePanel = function(config){
35156     var el = config.el;
35157     var tree = config.tree;
35158     delete config.tree; 
35159     delete config.el; // hopefull!
35160     
35161     // wrapper for IE7 strict & safari scroll issue
35162     
35163     var treeEl = el.createChild();
35164     config.resizeEl = treeEl;
35165     
35166     
35167     
35168     Roo.TreePanel.superclass.constructor.call(this, el, config);
35169  
35170  
35171     this.tree = new Roo.tree.TreePanel(treeEl , tree);
35172     //console.log(tree);
35173     this.on('activate', function()
35174     {
35175         if (this.tree.rendered) {
35176             return;
35177         }
35178         //console.log('render tree');
35179         this.tree.render();
35180     });
35181     // this should not be needed.. - it's actually the 'el' that resizes?
35182     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
35183     
35184     //this.on('resize',  function (cp, w, h) {
35185     //        this.tree.innerCt.setWidth(w);
35186     //        this.tree.innerCt.setHeight(h);
35187     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
35188     //});
35189
35190         
35191     
35192 };
35193
35194 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
35195     fitToFrame : true,
35196     autoScroll : true
35197 });
35198
35199
35200
35201
35202
35203
35204
35205
35206
35207
35208
35209 /*
35210  * Based on:
35211  * Ext JS Library 1.1.1
35212  * Copyright(c) 2006-2007, Ext JS, LLC.
35213  *
35214  * Originally Released Under LGPL - original licence link has changed is not relivant.
35215  *
35216  * Fork - LGPL
35217  * <script type="text/javascript">
35218  */
35219  
35220
35221 /**
35222  * @class Roo.ReaderLayout
35223  * @extends Roo.BorderLayout
35224  * This is a pre-built layout that represents a classic, 5-pane application.  It consists of a header, a primary
35225  * center region containing two nested regions (a top one for a list view and one for item preview below),
35226  * and regions on either side that can be used for navigation, application commands, informational displays, etc.
35227  * The setup and configuration work exactly the same as it does for a {@link Roo.BorderLayout} - this class simply
35228  * expedites the setup of the overall layout and regions for this common application style.
35229  * Example:
35230  <pre><code>
35231 var reader = new Roo.ReaderLayout();
35232 var CP = Roo.ContentPanel;  // shortcut for adding
35233
35234 reader.beginUpdate();
35235 reader.add("north", new CP("north", "North"));
35236 reader.add("west", new CP("west", {title: "West"}));
35237 reader.add("east", new CP("east", {title: "East"}));
35238
35239 reader.regions.listView.add(new CP("listView", "List"));
35240 reader.regions.preview.add(new CP("preview", "Preview"));
35241 reader.endUpdate();
35242 </code></pre>
35243 * @constructor
35244 * Create a new ReaderLayout
35245 * @param {Object} config Configuration options
35246 * @param {String/HTMLElement/Element} container (optional) The container this layout is bound to (defaults to
35247 * document.body if omitted)
35248 */
35249 Roo.ReaderLayout = function(config, renderTo){
35250     var c = config || {size:{}};
35251     Roo.ReaderLayout.superclass.constructor.call(this, renderTo || document.body, {
35252         north: c.north !== false ? Roo.apply({
35253             split:false,
35254             initialSize: 32,
35255             titlebar: false
35256         }, c.north) : false,
35257         west: c.west !== false ? Roo.apply({
35258             split:true,
35259             initialSize: 200,
35260             minSize: 175,
35261             maxSize: 400,
35262             titlebar: true,
35263             collapsible: true,
35264             animate: true,
35265             margins:{left:5,right:0,bottom:5,top:5},
35266             cmargins:{left:5,right:5,bottom:5,top:5}
35267         }, c.west) : false,
35268         east: c.east !== false ? Roo.apply({
35269             split:true,
35270             initialSize: 200,
35271             minSize: 175,
35272             maxSize: 400,
35273             titlebar: true,
35274             collapsible: true,
35275             animate: true,
35276             margins:{left:0,right:5,bottom:5,top:5},
35277             cmargins:{left:5,right:5,bottom:5,top:5}
35278         }, c.east) : false,
35279         center: Roo.apply({
35280             tabPosition: 'top',
35281             autoScroll:false,
35282             closeOnTab: true,
35283             titlebar:false,
35284             margins:{left:c.west!==false ? 0 : 5,right:c.east!==false ? 0 : 5,bottom:5,top:2}
35285         }, c.center)
35286     });
35287
35288     this.el.addClass('x-reader');
35289
35290     this.beginUpdate();
35291
35292     var inner = new Roo.BorderLayout(Roo.get(document.body).createChild(), {
35293         south: c.preview !== false ? Roo.apply({
35294             split:true,
35295             initialSize: 200,
35296             minSize: 100,
35297             autoScroll:true,
35298             collapsible:true,
35299             titlebar: true,
35300             cmargins:{top:5,left:0, right:0, bottom:0}
35301         }, c.preview) : false,
35302         center: Roo.apply({
35303             autoScroll:false,
35304             titlebar:false,
35305             minHeight:200
35306         }, c.listView)
35307     });
35308     this.add('center', new Roo.NestedLayoutPanel(inner,
35309             Roo.apply({title: c.mainTitle || '',tabTip:''},c.innerPanelCfg)));
35310
35311     this.endUpdate();
35312
35313     this.regions.preview = inner.getRegion('south');
35314     this.regions.listView = inner.getRegion('center');
35315 };
35316
35317 Roo.extend(Roo.ReaderLayout, Roo.BorderLayout);/*
35318  * Based on:
35319  * Ext JS Library 1.1.1
35320  * Copyright(c) 2006-2007, Ext JS, LLC.
35321  *
35322  * Originally Released Under LGPL - original licence link has changed is not relivant.
35323  *
35324  * Fork - LGPL
35325  * <script type="text/javascript">
35326  */
35327  
35328 /**
35329  * @class Roo.grid.Grid
35330  * @extends Roo.util.Observable
35331  * This class represents the primary interface of a component based grid control.
35332  * <br><br>Usage:<pre><code>
35333  var grid = new Roo.grid.Grid("my-container-id", {
35334      ds: myDataStore,
35335      cm: myColModel,
35336      selModel: mySelectionModel,
35337      autoSizeColumns: true,
35338      monitorWindowResize: false,
35339      trackMouseOver: true
35340  });
35341  // set any options
35342  grid.render();
35343  * </code></pre>
35344  * <b>Common Problems:</b><br/>
35345  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
35346  * element will correct this<br/>
35347  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
35348  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
35349  * are unpredictable.<br/>
35350  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
35351  * grid to calculate dimensions/offsets.<br/>
35352   * @constructor
35353  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
35354  * The container MUST have some type of size defined for the grid to fill. The container will be
35355  * automatically set to position relative if it isn't already.
35356  * @param {Object} config A config object that sets properties on this grid.
35357  */
35358 Roo.grid.Grid = function(container, config){
35359         // initialize the container
35360         this.container = Roo.get(container);
35361         this.container.update("");
35362         this.container.setStyle("overflow", "hidden");
35363     this.container.addClass('x-grid-container');
35364
35365     this.id = this.container.id;
35366
35367     Roo.apply(this, config);
35368     // check and correct shorthanded configs
35369     if(this.ds){
35370         this.dataSource = this.ds;
35371         delete this.ds;
35372     }
35373     if(this.cm){
35374         this.colModel = this.cm;
35375         delete this.cm;
35376     }
35377     if(this.sm){
35378         this.selModel = this.sm;
35379         delete this.sm;
35380     }
35381
35382     if (this.selModel) {
35383         this.selModel = Roo.factory(this.selModel, Roo.grid);
35384         this.sm = this.selModel;
35385         this.sm.xmodule = this.xmodule || false;
35386     }
35387     if (typeof(this.colModel.config) == 'undefined') {
35388         this.colModel = new Roo.grid.ColumnModel(this.colModel);
35389         this.cm = this.colModel;
35390         this.cm.xmodule = this.xmodule || false;
35391     }
35392     if (this.dataSource) {
35393         this.dataSource= Roo.factory(this.dataSource, Roo.data);
35394         this.ds = this.dataSource;
35395         this.ds.xmodule = this.xmodule || false;
35396          
35397     }
35398     
35399     
35400     
35401     if(this.width){
35402         this.container.setWidth(this.width);
35403     }
35404
35405     if(this.height){
35406         this.container.setHeight(this.height);
35407     }
35408     /** @private */
35409         this.addEvents({
35410         // raw events
35411         /**
35412          * @event click
35413          * The raw click event for the entire grid.
35414          * @param {Roo.EventObject} e
35415          */
35416         "click" : true,
35417         /**
35418          * @event dblclick
35419          * The raw dblclick event for the entire grid.
35420          * @param {Roo.EventObject} e
35421          */
35422         "dblclick" : true,
35423         /**
35424          * @event contextmenu
35425          * The raw contextmenu event for the entire grid.
35426          * @param {Roo.EventObject} e
35427          */
35428         "contextmenu" : true,
35429         /**
35430          * @event mousedown
35431          * The raw mousedown event for the entire grid.
35432          * @param {Roo.EventObject} e
35433          */
35434         "mousedown" : true,
35435         /**
35436          * @event mouseup
35437          * The raw mouseup event for the entire grid.
35438          * @param {Roo.EventObject} e
35439          */
35440         "mouseup" : true,
35441         /**
35442          * @event mouseover
35443          * The raw mouseover event for the entire grid.
35444          * @param {Roo.EventObject} e
35445          */
35446         "mouseover" : true,
35447         /**
35448          * @event mouseout
35449          * The raw mouseout event for the entire grid.
35450          * @param {Roo.EventObject} e
35451          */
35452         "mouseout" : true,
35453         /**
35454          * @event keypress
35455          * The raw keypress event for the entire grid.
35456          * @param {Roo.EventObject} e
35457          */
35458         "keypress" : true,
35459         /**
35460          * @event keydown
35461          * The raw keydown event for the entire grid.
35462          * @param {Roo.EventObject} e
35463          */
35464         "keydown" : true,
35465
35466         // custom events
35467
35468         /**
35469          * @event cellclick
35470          * Fires when a cell is clicked
35471          * @param {Grid} this
35472          * @param {Number} rowIndex
35473          * @param {Number} columnIndex
35474          * @param {Roo.EventObject} e
35475          */
35476         "cellclick" : true,
35477         /**
35478          * @event celldblclick
35479          * Fires when a cell is double clicked
35480          * @param {Grid} this
35481          * @param {Number} rowIndex
35482          * @param {Number} columnIndex
35483          * @param {Roo.EventObject} e
35484          */
35485         "celldblclick" : true,
35486         /**
35487          * @event rowclick
35488          * Fires when a row is clicked
35489          * @param {Grid} this
35490          * @param {Number} rowIndex
35491          * @param {Roo.EventObject} e
35492          */
35493         "rowclick" : true,
35494         /**
35495          * @event rowdblclick
35496          * Fires when a row is double clicked
35497          * @param {Grid} this
35498          * @param {Number} rowIndex
35499          * @param {Roo.EventObject} e
35500          */
35501         "rowdblclick" : true,
35502         /**
35503          * @event headerclick
35504          * Fires when a header is clicked
35505          * @param {Grid} this
35506          * @param {Number} columnIndex
35507          * @param {Roo.EventObject} e
35508          */
35509         "headerclick" : true,
35510         /**
35511          * @event headerdblclick
35512          * Fires when a header cell is double clicked
35513          * @param {Grid} this
35514          * @param {Number} columnIndex
35515          * @param {Roo.EventObject} e
35516          */
35517         "headerdblclick" : true,
35518         /**
35519          * @event rowcontextmenu
35520          * Fires when a row is right clicked
35521          * @param {Grid} this
35522          * @param {Number} rowIndex
35523          * @param {Roo.EventObject} e
35524          */
35525         "rowcontextmenu" : true,
35526         /**
35527          * @event cellcontextmenu
35528          * Fires when a cell is right clicked
35529          * @param {Grid} this
35530          * @param {Number} rowIndex
35531          * @param {Number} cellIndex
35532          * @param {Roo.EventObject} e
35533          */
35534          "cellcontextmenu" : true,
35535         /**
35536          * @event headercontextmenu
35537          * Fires when a header is right clicked
35538          * @param {Grid} this
35539          * @param {Number} columnIndex
35540          * @param {Roo.EventObject} e
35541          */
35542         "headercontextmenu" : true,
35543         /**
35544          * @event bodyscroll
35545          * Fires when the body element is scrolled
35546          * @param {Number} scrollLeft
35547          * @param {Number} scrollTop
35548          */
35549         "bodyscroll" : true,
35550         /**
35551          * @event columnresize
35552          * Fires when the user resizes a column
35553          * @param {Number} columnIndex
35554          * @param {Number} newSize
35555          */
35556         "columnresize" : true,
35557         /**
35558          * @event columnmove
35559          * Fires when the user moves a column
35560          * @param {Number} oldIndex
35561          * @param {Number} newIndex
35562          */
35563         "columnmove" : true,
35564         /**
35565          * @event startdrag
35566          * Fires when row(s) start being dragged
35567          * @param {Grid} this
35568          * @param {Roo.GridDD} dd The drag drop object
35569          * @param {event} e The raw browser event
35570          */
35571         "startdrag" : true,
35572         /**
35573          * @event enddrag
35574          * Fires when a drag operation is complete
35575          * @param {Grid} this
35576          * @param {Roo.GridDD} dd The drag drop object
35577          * @param {event} e The raw browser event
35578          */
35579         "enddrag" : true,
35580         /**
35581          * @event dragdrop
35582          * Fires when dragged row(s) are dropped on a valid DD target
35583          * @param {Grid} this
35584          * @param {Roo.GridDD} dd The drag drop object
35585          * @param {String} targetId The target drag drop object
35586          * @param {event} e The raw browser event
35587          */
35588         "dragdrop" : true,
35589         /**
35590          * @event dragover
35591          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
35592          * @param {Grid} this
35593          * @param {Roo.GridDD} dd The drag drop object
35594          * @param {String} targetId The target drag drop object
35595          * @param {event} e The raw browser event
35596          */
35597         "dragover" : true,
35598         /**
35599          * @event dragenter
35600          *  Fires when the dragged row(s) first cross another DD target while being dragged
35601          * @param {Grid} this
35602          * @param {Roo.GridDD} dd The drag drop object
35603          * @param {String} targetId The target drag drop object
35604          * @param {event} e The raw browser event
35605          */
35606         "dragenter" : true,
35607         /**
35608          * @event dragout
35609          * Fires when the dragged row(s) leave another DD target while being dragged
35610          * @param {Grid} this
35611          * @param {Roo.GridDD} dd The drag drop object
35612          * @param {String} targetId The target drag drop object
35613          * @param {event} e The raw browser event
35614          */
35615         "dragout" : true,
35616         /**
35617          * @event rowclass
35618          * Fires when a row is rendered, so you can change add a style to it.
35619          * @param {GridView} gridview   The grid view
35620          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
35621          */
35622         'rowclass' : true,
35623
35624         /**
35625          * @event render
35626          * Fires when the grid is rendered
35627          * @param {Grid} grid
35628          */
35629         'render' : true
35630     });
35631
35632     Roo.grid.Grid.superclass.constructor.call(this);
35633 };
35634 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
35635     
35636     /**
35637      * @cfg {String} ddGroup - drag drop group.
35638      */
35639
35640     /**
35641      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
35642      */
35643     minColumnWidth : 25,
35644
35645     /**
35646      * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
35647      * <b>on initial render.</b> It is more efficient to explicitly size the columns
35648      * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
35649      */
35650     autoSizeColumns : false,
35651
35652     /**
35653      * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
35654      */
35655     autoSizeHeaders : true,
35656
35657     /**
35658      * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
35659      */
35660     monitorWindowResize : true,
35661
35662     /**
35663      * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
35664      * rows measured to get a columns size. Default is 0 (all rows).
35665      */
35666     maxRowsToMeasure : 0,
35667
35668     /**
35669      * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
35670      */
35671     trackMouseOver : true,
35672
35673     /**
35674     * @cfg {Boolean} enableDrag  True to enable drag of rows. Default is false. (double check if this is needed?)
35675     */
35676     
35677     /**
35678     * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
35679     */
35680     enableDragDrop : false,
35681     
35682     /**
35683     * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
35684     */
35685     enableColumnMove : true,
35686     
35687     /**
35688     * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
35689     */
35690     enableColumnHide : true,
35691     
35692     /**
35693     * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
35694     */
35695     enableRowHeightSync : false,
35696     
35697     /**
35698     * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
35699     */
35700     stripeRows : true,
35701     
35702     /**
35703     * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
35704     */
35705     autoHeight : false,
35706
35707     /**
35708      * @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.
35709      */
35710     autoExpandColumn : false,
35711
35712     /**
35713     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
35714     * Default is 50.
35715     */
35716     autoExpandMin : 50,
35717
35718     /**
35719     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
35720     */
35721     autoExpandMax : 1000,
35722
35723     /**
35724     * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
35725     */
35726     view : null,
35727
35728     /**
35729     * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
35730     */
35731     loadMask : false,
35732     /**
35733     * @cfg {Roo.dd.DropTarget} dropTarget An {@link Roo.dd.DropTarget} config
35734     */
35735     dropTarget: false,
35736     
35737    
35738     
35739     // private
35740     rendered : false,
35741
35742     /**
35743     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
35744     * of a fixed width. Default is false.
35745     */
35746     /**
35747     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
35748     */
35749     /**
35750      * Called once after all setup has been completed and the grid is ready to be rendered.
35751      * @return {Roo.grid.Grid} this
35752      */
35753     render : function()
35754     {
35755         var c = this.container;
35756         // try to detect autoHeight/width mode
35757         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
35758             this.autoHeight = true;
35759         }
35760         var view = this.getView();
35761         view.init(this);
35762
35763         c.on("click", this.onClick, this);
35764         c.on("dblclick", this.onDblClick, this);
35765         c.on("contextmenu", this.onContextMenu, this);
35766         c.on("keydown", this.onKeyDown, this);
35767         if (Roo.isTouch) {
35768             c.on("touchstart", this.onTouchStart, this);
35769         }
35770
35771         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
35772
35773         this.getSelectionModel().init(this);
35774
35775         view.render();
35776
35777         if(this.loadMask){
35778             this.loadMask = new Roo.LoadMask(this.container,
35779                     Roo.apply({store:this.dataSource}, this.loadMask));
35780         }
35781         
35782         
35783         if (this.toolbar && this.toolbar.xtype) {
35784             this.toolbar.container = this.getView().getHeaderPanel(true);
35785             this.toolbar = new Roo.Toolbar(this.toolbar);
35786         }
35787         if (this.footer && this.footer.xtype) {
35788             this.footer.dataSource = this.getDataSource();
35789             this.footer.container = this.getView().getFooterPanel(true);
35790             this.footer = Roo.factory(this.footer, Roo);
35791         }
35792         if (this.dropTarget && this.dropTarget.xtype) {
35793             delete this.dropTarget.xtype;
35794             this.dropTarget =  new Roo.dd.DropTarget(this.getView().mainBody, this.dropTarget);
35795         }
35796         
35797         
35798         this.rendered = true;
35799         this.fireEvent('render', this);
35800         return this;
35801     },
35802
35803         /**
35804          * Reconfigures the grid to use a different Store and Column Model.
35805          * The View will be bound to the new objects and refreshed.
35806          * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
35807          * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
35808          */
35809     reconfigure : function(dataSource, colModel){
35810         if(this.loadMask){
35811             this.loadMask.destroy();
35812             this.loadMask = new Roo.LoadMask(this.container,
35813                     Roo.apply({store:dataSource}, this.loadMask));
35814         }
35815         this.view.bind(dataSource, colModel);
35816         this.dataSource = dataSource;
35817         this.colModel = colModel;
35818         this.view.refresh(true);
35819     },
35820
35821     // private
35822     onKeyDown : function(e){
35823         this.fireEvent("keydown", e);
35824     },
35825
35826     /**
35827      * Destroy this grid.
35828      * @param {Boolean} removeEl True to remove the element
35829      */
35830     destroy : function(removeEl, keepListeners){
35831         if(this.loadMask){
35832             this.loadMask.destroy();
35833         }
35834         var c = this.container;
35835         c.removeAllListeners();
35836         this.view.destroy();
35837         this.colModel.purgeListeners();
35838         if(!keepListeners){
35839             this.purgeListeners();
35840         }
35841         c.update("");
35842         if(removeEl === true){
35843             c.remove();
35844         }
35845     },
35846
35847     // private
35848     processEvent : function(name, e){
35849         // does this fire select???
35850         Roo.log('grid:processEvent '  + name);
35851         
35852         if (name != 'touchstart' ) {
35853             this.fireEvent(name, e);    
35854         }
35855         
35856         var t = e.getTarget();
35857         var v = this.view;
35858         var header = v.findHeaderIndex(t);
35859         if(header !== false){
35860             var ename = name == 'touchstart' ? 'click' : name;
35861              
35862             this.fireEvent("header" + ename, this, header, e);
35863         }else{
35864             var row = v.findRowIndex(t);
35865             var cell = v.findCellIndex(t);
35866             if (name == 'touchstart') {
35867                 // first touch is always a click.
35868                 // hopefull this happens after selection is updated.?
35869                 name = false;
35870                 
35871                 if (typeof(this.selModel.getSelectedCell) != 'undefined') {
35872                     var cs = this.selModel.getSelectedCell();
35873                     if (row == cs[0] && cell == cs[1]){
35874                         name = 'dblclick';
35875                     }
35876                 }
35877                 if (typeof(this.selModel.getSelections) != 'undefined') {
35878                     var cs = this.selModel.getSelections();
35879                     var ds = this.dataSource;
35880                     if (cs.length == 1 && ds.getAt(row) == cs[0]){
35881                         name = 'dblclick';
35882                     }
35883                 }
35884                 if (!name) {
35885                     return;
35886                 }
35887             }
35888             
35889             
35890             if(row !== false){
35891                 this.fireEvent("row" + name, this, row, e);
35892                 if(cell !== false){
35893                     this.fireEvent("cell" + name, this, row, cell, e);
35894                 }
35895             }
35896         }
35897     },
35898
35899     // private
35900     onClick : function(e){
35901         this.processEvent("click", e);
35902     },
35903    // private
35904     onTouchStart : function(e){
35905         this.processEvent("touchstart", e);
35906     },
35907
35908     // private
35909     onContextMenu : function(e, t){
35910         this.processEvent("contextmenu", e);
35911     },
35912
35913     // private
35914     onDblClick : function(e){
35915         this.processEvent("dblclick", e);
35916     },
35917
35918     // private
35919     walkCells : function(row, col, step, fn, scope){
35920         var cm = this.colModel, clen = cm.getColumnCount();
35921         var ds = this.dataSource, rlen = ds.getCount(), first = true;
35922         if(step < 0){
35923             if(col < 0){
35924                 row--;
35925                 first = false;
35926             }
35927             while(row >= 0){
35928                 if(!first){
35929                     col = clen-1;
35930                 }
35931                 first = false;
35932                 while(col >= 0){
35933                     if(fn.call(scope || this, row, col, cm) === true){
35934                         return [row, col];
35935                     }
35936                     col--;
35937                 }
35938                 row--;
35939             }
35940         } else {
35941             if(col >= clen){
35942                 row++;
35943                 first = false;
35944             }
35945             while(row < rlen){
35946                 if(!first){
35947                     col = 0;
35948                 }
35949                 first = false;
35950                 while(col < clen){
35951                     if(fn.call(scope || this, row, col, cm) === true){
35952                         return [row, col];
35953                     }
35954                     col++;
35955                 }
35956                 row++;
35957             }
35958         }
35959         return null;
35960     },
35961
35962     // private
35963     getSelections : function(){
35964         return this.selModel.getSelections();
35965     },
35966
35967     /**
35968      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
35969      * but if manual update is required this method will initiate it.
35970      */
35971     autoSize : function(){
35972         if(this.rendered){
35973             this.view.layout();
35974             if(this.view.adjustForScroll){
35975                 this.view.adjustForScroll();
35976             }
35977         }
35978     },
35979
35980     /**
35981      * Returns the grid's underlying element.
35982      * @return {Element} The element
35983      */
35984     getGridEl : function(){
35985         return this.container;
35986     },
35987
35988     // private for compatibility, overridden by editor grid
35989     stopEditing : function(){},
35990
35991     /**
35992      * Returns the grid's SelectionModel.
35993      * @return {SelectionModel}
35994      */
35995     getSelectionModel : function(){
35996         if(!this.selModel){
35997             this.selModel = new Roo.grid.RowSelectionModel();
35998         }
35999         return this.selModel;
36000     },
36001
36002     /**
36003      * Returns the grid's DataSource.
36004      * @return {DataSource}
36005      */
36006     getDataSource : function(){
36007         return this.dataSource;
36008     },
36009
36010     /**
36011      * Returns the grid's ColumnModel.
36012      * @return {ColumnModel}
36013      */
36014     getColumnModel : function(){
36015         return this.colModel;
36016     },
36017
36018     /**
36019      * Returns the grid's GridView object.
36020      * @return {GridView}
36021      */
36022     getView : function(){
36023         if(!this.view){
36024             this.view = new Roo.grid.GridView(this.viewConfig);
36025         }
36026         return this.view;
36027     },
36028     /**
36029      * Called to get grid's drag proxy text, by default returns this.ddText.
36030      * @return {String}
36031      */
36032     getDragDropText : function(){
36033         var count = this.selModel.getCount();
36034         return String.format(this.ddText, count, count == 1 ? '' : 's');
36035     }
36036 });
36037 /**
36038  * Configures the text is the drag proxy (defaults to "%0 selected row(s)").
36039  * %0 is replaced with the number of selected rows.
36040  * @type String
36041  */
36042 Roo.grid.Grid.prototype.ddText = "{0} selected row{1}";/*
36043  * Based on:
36044  * Ext JS Library 1.1.1
36045  * Copyright(c) 2006-2007, Ext JS, LLC.
36046  *
36047  * Originally Released Under LGPL - original licence link has changed is not relivant.
36048  *
36049  * Fork - LGPL
36050  * <script type="text/javascript">
36051  */
36052  
36053 Roo.grid.AbstractGridView = function(){
36054         this.grid = null;
36055         
36056         this.events = {
36057             "beforerowremoved" : true,
36058             "beforerowsinserted" : true,
36059             "beforerefresh" : true,
36060             "rowremoved" : true,
36061             "rowsinserted" : true,
36062             "rowupdated" : true,
36063             "refresh" : true
36064         };
36065     Roo.grid.AbstractGridView.superclass.constructor.call(this);
36066 };
36067
36068 Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
36069     rowClass : "x-grid-row",
36070     cellClass : "x-grid-cell",
36071     tdClass : "x-grid-td",
36072     hdClass : "x-grid-hd",
36073     splitClass : "x-grid-hd-split",
36074     
36075     init: function(grid){
36076         this.grid = grid;
36077                 var cid = this.grid.getGridEl().id;
36078         this.colSelector = "#" + cid + " ." + this.cellClass + "-";
36079         this.tdSelector = "#" + cid + " ." + this.tdClass + "-";
36080         this.hdSelector = "#" + cid + " ." + this.hdClass + "-";
36081         this.splitSelector = "#" + cid + " ." + this.splitClass + "-";
36082         },
36083         
36084     getColumnRenderers : function(){
36085         var renderers = [];
36086         var cm = this.grid.colModel;
36087         var colCount = cm.getColumnCount();
36088         for(var i = 0; i < colCount; i++){
36089             renderers[i] = cm.getRenderer(i);
36090         }
36091         return renderers;
36092     },
36093     
36094     getColumnIds : function(){
36095         var ids = [];
36096         var cm = this.grid.colModel;
36097         var colCount = cm.getColumnCount();
36098         for(var i = 0; i < colCount; i++){
36099             ids[i] = cm.getColumnId(i);
36100         }
36101         return ids;
36102     },
36103     
36104     getDataIndexes : function(){
36105         if(!this.indexMap){
36106             this.indexMap = this.buildIndexMap();
36107         }
36108         return this.indexMap.colToData;
36109     },
36110     
36111     getColumnIndexByDataIndex : function(dataIndex){
36112         if(!this.indexMap){
36113             this.indexMap = this.buildIndexMap();
36114         }
36115         return this.indexMap.dataToCol[dataIndex];
36116     },
36117     
36118     /**
36119      * Set a css style for a column dynamically. 
36120      * @param {Number} colIndex The index of the column
36121      * @param {String} name The css property name
36122      * @param {String} value The css value
36123      */
36124     setCSSStyle : function(colIndex, name, value){
36125         var selector = "#" + this.grid.id + " .x-grid-col-" + colIndex;
36126         Roo.util.CSS.updateRule(selector, name, value);
36127     },
36128     
36129     generateRules : function(cm){
36130         var ruleBuf = [], rulesId = this.grid.id + '-cssrules';
36131         Roo.util.CSS.removeStyleSheet(rulesId);
36132         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
36133             var cid = cm.getColumnId(i);
36134             ruleBuf.push(this.colSelector, cid, " {\n", cm.config[i].css, "}\n",
36135                          this.tdSelector, cid, " {\n}\n",
36136                          this.hdSelector, cid, " {\n}\n",
36137                          this.splitSelector, cid, " {\n}\n");
36138         }
36139         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
36140     }
36141 });/*
36142  * Based on:
36143  * Ext JS Library 1.1.1
36144  * Copyright(c) 2006-2007, Ext JS, LLC.
36145  *
36146  * Originally Released Under LGPL - original licence link has changed is not relivant.
36147  *
36148  * Fork - LGPL
36149  * <script type="text/javascript">
36150  */
36151
36152 // private
36153 // This is a support class used internally by the Grid components
36154 Roo.grid.HeaderDragZone = function(grid, hd, hd2){
36155     this.grid = grid;
36156     this.view = grid.getView();
36157     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
36158     Roo.grid.HeaderDragZone.superclass.constructor.call(this, hd);
36159     if(hd2){
36160         this.setHandleElId(Roo.id(hd));
36161         this.setOuterHandleElId(Roo.id(hd2));
36162     }
36163     this.scroll = false;
36164 };
36165 Roo.extend(Roo.grid.HeaderDragZone, Roo.dd.DragZone, {
36166     maxDragWidth: 120,
36167     getDragData : function(e){
36168         var t = Roo.lib.Event.getTarget(e);
36169         var h = this.view.findHeaderCell(t);
36170         if(h){
36171             return {ddel: h.firstChild, header:h};
36172         }
36173         return false;
36174     },
36175
36176     onInitDrag : function(e){
36177         this.view.headersDisabled = true;
36178         var clone = this.dragData.ddel.cloneNode(true);
36179         clone.id = Roo.id();
36180         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
36181         this.proxy.update(clone);
36182         return true;
36183     },
36184
36185     afterValidDrop : function(){
36186         var v = this.view;
36187         setTimeout(function(){
36188             v.headersDisabled = false;
36189         }, 50);
36190     },
36191
36192     afterInvalidDrop : function(){
36193         var v = this.view;
36194         setTimeout(function(){
36195             v.headersDisabled = false;
36196         }, 50);
36197     }
36198 });
36199 /*
36200  * Based on:
36201  * Ext JS Library 1.1.1
36202  * Copyright(c) 2006-2007, Ext JS, LLC.
36203  *
36204  * Originally Released Under LGPL - original licence link has changed is not relivant.
36205  *
36206  * Fork - LGPL
36207  * <script type="text/javascript">
36208  */
36209 // private
36210 // This is a support class used internally by the Grid components
36211 Roo.grid.HeaderDropZone = function(grid, hd, hd2){
36212     this.grid = grid;
36213     this.view = grid.getView();
36214     // split the proxies so they don't interfere with mouse events
36215     this.proxyTop = Roo.DomHelper.append(document.body, {
36216         cls:"col-move-top", html:"&#160;"
36217     }, true);
36218     this.proxyBottom = Roo.DomHelper.append(document.body, {
36219         cls:"col-move-bottom", html:"&#160;"
36220     }, true);
36221     this.proxyTop.hide = this.proxyBottom.hide = function(){
36222         this.setLeftTop(-100,-100);
36223         this.setStyle("visibility", "hidden");
36224     };
36225     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
36226     // temporarily disabled
36227     //Roo.dd.ScrollManager.register(this.view.scroller.dom);
36228     Roo.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
36229 };
36230 Roo.extend(Roo.grid.HeaderDropZone, Roo.dd.DropZone, {
36231     proxyOffsets : [-4, -9],
36232     fly: Roo.Element.fly,
36233
36234     getTargetFromEvent : function(e){
36235         var t = Roo.lib.Event.getTarget(e);
36236         var cindex = this.view.findCellIndex(t);
36237         if(cindex !== false){
36238             return this.view.getHeaderCell(cindex);
36239         }
36240         return null;
36241     },
36242
36243     nextVisible : function(h){
36244         var v = this.view, cm = this.grid.colModel;
36245         h = h.nextSibling;
36246         while(h){
36247             if(!cm.isHidden(v.getCellIndex(h))){
36248                 return h;
36249             }
36250             h = h.nextSibling;
36251         }
36252         return null;
36253     },
36254
36255     prevVisible : function(h){
36256         var v = this.view, cm = this.grid.colModel;
36257         h = h.prevSibling;
36258         while(h){
36259             if(!cm.isHidden(v.getCellIndex(h))){
36260                 return h;
36261             }
36262             h = h.prevSibling;
36263         }
36264         return null;
36265     },
36266
36267     positionIndicator : function(h, n, e){
36268         var x = Roo.lib.Event.getPageX(e);
36269         var r = Roo.lib.Dom.getRegion(n.firstChild);
36270         var px, pt, py = r.top + this.proxyOffsets[1];
36271         if((r.right - x) <= (r.right-r.left)/2){
36272             px = r.right+this.view.borderWidth;
36273             pt = "after";
36274         }else{
36275             px = r.left;
36276             pt = "before";
36277         }
36278         var oldIndex = this.view.getCellIndex(h);
36279         var newIndex = this.view.getCellIndex(n);
36280
36281         if(this.grid.colModel.isFixed(newIndex)){
36282             return false;
36283         }
36284
36285         var locked = this.grid.colModel.isLocked(newIndex);
36286
36287         if(pt == "after"){
36288             newIndex++;
36289         }
36290         if(oldIndex < newIndex){
36291             newIndex--;
36292         }
36293         if(oldIndex == newIndex && (locked == this.grid.colModel.isLocked(oldIndex))){
36294             return false;
36295         }
36296         px +=  this.proxyOffsets[0];
36297         this.proxyTop.setLeftTop(px, py);
36298         this.proxyTop.show();
36299         if(!this.bottomOffset){
36300             this.bottomOffset = this.view.mainHd.getHeight();
36301         }
36302         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
36303         this.proxyBottom.show();
36304         return pt;
36305     },
36306
36307     onNodeEnter : function(n, dd, e, data){
36308         if(data.header != n){
36309             this.positionIndicator(data.header, n, e);
36310         }
36311     },
36312
36313     onNodeOver : function(n, dd, e, data){
36314         var result = false;
36315         if(data.header != n){
36316             result = this.positionIndicator(data.header, n, e);
36317         }
36318         if(!result){
36319             this.proxyTop.hide();
36320             this.proxyBottom.hide();
36321         }
36322         return result ? this.dropAllowed : this.dropNotAllowed;
36323     },
36324
36325     onNodeOut : function(n, dd, e, data){
36326         this.proxyTop.hide();
36327         this.proxyBottom.hide();
36328     },
36329
36330     onNodeDrop : function(n, dd, e, data){
36331         var h = data.header;
36332         if(h != n){
36333             var cm = this.grid.colModel;
36334             var x = Roo.lib.Event.getPageX(e);
36335             var r = Roo.lib.Dom.getRegion(n.firstChild);
36336             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
36337             var oldIndex = this.view.getCellIndex(h);
36338             var newIndex = this.view.getCellIndex(n);
36339             var locked = cm.isLocked(newIndex);
36340             if(pt == "after"){
36341                 newIndex++;
36342             }
36343             if(oldIndex < newIndex){
36344                 newIndex--;
36345             }
36346             if(oldIndex == newIndex && (locked == cm.isLocked(oldIndex))){
36347                 return false;
36348             }
36349             cm.setLocked(oldIndex, locked, true);
36350             cm.moveColumn(oldIndex, newIndex);
36351             this.grid.fireEvent("columnmove", oldIndex, newIndex);
36352             return true;
36353         }
36354         return false;
36355     }
36356 });
36357 /*
36358  * Based on:
36359  * Ext JS Library 1.1.1
36360  * Copyright(c) 2006-2007, Ext JS, LLC.
36361  *
36362  * Originally Released Under LGPL - original licence link has changed is not relivant.
36363  *
36364  * Fork - LGPL
36365  * <script type="text/javascript">
36366  */
36367   
36368 /**
36369  * @class Roo.grid.GridView
36370  * @extends Roo.util.Observable
36371  *
36372  * @constructor
36373  * @param {Object} config
36374  */
36375 Roo.grid.GridView = function(config){
36376     Roo.grid.GridView.superclass.constructor.call(this);
36377     this.el = null;
36378
36379     Roo.apply(this, config);
36380 };
36381
36382 Roo.extend(Roo.grid.GridView, Roo.grid.AbstractGridView, {
36383
36384     unselectable :  'unselectable="on"',
36385     unselectableCls :  'x-unselectable',
36386     
36387     
36388     rowClass : "x-grid-row",
36389
36390     cellClass : "x-grid-col",
36391
36392     tdClass : "x-grid-td",
36393
36394     hdClass : "x-grid-hd",
36395
36396     splitClass : "x-grid-split",
36397
36398     sortClasses : ["sort-asc", "sort-desc"],
36399
36400     enableMoveAnim : false,
36401
36402     hlColor: "C3DAF9",
36403
36404     dh : Roo.DomHelper,
36405
36406     fly : Roo.Element.fly,
36407
36408     css : Roo.util.CSS,
36409
36410     borderWidth: 1,
36411
36412     splitOffset: 3,
36413
36414     scrollIncrement : 22,
36415
36416     cellRE: /(?:.*?)x-grid-(?:hd|cell|csplit)-(?:[\d]+)-([\d]+)(?:.*?)/,
36417
36418     findRE: /\s?(?:x-grid-hd|x-grid-col|x-grid-csplit)\s/,
36419
36420     bind : function(ds, cm){
36421         if(this.ds){
36422             this.ds.un("load", this.onLoad, this);
36423             this.ds.un("datachanged", this.onDataChange, this);
36424             this.ds.un("add", this.onAdd, this);
36425             this.ds.un("remove", this.onRemove, this);
36426             this.ds.un("update", this.onUpdate, this);
36427             this.ds.un("clear", this.onClear, this);
36428         }
36429         if(ds){
36430             ds.on("load", this.onLoad, this);
36431             ds.on("datachanged", this.onDataChange, this);
36432             ds.on("add", this.onAdd, this);
36433             ds.on("remove", this.onRemove, this);
36434             ds.on("update", this.onUpdate, this);
36435             ds.on("clear", this.onClear, this);
36436         }
36437         this.ds = ds;
36438
36439         if(this.cm){
36440             this.cm.un("widthchange", this.onColWidthChange, this);
36441             this.cm.un("headerchange", this.onHeaderChange, this);
36442             this.cm.un("hiddenchange", this.onHiddenChange, this);
36443             this.cm.un("columnmoved", this.onColumnMove, this);
36444             this.cm.un("columnlockchange", this.onColumnLock, this);
36445         }
36446         if(cm){
36447             this.generateRules(cm);
36448             cm.on("widthchange", this.onColWidthChange, this);
36449             cm.on("headerchange", this.onHeaderChange, this);
36450             cm.on("hiddenchange", this.onHiddenChange, this);
36451             cm.on("columnmoved", this.onColumnMove, this);
36452             cm.on("columnlockchange", this.onColumnLock, this);
36453         }
36454         this.cm = cm;
36455     },
36456
36457     init: function(grid){
36458         Roo.grid.GridView.superclass.init.call(this, grid);
36459
36460         this.bind(grid.dataSource, grid.colModel);
36461
36462         grid.on("headerclick", this.handleHeaderClick, this);
36463
36464         if(grid.trackMouseOver){
36465             grid.on("mouseover", this.onRowOver, this);
36466             grid.on("mouseout", this.onRowOut, this);
36467         }
36468         grid.cancelTextSelection = function(){};
36469         this.gridId = grid.id;
36470
36471         var tpls = this.templates || {};
36472
36473         if(!tpls.master){
36474             tpls.master = new Roo.Template(
36475                '<div class="x-grid" hidefocus="true">',
36476                 '<a href="#" class="x-grid-focus" tabIndex="-1"></a>',
36477                   '<div class="x-grid-topbar"></div>',
36478                   '<div class="x-grid-scroller"><div></div></div>',
36479                   '<div class="x-grid-locked">',
36480                       '<div class="x-grid-header">{lockedHeader}</div>',
36481                       '<div class="x-grid-body">{lockedBody}</div>',
36482                   "</div>",
36483                   '<div class="x-grid-viewport">',
36484                       '<div class="x-grid-header">{header}</div>',
36485                       '<div class="x-grid-body">{body}</div>',
36486                   "</div>",
36487                   '<div class="x-grid-bottombar"></div>',
36488                  
36489                   '<div class="x-grid-resize-proxy">&#160;</div>',
36490                "</div>"
36491             );
36492             tpls.master.disableformats = true;
36493         }
36494
36495         if(!tpls.header){
36496             tpls.header = new Roo.Template(
36497                '<table border="0" cellspacing="0" cellpadding="0">',
36498                '<tbody><tr class="x-grid-hd-row">{cells}</tr></tbody>',
36499                "</table>{splits}"
36500             );
36501             tpls.header.disableformats = true;
36502         }
36503         tpls.header.compile();
36504
36505         if(!tpls.hcell){
36506             tpls.hcell = new Roo.Template(
36507                 '<td class="x-grid-hd x-grid-td-{id} {cellId}"><div title="{title}" class="x-grid-hd-inner x-grid-hd-{id}">',
36508                 '<div class="x-grid-hd-text ' + this.unselectableCls +  '" ' + this.unselectable +'>{value}<img class="x-grid-sort-icon" src="', Roo.BLANK_IMAGE_URL, '" /></div>',
36509                 "</div></td>"
36510              );
36511              tpls.hcell.disableFormats = true;
36512         }
36513         tpls.hcell.compile();
36514
36515         if(!tpls.hsplit){
36516             tpls.hsplit = new Roo.Template('<div class="x-grid-split {splitId} x-grid-split-{id}" style="{style} ' +
36517                                             this.unselectableCls +  '" ' + this.unselectable +'>&#160;</div>');
36518             tpls.hsplit.disableFormats = true;
36519         }
36520         tpls.hsplit.compile();
36521
36522         if(!tpls.body){
36523             tpls.body = new Roo.Template(
36524                '<table border="0" cellspacing="0" cellpadding="0">',
36525                "<tbody>{rows}</tbody>",
36526                "</table>"
36527             );
36528             tpls.body.disableFormats = true;
36529         }
36530         tpls.body.compile();
36531
36532         if(!tpls.row){
36533             tpls.row = new Roo.Template('<tr class="x-grid-row {alt}">{cells}</tr>');
36534             tpls.row.disableFormats = true;
36535         }
36536         tpls.row.compile();
36537
36538         if(!tpls.cell){
36539             tpls.cell = new Roo.Template(
36540                 '<td class="x-grid-col x-grid-td-{id} {cellId} {css}" tabIndex="0">',
36541                 '<div class="x-grid-col-{id} x-grid-cell-inner"><div class="x-grid-cell-text ' +
36542                     this.unselectableCls +  '" ' + this.unselectable +'" {attr}>{value}</div></div>',
36543                 "</td>"
36544             );
36545             tpls.cell.disableFormats = true;
36546         }
36547         tpls.cell.compile();
36548
36549         this.templates = tpls;
36550     },
36551
36552     // remap these for backwards compat
36553     onColWidthChange : function(){
36554         this.updateColumns.apply(this, arguments);
36555     },
36556     onHeaderChange : function(){
36557         this.updateHeaders.apply(this, arguments);
36558     }, 
36559     onHiddenChange : function(){
36560         this.handleHiddenChange.apply(this, arguments);
36561     },
36562     onColumnMove : function(){
36563         this.handleColumnMove.apply(this, arguments);
36564     },
36565     onColumnLock : function(){
36566         this.handleLockChange.apply(this, arguments);
36567     },
36568
36569     onDataChange : function(){
36570         this.refresh();
36571         this.updateHeaderSortState();
36572     },
36573
36574     onClear : function(){
36575         this.refresh();
36576     },
36577
36578     onUpdate : function(ds, record){
36579         this.refreshRow(record);
36580     },
36581
36582     refreshRow : function(record){
36583         var ds = this.ds, index;
36584         if(typeof record == 'number'){
36585             index = record;
36586             record = ds.getAt(index);
36587         }else{
36588             index = ds.indexOf(record);
36589         }
36590         this.insertRows(ds, index, index, true);
36591         this.onRemove(ds, record, index+1, true);
36592         this.syncRowHeights(index, index);
36593         this.layout();
36594         this.fireEvent("rowupdated", this, index, record);
36595     },
36596
36597     onAdd : function(ds, records, index){
36598         this.insertRows(ds, index, index + (records.length-1));
36599     },
36600
36601     onRemove : function(ds, record, index, isUpdate){
36602         if(isUpdate !== true){
36603             this.fireEvent("beforerowremoved", this, index, record);
36604         }
36605         var bt = this.getBodyTable(), lt = this.getLockedTable();
36606         if(bt.rows[index]){
36607             bt.firstChild.removeChild(bt.rows[index]);
36608         }
36609         if(lt.rows[index]){
36610             lt.firstChild.removeChild(lt.rows[index]);
36611         }
36612         if(isUpdate !== true){
36613             this.stripeRows(index);
36614             this.syncRowHeights(index, index);
36615             this.layout();
36616             this.fireEvent("rowremoved", this, index, record);
36617         }
36618     },
36619
36620     onLoad : function(){
36621         this.scrollToTop();
36622     },
36623
36624     /**
36625      * Scrolls the grid to the top
36626      */
36627     scrollToTop : function(){
36628         if(this.scroller){
36629             this.scroller.dom.scrollTop = 0;
36630             this.syncScroll();
36631         }
36632     },
36633
36634     /**
36635      * Gets a panel in the header of the grid that can be used for toolbars etc.
36636      * After modifying the contents of this panel a call to grid.autoSize() may be
36637      * required to register any changes in size.
36638      * @param {Boolean} doShow By default the header is hidden. Pass true to show the panel
36639      * @return Roo.Element
36640      */
36641     getHeaderPanel : function(doShow){
36642         if(doShow){
36643             this.headerPanel.show();
36644         }
36645         return this.headerPanel;
36646     },
36647
36648     /**
36649      * Gets a panel in the footer of the grid that can be used for toolbars etc.
36650      * After modifying the contents of this panel a call to grid.autoSize() may be
36651      * required to register any changes in size.
36652      * @param {Boolean} doShow By default the footer is hidden. Pass true to show the panel
36653      * @return Roo.Element
36654      */
36655     getFooterPanel : function(doShow){
36656         if(doShow){
36657             this.footerPanel.show();
36658         }
36659         return this.footerPanel;
36660     },
36661
36662     initElements : function(){
36663         var E = Roo.Element;
36664         var el = this.grid.getGridEl().dom.firstChild;
36665         var cs = el.childNodes;
36666
36667         this.el = new E(el);
36668         
36669          this.focusEl = new E(el.firstChild);
36670         this.focusEl.swallowEvent("click", true);
36671         
36672         this.headerPanel = new E(cs[1]);
36673         this.headerPanel.enableDisplayMode("block");
36674
36675         this.scroller = new E(cs[2]);
36676         this.scrollSizer = new E(this.scroller.dom.firstChild);
36677
36678         this.lockedWrap = new E(cs[3]);
36679         this.lockedHd = new E(this.lockedWrap.dom.firstChild);
36680         this.lockedBody = new E(this.lockedWrap.dom.childNodes[1]);
36681
36682         this.mainWrap = new E(cs[4]);
36683         this.mainHd = new E(this.mainWrap.dom.firstChild);
36684         this.mainBody = new E(this.mainWrap.dom.childNodes[1]);
36685
36686         this.footerPanel = new E(cs[5]);
36687         this.footerPanel.enableDisplayMode("block");
36688
36689         this.resizeProxy = new E(cs[6]);
36690
36691         this.headerSelector = String.format(
36692            '#{0} td.x-grid-hd, #{1} td.x-grid-hd',
36693            this.lockedHd.id, this.mainHd.id
36694         );
36695
36696         this.splitterSelector = String.format(
36697            '#{0} div.x-grid-split, #{1} div.x-grid-split',
36698            this.idToCssName(this.lockedHd.id), this.idToCssName(this.mainHd.id)
36699         );
36700     },
36701     idToCssName : function(s)
36702     {
36703         return s.replace(/[^a-z0-9]+/ig, '-');
36704     },
36705
36706     getHeaderCell : function(index){
36707         return Roo.DomQuery.select(this.headerSelector)[index];
36708     },
36709
36710     getHeaderCellMeasure : function(index){
36711         return this.getHeaderCell(index).firstChild;
36712     },
36713
36714     getHeaderCellText : function(index){
36715         return this.getHeaderCell(index).firstChild.firstChild;
36716     },
36717
36718     getLockedTable : function(){
36719         return this.lockedBody.dom.firstChild;
36720     },
36721
36722     getBodyTable : function(){
36723         return this.mainBody.dom.firstChild;
36724     },
36725
36726     getLockedRow : function(index){
36727         return this.getLockedTable().rows[index];
36728     },
36729
36730     getRow : function(index){
36731         return this.getBodyTable().rows[index];
36732     },
36733
36734     getRowComposite : function(index){
36735         if(!this.rowEl){
36736             this.rowEl = new Roo.CompositeElementLite();
36737         }
36738         var els = [], lrow, mrow;
36739         if(lrow = this.getLockedRow(index)){
36740             els.push(lrow);
36741         }
36742         if(mrow = this.getRow(index)){
36743             els.push(mrow);
36744         }
36745         this.rowEl.elements = els;
36746         return this.rowEl;
36747     },
36748     /**
36749      * Gets the 'td' of the cell
36750      * 
36751      * @param {Integer} rowIndex row to select
36752      * @param {Integer} colIndex column to select
36753      * 
36754      * @return {Object} 
36755      */
36756     getCell : function(rowIndex, colIndex){
36757         var locked = this.cm.getLockedCount();
36758         var source;
36759         if(colIndex < locked){
36760             source = this.lockedBody.dom.firstChild;
36761         }else{
36762             source = this.mainBody.dom.firstChild;
36763             colIndex -= locked;
36764         }
36765         return source.rows[rowIndex].childNodes[colIndex];
36766     },
36767
36768     getCellText : function(rowIndex, colIndex){
36769         return this.getCell(rowIndex, colIndex).firstChild.firstChild;
36770     },
36771
36772     getCellBox : function(cell){
36773         var b = this.fly(cell).getBox();
36774         if(Roo.isOpera){ // opera fails to report the Y
36775             b.y = cell.offsetTop + this.mainBody.getY();
36776         }
36777         return b;
36778     },
36779
36780     getCellIndex : function(cell){
36781         var id = String(cell.className).match(this.cellRE);
36782         if(id){
36783             return parseInt(id[1], 10);
36784         }
36785         return 0;
36786     },
36787
36788     findHeaderIndex : function(n){
36789         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
36790         return r ? this.getCellIndex(r) : false;
36791     },
36792
36793     findHeaderCell : function(n){
36794         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
36795         return r ? r : false;
36796     },
36797
36798     findRowIndex : function(n){
36799         if(!n){
36800             return false;
36801         }
36802         var r = Roo.fly(n).findParent("tr." + this.rowClass, 6);
36803         return r ? r.rowIndex : false;
36804     },
36805
36806     findCellIndex : function(node){
36807         var stop = this.el.dom;
36808         while(node && node != stop){
36809             if(this.findRE.test(node.className)){
36810                 return this.getCellIndex(node);
36811             }
36812             node = node.parentNode;
36813         }
36814         return false;
36815     },
36816
36817     getColumnId : function(index){
36818         return this.cm.getColumnId(index);
36819     },
36820
36821     getSplitters : function()
36822     {
36823         if(this.splitterSelector){
36824            return Roo.DomQuery.select(this.splitterSelector);
36825         }else{
36826             return null;
36827       }
36828     },
36829
36830     getSplitter : function(index){
36831         return this.getSplitters()[index];
36832     },
36833
36834     onRowOver : function(e, t){
36835         var row;
36836         if((row = this.findRowIndex(t)) !== false){
36837             this.getRowComposite(row).addClass("x-grid-row-over");
36838         }
36839     },
36840
36841     onRowOut : function(e, t){
36842         var row;
36843         if((row = this.findRowIndex(t)) !== false && row !== this.findRowIndex(e.getRelatedTarget())){
36844             this.getRowComposite(row).removeClass("x-grid-row-over");
36845         }
36846     },
36847
36848     renderHeaders : function(){
36849         var cm = this.cm;
36850         var ct = this.templates.hcell, ht = this.templates.header, st = this.templates.hsplit;
36851         var cb = [], lb = [], sb = [], lsb = [], p = {};
36852         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
36853             p.cellId = "x-grid-hd-0-" + i;
36854             p.splitId = "x-grid-csplit-0-" + i;
36855             p.id = cm.getColumnId(i);
36856             p.title = cm.getColumnTooltip(i) || "";
36857             p.value = cm.getColumnHeader(i) || "";
36858             p.style = (this.grid.enableColumnResize === false || !cm.isResizable(i) || cm.isFixed(i)) ? 'cursor:default' : '';
36859             if(!cm.isLocked(i)){
36860                 cb[cb.length] = ct.apply(p);
36861                 sb[sb.length] = st.apply(p);
36862             }else{
36863                 lb[lb.length] = ct.apply(p);
36864                 lsb[lsb.length] = st.apply(p);
36865             }
36866         }
36867         return [ht.apply({cells: lb.join(""), splits:lsb.join("")}),
36868                 ht.apply({cells: cb.join(""), splits:sb.join("")})];
36869     },
36870
36871     updateHeaders : function(){
36872         var html = this.renderHeaders();
36873         this.lockedHd.update(html[0]);
36874         this.mainHd.update(html[1]);
36875     },
36876
36877     /**
36878      * Focuses the specified row.
36879      * @param {Number} row The row index
36880      */
36881     focusRow : function(row)
36882     {
36883         //Roo.log('GridView.focusRow');
36884         var x = this.scroller.dom.scrollLeft;
36885         this.focusCell(row, 0, false);
36886         this.scroller.dom.scrollLeft = x;
36887     },
36888
36889     /**
36890      * Focuses the specified cell.
36891      * @param {Number} row The row index
36892      * @param {Number} col The column index
36893      * @param {Boolean} hscroll false to disable horizontal scrolling
36894      */
36895     focusCell : function(row, col, hscroll)
36896     {
36897         //Roo.log('GridView.focusCell');
36898         var el = this.ensureVisible(row, col, hscroll);
36899         this.focusEl.alignTo(el, "tl-tl");
36900         if(Roo.isGecko){
36901             this.focusEl.focus();
36902         }else{
36903             this.focusEl.focus.defer(1, this.focusEl);
36904         }
36905     },
36906
36907     /**
36908      * Scrolls the specified cell into view
36909      * @param {Number} row The row index
36910      * @param {Number} col The column index
36911      * @param {Boolean} hscroll false to disable horizontal scrolling
36912      */
36913     ensureVisible : function(row, col, hscroll)
36914     {
36915         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
36916         //return null; //disable for testing.
36917         if(typeof row != "number"){
36918             row = row.rowIndex;
36919         }
36920         if(row < 0 && row >= this.ds.getCount()){
36921             return  null;
36922         }
36923         col = (col !== undefined ? col : 0);
36924         var cm = this.grid.colModel;
36925         while(cm.isHidden(col)){
36926             col++;
36927         }
36928
36929         var el = this.getCell(row, col);
36930         if(!el){
36931             return null;
36932         }
36933         var c = this.scroller.dom;
36934
36935         var ctop = parseInt(el.offsetTop, 10);
36936         var cleft = parseInt(el.offsetLeft, 10);
36937         var cbot = ctop + el.offsetHeight;
36938         var cright = cleft + el.offsetWidth;
36939         
36940         var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
36941         var stop = parseInt(c.scrollTop, 10);
36942         var sleft = parseInt(c.scrollLeft, 10);
36943         var sbot = stop + ch;
36944         var sright = sleft + c.clientWidth;
36945         /*
36946         Roo.log('GridView.ensureVisible:' +
36947                 ' ctop:' + ctop +
36948                 ' c.clientHeight:' + c.clientHeight +
36949                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
36950                 ' stop:' + stop +
36951                 ' cbot:' + cbot +
36952                 ' sbot:' + sbot +
36953                 ' ch:' + ch  
36954                 );
36955         */
36956         if(ctop < stop){
36957              c.scrollTop = ctop;
36958             //Roo.log("set scrolltop to ctop DISABLE?");
36959         }else if(cbot > sbot){
36960             //Roo.log("set scrolltop to cbot-ch");
36961             c.scrollTop = cbot-ch;
36962         }
36963         
36964         if(hscroll !== false){
36965             if(cleft < sleft){
36966                 c.scrollLeft = cleft;
36967             }else if(cright > sright){
36968                 c.scrollLeft = cright-c.clientWidth;
36969             }
36970         }
36971          
36972         return el;
36973     },
36974
36975     updateColumns : function(){
36976         this.grid.stopEditing();
36977         var cm = this.grid.colModel, colIds = this.getColumnIds();
36978         //var totalWidth = cm.getTotalWidth();
36979         var pos = 0;
36980         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
36981             //if(cm.isHidden(i)) continue;
36982             var w = cm.getColumnWidth(i);
36983             this.css.updateRule(this.colSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
36984             this.css.updateRule(this.hdSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
36985         }
36986         this.updateSplitters();
36987     },
36988
36989     generateRules : function(cm){
36990         var ruleBuf = [], rulesId = this.idToCssName(this.grid.id)+ '-cssrules';
36991         Roo.util.CSS.removeStyleSheet(rulesId);
36992         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
36993             var cid = cm.getColumnId(i);
36994             var align = '';
36995             if(cm.config[i].align){
36996                 align = 'text-align:'+cm.config[i].align+';';
36997             }
36998             var hidden = '';
36999             if(cm.isHidden(i)){
37000                 hidden = 'display:none;';
37001             }
37002             var width = "width:" + (cm.getColumnWidth(i) - this.borderWidth) + "px;";
37003             ruleBuf.push(
37004                     this.colSelector, cid, " {\n", cm.config[i].css, align, width, "\n}\n",
37005                     this.hdSelector, cid, " {\n", align, width, "}\n",
37006                     this.tdSelector, cid, " {\n",hidden,"\n}\n",
37007                     this.splitSelector, cid, " {\n", hidden , "\n}\n");
37008         }
37009         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
37010     },
37011
37012     updateSplitters : function(){
37013         var cm = this.cm, s = this.getSplitters();
37014         if(s){ // splitters not created yet
37015             var pos = 0, locked = true;
37016             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
37017                 if(cm.isHidden(i)) continue;
37018                 var w = cm.getColumnWidth(i); // make sure it's a number
37019                 if(!cm.isLocked(i) && locked){
37020                     pos = 0;
37021                     locked = false;
37022                 }
37023                 pos += w;
37024                 s[i].style.left = (pos-this.splitOffset) + "px";
37025             }
37026         }
37027     },
37028
37029     handleHiddenChange : function(colModel, colIndex, hidden){
37030         if(hidden){
37031             this.hideColumn(colIndex);
37032         }else{
37033             this.unhideColumn(colIndex);
37034         }
37035     },
37036
37037     hideColumn : function(colIndex){
37038         var cid = this.getColumnId(colIndex);
37039         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "none");
37040         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "none");
37041         if(Roo.isSafari){
37042             this.updateHeaders();
37043         }
37044         this.updateSplitters();
37045         this.layout();
37046     },
37047
37048     unhideColumn : function(colIndex){
37049         var cid = this.getColumnId(colIndex);
37050         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "");
37051         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "");
37052
37053         if(Roo.isSafari){
37054             this.updateHeaders();
37055         }
37056         this.updateSplitters();
37057         this.layout();
37058     },
37059
37060     insertRows : function(dm, firstRow, lastRow, isUpdate){
37061         if(firstRow == 0 && lastRow == dm.getCount()-1){
37062             this.refresh();
37063         }else{
37064             if(!isUpdate){
37065                 this.fireEvent("beforerowsinserted", this, firstRow, lastRow);
37066             }
37067             var s = this.getScrollState();
37068             var markup = this.renderRows(firstRow, lastRow);
37069             this.bufferRows(markup[0], this.getLockedTable(), firstRow);
37070             this.bufferRows(markup[1], this.getBodyTable(), firstRow);
37071             this.restoreScroll(s);
37072             if(!isUpdate){
37073                 this.fireEvent("rowsinserted", this, firstRow, lastRow);
37074                 this.syncRowHeights(firstRow, lastRow);
37075                 this.stripeRows(firstRow);
37076                 this.layout();
37077             }
37078         }
37079     },
37080
37081     bufferRows : function(markup, target, index){
37082         var before = null, trows = target.rows, tbody = target.tBodies[0];
37083         if(index < trows.length){
37084             before = trows[index];
37085         }
37086         var b = document.createElement("div");
37087         b.innerHTML = "<table><tbody>"+markup+"</tbody></table>";
37088         var rows = b.firstChild.rows;
37089         for(var i = 0, len = rows.length; i < len; i++){
37090             if(before){
37091                 tbody.insertBefore(rows[0], before);
37092             }else{
37093                 tbody.appendChild(rows[0]);
37094             }
37095         }
37096         b.innerHTML = "";
37097         b = null;
37098     },
37099
37100     deleteRows : function(dm, firstRow, lastRow){
37101         if(dm.getRowCount()<1){
37102             this.fireEvent("beforerefresh", this);
37103             this.mainBody.update("");
37104             this.lockedBody.update("");
37105             this.fireEvent("refresh", this);
37106         }else{
37107             this.fireEvent("beforerowsdeleted", this, firstRow, lastRow);
37108             var bt = this.getBodyTable();
37109             var tbody = bt.firstChild;
37110             var rows = bt.rows;
37111             for(var rowIndex = firstRow; rowIndex <= lastRow; rowIndex++){
37112                 tbody.removeChild(rows[firstRow]);
37113             }
37114             this.stripeRows(firstRow);
37115             this.fireEvent("rowsdeleted", this, firstRow, lastRow);
37116         }
37117     },
37118
37119     updateRows : function(dataSource, firstRow, lastRow){
37120         var s = this.getScrollState();
37121         this.refresh();
37122         this.restoreScroll(s);
37123     },
37124
37125     handleSort : function(dataSource, sortColumnIndex, sortDir, noRefresh){
37126         if(!noRefresh){
37127            this.refresh();
37128         }
37129         this.updateHeaderSortState();
37130     },
37131
37132     getScrollState : function(){
37133         
37134         var sb = this.scroller.dom;
37135         return {left: sb.scrollLeft, top: sb.scrollTop};
37136     },
37137
37138     stripeRows : function(startRow){
37139         if(!this.grid.stripeRows || this.ds.getCount() < 1){
37140             return;
37141         }
37142         startRow = startRow || 0;
37143         var rows = this.getBodyTable().rows;
37144         var lrows = this.getLockedTable().rows;
37145         var cls = ' x-grid-row-alt ';
37146         for(var i = startRow, len = rows.length; i < len; i++){
37147             var row = rows[i], lrow = lrows[i];
37148             var isAlt = ((i+1) % 2 == 0);
37149             var hasAlt = (' '+row.className + ' ').indexOf(cls) != -1;
37150             if(isAlt == hasAlt){
37151                 continue;
37152             }
37153             if(isAlt){
37154                 row.className += " x-grid-row-alt";
37155             }else{
37156                 row.className = row.className.replace("x-grid-row-alt", "");
37157             }
37158             if(lrow){
37159                 lrow.className = row.className;
37160             }
37161         }
37162     },
37163
37164     restoreScroll : function(state){
37165         //Roo.log('GridView.restoreScroll');
37166         var sb = this.scroller.dom;
37167         sb.scrollLeft = state.left;
37168         sb.scrollTop = state.top;
37169         this.syncScroll();
37170     },
37171
37172     syncScroll : function(){
37173         //Roo.log('GridView.syncScroll');
37174         var sb = this.scroller.dom;
37175         var sh = this.mainHd.dom;
37176         var bs = this.mainBody.dom;
37177         var lv = this.lockedBody.dom;
37178         sh.scrollLeft = bs.scrollLeft = sb.scrollLeft;
37179         lv.scrollTop = bs.scrollTop = sb.scrollTop;
37180     },
37181
37182     handleScroll : function(e){
37183         this.syncScroll();
37184         var sb = this.scroller.dom;
37185         this.grid.fireEvent("bodyscroll", sb.scrollLeft, sb.scrollTop);
37186         e.stopEvent();
37187     },
37188
37189     handleWheel : function(e){
37190         var d = e.getWheelDelta();
37191         this.scroller.dom.scrollTop -= d*22;
37192         // set this here to prevent jumpy scrolling on large tables
37193         this.lockedBody.dom.scrollTop = this.mainBody.dom.scrollTop = this.scroller.dom.scrollTop;
37194         e.stopEvent();
37195     },
37196
37197     renderRows : function(startRow, endRow){
37198         // pull in all the crap needed to render rows
37199         var g = this.grid, cm = g.colModel, ds = g.dataSource, stripe = g.stripeRows;
37200         var colCount = cm.getColumnCount();
37201
37202         if(ds.getCount() < 1){
37203             return ["", ""];
37204         }
37205
37206         // build a map for all the columns
37207         var cs = [];
37208         for(var i = 0; i < colCount; i++){
37209             var name = cm.getDataIndex(i);
37210             cs[i] = {
37211                 name : typeof name == 'undefined' ? ds.fields.get(i).name : name,
37212                 renderer : cm.getRenderer(i),
37213                 id : cm.getColumnId(i),
37214                 locked : cm.isLocked(i)
37215             };
37216         }
37217
37218         startRow = startRow || 0;
37219         endRow = typeof endRow == "undefined"? ds.getCount()-1 : endRow;
37220
37221         // records to render
37222         var rs = ds.getRange(startRow, endRow);
37223
37224         return this.doRender(cs, rs, ds, startRow, colCount, stripe);
37225     },
37226
37227     // As much as I hate to duplicate code, this was branched because FireFox really hates
37228     // [].join("") on strings. The performance difference was substantial enough to
37229     // branch this function
37230     doRender : Roo.isGecko ?
37231             function(cs, rs, ds, startRow, colCount, stripe){
37232                 var ts = this.templates, ct = ts.cell, rt = ts.row;
37233                 // buffers
37234                 var buf = "", lbuf = "", cb, lcb, c, p = {}, rp = {}, r, rowIndex;
37235                 
37236                 var hasListener = this.grid.hasListener('rowclass');
37237                 var rowcfg = {};
37238                 for(var j = 0, len = rs.length; j < len; j++){
37239                     r = rs[j]; cb = ""; lcb = ""; rowIndex = (j+startRow);
37240                     for(var i = 0; i < colCount; i++){
37241                         c = cs[i];
37242                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
37243                         p.id = c.id;
37244                         p.css = p.attr = "";
37245                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
37246                         if(p.value == undefined || p.value === "") p.value = "&#160;";
37247                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
37248                             p.css += p.css ? ' x-grid-dirty-cell' : 'x-grid-dirty-cell';
37249                         }
37250                         var markup = ct.apply(p);
37251                         if(!c.locked){
37252                             cb+= markup;
37253                         }else{
37254                             lcb+= markup;
37255                         }
37256                     }
37257                     var alt = [];
37258                     if(stripe && ((rowIndex+1) % 2 == 0)){
37259                         alt.push("x-grid-row-alt")
37260                     }
37261                     if(r.dirty){
37262                         alt.push(  " x-grid-dirty-row");
37263                     }
37264                     rp.cells = lcb;
37265                     if(this.getRowClass){
37266                         alt.push(this.getRowClass(r, rowIndex));
37267                     }
37268                     if (hasListener) {
37269                         rowcfg = {
37270                              
37271                             record: r,
37272                             rowIndex : rowIndex,
37273                             rowClass : ''
37274                         }
37275                         this.grid.fireEvent('rowclass', this, rowcfg);
37276                         alt.push(rowcfg.rowClass);
37277                     }
37278                     rp.alt = alt.join(" ");
37279                     lbuf+= rt.apply(rp);
37280                     rp.cells = cb;
37281                     buf+=  rt.apply(rp);
37282                 }
37283                 return [lbuf, buf];
37284             } :
37285             function(cs, rs, ds, startRow, colCount, stripe){
37286                 var ts = this.templates, ct = ts.cell, rt = ts.row;
37287                 // buffers
37288                 var buf = [], lbuf = [], cb, lcb, c, p = {}, rp = {}, r, rowIndex;
37289                 var hasListener = this.grid.hasListener('rowclass');
37290  
37291                 var rowcfg = {};
37292                 for(var j = 0, len = rs.length; j < len; j++){
37293                     r = rs[j]; cb = []; lcb = []; rowIndex = (j+startRow);
37294                     for(var i = 0; i < colCount; i++){
37295                         c = cs[i];
37296                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
37297                         p.id = c.id;
37298                         p.css = p.attr = "";
37299                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
37300                         if(p.value == undefined || p.value === "") p.value = "&#160;";
37301                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
37302                             p.css += p.css ? ' x-grid-dirty-cell' : 'x-grid-dirty-cell';
37303                         }
37304                         
37305                         var markup = ct.apply(p);
37306                         if(!c.locked){
37307                             cb[cb.length] = markup;
37308                         }else{
37309                             lcb[lcb.length] = markup;
37310                         }
37311                     }
37312                     var alt = [];
37313                     if(stripe && ((rowIndex+1) % 2 == 0)){
37314                         alt.push( "x-grid-row-alt");
37315                     }
37316                     if(r.dirty){
37317                         alt.push(" x-grid-dirty-row");
37318                     }
37319                     rp.cells = lcb;
37320                     if(this.getRowClass){
37321                         alt.push( this.getRowClass(r, rowIndex));
37322                     }
37323                     if (hasListener) {
37324                         rowcfg = {
37325                              
37326                             record: r,
37327                             rowIndex : rowIndex,
37328                             rowClass : ''
37329                         }
37330                         this.grid.fireEvent('rowclass', this, rowcfg);
37331                         alt.push(rowcfg.rowClass);
37332                     }
37333                     rp.alt = alt.join(" ");
37334                     rp.cells = lcb.join("");
37335                     lbuf[lbuf.length] = rt.apply(rp);
37336                     rp.cells = cb.join("");
37337                     buf[buf.length] =  rt.apply(rp);
37338                 }
37339                 return [lbuf.join(""), buf.join("")];
37340             },
37341
37342     renderBody : function(){
37343         var markup = this.renderRows();
37344         var bt = this.templates.body;
37345         return [bt.apply({rows: markup[0]}), bt.apply({rows: markup[1]})];
37346     },
37347
37348     /**
37349      * Refreshes the grid
37350      * @param {Boolean} headersToo
37351      */
37352     refresh : function(headersToo){
37353         this.fireEvent("beforerefresh", this);
37354         this.grid.stopEditing();
37355         var result = this.renderBody();
37356         this.lockedBody.update(result[0]);
37357         this.mainBody.update(result[1]);
37358         if(headersToo === true){
37359             this.updateHeaders();
37360             this.updateColumns();
37361             this.updateSplitters();
37362             this.updateHeaderSortState();
37363         }
37364         this.syncRowHeights();
37365         this.layout();
37366         this.fireEvent("refresh", this);
37367     },
37368
37369     handleColumnMove : function(cm, oldIndex, newIndex){
37370         this.indexMap = null;
37371         var s = this.getScrollState();
37372         this.refresh(true);
37373         this.restoreScroll(s);
37374         this.afterMove(newIndex);
37375     },
37376
37377     afterMove : function(colIndex){
37378         if(this.enableMoveAnim && Roo.enableFx){
37379             this.fly(this.getHeaderCell(colIndex).firstChild).highlight(this.hlColor);
37380         }
37381         // if multisort - fix sortOrder, and reload..
37382         if (this.grid.dataSource.multiSort) {
37383             // the we can call sort again..
37384             var dm = this.grid.dataSource;
37385             var cm = this.grid.colModel;
37386             var so = [];
37387             for(var i = 0; i < cm.config.length; i++ ) {
37388                 
37389                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined')) {
37390                     continue; // dont' bother, it's not in sort list or being set.
37391                 }
37392                 
37393                 so.push(cm.config[i].dataIndex);
37394             };
37395             dm.sortOrder = so;
37396             dm.load(dm.lastOptions);
37397             
37398             
37399         }
37400         
37401     },
37402
37403     updateCell : function(dm, rowIndex, dataIndex){
37404         var colIndex = this.getColumnIndexByDataIndex(dataIndex);
37405         if(typeof colIndex == "undefined"){ // not present in grid
37406             return;
37407         }
37408         var cm = this.grid.colModel;
37409         var cell = this.getCell(rowIndex, colIndex);
37410         var cellText = this.getCellText(rowIndex, colIndex);
37411
37412         var p = {
37413             cellId : "x-grid-cell-" + rowIndex + "-" + colIndex,
37414             id : cm.getColumnId(colIndex),
37415             css: colIndex == cm.getColumnCount()-1 ? "x-grid-col-last" : ""
37416         };
37417         var renderer = cm.getRenderer(colIndex);
37418         var val = renderer(dm.getValueAt(rowIndex, dataIndex), p, rowIndex, colIndex, dm);
37419         if(typeof val == "undefined" || val === "") val = "&#160;";
37420         cellText.innerHTML = val;
37421         cell.className = this.cellClass + " " + this.idToCssName(p.cellId) + " " + p.css;
37422         this.syncRowHeights(rowIndex, rowIndex);
37423     },
37424
37425     calcColumnWidth : function(colIndex, maxRowsToMeasure){
37426         var maxWidth = 0;
37427         if(this.grid.autoSizeHeaders){
37428             var h = this.getHeaderCellMeasure(colIndex);
37429             maxWidth = Math.max(maxWidth, h.scrollWidth);
37430         }
37431         var tb, index;
37432         if(this.cm.isLocked(colIndex)){
37433             tb = this.getLockedTable();
37434             index = colIndex;
37435         }else{
37436             tb = this.getBodyTable();
37437             index = colIndex - this.cm.getLockedCount();
37438         }
37439         if(tb && tb.rows){
37440             var rows = tb.rows;
37441             var stopIndex = Math.min(maxRowsToMeasure || rows.length, rows.length);
37442             for(var i = 0; i < stopIndex; i++){
37443                 var cell = rows[i].childNodes[index].firstChild;
37444                 maxWidth = Math.max(maxWidth, cell.scrollWidth);
37445             }
37446         }
37447         return maxWidth + /*margin for error in IE*/ 5;
37448     },
37449     /**
37450      * Autofit a column to its content.
37451      * @param {Number} colIndex
37452      * @param {Boolean} forceMinSize true to force the column to go smaller if possible
37453      */
37454      autoSizeColumn : function(colIndex, forceMinSize, suppressEvent){
37455          if(this.cm.isHidden(colIndex)){
37456              return; // can't calc a hidden column
37457          }
37458         if(forceMinSize){
37459             var cid = this.cm.getColumnId(colIndex);
37460             this.css.updateRule(this.colSelector +this.idToCssName( cid), "width", this.grid.minColumnWidth + "px");
37461            if(this.grid.autoSizeHeaders){
37462                this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", this.grid.minColumnWidth + "px");
37463            }
37464         }
37465         var newWidth = this.calcColumnWidth(colIndex);
37466         this.cm.setColumnWidth(colIndex,
37467             Math.max(this.grid.minColumnWidth, newWidth), suppressEvent);
37468         if(!suppressEvent){
37469             this.grid.fireEvent("columnresize", colIndex, newWidth);
37470         }
37471     },
37472
37473     /**
37474      * Autofits all columns to their content and then expands to fit any extra space in the grid
37475      */
37476      autoSizeColumns : function(){
37477         var cm = this.grid.colModel;
37478         var colCount = cm.getColumnCount();
37479         for(var i = 0; i < colCount; i++){
37480             this.autoSizeColumn(i, true, true);
37481         }
37482         if(cm.getTotalWidth() < this.scroller.dom.clientWidth){
37483             this.fitColumns();
37484         }else{
37485             this.updateColumns();
37486             this.layout();
37487         }
37488     },
37489
37490     /**
37491      * Autofits all columns to the grid's width proportionate with their current size
37492      * @param {Boolean} reserveScrollSpace Reserve space for a scrollbar
37493      */
37494     fitColumns : function(reserveScrollSpace){
37495         var cm = this.grid.colModel;
37496         var colCount = cm.getColumnCount();
37497         var cols = [];
37498         var width = 0;
37499         var i, w;
37500         for (i = 0; i < colCount; i++){
37501             if(!cm.isHidden(i) && !cm.isFixed(i)){
37502                 w = cm.getColumnWidth(i);
37503                 cols.push(i);
37504                 cols.push(w);
37505                 width += w;
37506             }
37507         }
37508         var avail = Math.min(this.scroller.dom.clientWidth, this.el.getWidth());
37509         if(reserveScrollSpace){
37510             avail -= 17;
37511         }
37512         var frac = (avail - cm.getTotalWidth())/width;
37513         while (cols.length){
37514             w = cols.pop();
37515             i = cols.pop();
37516             cm.setColumnWidth(i, Math.floor(w + w*frac), true);
37517         }
37518         this.updateColumns();
37519         this.layout();
37520     },
37521
37522     onRowSelect : function(rowIndex){
37523         var row = this.getRowComposite(rowIndex);
37524         row.addClass("x-grid-row-selected");
37525     },
37526
37527     onRowDeselect : function(rowIndex){
37528         var row = this.getRowComposite(rowIndex);
37529         row.removeClass("x-grid-row-selected");
37530     },
37531
37532     onCellSelect : function(row, col){
37533         var cell = this.getCell(row, col);
37534         if(cell){
37535             Roo.fly(cell).addClass("x-grid-cell-selected");
37536         }
37537     },
37538
37539     onCellDeselect : function(row, col){
37540         var cell = this.getCell(row, col);
37541         if(cell){
37542             Roo.fly(cell).removeClass("x-grid-cell-selected");
37543         }
37544     },
37545
37546     updateHeaderSortState : function(){
37547         
37548         // sort state can be single { field: xxx, direction : yyy}
37549         // or   { xxx=>ASC , yyy : DESC ..... }
37550         
37551         var mstate = {};
37552         if (!this.ds.multiSort) { 
37553             var state = this.ds.getSortState();
37554             if(!state){
37555                 return;
37556             }
37557             mstate[state.field] = state.direction;
37558             // FIXME... - this is not used here.. but might be elsewhere..
37559             this.sortState = state;
37560             
37561         } else {
37562             mstate = this.ds.sortToggle;
37563         }
37564         //remove existing sort classes..
37565         
37566         var sc = this.sortClasses;
37567         var hds = this.el.select(this.headerSelector).removeClass(sc);
37568         
37569         for(var f in mstate) {
37570         
37571             var sortColumn = this.cm.findColumnIndex(f);
37572             
37573             if(sortColumn != -1){
37574                 var sortDir = mstate[f];        
37575                 hds.item(sortColumn).addClass(sc[sortDir == "DESC" ? 1 : 0]);
37576             }
37577         }
37578         
37579          
37580         
37581     },
37582
37583
37584     handleHeaderClick : function(g, index,e){
37585         
37586         Roo.log("header click");
37587         
37588         if (Roo.isTouch) {
37589             // touch events on header are handled by context
37590             this.handleHdCtx(g,index,e);
37591             return;
37592         }
37593         
37594         
37595         if(this.headersDisabled){
37596             return;
37597         }
37598         var dm = g.dataSource, cm = g.colModel;
37599         if(!cm.isSortable(index)){
37600             return;
37601         }
37602         g.stopEditing();
37603         
37604         if (dm.multiSort) {
37605             // update the sortOrder
37606             var so = [];
37607             for(var i = 0; i < cm.config.length; i++ ) {
37608                 
37609                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined') && (index != i)) {
37610                     continue; // dont' bother, it's not in sort list or being set.
37611                 }
37612                 
37613                 so.push(cm.config[i].dataIndex);
37614             };
37615             dm.sortOrder = so;
37616         }
37617         
37618         
37619         dm.sort(cm.getDataIndex(index));
37620     },
37621
37622
37623     destroy : function(){
37624         if(this.colMenu){
37625             this.colMenu.removeAll();
37626             Roo.menu.MenuMgr.unregister(this.colMenu);
37627             this.colMenu.getEl().remove();
37628             delete this.colMenu;
37629         }
37630         if(this.hmenu){
37631             this.hmenu.removeAll();
37632             Roo.menu.MenuMgr.unregister(this.hmenu);
37633             this.hmenu.getEl().remove();
37634             delete this.hmenu;
37635         }
37636         if(this.grid.enableColumnMove){
37637             var dds = Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
37638             if(dds){
37639                 for(var dd in dds){
37640                     if(!dds[dd].config.isTarget && dds[dd].dragElId){
37641                         var elid = dds[dd].dragElId;
37642                         dds[dd].unreg();
37643                         Roo.get(elid).remove();
37644                     } else if(dds[dd].config.isTarget){
37645                         dds[dd].proxyTop.remove();
37646                         dds[dd].proxyBottom.remove();
37647                         dds[dd].unreg();
37648                     }
37649                     if(Roo.dd.DDM.locationCache[dd]){
37650                         delete Roo.dd.DDM.locationCache[dd];
37651                     }
37652                 }
37653                 delete Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
37654             }
37655         }
37656         Roo.util.CSS.removeStyleSheet(this.idToCssName(this.grid.id) + '-cssrules');
37657         this.bind(null, null);
37658         Roo.EventManager.removeResizeListener(this.onWindowResize, this);
37659     },
37660
37661     handleLockChange : function(){
37662         this.refresh(true);
37663     },
37664
37665     onDenyColumnLock : function(){
37666
37667     },
37668
37669     onDenyColumnHide : function(){
37670
37671     },
37672
37673     handleHdMenuClick : function(item){
37674         var index = this.hdCtxIndex;
37675         var cm = this.cm, ds = this.ds;
37676         switch(item.id){
37677             case "asc":
37678                 ds.sort(cm.getDataIndex(index), "ASC");
37679                 break;
37680             case "desc":
37681                 ds.sort(cm.getDataIndex(index), "DESC");
37682                 break;
37683             case "lock":
37684                 var lc = cm.getLockedCount();
37685                 if(cm.getColumnCount(true) <= lc+1){
37686                     this.onDenyColumnLock();
37687                     return;
37688                 }
37689                 if(lc != index){
37690                     cm.setLocked(index, true, true);
37691                     cm.moveColumn(index, lc);
37692                     this.grid.fireEvent("columnmove", index, lc);
37693                 }else{
37694                     cm.setLocked(index, true);
37695                 }
37696             break;
37697             case "unlock":
37698                 var lc = cm.getLockedCount();
37699                 if((lc-1) != index){
37700                     cm.setLocked(index, false, true);
37701                     cm.moveColumn(index, lc-1);
37702                     this.grid.fireEvent("columnmove", index, lc-1);
37703                 }else{
37704                     cm.setLocked(index, false);
37705                 }
37706             break;
37707             case 'wider': // used to expand cols on touch..
37708             case 'narrow':
37709                 var cw = cm.getColumnWidth(index);
37710                 cw += (item.id == 'wider' ? 1 : -1) * 50;
37711                 cw = Math.max(0, cw);
37712                 cw = Math.min(cw,4000);
37713                 cm.setColumnWidth(index, cw);
37714                 break;
37715                 
37716             default:
37717                 index = cm.getIndexById(item.id.substr(4));
37718                 if(index != -1){
37719                     if(item.checked && cm.getColumnCount(true) <= 1){
37720                         this.onDenyColumnHide();
37721                         return false;
37722                     }
37723                     cm.setHidden(index, item.checked);
37724                 }
37725         }
37726         return true;
37727     },
37728
37729     beforeColMenuShow : function(){
37730         var cm = this.cm,  colCount = cm.getColumnCount();
37731         this.colMenu.removeAll();
37732         for(var i = 0; i < colCount; i++){
37733             this.colMenu.add(new Roo.menu.CheckItem({
37734                 id: "col-"+cm.getColumnId(i),
37735                 text: cm.getColumnHeader(i),
37736                 checked: !cm.isHidden(i),
37737                 hideOnClick:false
37738             }));
37739         }
37740     },
37741
37742     handleHdCtx : function(g, index, e){
37743         e.stopEvent();
37744         var hd = this.getHeaderCell(index);
37745         this.hdCtxIndex = index;
37746         var ms = this.hmenu.items, cm = this.cm;
37747         ms.get("asc").setDisabled(!cm.isSortable(index));
37748         ms.get("desc").setDisabled(!cm.isSortable(index));
37749         if(this.grid.enableColLock !== false){
37750             ms.get("lock").setDisabled(cm.isLocked(index));
37751             ms.get("unlock").setDisabled(!cm.isLocked(index));
37752         }
37753         this.hmenu.show(hd, "tl-bl");
37754     },
37755
37756     handleHdOver : function(e){
37757         var hd = this.findHeaderCell(e.getTarget());
37758         if(hd && !this.headersDisabled){
37759             if(this.grid.colModel.isSortable(this.getCellIndex(hd))){
37760                this.fly(hd).addClass("x-grid-hd-over");
37761             }
37762         }
37763     },
37764
37765     handleHdOut : function(e){
37766         var hd = this.findHeaderCell(e.getTarget());
37767         if(hd){
37768             this.fly(hd).removeClass("x-grid-hd-over");
37769         }
37770     },
37771
37772     handleSplitDblClick : function(e, t){
37773         var i = this.getCellIndex(t);
37774         if(this.grid.enableColumnResize !== false && this.cm.isResizable(i) && !this.cm.isFixed(i)){
37775             this.autoSizeColumn(i, true);
37776             this.layout();
37777         }
37778     },
37779
37780     render : function(){
37781
37782         var cm = this.cm;
37783         var colCount = cm.getColumnCount();
37784
37785         if(this.grid.monitorWindowResize === true){
37786             Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
37787         }
37788         var header = this.renderHeaders();
37789         var body = this.templates.body.apply({rows:""});
37790         var html = this.templates.master.apply({
37791             lockedBody: body,
37792             body: body,
37793             lockedHeader: header[0],
37794             header: header[1]
37795         });
37796
37797         //this.updateColumns();
37798
37799         this.grid.getGridEl().dom.innerHTML = html;
37800
37801         this.initElements();
37802         
37803         // a kludge to fix the random scolling effect in webkit
37804         this.el.on("scroll", function() {
37805             this.el.dom.scrollTop=0; // hopefully not recursive..
37806         },this);
37807
37808         this.scroller.on("scroll", this.handleScroll, this);
37809         this.lockedBody.on("mousewheel", this.handleWheel, this);
37810         this.mainBody.on("mousewheel", this.handleWheel, this);
37811
37812         this.mainHd.on("mouseover", this.handleHdOver, this);
37813         this.mainHd.on("mouseout", this.handleHdOut, this);
37814         this.mainHd.on("dblclick", this.handleSplitDblClick, this,
37815                 {delegate: "."+this.splitClass});
37816
37817         this.lockedHd.on("mouseover", this.handleHdOver, this);
37818         this.lockedHd.on("mouseout", this.handleHdOut, this);
37819         this.lockedHd.on("dblclick", this.handleSplitDblClick, this,
37820                 {delegate: "."+this.splitClass});
37821
37822         if(this.grid.enableColumnResize !== false && Roo.grid.SplitDragZone){
37823             new Roo.grid.SplitDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
37824         }
37825
37826         this.updateSplitters();
37827
37828         if(this.grid.enableColumnMove && Roo.grid.HeaderDragZone){
37829             new Roo.grid.HeaderDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
37830             new Roo.grid.HeaderDropZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
37831         }
37832
37833         if(this.grid.enableCtxMenu !== false && Roo.menu.Menu){
37834             this.hmenu = new Roo.menu.Menu({id: this.grid.id + "-hctx"});
37835             this.hmenu.add(
37836                 {id:"asc", text: this.sortAscText, cls: "xg-hmenu-sort-asc"},
37837                 {id:"desc", text: this.sortDescText, cls: "xg-hmenu-sort-desc"}
37838             );
37839             if(this.grid.enableColLock !== false){
37840                 this.hmenu.add('-',
37841                     {id:"lock", text: this.lockText, cls: "xg-hmenu-lock"},
37842                     {id:"unlock", text: this.unlockText, cls: "xg-hmenu-unlock"}
37843                 );
37844             }
37845             if (Roo.isTouch) {
37846                  this.hmenu.add('-',
37847                     {id:"wider", text: this.columnsWiderText},
37848                     {id:"narrow", text: this.columnsNarrowText }
37849                 );
37850                 
37851                  
37852             }
37853             
37854             if(this.grid.enableColumnHide !== false){
37855
37856                 this.colMenu = new Roo.menu.Menu({id:this.grid.id + "-hcols-menu"});
37857                 this.colMenu.on("beforeshow", this.beforeColMenuShow, this);
37858                 this.colMenu.on("itemclick", this.handleHdMenuClick, this);
37859
37860                 this.hmenu.add('-',
37861                     {id:"columns", text: this.columnsText, menu: this.colMenu}
37862                 );
37863             }
37864             this.hmenu.on("itemclick", this.handleHdMenuClick, this);
37865
37866             this.grid.on("headercontextmenu", this.handleHdCtx, this);
37867         }
37868
37869         if((this.grid.enableDragDrop || this.grid.enableDrag) && Roo.grid.GridDragZone){
37870             this.dd = new Roo.grid.GridDragZone(this.grid, {
37871                 ddGroup : this.grid.ddGroup || 'GridDD'
37872             });
37873             
37874         }
37875
37876         /*
37877         for(var i = 0; i < colCount; i++){
37878             if(cm.isHidden(i)){
37879                 this.hideColumn(i);
37880             }
37881             if(cm.config[i].align){
37882                 this.css.updateRule(this.colSelector + i, "textAlign", cm.config[i].align);
37883                 this.css.updateRule(this.hdSelector + i, "textAlign", cm.config[i].align);
37884             }
37885         }*/
37886         
37887         this.updateHeaderSortState();
37888
37889         this.beforeInitialResize();
37890         this.layout(true);
37891
37892         // two part rendering gives faster view to the user
37893         this.renderPhase2.defer(1, this);
37894     },
37895
37896     renderPhase2 : function(){
37897         // render the rows now
37898         this.refresh();
37899         if(this.grid.autoSizeColumns){
37900             this.autoSizeColumns();
37901         }
37902     },
37903
37904     beforeInitialResize : function(){
37905
37906     },
37907
37908     onColumnSplitterMoved : function(i, w){
37909         this.userResized = true;
37910         var cm = this.grid.colModel;
37911         cm.setColumnWidth(i, w, true);
37912         var cid = cm.getColumnId(i);
37913         this.css.updateRule(this.colSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
37914         this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
37915         this.updateSplitters();
37916         this.layout();
37917         this.grid.fireEvent("columnresize", i, w);
37918     },
37919
37920     syncRowHeights : function(startIndex, endIndex){
37921         if(this.grid.enableRowHeightSync === true && this.cm.getLockedCount() > 0){
37922             startIndex = startIndex || 0;
37923             var mrows = this.getBodyTable().rows;
37924             var lrows = this.getLockedTable().rows;
37925             var len = mrows.length-1;
37926             endIndex = Math.min(endIndex || len, len);
37927             for(var i = startIndex; i <= endIndex; i++){
37928                 var m = mrows[i], l = lrows[i];
37929                 var h = Math.max(m.offsetHeight, l.offsetHeight);
37930                 m.style.height = l.style.height = h + "px";
37931             }
37932         }
37933     },
37934
37935     layout : function(initialRender, is2ndPass){
37936         var g = this.grid;
37937         var auto = g.autoHeight;
37938         var scrollOffset = 16;
37939         var c = g.getGridEl(), cm = this.cm,
37940                 expandCol = g.autoExpandColumn,
37941                 gv = this;
37942         //c.beginMeasure();
37943
37944         if(!c.dom.offsetWidth){ // display:none?
37945             if(initialRender){
37946                 this.lockedWrap.show();
37947                 this.mainWrap.show();
37948             }
37949             return;
37950         }
37951
37952         var hasLock = this.cm.isLocked(0);
37953
37954         var tbh = this.headerPanel.getHeight();
37955         var bbh = this.footerPanel.getHeight();
37956
37957         if(auto){
37958             var ch = this.getBodyTable().offsetHeight + tbh + bbh + this.mainHd.getHeight();
37959             var newHeight = ch + c.getBorderWidth("tb");
37960             if(g.maxHeight){
37961                 newHeight = Math.min(g.maxHeight, newHeight);
37962             }
37963             c.setHeight(newHeight);
37964         }
37965
37966         if(g.autoWidth){
37967             c.setWidth(cm.getTotalWidth()+c.getBorderWidth('lr'));
37968         }
37969
37970         var s = this.scroller;
37971
37972         var csize = c.getSize(true);
37973
37974         this.el.setSize(csize.width, csize.height);
37975
37976         this.headerPanel.setWidth(csize.width);
37977         this.footerPanel.setWidth(csize.width);
37978
37979         var hdHeight = this.mainHd.getHeight();
37980         var vw = csize.width;
37981         var vh = csize.height - (tbh + bbh);
37982
37983         s.setSize(vw, vh);
37984
37985         var bt = this.getBodyTable();
37986         var ltWidth = hasLock ?
37987                       Math.max(this.getLockedTable().offsetWidth, this.lockedHd.dom.firstChild.offsetWidth) : 0;
37988
37989         var scrollHeight = bt.offsetHeight;
37990         var scrollWidth = ltWidth + bt.offsetWidth;
37991         var vscroll = false, hscroll = false;
37992
37993         this.scrollSizer.setSize(scrollWidth, scrollHeight+hdHeight);
37994
37995         var lw = this.lockedWrap, mw = this.mainWrap;
37996         var lb = this.lockedBody, mb = this.mainBody;
37997
37998         setTimeout(function(){
37999             var t = s.dom.offsetTop;
38000             var w = s.dom.clientWidth,
38001                 h = s.dom.clientHeight;
38002
38003             lw.setTop(t);
38004             lw.setSize(ltWidth, h);
38005
38006             mw.setLeftTop(ltWidth, t);
38007             mw.setSize(w-ltWidth, h);
38008
38009             lb.setHeight(h-hdHeight);
38010             mb.setHeight(h-hdHeight);
38011
38012             if(is2ndPass !== true && !gv.userResized && expandCol){
38013                 // high speed resize without full column calculation
38014                 
38015                 var ci = cm.getIndexById(expandCol);
38016                 if (ci < 0) {
38017                     ci = cm.findColumnIndex(expandCol);
38018                 }
38019                 ci = Math.max(0, ci); // make sure it's got at least the first col.
38020                 var expandId = cm.getColumnId(ci);
38021                 var  tw = cm.getTotalWidth(false);
38022                 var currentWidth = cm.getColumnWidth(ci);
38023                 var cw = Math.min(Math.max(((w-tw)+currentWidth-2)-/*scrollbar*/(w <= s.dom.offsetWidth ? 0 : 18), g.autoExpandMin), g.autoExpandMax);
38024                 if(currentWidth != cw){
38025                     cm.setColumnWidth(ci, cw, true);
38026                     gv.css.updateRule(gv.colSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
38027                     gv.css.updateRule(gv.hdSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
38028                     gv.updateSplitters();
38029                     gv.layout(false, true);
38030                 }
38031             }
38032
38033             if(initialRender){
38034                 lw.show();
38035                 mw.show();
38036             }
38037             //c.endMeasure();
38038         }, 10);
38039     },
38040
38041     onWindowResize : function(){
38042         if(!this.grid.monitorWindowResize || this.grid.autoHeight){
38043             return;
38044         }
38045         this.layout();
38046     },
38047
38048     appendFooter : function(parentEl){
38049         return null;
38050     },
38051
38052     sortAscText : "Sort Ascending",
38053     sortDescText : "Sort Descending",
38054     lockText : "Lock Column",
38055     unlockText : "Unlock Column",
38056     columnsText : "Columns",
38057  
38058     columnsWiderText : "Wider",
38059     columnsNarrowText : "Thinner"
38060 });
38061
38062
38063 Roo.grid.GridView.ColumnDragZone = function(grid, hd){
38064     Roo.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
38065     this.proxy.el.addClass('x-grid3-col-dd');
38066 };
38067
38068 Roo.extend(Roo.grid.GridView.ColumnDragZone, Roo.grid.HeaderDragZone, {
38069     handleMouseDown : function(e){
38070
38071     },
38072
38073     callHandleMouseDown : function(e){
38074         Roo.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
38075     }
38076 });
38077 /*
38078  * Based on:
38079  * Ext JS Library 1.1.1
38080  * Copyright(c) 2006-2007, Ext JS, LLC.
38081  *
38082  * Originally Released Under LGPL - original licence link has changed is not relivant.
38083  *
38084  * Fork - LGPL
38085  * <script type="text/javascript">
38086  */
38087  
38088 // private
38089 // This is a support class used internally by the Grid components
38090 Roo.grid.SplitDragZone = function(grid, hd, hd2){
38091     this.grid = grid;
38092     this.view = grid.getView();
38093     this.proxy = this.view.resizeProxy;
38094     Roo.grid.SplitDragZone.superclass.constructor.call(this, hd,
38095         "gridSplitters" + this.grid.getGridEl().id, {
38096         dragElId : Roo.id(this.proxy.dom), resizeFrame:false
38097     });
38098     this.setHandleElId(Roo.id(hd));
38099     this.setOuterHandleElId(Roo.id(hd2));
38100     this.scroll = false;
38101 };
38102 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
38103     fly: Roo.Element.fly,
38104
38105     b4StartDrag : function(x, y){
38106         this.view.headersDisabled = true;
38107         this.proxy.setHeight(this.view.mainWrap.getHeight());
38108         var w = this.cm.getColumnWidth(this.cellIndex);
38109         var minw = Math.max(w-this.grid.minColumnWidth, 0);
38110         this.resetConstraints();
38111         this.setXConstraint(minw, 1000);
38112         this.setYConstraint(0, 0);
38113         this.minX = x - minw;
38114         this.maxX = x + 1000;
38115         this.startPos = x;
38116         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
38117     },
38118
38119
38120     handleMouseDown : function(e){
38121         ev = Roo.EventObject.setEvent(e);
38122         var t = this.fly(ev.getTarget());
38123         if(t.hasClass("x-grid-split")){
38124             this.cellIndex = this.view.getCellIndex(t.dom);
38125             this.split = t.dom;
38126             this.cm = this.grid.colModel;
38127             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
38128                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
38129             }
38130         }
38131     },
38132
38133     endDrag : function(e){
38134         this.view.headersDisabled = false;
38135         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
38136         var diff = endX - this.startPos;
38137         this.view.onColumnSplitterMoved(this.cellIndex, this.cm.getColumnWidth(this.cellIndex)+diff);
38138     },
38139
38140     autoOffset : function(){
38141         this.setDelta(0,0);
38142     }
38143 });/*
38144  * Based on:
38145  * Ext JS Library 1.1.1
38146  * Copyright(c) 2006-2007, Ext JS, LLC.
38147  *
38148  * Originally Released Under LGPL - original licence link has changed is not relivant.
38149  *
38150  * Fork - LGPL
38151  * <script type="text/javascript">
38152  */
38153  
38154 // private
38155 // This is a support class used internally by the Grid components
38156 Roo.grid.GridDragZone = function(grid, config){
38157     this.view = grid.getView();
38158     Roo.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, config);
38159     if(this.view.lockedBody){
38160         this.setHandleElId(Roo.id(this.view.mainBody.dom));
38161         this.setOuterHandleElId(Roo.id(this.view.lockedBody.dom));
38162     }
38163     this.scroll = false;
38164     this.grid = grid;
38165     this.ddel = document.createElement('div');
38166     this.ddel.className = 'x-grid-dd-wrap';
38167 };
38168
38169 Roo.extend(Roo.grid.GridDragZone, Roo.dd.DragZone, {
38170     ddGroup : "GridDD",
38171
38172     getDragData : function(e){
38173         var t = Roo.lib.Event.getTarget(e);
38174         var rowIndex = this.view.findRowIndex(t);
38175         var sm = this.grid.selModel;
38176             
38177         //Roo.log(rowIndex);
38178         
38179         if (sm.getSelectedCell) {
38180             // cell selection..
38181             if (!sm.getSelectedCell()) {
38182                 return false;
38183             }
38184             if (rowIndex != sm.getSelectedCell()[0]) {
38185                 return false;
38186             }
38187         
38188         }
38189         
38190         if(rowIndex !== false){
38191             
38192             // if editorgrid.. 
38193             
38194             
38195             //Roo.log([ sm.getSelectedCell() ? sm.getSelectedCell()[0] : 'NO' , rowIndex ]);
38196                
38197             //if(!sm.isSelected(rowIndex) || e.hasModifier()){
38198               //  
38199             //}
38200             if (e.hasModifier()){
38201                 sm.handleMouseDown(e, t); // non modifier buttons are handled by row select.
38202             }
38203             
38204             Roo.log("getDragData");
38205             
38206             return {
38207                 grid: this.grid,
38208                 ddel: this.ddel,
38209                 rowIndex: rowIndex,
38210                 selections:sm.getSelections ? sm.getSelections() : (
38211                     sm.getSelectedCell() ? [ this.grid.ds.getAt(sm.getSelectedCell()[0]) ] : []
38212                 )
38213             };
38214         }
38215         return false;
38216     },
38217
38218     onInitDrag : function(e){
38219         var data = this.dragData;
38220         this.ddel.innerHTML = this.grid.getDragDropText();
38221         this.proxy.update(this.ddel);
38222         // fire start drag?
38223     },
38224
38225     afterRepair : function(){
38226         this.dragging = false;
38227     },
38228
38229     getRepairXY : function(e, data){
38230         return false;
38231     },
38232
38233     onEndDrag : function(data, e){
38234         // fire end drag?
38235     },
38236
38237     onValidDrop : function(dd, e, id){
38238         // fire drag drop?
38239         this.hideProxy();
38240     },
38241
38242     beforeInvalidDrop : function(e, id){
38243
38244     }
38245 });/*
38246  * Based on:
38247  * Ext JS Library 1.1.1
38248  * Copyright(c) 2006-2007, Ext JS, LLC.
38249  *
38250  * Originally Released Under LGPL - original licence link has changed is not relivant.
38251  *
38252  * Fork - LGPL
38253  * <script type="text/javascript">
38254  */
38255  
38256
38257 /**
38258  * @class Roo.grid.ColumnModel
38259  * @extends Roo.util.Observable
38260  * This is the default implementation of a ColumnModel used by the Grid. It defines
38261  * the columns in the grid.
38262  * <br>Usage:<br>
38263  <pre><code>
38264  var colModel = new Roo.grid.ColumnModel([
38265         {header: "Ticker", width: 60, sortable: true, locked: true},
38266         {header: "Company Name", width: 150, sortable: true},
38267         {header: "Market Cap.", width: 100, sortable: true},
38268         {header: "$ Sales", width: 100, sortable: true, renderer: money},
38269         {header: "Employees", width: 100, sortable: true, resizable: false}
38270  ]);
38271  </code></pre>
38272  * <p>
38273  
38274  * The config options listed for this class are options which may appear in each
38275  * individual column definition.
38276  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
38277  * @constructor
38278  * @param {Object} config An Array of column config objects. See this class's
38279  * config objects for details.
38280 */
38281 Roo.grid.ColumnModel = function(config){
38282         /**
38283      * The config passed into the constructor
38284      */
38285     this.config = config;
38286     this.lookup = {};
38287
38288     // if no id, create one
38289     // if the column does not have a dataIndex mapping,
38290     // map it to the order it is in the config
38291     for(var i = 0, len = config.length; i < len; i++){
38292         var c = config[i];
38293         if(typeof c.dataIndex == "undefined"){
38294             c.dataIndex = i;
38295         }
38296         if(typeof c.renderer == "string"){
38297             c.renderer = Roo.util.Format[c.renderer];
38298         }
38299         if(typeof c.id == "undefined"){
38300             c.id = Roo.id();
38301         }
38302         if(c.editor && c.editor.xtype){
38303             c.editor  = Roo.factory(c.editor, Roo.grid);
38304         }
38305         if(c.editor && c.editor.isFormField){
38306             c.editor = new Roo.grid.GridEditor(c.editor);
38307         }
38308         this.lookup[c.id] = c;
38309     }
38310
38311     /**
38312      * The width of columns which have no width specified (defaults to 100)
38313      * @type Number
38314      */
38315     this.defaultWidth = 100;
38316
38317     /**
38318      * Default sortable of columns which have no sortable specified (defaults to false)
38319      * @type Boolean
38320      */
38321     this.defaultSortable = false;
38322
38323     this.addEvents({
38324         /**
38325              * @event widthchange
38326              * Fires when the width of a column changes.
38327              * @param {ColumnModel} this
38328              * @param {Number} columnIndex The column index
38329              * @param {Number} newWidth The new width
38330              */
38331             "widthchange": true,
38332         /**
38333              * @event headerchange
38334              * Fires when the text of a header changes.
38335              * @param {ColumnModel} this
38336              * @param {Number} columnIndex The column index
38337              * @param {Number} newText The new header text
38338              */
38339             "headerchange": true,
38340         /**
38341              * @event hiddenchange
38342              * Fires when a column is hidden or "unhidden".
38343              * @param {ColumnModel} this
38344              * @param {Number} columnIndex The column index
38345              * @param {Boolean} hidden true if hidden, false otherwise
38346              */
38347             "hiddenchange": true,
38348             /**
38349          * @event columnmoved
38350          * Fires when a column is moved.
38351          * @param {ColumnModel} this
38352          * @param {Number} oldIndex
38353          * @param {Number} newIndex
38354          */
38355         "columnmoved" : true,
38356         /**
38357          * @event columlockchange
38358          * Fires when a column's locked state is changed
38359          * @param {ColumnModel} this
38360          * @param {Number} colIndex
38361          * @param {Boolean} locked true if locked
38362          */
38363         "columnlockchange" : true
38364     });
38365     Roo.grid.ColumnModel.superclass.constructor.call(this);
38366 };
38367 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
38368     /**
38369      * @cfg {String} header The header text to display in the Grid view.
38370      */
38371     /**
38372      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
38373      * {@link Roo.data.Record} definition from which to draw the column's value. If not
38374      * specified, the column's index is used as an index into the Record's data Array.
38375      */
38376     /**
38377      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
38378      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
38379      */
38380     /**
38381      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
38382      * Defaults to the value of the {@link #defaultSortable} property.
38383      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
38384      */
38385     /**
38386      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
38387      */
38388     /**
38389      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
38390      */
38391     /**
38392      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
38393      */
38394     /**
38395      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
38396      */
38397     /**
38398      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
38399      * given the cell's data value. See {@link #setRenderer}. If not specified, the
38400      * default renderer uses the raw data value.
38401      */
38402        /**
38403      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
38404      */
38405     /**
38406      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
38407      */
38408
38409     /**
38410      * Returns the id of the column at the specified index.
38411      * @param {Number} index The column index
38412      * @return {String} the id
38413      */
38414     getColumnId : function(index){
38415         return this.config[index].id;
38416     },
38417
38418     /**
38419      * Returns the column for a specified id.
38420      * @param {String} id The column id
38421      * @return {Object} the column
38422      */
38423     getColumnById : function(id){
38424         return this.lookup[id];
38425     },
38426
38427     
38428     /**
38429      * Returns the column for a specified dataIndex.
38430      * @param {String} dataIndex The column dataIndex
38431      * @return {Object|Boolean} the column or false if not found
38432      */
38433     getColumnByDataIndex: function(dataIndex){
38434         var index = this.findColumnIndex(dataIndex);
38435         return index > -1 ? this.config[index] : false;
38436     },
38437     
38438     /**
38439      * Returns the index for a specified column id.
38440      * @param {String} id The column id
38441      * @return {Number} the index, or -1 if not found
38442      */
38443     getIndexById : function(id){
38444         for(var i = 0, len = this.config.length; i < len; i++){
38445             if(this.config[i].id == id){
38446                 return i;
38447             }
38448         }
38449         return -1;
38450     },
38451     
38452     /**
38453      * Returns the index for a specified column dataIndex.
38454      * @param {String} dataIndex The column dataIndex
38455      * @return {Number} the index, or -1 if not found
38456      */
38457     
38458     findColumnIndex : function(dataIndex){
38459         for(var i = 0, len = this.config.length; i < len; i++){
38460             if(this.config[i].dataIndex == dataIndex){
38461                 return i;
38462             }
38463         }
38464         return -1;
38465     },
38466     
38467     
38468     moveColumn : function(oldIndex, newIndex){
38469         var c = this.config[oldIndex];
38470         this.config.splice(oldIndex, 1);
38471         this.config.splice(newIndex, 0, c);
38472         this.dataMap = null;
38473         this.fireEvent("columnmoved", this, oldIndex, newIndex);
38474     },
38475
38476     isLocked : function(colIndex){
38477         return this.config[colIndex].locked === true;
38478     },
38479
38480     setLocked : function(colIndex, value, suppressEvent){
38481         if(this.isLocked(colIndex) == value){
38482             return;
38483         }
38484         this.config[colIndex].locked = value;
38485         if(!suppressEvent){
38486             this.fireEvent("columnlockchange", this, colIndex, value);
38487         }
38488     },
38489
38490     getTotalLockedWidth : function(){
38491         var totalWidth = 0;
38492         for(var i = 0; i < this.config.length; i++){
38493             if(this.isLocked(i) && !this.isHidden(i)){
38494                 this.totalWidth += this.getColumnWidth(i);
38495             }
38496         }
38497         return totalWidth;
38498     },
38499
38500     getLockedCount : function(){
38501         for(var i = 0, len = this.config.length; i < len; i++){
38502             if(!this.isLocked(i)){
38503                 return i;
38504             }
38505         }
38506     },
38507
38508     /**
38509      * Returns the number of columns.
38510      * @return {Number}
38511      */
38512     getColumnCount : function(visibleOnly){
38513         if(visibleOnly === true){
38514             var c = 0;
38515             for(var i = 0, len = this.config.length; i < len; i++){
38516                 if(!this.isHidden(i)){
38517                     c++;
38518                 }
38519             }
38520             return c;
38521         }
38522         return this.config.length;
38523     },
38524
38525     /**
38526      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
38527      * @param {Function} fn
38528      * @param {Object} scope (optional)
38529      * @return {Array} result
38530      */
38531     getColumnsBy : function(fn, scope){
38532         var r = [];
38533         for(var i = 0, len = this.config.length; i < len; i++){
38534             var c = this.config[i];
38535             if(fn.call(scope||this, c, i) === true){
38536                 r[r.length] = c;
38537             }
38538         }
38539         return r;
38540     },
38541
38542     /**
38543      * Returns true if the specified column is sortable.
38544      * @param {Number} col The column index
38545      * @return {Boolean}
38546      */
38547     isSortable : function(col){
38548         if(typeof this.config[col].sortable == "undefined"){
38549             return this.defaultSortable;
38550         }
38551         return this.config[col].sortable;
38552     },
38553
38554     /**
38555      * Returns the rendering (formatting) function defined for the column.
38556      * @param {Number} col The column index.
38557      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
38558      */
38559     getRenderer : function(col){
38560         if(!this.config[col].renderer){
38561             return Roo.grid.ColumnModel.defaultRenderer;
38562         }
38563         return this.config[col].renderer;
38564     },
38565
38566     /**
38567      * Sets the rendering (formatting) function for a column.
38568      * @param {Number} col The column index
38569      * @param {Function} fn The function to use to process the cell's raw data
38570      * to return HTML markup for the grid view. The render function is called with
38571      * the following parameters:<ul>
38572      * <li>Data value.</li>
38573      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
38574      * <li>css A CSS style string to apply to the table cell.</li>
38575      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
38576      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
38577      * <li>Row index</li>
38578      * <li>Column index</li>
38579      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
38580      */
38581     setRenderer : function(col, fn){
38582         this.config[col].renderer = fn;
38583     },
38584
38585     /**
38586      * Returns the width for the specified column.
38587      * @param {Number} col The column index
38588      * @return {Number}
38589      */
38590     getColumnWidth : function(col){
38591         return this.config[col].width * 1 || this.defaultWidth;
38592     },
38593
38594     /**
38595      * Sets the width for a column.
38596      * @param {Number} col The column index
38597      * @param {Number} width The new width
38598      */
38599     setColumnWidth : function(col, width, suppressEvent){
38600         this.config[col].width = width;
38601         this.totalWidth = null;
38602         if(!suppressEvent){
38603              this.fireEvent("widthchange", this, col, width);
38604         }
38605     },
38606
38607     /**
38608      * Returns the total width of all columns.
38609      * @param {Boolean} includeHidden True to include hidden column widths
38610      * @return {Number}
38611      */
38612     getTotalWidth : function(includeHidden){
38613         if(!this.totalWidth){
38614             this.totalWidth = 0;
38615             for(var i = 0, len = this.config.length; i < len; i++){
38616                 if(includeHidden || !this.isHidden(i)){
38617                     this.totalWidth += this.getColumnWidth(i);
38618                 }
38619             }
38620         }
38621         return this.totalWidth;
38622     },
38623
38624     /**
38625      * Returns the header for the specified column.
38626      * @param {Number} col The column index
38627      * @return {String}
38628      */
38629     getColumnHeader : function(col){
38630         return this.config[col].header;
38631     },
38632
38633     /**
38634      * Sets the header for a column.
38635      * @param {Number} col The column index
38636      * @param {String} header The new header
38637      */
38638     setColumnHeader : function(col, header){
38639         this.config[col].header = header;
38640         this.fireEvent("headerchange", this, col, header);
38641     },
38642
38643     /**
38644      * Returns the tooltip for the specified column.
38645      * @param {Number} col The column index
38646      * @return {String}
38647      */
38648     getColumnTooltip : function(col){
38649             return this.config[col].tooltip;
38650     },
38651     /**
38652      * Sets the tooltip for a column.
38653      * @param {Number} col The column index
38654      * @param {String} tooltip The new tooltip
38655      */
38656     setColumnTooltip : function(col, tooltip){
38657             this.config[col].tooltip = tooltip;
38658     },
38659
38660     /**
38661      * Returns the dataIndex for the specified column.
38662      * @param {Number} col The column index
38663      * @return {Number}
38664      */
38665     getDataIndex : function(col){
38666         return this.config[col].dataIndex;
38667     },
38668
38669     /**
38670      * Sets the dataIndex for a column.
38671      * @param {Number} col The column index
38672      * @param {Number} dataIndex The new dataIndex
38673      */
38674     setDataIndex : function(col, dataIndex){
38675         this.config[col].dataIndex = dataIndex;
38676     },
38677
38678     
38679     
38680     /**
38681      * Returns true if the cell is editable.
38682      * @param {Number} colIndex The column index
38683      * @param {Number} rowIndex The row index
38684      * @return {Boolean}
38685      */
38686     isCellEditable : function(colIndex, rowIndex){
38687         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
38688     },
38689
38690     /**
38691      * Returns the editor defined for the cell/column.
38692      * return false or null to disable editing.
38693      * @param {Number} colIndex The column index
38694      * @param {Number} rowIndex The row index
38695      * @return {Object}
38696      */
38697     getCellEditor : function(colIndex, rowIndex){
38698         return this.config[colIndex].editor;
38699     },
38700
38701     /**
38702      * Sets if a column is editable.
38703      * @param {Number} col The column index
38704      * @param {Boolean} editable True if the column is editable
38705      */
38706     setEditable : function(col, editable){
38707         this.config[col].editable = editable;
38708     },
38709
38710
38711     /**
38712      * Returns true if the column is hidden.
38713      * @param {Number} colIndex The column index
38714      * @return {Boolean}
38715      */
38716     isHidden : function(colIndex){
38717         return this.config[colIndex].hidden;
38718     },
38719
38720
38721     /**
38722      * Returns true if the column width cannot be changed
38723      */
38724     isFixed : function(colIndex){
38725         return this.config[colIndex].fixed;
38726     },
38727
38728     /**
38729      * Returns true if the column can be resized
38730      * @return {Boolean}
38731      */
38732     isResizable : function(colIndex){
38733         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
38734     },
38735     /**
38736      * Sets if a column is hidden.
38737      * @param {Number} colIndex The column index
38738      * @param {Boolean} hidden True if the column is hidden
38739      */
38740     setHidden : function(colIndex, hidden){
38741         this.config[colIndex].hidden = hidden;
38742         this.totalWidth = null;
38743         this.fireEvent("hiddenchange", this, colIndex, hidden);
38744     },
38745
38746     /**
38747      * Sets the editor for a column.
38748      * @param {Number} col The column index
38749      * @param {Object} editor The editor object
38750      */
38751     setEditor : function(col, editor){
38752         this.config[col].editor = editor;
38753     }
38754 });
38755
38756 Roo.grid.ColumnModel.defaultRenderer = function(value){
38757         if(typeof value == "string" && value.length < 1){
38758             return "&#160;";
38759         }
38760         return value;
38761 };
38762
38763 // Alias for backwards compatibility
38764 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
38765 /*
38766  * Based on:
38767  * Ext JS Library 1.1.1
38768  * Copyright(c) 2006-2007, Ext JS, LLC.
38769  *
38770  * Originally Released Under LGPL - original licence link has changed is not relivant.
38771  *
38772  * Fork - LGPL
38773  * <script type="text/javascript">
38774  */
38775
38776 /**
38777  * @class Roo.grid.AbstractSelectionModel
38778  * @extends Roo.util.Observable
38779  * Abstract base class for grid SelectionModels.  It provides the interface that should be
38780  * implemented by descendant classes.  This class should not be directly instantiated.
38781  * @constructor
38782  */
38783 Roo.grid.AbstractSelectionModel = function(){
38784     this.locked = false;
38785     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
38786 };
38787
38788 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
38789     /** @ignore Called by the grid automatically. Do not call directly. */
38790     init : function(grid){
38791         this.grid = grid;
38792         this.initEvents();
38793     },
38794
38795     /**
38796      * Locks the selections.
38797      */
38798     lock : function(){
38799         this.locked = true;
38800     },
38801
38802     /**
38803      * Unlocks the selections.
38804      */
38805     unlock : function(){
38806         this.locked = false;
38807     },
38808
38809     /**
38810      * Returns true if the selections are locked.
38811      * @return {Boolean}
38812      */
38813     isLocked : function(){
38814         return this.locked;
38815     }
38816 });/*
38817  * Based on:
38818  * Ext JS Library 1.1.1
38819  * Copyright(c) 2006-2007, Ext JS, LLC.
38820  *
38821  * Originally Released Under LGPL - original licence link has changed is not relivant.
38822  *
38823  * Fork - LGPL
38824  * <script type="text/javascript">
38825  */
38826 /**
38827  * @extends Roo.grid.AbstractSelectionModel
38828  * @class Roo.grid.RowSelectionModel
38829  * The default SelectionModel used by {@link Roo.grid.Grid}.
38830  * It supports multiple selections and keyboard selection/navigation. 
38831  * @constructor
38832  * @param {Object} config
38833  */
38834 Roo.grid.RowSelectionModel = function(config){
38835     Roo.apply(this, config);
38836     this.selections = new Roo.util.MixedCollection(false, function(o){
38837         return o.id;
38838     });
38839
38840     this.last = false;
38841     this.lastActive = false;
38842
38843     this.addEvents({
38844         /**
38845              * @event selectionchange
38846              * Fires when the selection changes
38847              * @param {SelectionModel} this
38848              */
38849             "selectionchange" : true,
38850         /**
38851              * @event afterselectionchange
38852              * Fires after the selection changes (eg. by key press or clicking)
38853              * @param {SelectionModel} this
38854              */
38855             "afterselectionchange" : true,
38856         /**
38857              * @event beforerowselect
38858              * Fires when a row is selected being selected, return false to cancel.
38859              * @param {SelectionModel} this
38860              * @param {Number} rowIndex The selected index
38861              * @param {Boolean} keepExisting False if other selections will be cleared
38862              */
38863             "beforerowselect" : true,
38864         /**
38865              * @event rowselect
38866              * Fires when a row is selected.
38867              * @param {SelectionModel} this
38868              * @param {Number} rowIndex The selected index
38869              * @param {Roo.data.Record} r The record
38870              */
38871             "rowselect" : true,
38872         /**
38873              * @event rowdeselect
38874              * Fires when a row is deselected.
38875              * @param {SelectionModel} this
38876              * @param {Number} rowIndex The selected index
38877              */
38878         "rowdeselect" : true
38879     });
38880     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
38881     this.locked = false;
38882 };
38883
38884 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
38885     /**
38886      * @cfg {Boolean} singleSelect
38887      * True to allow selection of only one row at a time (defaults to false)
38888      */
38889     singleSelect : false,
38890
38891     // private
38892     initEvents : function(){
38893
38894         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
38895             this.grid.on("mousedown", this.handleMouseDown, this);
38896         }else{ // allow click to work like normal
38897             this.grid.on("rowclick", this.handleDragableRowClick, this);
38898         }
38899
38900         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
38901             "up" : function(e){
38902                 if(!e.shiftKey){
38903                     this.selectPrevious(e.shiftKey);
38904                 }else if(this.last !== false && this.lastActive !== false){
38905                     var last = this.last;
38906                     this.selectRange(this.last,  this.lastActive-1);
38907                     this.grid.getView().focusRow(this.lastActive);
38908                     if(last !== false){
38909                         this.last = last;
38910                     }
38911                 }else{
38912                     this.selectFirstRow();
38913                 }
38914                 this.fireEvent("afterselectionchange", this);
38915             },
38916             "down" : function(e){
38917                 if(!e.shiftKey){
38918                     this.selectNext(e.shiftKey);
38919                 }else if(this.last !== false && this.lastActive !== false){
38920                     var last = this.last;
38921                     this.selectRange(this.last,  this.lastActive+1);
38922                     this.grid.getView().focusRow(this.lastActive);
38923                     if(last !== false){
38924                         this.last = last;
38925                     }
38926                 }else{
38927                     this.selectFirstRow();
38928                 }
38929                 this.fireEvent("afterselectionchange", this);
38930             },
38931             scope: this
38932         });
38933
38934         var view = this.grid.view;
38935         view.on("refresh", this.onRefresh, this);
38936         view.on("rowupdated", this.onRowUpdated, this);
38937         view.on("rowremoved", this.onRemove, this);
38938     },
38939
38940     // private
38941     onRefresh : function(){
38942         var ds = this.grid.dataSource, i, v = this.grid.view;
38943         var s = this.selections;
38944         s.each(function(r){
38945             if((i = ds.indexOfId(r.id)) != -1){
38946                 v.onRowSelect(i);
38947             }else{
38948                 s.remove(r);
38949             }
38950         });
38951     },
38952
38953     // private
38954     onRemove : function(v, index, r){
38955         this.selections.remove(r);
38956     },
38957
38958     // private
38959     onRowUpdated : function(v, index, r){
38960         if(this.isSelected(r)){
38961             v.onRowSelect(index);
38962         }
38963     },
38964
38965     /**
38966      * Select records.
38967      * @param {Array} records The records to select
38968      * @param {Boolean} keepExisting (optional) True to keep existing selections
38969      */
38970     selectRecords : function(records, keepExisting){
38971         if(!keepExisting){
38972             this.clearSelections();
38973         }
38974         var ds = this.grid.dataSource;
38975         for(var i = 0, len = records.length; i < len; i++){
38976             this.selectRow(ds.indexOf(records[i]), true);
38977         }
38978     },
38979
38980     /**
38981      * Gets the number of selected rows.
38982      * @return {Number}
38983      */
38984     getCount : function(){
38985         return this.selections.length;
38986     },
38987
38988     /**
38989      * Selects the first row in the grid.
38990      */
38991     selectFirstRow : function(){
38992         this.selectRow(0);
38993     },
38994
38995     /**
38996      * Select the last row.
38997      * @param {Boolean} keepExisting (optional) True to keep existing selections
38998      */
38999     selectLastRow : function(keepExisting){
39000         this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
39001     },
39002
39003     /**
39004      * Selects the row immediately following the last selected row.
39005      * @param {Boolean} keepExisting (optional) True to keep existing selections
39006      */
39007     selectNext : function(keepExisting){
39008         if(this.last !== false && (this.last+1) < this.grid.dataSource.getCount()){
39009             this.selectRow(this.last+1, keepExisting);
39010             this.grid.getView().focusRow(this.last);
39011         }
39012     },
39013
39014     /**
39015      * Selects the row that precedes the last selected row.
39016      * @param {Boolean} keepExisting (optional) True to keep existing selections
39017      */
39018     selectPrevious : function(keepExisting){
39019         if(this.last){
39020             this.selectRow(this.last-1, keepExisting);
39021             this.grid.getView().focusRow(this.last);
39022         }
39023     },
39024
39025     /**
39026      * Returns the selected records
39027      * @return {Array} Array of selected records
39028      */
39029     getSelections : function(){
39030         return [].concat(this.selections.items);
39031     },
39032
39033     /**
39034      * Returns the first selected record.
39035      * @return {Record}
39036      */
39037     getSelected : function(){
39038         return this.selections.itemAt(0);
39039     },
39040
39041
39042     /**
39043      * Clears all selections.
39044      */
39045     clearSelections : function(fast){
39046         if(this.locked) return;
39047         if(fast !== true){
39048             var ds = this.grid.dataSource;
39049             var s = this.selections;
39050             s.each(function(r){
39051                 this.deselectRow(ds.indexOfId(r.id));
39052             }, this);
39053             s.clear();
39054         }else{
39055             this.selections.clear();
39056         }
39057         this.last = false;
39058     },
39059
39060
39061     /**
39062      * Selects all rows.
39063      */
39064     selectAll : function(){
39065         if(this.locked) return;
39066         this.selections.clear();
39067         for(var i = 0, len = this.grid.dataSource.getCount(); i < len; i++){
39068             this.selectRow(i, true);
39069         }
39070     },
39071
39072     /**
39073      * Returns True if there is a selection.
39074      * @return {Boolean}
39075      */
39076     hasSelection : function(){
39077         return this.selections.length > 0;
39078     },
39079
39080     /**
39081      * Returns True if the specified row is selected.
39082      * @param {Number/Record} record The record or index of the record to check
39083      * @return {Boolean}
39084      */
39085     isSelected : function(index){
39086         var r = typeof index == "number" ? this.grid.dataSource.getAt(index) : index;
39087         return (r && this.selections.key(r.id) ? true : false);
39088     },
39089
39090     /**
39091      * Returns True if the specified record id is selected.
39092      * @param {String} id The id of record to check
39093      * @return {Boolean}
39094      */
39095     isIdSelected : function(id){
39096         return (this.selections.key(id) ? true : false);
39097     },
39098
39099     // private
39100     handleMouseDown : function(e, t){
39101         var view = this.grid.getView(), rowIndex;
39102         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
39103             return;
39104         };
39105         if(e.shiftKey && this.last !== false){
39106             var last = this.last;
39107             this.selectRange(last, rowIndex, e.ctrlKey);
39108             this.last = last; // reset the last
39109             view.focusRow(rowIndex);
39110         }else{
39111             var isSelected = this.isSelected(rowIndex);
39112             if(e.button !== 0 && isSelected){
39113                 view.focusRow(rowIndex);
39114             }else if(e.ctrlKey && isSelected){
39115                 this.deselectRow(rowIndex);
39116             }else if(!isSelected){
39117                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
39118                 view.focusRow(rowIndex);
39119             }
39120         }
39121         this.fireEvent("afterselectionchange", this);
39122     },
39123     // private
39124     handleDragableRowClick :  function(grid, rowIndex, e) 
39125     {
39126         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
39127             this.selectRow(rowIndex, false);
39128             grid.view.focusRow(rowIndex);
39129              this.fireEvent("afterselectionchange", this);
39130         }
39131     },
39132     
39133     /**
39134      * Selects multiple rows.
39135      * @param {Array} rows Array of the indexes of the row to select
39136      * @param {Boolean} keepExisting (optional) True to keep existing selections
39137      */
39138     selectRows : function(rows, keepExisting){
39139         if(!keepExisting){
39140             this.clearSelections();
39141         }
39142         for(var i = 0, len = rows.length; i < len; i++){
39143             this.selectRow(rows[i], true);
39144         }
39145     },
39146
39147     /**
39148      * Selects a range of rows. All rows in between startRow and endRow are also selected.
39149      * @param {Number} startRow The index of the first row in the range
39150      * @param {Number} endRow The index of the last row in the range
39151      * @param {Boolean} keepExisting (optional) True to retain existing selections
39152      */
39153     selectRange : function(startRow, endRow, keepExisting){
39154         if(this.locked) return;
39155         if(!keepExisting){
39156             this.clearSelections();
39157         }
39158         if(startRow <= endRow){
39159             for(var i = startRow; i <= endRow; i++){
39160                 this.selectRow(i, true);
39161             }
39162         }else{
39163             for(var i = startRow; i >= endRow; i--){
39164                 this.selectRow(i, true);
39165             }
39166         }
39167     },
39168
39169     /**
39170      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
39171      * @param {Number} startRow The index of the first row in the range
39172      * @param {Number} endRow The index of the last row in the range
39173      */
39174     deselectRange : function(startRow, endRow, preventViewNotify){
39175         if(this.locked) return;
39176         for(var i = startRow; i <= endRow; i++){
39177             this.deselectRow(i, preventViewNotify);
39178         }
39179     },
39180
39181     /**
39182      * Selects a row.
39183      * @param {Number} row The index of the row to select
39184      * @param {Boolean} keepExisting (optional) True to keep existing selections
39185      */
39186     selectRow : function(index, keepExisting, preventViewNotify){
39187         if(this.locked || (index < 0 || index >= this.grid.dataSource.getCount())) return;
39188         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
39189             if(!keepExisting || this.singleSelect){
39190                 this.clearSelections();
39191             }
39192             var r = this.grid.dataSource.getAt(index);
39193             this.selections.add(r);
39194             this.last = this.lastActive = index;
39195             if(!preventViewNotify){
39196                 this.grid.getView().onRowSelect(index);
39197             }
39198             this.fireEvent("rowselect", this, index, r);
39199             this.fireEvent("selectionchange", this);
39200         }
39201     },
39202
39203     /**
39204      * Deselects a row.
39205      * @param {Number} row The index of the row to deselect
39206      */
39207     deselectRow : function(index, preventViewNotify){
39208         if(this.locked) return;
39209         if(this.last == index){
39210             this.last = false;
39211         }
39212         if(this.lastActive == index){
39213             this.lastActive = false;
39214         }
39215         var r = this.grid.dataSource.getAt(index);
39216         this.selections.remove(r);
39217         if(!preventViewNotify){
39218             this.grid.getView().onRowDeselect(index);
39219         }
39220         this.fireEvent("rowdeselect", this, index);
39221         this.fireEvent("selectionchange", this);
39222     },
39223
39224     // private
39225     restoreLast : function(){
39226         if(this._last){
39227             this.last = this._last;
39228         }
39229     },
39230
39231     // private
39232     acceptsNav : function(row, col, cm){
39233         return !cm.isHidden(col) && cm.isCellEditable(col, row);
39234     },
39235
39236     // private
39237     onEditorKey : function(field, e){
39238         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
39239         if(k == e.TAB){
39240             e.stopEvent();
39241             ed.completeEdit();
39242             if(e.shiftKey){
39243                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
39244             }else{
39245                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
39246             }
39247         }else if(k == e.ENTER && !e.ctrlKey){
39248             e.stopEvent();
39249             ed.completeEdit();
39250             if(e.shiftKey){
39251                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
39252             }else{
39253                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
39254             }
39255         }else if(k == e.ESC){
39256             ed.cancelEdit();
39257         }
39258         if(newCell){
39259             g.startEditing(newCell[0], newCell[1]);
39260         }
39261     }
39262 });/*
39263  * Based on:
39264  * Ext JS Library 1.1.1
39265  * Copyright(c) 2006-2007, Ext JS, LLC.
39266  *
39267  * Originally Released Under LGPL - original licence link has changed is not relivant.
39268  *
39269  * Fork - LGPL
39270  * <script type="text/javascript">
39271  */
39272 /**
39273  * @class Roo.grid.CellSelectionModel
39274  * @extends Roo.grid.AbstractSelectionModel
39275  * This class provides the basic implementation for cell selection in a grid.
39276  * @constructor
39277  * @param {Object} config The object containing the configuration of this model.
39278  * @cfg {Boolean} enter_is_tab Enter behaves the same as tab. (eg. goes to next cell) default: false
39279  */
39280 Roo.grid.CellSelectionModel = function(config){
39281     Roo.apply(this, config);
39282
39283     this.selection = null;
39284
39285     this.addEvents({
39286         /**
39287              * @event beforerowselect
39288              * Fires before a cell is selected.
39289              * @param {SelectionModel} this
39290              * @param {Number} rowIndex The selected row index
39291              * @param {Number} colIndex The selected cell index
39292              */
39293             "beforecellselect" : true,
39294         /**
39295              * @event cellselect
39296              * Fires when a cell is selected.
39297              * @param {SelectionModel} this
39298              * @param {Number} rowIndex The selected row index
39299              * @param {Number} colIndex The selected cell index
39300              */
39301             "cellselect" : true,
39302         /**
39303              * @event selectionchange
39304              * Fires when the active selection changes.
39305              * @param {SelectionModel} this
39306              * @param {Object} selection null for no selection or an object (o) with two properties
39307                 <ul>
39308                 <li>o.record: the record object for the row the selection is in</li>
39309                 <li>o.cell: An array of [rowIndex, columnIndex]</li>
39310                 </ul>
39311              */
39312             "selectionchange" : true,
39313         /**
39314              * @event tabend
39315              * Fires when the tab (or enter) was pressed on the last editable cell
39316              * You can use this to trigger add new row.
39317              * @param {SelectionModel} this
39318              */
39319             "tabend" : true,
39320          /**
39321              * @event beforeeditnext
39322              * Fires before the next editable sell is made active
39323              * You can use this to skip to another cell or fire the tabend
39324              *    if you set cell to false
39325              * @param {Object} eventdata object : { cell : [ row, col ] } 
39326              */
39327             "beforeeditnext" : true
39328     });
39329     Roo.grid.CellSelectionModel.superclass.constructor.call(this);
39330 };
39331
39332 Roo.extend(Roo.grid.CellSelectionModel, Roo.grid.AbstractSelectionModel,  {
39333     
39334     enter_is_tab: false,
39335
39336     /** @ignore */
39337     initEvents : function(){
39338         this.grid.on("mousedown", this.handleMouseDown, this);
39339         this.grid.getGridEl().on(Roo.isIE ? "keydown" : "keypress", this.handleKeyDown, this);
39340         var view = this.grid.view;
39341         view.on("refresh", this.onViewChange, this);
39342         view.on("rowupdated", this.onRowUpdated, this);
39343         view.on("beforerowremoved", this.clearSelections, this);
39344         view.on("beforerowsinserted", this.clearSelections, this);
39345         if(this.grid.isEditor){
39346             this.grid.on("beforeedit", this.beforeEdit,  this);
39347         }
39348     },
39349
39350         //private
39351     beforeEdit : function(e){
39352         this.select(e.row, e.column, false, true, e.record);
39353     },
39354
39355         //private
39356     onRowUpdated : function(v, index, r){
39357         if(this.selection && this.selection.record == r){
39358             v.onCellSelect(index, this.selection.cell[1]);
39359         }
39360     },
39361
39362         //private
39363     onViewChange : function(){
39364         this.clearSelections(true);
39365     },
39366
39367         /**
39368          * Returns the currently selected cell,.
39369          * @return {Array} The selected cell (row, column) or null if none selected.
39370          */
39371     getSelectedCell : function(){
39372         return this.selection ? this.selection.cell : null;
39373     },
39374
39375     /**
39376      * Clears all selections.
39377      * @param {Boolean} true to prevent the gridview from being notified about the change.
39378      */
39379     clearSelections : function(preventNotify){
39380         var s = this.selection;
39381         if(s){
39382             if(preventNotify !== true){
39383                 this.grid.view.onCellDeselect(s.cell[0], s.cell[1]);
39384             }
39385             this.selection = null;
39386             this.fireEvent("selectionchange", this, null);
39387         }
39388     },
39389
39390     /**
39391      * Returns true if there is a selection.
39392      * @return {Boolean}
39393      */
39394     hasSelection : function(){
39395         return this.selection ? true : false;
39396     },
39397
39398     /** @ignore */
39399     handleMouseDown : function(e, t){
39400         var v = this.grid.getView();
39401         if(this.isLocked()){
39402             return;
39403         };
39404         var row = v.findRowIndex(t);
39405         var cell = v.findCellIndex(t);
39406         if(row !== false && cell !== false){
39407             this.select(row, cell);
39408         }
39409     },
39410
39411     /**
39412      * Selects a cell.
39413      * @param {Number} rowIndex
39414      * @param {Number} collIndex
39415      */
39416     select : function(rowIndex, colIndex, preventViewNotify, preventFocus, /*internal*/ r){
39417         if(this.fireEvent("beforecellselect", this, rowIndex, colIndex) !== false){
39418             this.clearSelections();
39419             r = r || this.grid.dataSource.getAt(rowIndex);
39420             this.selection = {
39421                 record : r,
39422                 cell : [rowIndex, colIndex]
39423             };
39424             if(!preventViewNotify){
39425                 var v = this.grid.getView();
39426                 v.onCellSelect(rowIndex, colIndex);
39427                 if(preventFocus !== true){
39428                     v.focusCell(rowIndex, colIndex);
39429                 }
39430             }
39431             this.fireEvent("cellselect", this, rowIndex, colIndex);
39432             this.fireEvent("selectionchange", this, this.selection);
39433         }
39434     },
39435
39436         //private
39437     isSelectable : function(rowIndex, colIndex, cm){
39438         return !cm.isHidden(colIndex);
39439     },
39440
39441     /** @ignore */
39442     handleKeyDown : function(e){
39443         //Roo.log('Cell Sel Model handleKeyDown');
39444         if(!e.isNavKeyPress()){
39445             return;
39446         }
39447         var g = this.grid, s = this.selection;
39448         if(!s){
39449             e.stopEvent();
39450             var cell = g.walkCells(0, 0, 1, this.isSelectable,  this);
39451             if(cell){
39452                 this.select(cell[0], cell[1]);
39453             }
39454             return;
39455         }
39456         var sm = this;
39457         var walk = function(row, col, step){
39458             return g.walkCells(row, col, step, sm.isSelectable,  sm);
39459         };
39460         var k = e.getKey(), r = s.cell[0], c = s.cell[1];
39461         var newCell;
39462
39463       
39464
39465         switch(k){
39466             case e.TAB:
39467                 // handled by onEditorKey
39468                 if (g.isEditor && g.editing) {
39469                     return;
39470                 }
39471                 if(e.shiftKey) {
39472                     newCell = walk(r, c-1, -1);
39473                 } else {
39474                     newCell = walk(r, c+1, 1);
39475                 }
39476                 break;
39477             
39478             case e.DOWN:
39479                newCell = walk(r+1, c, 1);
39480                 break;
39481             
39482             case e.UP:
39483                 newCell = walk(r-1, c, -1);
39484                 break;
39485             
39486             case e.RIGHT:
39487                 newCell = walk(r, c+1, 1);
39488                 break;
39489             
39490             case e.LEFT:
39491                 newCell = walk(r, c-1, -1);
39492                 break;
39493             
39494             case e.ENTER:
39495                 
39496                 if(g.isEditor && !g.editing){
39497                    g.startEditing(r, c);
39498                    e.stopEvent();
39499                    return;
39500                 }
39501                 
39502                 
39503              break;
39504         };
39505         if(newCell){
39506             this.select(newCell[0], newCell[1]);
39507             e.stopEvent();
39508             
39509         }
39510     },
39511
39512     acceptsNav : function(row, col, cm){
39513         return !cm.isHidden(col) && cm.isCellEditable(col, row);
39514     },
39515     /**
39516      * Selects a cell.
39517      * @param {Number} field (not used) - as it's normally used as a listener
39518      * @param {Number} e - event - fake it by using
39519      *
39520      * var e = Roo.EventObjectImpl.prototype;
39521      * e.keyCode = e.TAB
39522      *
39523      * 
39524      */
39525     onEditorKey : function(field, e){
39526         
39527         var k = e.getKey(),
39528             newCell,
39529             g = this.grid,
39530             ed = g.activeEditor,
39531             forward = false;
39532         ///Roo.log('onEditorKey' + k);
39533         
39534         
39535         if (this.enter_is_tab && k == e.ENTER) {
39536             k = e.TAB;
39537         }
39538         
39539         if(k == e.TAB){
39540             if(e.shiftKey){
39541                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
39542             }else{
39543                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
39544                 forward = true;
39545             }
39546             
39547             e.stopEvent();
39548             
39549         } else if(k == e.ENTER &&  !e.ctrlKey){
39550             ed.completeEdit();
39551             e.stopEvent();
39552             newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
39553         
39554                 } else if(k == e.ESC){
39555             ed.cancelEdit();
39556         }
39557                 
39558         if (newCell) {
39559             var ecall = { cell : newCell, forward : forward };
39560             this.fireEvent('beforeeditnext', ecall );
39561             newCell = ecall.cell;
39562                         forward = ecall.forward;
39563         }
39564                 
39565         if(newCell){
39566             //Roo.log('next cell after edit');
39567             g.startEditing.defer(100, g, [newCell[0], newCell[1]]);
39568         } else if (forward) {
39569             // tabbed past last
39570             this.fireEvent.defer(100, this, ['tabend',this]);
39571         }
39572     }
39573 });/*
39574  * Based on:
39575  * Ext JS Library 1.1.1
39576  * Copyright(c) 2006-2007, Ext JS, LLC.
39577  *
39578  * Originally Released Under LGPL - original licence link has changed is not relivant.
39579  *
39580  * Fork - LGPL
39581  * <script type="text/javascript">
39582  */
39583  
39584 /**
39585  * @class Roo.grid.EditorGrid
39586  * @extends Roo.grid.Grid
39587  * Class for creating and editable grid.
39588  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered - 
39589  * The container MUST have some type of size defined for the grid to fill. The container will be 
39590  * automatically set to position relative if it isn't already.
39591  * @param {Object} dataSource The data model to bind to
39592  * @param {Object} colModel The column model with info about this grid's columns
39593  */
39594 Roo.grid.EditorGrid = function(container, config){
39595     Roo.grid.EditorGrid.superclass.constructor.call(this, container, config);
39596     this.getGridEl().addClass("xedit-grid");
39597
39598     if(!this.selModel){
39599         this.selModel = new Roo.grid.CellSelectionModel();
39600     }
39601
39602     this.activeEditor = null;
39603
39604         this.addEvents({
39605             /**
39606              * @event beforeedit
39607              * Fires before cell editing is triggered. The edit event object has the following properties <br />
39608              * <ul style="padding:5px;padding-left:16px;">
39609              * <li>grid - This grid</li>
39610              * <li>record - The record being edited</li>
39611              * <li>field - The field name being edited</li>
39612              * <li>value - The value for the field being edited.</li>
39613              * <li>row - The grid row index</li>
39614              * <li>column - The grid column index</li>
39615              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
39616              * </ul>
39617              * @param {Object} e An edit event (see above for description)
39618              */
39619             "beforeedit" : true,
39620             /**
39621              * @event afteredit
39622              * Fires after a cell is edited. <br />
39623              * <ul style="padding:5px;padding-left:16px;">
39624              * <li>grid - This grid</li>
39625              * <li>record - The record being edited</li>
39626              * <li>field - The field name being edited</li>
39627              * <li>value - The value being set</li>
39628              * <li>originalValue - The original value for the field, before the edit.</li>
39629              * <li>row - The grid row index</li>
39630              * <li>column - The grid column index</li>
39631              * </ul>
39632              * @param {Object} e An edit event (see above for description)
39633              */
39634             "afteredit" : true,
39635             /**
39636              * @event validateedit
39637              * Fires after a cell is edited, but before the value is set in the record. 
39638          * You can use this to modify the value being set in the field, Return false
39639              * to cancel the change. The edit event object has the following properties <br />
39640              * <ul style="padding:5px;padding-left:16px;">
39641          * <li>editor - This editor</li>
39642              * <li>grid - This grid</li>
39643              * <li>record - The record being edited</li>
39644              * <li>field - The field name being edited</li>
39645              * <li>value - The value being set</li>
39646              * <li>originalValue - The original value for the field, before the edit.</li>
39647              * <li>row - The grid row index</li>
39648              * <li>column - The grid column index</li>
39649              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
39650              * </ul>
39651              * @param {Object} e An edit event (see above for description)
39652              */
39653             "validateedit" : true
39654         });
39655     this.on("bodyscroll", this.stopEditing,  this);
39656     this.on(this.clicksToEdit == 1 ? "cellclick" : "celldblclick", this.onCellDblClick,  this);
39657 };
39658
39659 Roo.extend(Roo.grid.EditorGrid, Roo.grid.Grid, {
39660     /**
39661      * @cfg {Number} clicksToEdit
39662      * The number of clicks on a cell required to display the cell's editor (defaults to 2)
39663      */
39664     clicksToEdit: 2,
39665
39666     // private
39667     isEditor : true,
39668     // private
39669     trackMouseOver: false, // causes very odd FF errors
39670
39671     onCellDblClick : function(g, row, col){
39672         this.startEditing(row, col);
39673     },
39674
39675     onEditComplete : function(ed, value, startValue){
39676         this.editing = false;
39677         this.activeEditor = null;
39678         ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
39679         var r = ed.record;
39680         var field = this.colModel.getDataIndex(ed.col);
39681         var e = {
39682             grid: this,
39683             record: r,
39684             field: field,
39685             originalValue: startValue,
39686             value: value,
39687             row: ed.row,
39688             column: ed.col,
39689             cancel:false,
39690             editor: ed
39691         };
39692         var cell = Roo.get(this.view.getCell(ed.row,ed.col))
39693         cell.show();
39694           
39695         if(String(value) !== String(startValue)){
39696             
39697             if(this.fireEvent("validateedit", e) !== false && !e.cancel){
39698                 r.set(field, e.value);
39699                 // if we are dealing with a combo box..
39700                 // then we also set the 'name' colum to be the displayField
39701                 if (ed.field.displayField && ed.field.name) {
39702                     r.set(ed.field.name, ed.field.el.dom.value);
39703                 }
39704                 
39705                 delete e.cancel; //?? why!!!
39706                 this.fireEvent("afteredit", e);
39707             }
39708         } else {
39709             this.fireEvent("afteredit", e); // always fire it!
39710         }
39711         this.view.focusCell(ed.row, ed.col);
39712     },
39713
39714     /**
39715      * Starts editing the specified for the specified row/column
39716      * @param {Number} rowIndex
39717      * @param {Number} colIndex
39718      */
39719     startEditing : function(row, col){
39720         this.stopEditing();
39721         if(this.colModel.isCellEditable(col, row)){
39722             this.view.ensureVisible(row, col, true);
39723           
39724             var r = this.dataSource.getAt(row);
39725             var field = this.colModel.getDataIndex(col);
39726             var cell = Roo.get(this.view.getCell(row,col));
39727             var e = {
39728                 grid: this,
39729                 record: r,
39730                 field: field,
39731                 value: r.data[field],
39732                 row: row,
39733                 column: col,
39734                 cancel:false 
39735             };
39736             if(this.fireEvent("beforeedit", e) !== false && !e.cancel){
39737                 this.editing = true;
39738                 var ed = this.colModel.getCellEditor(col, row);
39739                 
39740                 if (!ed) {
39741                     return;
39742                 }
39743                 if(!ed.rendered){
39744                     ed.render(ed.parentEl || document.body);
39745                 }
39746                 ed.field.reset();
39747                
39748                 cell.hide();
39749                 
39750                 (function(){ // complex but required for focus issues in safari, ie and opera
39751                     ed.row = row;
39752                     ed.col = col;
39753                     ed.record = r;
39754                     ed.on("complete",   this.onEditComplete,        this,       {single: true});
39755                     ed.on("specialkey", this.selModel.onEditorKey,  this.selModel);
39756                     this.activeEditor = ed;
39757                     var v = r.data[field];
39758                     ed.startEdit(this.view.getCell(row, col), v);
39759                     // combo's with 'displayField and name set
39760                     if (ed.field.displayField && ed.field.name) {
39761                         ed.field.el.dom.value = r.data[ed.field.name];
39762                     }
39763                     
39764                     
39765                 }).defer(50, this);
39766             }
39767         }
39768     },
39769         
39770     /**
39771      * Stops any active editing
39772      */
39773     stopEditing : function(){
39774         if(this.activeEditor){
39775             this.activeEditor.completeEdit();
39776         }
39777         this.activeEditor = null;
39778     },
39779         
39780          /**
39781      * Called to get grid's drag proxy text, by default returns this.ddText.
39782      * @return {String}
39783      */
39784     getDragDropText : function(){
39785         var count = this.selModel.getSelectedCell() ? 1 : 0;
39786         return String.format(this.ddText, count, count == 1 ? '' : 's');
39787     }
39788         
39789 });/*
39790  * Based on:
39791  * Ext JS Library 1.1.1
39792  * Copyright(c) 2006-2007, Ext JS, LLC.
39793  *
39794  * Originally Released Under LGPL - original licence link has changed is not relivant.
39795  *
39796  * Fork - LGPL
39797  * <script type="text/javascript">
39798  */
39799
39800 // private - not really -- you end up using it !
39801 // This is a support class used internally by the Grid components
39802
39803 /**
39804  * @class Roo.grid.GridEditor
39805  * @extends Roo.Editor
39806  * Class for creating and editable grid elements.
39807  * @param {Object} config any settings (must include field)
39808  */
39809 Roo.grid.GridEditor = function(field, config){
39810     if (!config && field.field) {
39811         config = field;
39812         field = Roo.factory(config.field, Roo.form);
39813     }
39814     Roo.grid.GridEditor.superclass.constructor.call(this, field, config);
39815     field.monitorTab = false;
39816 };
39817
39818 Roo.extend(Roo.grid.GridEditor, Roo.Editor, {
39819     
39820     /**
39821      * @cfg {Roo.form.Field} field Field to wrap (or xtyped)
39822      */
39823     
39824     alignment: "tl-tl",
39825     autoSize: "width",
39826     hideEl : false,
39827     cls: "x-small-editor x-grid-editor",
39828     shim:false,
39829     shadow:"frame"
39830 });/*
39831  * Based on:
39832  * Ext JS Library 1.1.1
39833  * Copyright(c) 2006-2007, Ext JS, LLC.
39834  *
39835  * Originally Released Under LGPL - original licence link has changed is not relivant.
39836  *
39837  * Fork - LGPL
39838  * <script type="text/javascript">
39839  */
39840   
39841
39842   
39843 Roo.grid.PropertyRecord = Roo.data.Record.create([
39844     {name:'name',type:'string'},  'value'
39845 ]);
39846
39847
39848 Roo.grid.PropertyStore = function(grid, source){
39849     this.grid = grid;
39850     this.store = new Roo.data.Store({
39851         recordType : Roo.grid.PropertyRecord
39852     });
39853     this.store.on('update', this.onUpdate,  this);
39854     if(source){
39855         this.setSource(source);
39856     }
39857     Roo.grid.PropertyStore.superclass.constructor.call(this);
39858 };
39859
39860
39861
39862 Roo.extend(Roo.grid.PropertyStore, Roo.util.Observable, {
39863     setSource : function(o){
39864         this.source = o;
39865         this.store.removeAll();
39866         var data = [];
39867         for(var k in o){
39868             if(this.isEditableValue(o[k])){
39869                 data.push(new Roo.grid.PropertyRecord({name: k, value: o[k]}, k));
39870             }
39871         }
39872         this.store.loadRecords({records: data}, {}, true);
39873     },
39874
39875     onUpdate : function(ds, record, type){
39876         if(type == Roo.data.Record.EDIT){
39877             var v = record.data['value'];
39878             var oldValue = record.modified['value'];
39879             if(this.grid.fireEvent('beforepropertychange', this.source, record.id, v, oldValue) !== false){
39880                 this.source[record.id] = v;
39881                 record.commit();
39882                 this.grid.fireEvent('propertychange', this.source, record.id, v, oldValue);
39883             }else{
39884                 record.reject();
39885             }
39886         }
39887     },
39888
39889     getProperty : function(row){
39890        return this.store.getAt(row);
39891     },
39892
39893     isEditableValue: function(val){
39894         if(val && val instanceof Date){
39895             return true;
39896         }else if(typeof val == 'object' || typeof val == 'function'){
39897             return false;
39898         }
39899         return true;
39900     },
39901
39902     setValue : function(prop, value){
39903         this.source[prop] = value;
39904         this.store.getById(prop).set('value', value);
39905     },
39906
39907     getSource : function(){
39908         return this.source;
39909     }
39910 });
39911
39912 Roo.grid.PropertyColumnModel = function(grid, store){
39913     this.grid = grid;
39914     var g = Roo.grid;
39915     g.PropertyColumnModel.superclass.constructor.call(this, [
39916         {header: this.nameText, sortable: true, dataIndex:'name', id: 'name'},
39917         {header: this.valueText, resizable:false, dataIndex: 'value', id: 'value'}
39918     ]);
39919     this.store = store;
39920     this.bselect = Roo.DomHelper.append(document.body, {
39921         tag: 'select', style:'display:none', cls: 'x-grid-editor', children: [
39922             {tag: 'option', value: 'true', html: 'true'},
39923             {tag: 'option', value: 'false', html: 'false'}
39924         ]
39925     });
39926     Roo.id(this.bselect);
39927     var f = Roo.form;
39928     this.editors = {
39929         'date' : new g.GridEditor(new f.DateField({selectOnFocus:true})),
39930         'string' : new g.GridEditor(new f.TextField({selectOnFocus:true})),
39931         'number' : new g.GridEditor(new f.NumberField({selectOnFocus:true, style:'text-align:left;'})),
39932         'int' : new g.GridEditor(new f.NumberField({selectOnFocus:true, allowDecimals:false, style:'text-align:left;'})),
39933         'boolean' : new g.GridEditor(new f.Field({el:this.bselect,selectOnFocus:true}))
39934     };
39935     this.renderCellDelegate = this.renderCell.createDelegate(this);
39936     this.renderPropDelegate = this.renderProp.createDelegate(this);
39937 };
39938
39939 Roo.extend(Roo.grid.PropertyColumnModel, Roo.grid.ColumnModel, {
39940     
39941     
39942     nameText : 'Name',
39943     valueText : 'Value',
39944     
39945     dateFormat : 'm/j/Y',
39946     
39947     
39948     renderDate : function(dateVal){
39949         return dateVal.dateFormat(this.dateFormat);
39950     },
39951
39952     renderBool : function(bVal){
39953         return bVal ? 'true' : 'false';
39954     },
39955
39956     isCellEditable : function(colIndex, rowIndex){
39957         return colIndex == 1;
39958     },
39959
39960     getRenderer : function(col){
39961         return col == 1 ?
39962             this.renderCellDelegate : this.renderPropDelegate;
39963     },
39964
39965     renderProp : function(v){
39966         return this.getPropertyName(v);
39967     },
39968
39969     renderCell : function(val){
39970         var rv = val;
39971         if(val instanceof Date){
39972             rv = this.renderDate(val);
39973         }else if(typeof val == 'boolean'){
39974             rv = this.renderBool(val);
39975         }
39976         return Roo.util.Format.htmlEncode(rv);
39977     },
39978
39979     getPropertyName : function(name){
39980         var pn = this.grid.propertyNames;
39981         return pn && pn[name] ? pn[name] : name;
39982     },
39983
39984     getCellEditor : function(colIndex, rowIndex){
39985         var p = this.store.getProperty(rowIndex);
39986         var n = p.data['name'], val = p.data['value'];
39987         
39988         if(typeof(this.grid.customEditors[n]) == 'string'){
39989             return this.editors[this.grid.customEditors[n]];
39990         }
39991         if(typeof(this.grid.customEditors[n]) != 'undefined'){
39992             return this.grid.customEditors[n];
39993         }
39994         if(val instanceof Date){
39995             return this.editors['date'];
39996         }else if(typeof val == 'number'){
39997             return this.editors['number'];
39998         }else if(typeof val == 'boolean'){
39999             return this.editors['boolean'];
40000         }else{
40001             return this.editors['string'];
40002         }
40003     }
40004 });
40005
40006 /**
40007  * @class Roo.grid.PropertyGrid
40008  * @extends Roo.grid.EditorGrid
40009  * This class represents the  interface of a component based property grid control.
40010  * <br><br>Usage:<pre><code>
40011  var grid = new Roo.grid.PropertyGrid("my-container-id", {
40012       
40013  });
40014  // set any options
40015  grid.render();
40016  * </code></pre>
40017   
40018  * @constructor
40019  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
40020  * The container MUST have some type of size defined for the grid to fill. The container will be
40021  * automatically set to position relative if it isn't already.
40022  * @param {Object} config A config object that sets properties on this grid.
40023  */
40024 Roo.grid.PropertyGrid = function(container, config){
40025     config = config || {};
40026     var store = new Roo.grid.PropertyStore(this);
40027     this.store = store;
40028     var cm = new Roo.grid.PropertyColumnModel(this, store);
40029     store.store.sort('name', 'ASC');
40030     Roo.grid.PropertyGrid.superclass.constructor.call(this, container, Roo.apply({
40031         ds: store.store,
40032         cm: cm,
40033         enableColLock:false,
40034         enableColumnMove:false,
40035         stripeRows:false,
40036         trackMouseOver: false,
40037         clicksToEdit:1
40038     }, config));
40039     this.getGridEl().addClass('x-props-grid');
40040     this.lastEditRow = null;
40041     this.on('columnresize', this.onColumnResize, this);
40042     this.addEvents({
40043          /**
40044              * @event beforepropertychange
40045              * Fires before a property changes (return false to stop?)
40046              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
40047              * @param {String} id Record Id
40048              * @param {String} newval New Value
40049          * @param {String} oldval Old Value
40050              */
40051         "beforepropertychange": true,
40052         /**
40053              * @event propertychange
40054              * Fires after a property changes
40055              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
40056              * @param {String} id Record Id
40057              * @param {String} newval New Value
40058          * @param {String} oldval Old Value
40059              */
40060         "propertychange": true
40061     });
40062     this.customEditors = this.customEditors || {};
40063 };
40064 Roo.extend(Roo.grid.PropertyGrid, Roo.grid.EditorGrid, {
40065     
40066      /**
40067      * @cfg {Object} customEditors map of colnames=> custom editors.
40068      * the custom editor can be one of the standard ones (date|string|number|int|boolean), or a
40069      * grid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),
40070      * false disables editing of the field.
40071          */
40072     
40073       /**
40074      * @cfg {Object} propertyNames map of property Names to their displayed value
40075          */
40076     
40077     render : function(){
40078         Roo.grid.PropertyGrid.superclass.render.call(this);
40079         this.autoSize.defer(100, this);
40080     },
40081
40082     autoSize : function(){
40083         Roo.grid.PropertyGrid.superclass.autoSize.call(this);
40084         if(this.view){
40085             this.view.fitColumns();
40086         }
40087     },
40088
40089     onColumnResize : function(){
40090         this.colModel.setColumnWidth(1, this.container.getWidth(true)-this.colModel.getColumnWidth(0));
40091         this.autoSize();
40092     },
40093     /**
40094      * Sets the data for the Grid
40095      * accepts a Key => Value object of all the elements avaiable.
40096      * @param {Object} data  to appear in grid.
40097      */
40098     setSource : function(source){
40099         this.store.setSource(source);
40100         //this.autoSize();
40101     },
40102     /**
40103      * Gets all the data from the grid.
40104      * @return {Object} data  data stored in grid
40105      */
40106     getSource : function(){
40107         return this.store.getSource();
40108     }
40109 });/*
40110   
40111  * Licence LGPL
40112  
40113  */
40114  
40115 /**
40116  * @class Roo.grid.Calendar
40117  * @extends Roo.util.Grid
40118  * This class extends the Grid to provide a calendar widget
40119  * <br><br>Usage:<pre><code>
40120  var grid = new Roo.grid.Calendar("my-container-id", {
40121      ds: myDataStore,
40122      cm: myColModel,
40123      selModel: mySelectionModel,
40124      autoSizeColumns: true,
40125      monitorWindowResize: false,
40126      trackMouseOver: true
40127      eventstore : real data store..
40128  });
40129  // set any options
40130  grid.render();
40131   
40132   * @constructor
40133  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
40134  * The container MUST have some type of size defined for the grid to fill. The container will be
40135  * automatically set to position relative if it isn't already.
40136  * @param {Object} config A config object that sets properties on this grid.
40137  */
40138 Roo.grid.Calendar = function(container, config){
40139         // initialize the container
40140         this.container = Roo.get(container);
40141         this.container.update("");
40142         this.container.setStyle("overflow", "hidden");
40143     this.container.addClass('x-grid-container');
40144
40145     this.id = this.container.id;
40146
40147     Roo.apply(this, config);
40148     // check and correct shorthanded configs
40149     
40150     var rows = [];
40151     var d =1;
40152     for (var r = 0;r < 6;r++) {
40153         
40154         rows[r]=[];
40155         for (var c =0;c < 7;c++) {
40156             rows[r][c]= '';
40157         }
40158     }
40159     if (this.eventStore) {
40160         this.eventStore= Roo.factory(this.eventStore, Roo.data);
40161         this.eventStore.on('load',this.onLoad, this);
40162         this.eventStore.on('beforeload',this.clearEvents, this);
40163          
40164     }
40165     
40166     this.dataSource = new Roo.data.Store({
40167             proxy: new Roo.data.MemoryProxy(rows),
40168             reader: new Roo.data.ArrayReader({}, [
40169                    'weekday0', 'weekday1', 'weekday2', 'weekday3', 'weekday4', 'weekday5', 'weekday6' ])
40170     });
40171
40172     this.dataSource.load();
40173     this.ds = this.dataSource;
40174     this.ds.xmodule = this.xmodule || false;
40175     
40176     
40177     var cellRender = function(v,x,r)
40178     {
40179         return String.format(
40180             '<div class="fc-day  fc-widget-content"><div>' +
40181                 '<div class="fc-event-container"></div>' +
40182                 '<div class="fc-day-number">{0}</div>'+
40183                 
40184                 '<div class="fc-day-content"><div style="position:relative"></div></div>' +
40185             '</div></div>', v);
40186     
40187     }
40188     
40189     
40190     this.colModel = new Roo.grid.ColumnModel( [
40191         {
40192             xtype: 'ColumnModel',
40193             xns: Roo.grid,
40194             dataIndex : 'weekday0',
40195             header : 'Sunday',
40196             renderer : cellRender
40197         },
40198         {
40199             xtype: 'ColumnModel',
40200             xns: Roo.grid,
40201             dataIndex : 'weekday1',
40202             header : 'Monday',
40203             renderer : cellRender
40204         },
40205         {
40206             xtype: 'ColumnModel',
40207             xns: Roo.grid,
40208             dataIndex : 'weekday2',
40209             header : 'Tuesday',
40210             renderer : cellRender
40211         },
40212         {
40213             xtype: 'ColumnModel',
40214             xns: Roo.grid,
40215             dataIndex : 'weekday3',
40216             header : 'Wednesday',
40217             renderer : cellRender
40218         },
40219         {
40220             xtype: 'ColumnModel',
40221             xns: Roo.grid,
40222             dataIndex : 'weekday4',
40223             header : 'Thursday',
40224             renderer : cellRender
40225         },
40226         {
40227             xtype: 'ColumnModel',
40228             xns: Roo.grid,
40229             dataIndex : 'weekday5',
40230             header : 'Friday',
40231             renderer : cellRender
40232         },
40233         {
40234             xtype: 'ColumnModel',
40235             xns: Roo.grid,
40236             dataIndex : 'weekday6',
40237             header : 'Saturday',
40238             renderer : cellRender
40239         }
40240     ]);
40241     this.cm = this.colModel;
40242     this.cm.xmodule = this.xmodule || false;
40243  
40244         
40245           
40246     //this.selModel = new Roo.grid.CellSelectionModel();
40247     //this.sm = this.selModel;
40248     //this.selModel.init(this);
40249     
40250     
40251     if(this.width){
40252         this.container.setWidth(this.width);
40253     }
40254
40255     if(this.height){
40256         this.container.setHeight(this.height);
40257     }
40258     /** @private */
40259         this.addEvents({
40260         // raw events
40261         /**
40262          * @event click
40263          * The raw click event for the entire grid.
40264          * @param {Roo.EventObject} e
40265          */
40266         "click" : true,
40267         /**
40268          * @event dblclick
40269          * The raw dblclick event for the entire grid.
40270          * @param {Roo.EventObject} e
40271          */
40272         "dblclick" : true,
40273         /**
40274          * @event contextmenu
40275          * The raw contextmenu event for the entire grid.
40276          * @param {Roo.EventObject} e
40277          */
40278         "contextmenu" : true,
40279         /**
40280          * @event mousedown
40281          * The raw mousedown event for the entire grid.
40282          * @param {Roo.EventObject} e
40283          */
40284         "mousedown" : true,
40285         /**
40286          * @event mouseup
40287          * The raw mouseup event for the entire grid.
40288          * @param {Roo.EventObject} e
40289          */
40290         "mouseup" : true,
40291         /**
40292          * @event mouseover
40293          * The raw mouseover event for the entire grid.
40294          * @param {Roo.EventObject} e
40295          */
40296         "mouseover" : true,
40297         /**
40298          * @event mouseout
40299          * The raw mouseout event for the entire grid.
40300          * @param {Roo.EventObject} e
40301          */
40302         "mouseout" : true,
40303         /**
40304          * @event keypress
40305          * The raw keypress event for the entire grid.
40306          * @param {Roo.EventObject} e
40307          */
40308         "keypress" : true,
40309         /**
40310          * @event keydown
40311          * The raw keydown event for the entire grid.
40312          * @param {Roo.EventObject} e
40313          */
40314         "keydown" : true,
40315
40316         // custom events
40317
40318         /**
40319          * @event cellclick
40320          * Fires when a cell is clicked
40321          * @param {Grid} this
40322          * @param {Number} rowIndex
40323          * @param {Number} columnIndex
40324          * @param {Roo.EventObject} e
40325          */
40326         "cellclick" : true,
40327         /**
40328          * @event celldblclick
40329          * Fires when a cell is double clicked
40330          * @param {Grid} this
40331          * @param {Number} rowIndex
40332          * @param {Number} columnIndex
40333          * @param {Roo.EventObject} e
40334          */
40335         "celldblclick" : true,
40336         /**
40337          * @event rowclick
40338          * Fires when a row is clicked
40339          * @param {Grid} this
40340          * @param {Number} rowIndex
40341          * @param {Roo.EventObject} e
40342          */
40343         "rowclick" : true,
40344         /**
40345          * @event rowdblclick
40346          * Fires when a row is double clicked
40347          * @param {Grid} this
40348          * @param {Number} rowIndex
40349          * @param {Roo.EventObject} e
40350          */
40351         "rowdblclick" : true,
40352         /**
40353          * @event headerclick
40354          * Fires when a header is clicked
40355          * @param {Grid} this
40356          * @param {Number} columnIndex
40357          * @param {Roo.EventObject} e
40358          */
40359         "headerclick" : true,
40360         /**
40361          * @event headerdblclick
40362          * Fires when a header cell is double clicked
40363          * @param {Grid} this
40364          * @param {Number} columnIndex
40365          * @param {Roo.EventObject} e
40366          */
40367         "headerdblclick" : true,
40368         /**
40369          * @event rowcontextmenu
40370          * Fires when a row is right clicked
40371          * @param {Grid} this
40372          * @param {Number} rowIndex
40373          * @param {Roo.EventObject} e
40374          */
40375         "rowcontextmenu" : true,
40376         /**
40377          * @event cellcontextmenu
40378          * Fires when a cell is right clicked
40379          * @param {Grid} this
40380          * @param {Number} rowIndex
40381          * @param {Number} cellIndex
40382          * @param {Roo.EventObject} e
40383          */
40384          "cellcontextmenu" : true,
40385         /**
40386          * @event headercontextmenu
40387          * Fires when a header is right clicked
40388          * @param {Grid} this
40389          * @param {Number} columnIndex
40390          * @param {Roo.EventObject} e
40391          */
40392         "headercontextmenu" : true,
40393         /**
40394          * @event bodyscroll
40395          * Fires when the body element is scrolled
40396          * @param {Number} scrollLeft
40397          * @param {Number} scrollTop
40398          */
40399         "bodyscroll" : true,
40400         /**
40401          * @event columnresize
40402          * Fires when the user resizes a column
40403          * @param {Number} columnIndex
40404          * @param {Number} newSize
40405          */
40406         "columnresize" : true,
40407         /**
40408          * @event columnmove
40409          * Fires when the user moves a column
40410          * @param {Number} oldIndex
40411          * @param {Number} newIndex
40412          */
40413         "columnmove" : true,
40414         /**
40415          * @event startdrag
40416          * Fires when row(s) start being dragged
40417          * @param {Grid} this
40418          * @param {Roo.GridDD} dd The drag drop object
40419          * @param {event} e The raw browser event
40420          */
40421         "startdrag" : true,
40422         /**
40423          * @event enddrag
40424          * Fires when a drag operation is complete
40425          * @param {Grid} this
40426          * @param {Roo.GridDD} dd The drag drop object
40427          * @param {event} e The raw browser event
40428          */
40429         "enddrag" : true,
40430         /**
40431          * @event dragdrop
40432          * Fires when dragged row(s) are dropped on a valid DD target
40433          * @param {Grid} this
40434          * @param {Roo.GridDD} dd The drag drop object
40435          * @param {String} targetId The target drag drop object
40436          * @param {event} e The raw browser event
40437          */
40438         "dragdrop" : true,
40439         /**
40440          * @event dragover
40441          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
40442          * @param {Grid} this
40443          * @param {Roo.GridDD} dd The drag drop object
40444          * @param {String} targetId The target drag drop object
40445          * @param {event} e The raw browser event
40446          */
40447         "dragover" : true,
40448         /**
40449          * @event dragenter
40450          *  Fires when the dragged row(s) first cross another DD target while being dragged
40451          * @param {Grid} this
40452          * @param {Roo.GridDD} dd The drag drop object
40453          * @param {String} targetId The target drag drop object
40454          * @param {event} e The raw browser event
40455          */
40456         "dragenter" : true,
40457         /**
40458          * @event dragout
40459          * Fires when the dragged row(s) leave another DD target while being dragged
40460          * @param {Grid} this
40461          * @param {Roo.GridDD} dd The drag drop object
40462          * @param {String} targetId The target drag drop object
40463          * @param {event} e The raw browser event
40464          */
40465         "dragout" : true,
40466         /**
40467          * @event rowclass
40468          * Fires when a row is rendered, so you can change add a style to it.
40469          * @param {GridView} gridview   The grid view
40470          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
40471          */
40472         'rowclass' : true,
40473
40474         /**
40475          * @event render
40476          * Fires when the grid is rendered
40477          * @param {Grid} grid
40478          */
40479         'render' : true,
40480             /**
40481              * @event select
40482              * Fires when a date is selected
40483              * @param {DatePicker} this
40484              * @param {Date} date The selected date
40485              */
40486         'select': true,
40487         /**
40488              * @event monthchange
40489              * Fires when the displayed month changes 
40490              * @param {DatePicker} this
40491              * @param {Date} date The selected month
40492              */
40493         'monthchange': true,
40494         /**
40495              * @event evententer
40496              * Fires when mouse over an event
40497              * @param {Calendar} this
40498              * @param {event} Event
40499              */
40500         'evententer': true,
40501         /**
40502              * @event eventleave
40503              * Fires when the mouse leaves an
40504              * @param {Calendar} this
40505              * @param {event}
40506              */
40507         'eventleave': true,
40508         /**
40509              * @event eventclick
40510              * Fires when the mouse click an
40511              * @param {Calendar} this
40512              * @param {event}
40513              */
40514         'eventclick': true,
40515         /**
40516              * @event eventrender
40517              * Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip
40518              * @param {Calendar} this
40519              * @param {data} data to be modified
40520              */
40521         'eventrender': true
40522         
40523     });
40524
40525     Roo.grid.Grid.superclass.constructor.call(this);
40526     this.on('render', function() {
40527         this.view.el.addClass('x-grid-cal'); 
40528         
40529         (function() { this.setDate(new Date()); }).defer(100,this); //default today..
40530
40531     },this);
40532     
40533     if (!Roo.grid.Calendar.style) {
40534         Roo.grid.Calendar.style = Roo.util.CSS.createStyleSheet({
40535             
40536             
40537             '.x-grid-cal .x-grid-col' :  {
40538                 height: 'auto !important',
40539                 'vertical-align': 'top'
40540             },
40541             '.x-grid-cal  .fc-event-hori' : {
40542                 height: '14px'
40543             }
40544              
40545             
40546         }, Roo.id());
40547     }
40548
40549     
40550     
40551 };
40552 Roo.extend(Roo.grid.Calendar, Roo.grid.Grid, {
40553     /**
40554      * @cfg {Store} eventStore The store that loads events.
40555      */
40556     eventStore : 25,
40557
40558      
40559     activeDate : false,
40560     startDay : 0,
40561     autoWidth : true,
40562     monitorWindowResize : false,
40563
40564     
40565     resizeColumns : function() {
40566         var col = (this.view.el.getWidth() / 7) - 3;
40567         // loop through cols, and setWidth
40568         for(var i =0 ; i < 7 ; i++){
40569             this.cm.setColumnWidth(i, col);
40570         }
40571     },
40572      setDate :function(date) {
40573         
40574         Roo.log('setDate?');
40575         
40576         this.resizeColumns();
40577         var vd = this.activeDate;
40578         this.activeDate = date;
40579 //        if(vd && this.el){
40580 //            var t = date.getTime();
40581 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
40582 //                Roo.log('using add remove');
40583 //                
40584 //                this.fireEvent('monthchange', this, date);
40585 //                
40586 //                this.cells.removeClass("fc-state-highlight");
40587 //                this.cells.each(function(c){
40588 //                   if(c.dateValue == t){
40589 //                       c.addClass("fc-state-highlight");
40590 //                       setTimeout(function(){
40591 //                            try{c.dom.firstChild.focus();}catch(e){}
40592 //                       }, 50);
40593 //                       return false;
40594 //                   }
40595 //                   return true;
40596 //                });
40597 //                return;
40598 //            }
40599 //        }
40600         
40601         var days = date.getDaysInMonth();
40602         
40603         var firstOfMonth = date.getFirstDateOfMonth();
40604         var startingPos = firstOfMonth.getDay()-this.startDay;
40605         
40606         if(startingPos < this.startDay){
40607             startingPos += 7;
40608         }
40609         
40610         var pm = date.add(Date.MONTH, -1);
40611         var prevStart = pm.getDaysInMonth()-startingPos;
40612 //        
40613         
40614         
40615         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
40616         
40617         this.textNodes = this.view.el.query('.x-grid-row .x-grid-col .x-grid-cell-text');
40618         //this.cells.addClassOnOver('fc-state-hover');
40619         
40620         var cells = this.cells.elements;
40621         var textEls = this.textNodes;
40622         
40623         //Roo.each(cells, function(cell){
40624         //    cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
40625         //});
40626         
40627         days += startingPos;
40628
40629         // convert everything to numbers so it's fast
40630         var day = 86400000;
40631         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
40632         //Roo.log(d);
40633         //Roo.log(pm);
40634         //Roo.log(prevStart);
40635         
40636         var today = new Date().clearTime().getTime();
40637         var sel = date.clearTime().getTime();
40638         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
40639         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
40640         var ddMatch = this.disabledDatesRE;
40641         var ddText = this.disabledDatesText;
40642         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
40643         var ddaysText = this.disabledDaysText;
40644         var format = this.format;
40645         
40646         var setCellClass = function(cal, cell){
40647             
40648             //Roo.log('set Cell Class');
40649             cell.title = "";
40650             var t = d.getTime();
40651             
40652             //Roo.log(d);
40653             
40654             
40655             cell.dateValue = t;
40656             if(t == today){
40657                 cell.className += " fc-today";
40658                 cell.className += " fc-state-highlight";
40659                 cell.title = cal.todayText;
40660             }
40661             if(t == sel){
40662                 // disable highlight in other month..
40663                 cell.className += " fc-state-highlight";
40664                 
40665             }
40666             // disabling
40667             if(t < min) {
40668                 //cell.className = " fc-state-disabled";
40669                 cell.title = cal.minText;
40670                 return;
40671             }
40672             if(t > max) {
40673                 //cell.className = " fc-state-disabled";
40674                 cell.title = cal.maxText;
40675                 return;
40676             }
40677             if(ddays){
40678                 if(ddays.indexOf(d.getDay()) != -1){
40679                     // cell.title = ddaysText;
40680                    // cell.className = " fc-state-disabled";
40681                 }
40682             }
40683             if(ddMatch && format){
40684                 var fvalue = d.dateFormat(format);
40685                 if(ddMatch.test(fvalue)){
40686                     cell.title = ddText.replace("%0", fvalue);
40687                    cell.className = " fc-state-disabled";
40688                 }
40689             }
40690             
40691             if (!cell.initialClassName) {
40692                 cell.initialClassName = cell.dom.className;
40693             }
40694             
40695             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
40696         };
40697
40698         var i = 0;
40699         
40700         for(; i < startingPos; i++) {
40701             cells[i].dayName =  (++prevStart);
40702             Roo.log(textEls[i]);
40703             d.setDate(d.getDate()+1);
40704             
40705             //cells[i].className = "fc-past fc-other-month";
40706             setCellClass(this, cells[i]);
40707         }
40708         
40709         var intDay = 0;
40710         
40711         for(; i < days; i++){
40712             intDay = i - startingPos + 1;
40713             cells[i].dayName =  (intDay);
40714             d.setDate(d.getDate()+1);
40715             
40716             cells[i].className = ''; // "x-date-active";
40717             setCellClass(this, cells[i]);
40718         }
40719         var extraDays = 0;
40720         
40721         for(; i < 42; i++) {
40722             //textEls[i].innerHTML = (++extraDays);
40723             
40724             d.setDate(d.getDate()+1);
40725             cells[i].dayName = (++extraDays);
40726             cells[i].className = "fc-future fc-other-month";
40727             setCellClass(this, cells[i]);
40728         }
40729         
40730         //this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
40731         
40732         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
40733         
40734         // this will cause all the cells to mis
40735         var rows= [];
40736         var i =0;
40737         for (var r = 0;r < 6;r++) {
40738             for (var c =0;c < 7;c++) {
40739                 this.ds.getAt(r).set('weekday' + c ,cells[i++].dayName );
40740             }    
40741         }
40742         
40743         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
40744         for(i=0;i<cells.length;i++) {
40745             
40746             this.cells.elements[i].dayName = cells[i].dayName ;
40747             this.cells.elements[i].className = cells[i].className;
40748             this.cells.elements[i].initialClassName = cells[i].initialClassName ;
40749             this.cells.elements[i].title = cells[i].title ;
40750             this.cells.elements[i].dateValue = cells[i].dateValue ;
40751         }
40752         
40753         
40754         
40755         
40756         //this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
40757         //this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
40758         
40759         ////if(totalRows != 6){
40760             //this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
40761            // this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
40762        // }
40763         
40764         this.fireEvent('monthchange', this, date);
40765         
40766         
40767     },
40768  /**
40769      * Returns the grid's SelectionModel.
40770      * @return {SelectionModel}
40771      */
40772     getSelectionModel : function(){
40773         if(!this.selModel){
40774             this.selModel = new Roo.grid.CellSelectionModel();
40775         }
40776         return this.selModel;
40777     },
40778
40779     load: function() {
40780         this.eventStore.load()
40781         
40782         
40783         
40784     },
40785     
40786     findCell : function(dt) {
40787         dt = dt.clearTime().getTime();
40788         var ret = false;
40789         this.cells.each(function(c){
40790             //Roo.log("check " +c.dateValue + '?=' + dt);
40791             if(c.dateValue == dt){
40792                 ret = c;
40793                 return false;
40794             }
40795             return true;
40796         });
40797         
40798         return ret;
40799     },
40800     
40801     findCells : function(rec) {
40802         var s = rec.data.start_dt.clone().clearTime().getTime();
40803        // Roo.log(s);
40804         var e= rec.data.end_dt.clone().clearTime().getTime();
40805        // Roo.log(e);
40806         var ret = [];
40807         this.cells.each(function(c){
40808              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
40809             
40810             if(c.dateValue > e){
40811                 return ;
40812             }
40813             if(c.dateValue < s){
40814                 return ;
40815             }
40816             ret.push(c);
40817         });
40818         
40819         return ret;    
40820     },
40821     
40822     findBestRow: function(cells)
40823     {
40824         var ret = 0;
40825         
40826         for (var i =0 ; i < cells.length;i++) {
40827             ret  = Math.max(cells[i].rows || 0,ret);
40828         }
40829         return ret;
40830         
40831     },
40832     
40833     
40834     addItem : function(rec)
40835     {
40836         // look for vertical location slot in
40837         var cells = this.findCells(rec);
40838         
40839         rec.row = this.findBestRow(cells);
40840         
40841         // work out the location.
40842         
40843         var crow = false;
40844         var rows = [];
40845         for(var i =0; i < cells.length; i++) {
40846             if (!crow) {
40847                 crow = {
40848                     start : cells[i],
40849                     end :  cells[i]
40850                 };
40851                 continue;
40852             }
40853             if (crow.start.getY() == cells[i].getY()) {
40854                 // on same row.
40855                 crow.end = cells[i];
40856                 continue;
40857             }
40858             // different row.
40859             rows.push(crow);
40860             crow = {
40861                 start: cells[i],
40862                 end : cells[i]
40863             };
40864             
40865         }
40866         
40867         rows.push(crow);
40868         rec.els = [];
40869         rec.rows = rows;
40870         rec.cells = cells;
40871         for (var i = 0; i < cells.length;i++) {
40872             cells[i].rows = Math.max(cells[i].rows || 0 , rec.row + 1 );
40873             
40874         }
40875         
40876         
40877     },
40878     
40879     clearEvents: function() {
40880         
40881         if (!this.eventStore.getCount()) {
40882             return;
40883         }
40884         // reset number of rows in cells.
40885         Roo.each(this.cells.elements, function(c){
40886             c.rows = 0;
40887         });
40888         
40889         this.eventStore.each(function(e) {
40890             this.clearEvent(e);
40891         },this);
40892         
40893     },
40894     
40895     clearEvent : function(ev)
40896     {
40897         if (ev.els) {
40898             Roo.each(ev.els, function(el) {
40899                 el.un('mouseenter' ,this.onEventEnter, this);
40900                 el.un('mouseleave' ,this.onEventLeave, this);
40901                 el.remove();
40902             },this);
40903             ev.els = [];
40904         }
40905     },
40906     
40907     
40908     renderEvent : function(ev,ctr) {
40909         if (!ctr) {
40910              ctr = this.view.el.select('.fc-event-container',true).first();
40911         }
40912         
40913          
40914         this.clearEvent(ev);
40915             //code
40916        
40917         
40918         
40919         ev.els = [];
40920         var cells = ev.cells;
40921         var rows = ev.rows;
40922         this.fireEvent('eventrender', this, ev);
40923         
40924         for(var i =0; i < rows.length; i++) {
40925             
40926             cls = '';
40927             if (i == 0) {
40928                 cls += ' fc-event-start';
40929             }
40930             if ((i+1) == rows.length) {
40931                 cls += ' fc-event-end';
40932             }
40933             
40934             //Roo.log(ev.data);
40935             // how many rows should it span..
40936             var cg = this.eventTmpl.append(ctr,Roo.apply({
40937                 fccls : cls
40938                 
40939             }, ev.data) , true);
40940             
40941             
40942             cg.on('mouseenter' ,this.onEventEnter, this, ev);
40943             cg.on('mouseleave' ,this.onEventLeave, this, ev);
40944             cg.on('click', this.onEventClick, this, ev);
40945             
40946             ev.els.push(cg);
40947             
40948             var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
40949             var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
40950             //Roo.log(cg);
40951              
40952             cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
40953             cg.setWidth(ebox.right - sbox.x -2);
40954         }
40955     },
40956     
40957     renderEvents: function()
40958     {   
40959         // first make sure there is enough space..
40960         
40961         if (!this.eventTmpl) {
40962             this.eventTmpl = new Roo.Template(
40963                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
40964                     '<div class="fc-event-inner">' +
40965                         '<span class="fc-event-time">{time}</span>' +
40966                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>' +
40967                     '</div>' +
40968                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
40969                 '</div>'
40970             );
40971                 
40972         }
40973                
40974         
40975         
40976         this.cells.each(function(c) {
40977             //Roo.log(c.select('.fc-day-content div',true).first());
40978             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
40979         });
40980         
40981         var ctr = this.view.el.select('.fc-event-container',true).first();
40982         
40983         var cls;
40984         this.eventStore.each(function(ev){
40985             
40986             this.renderEvent(ev);
40987              
40988              
40989         }, this);
40990         this.view.layout();
40991         
40992     },
40993     
40994     onEventEnter: function (e, el,event,d) {
40995         this.fireEvent('evententer', this, el, event);
40996     },
40997     
40998     onEventLeave: function (e, el,event,d) {
40999         this.fireEvent('eventleave', this, el, event);
41000     },
41001     
41002     onEventClick: function (e, el,event,d) {
41003         this.fireEvent('eventclick', this, el, event);
41004     },
41005     
41006     onMonthChange: function () {
41007         this.store.load();
41008     },
41009     
41010     onLoad: function () {
41011         
41012         //Roo.log('calendar onload');
41013 //         
41014         if(this.eventStore.getCount() > 0){
41015             
41016            
41017             
41018             this.eventStore.each(function(d){
41019                 
41020                 
41021                 // FIXME..
41022                 var add =   d.data;
41023                 if (typeof(add.end_dt) == 'undefined')  {
41024                     Roo.log("Missing End time in calendar data: ");
41025                     Roo.log(d);
41026                     return;
41027                 }
41028                 if (typeof(add.start_dt) == 'undefined')  {
41029                     Roo.log("Missing Start time in calendar data: ");
41030                     Roo.log(d);
41031                     return;
41032                 }
41033                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
41034                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
41035                 add.id = add.id || d.id;
41036                 add.title = add.title || '??';
41037                 
41038                 this.addItem(d);
41039                 
41040              
41041             },this);
41042         }
41043         
41044         this.renderEvents();
41045     }
41046     
41047
41048 });
41049 /*
41050  grid : {
41051                 xtype: 'Grid',
41052                 xns: Roo.grid,
41053                 listeners : {
41054                     render : function ()
41055                     {
41056                         _this.grid = this;
41057                         
41058                         if (!this.view.el.hasClass('course-timesheet')) {
41059                             this.view.el.addClass('course-timesheet');
41060                         }
41061                         if (this.tsStyle) {
41062                             this.ds.load({});
41063                             return; 
41064                         }
41065                         Roo.log('width');
41066                         Roo.log(_this.grid.view.el.getWidth());
41067                         
41068                         
41069                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
41070                             '.course-timesheet .x-grid-row' : {
41071                                 height: '80px'
41072                             },
41073                             '.x-grid-row td' : {
41074                                 'vertical-align' : 0
41075                             },
41076                             '.course-edit-link' : {
41077                                 'color' : 'blue',
41078                                 'text-overflow' : 'ellipsis',
41079                                 'overflow' : 'hidden',
41080                                 'white-space' : 'nowrap',
41081                                 'cursor' : 'pointer'
41082                             },
41083                             '.sub-link' : {
41084                                 'color' : 'green'
41085                             },
41086                             '.de-act-sup-link' : {
41087                                 'color' : 'purple',
41088                                 'text-decoration' : 'line-through'
41089                             },
41090                             '.de-act-link' : {
41091                                 'color' : 'red',
41092                                 'text-decoration' : 'line-through'
41093                             },
41094                             '.course-timesheet .course-highlight' : {
41095                                 'border-top-style': 'dashed !important',
41096                                 'border-bottom-bottom': 'dashed !important'
41097                             },
41098                             '.course-timesheet .course-item' : {
41099                                 'font-family'   : 'tahoma, arial, helvetica',
41100                                 'font-size'     : '11px',
41101                                 'overflow'      : 'hidden',
41102                                 'padding-left'  : '10px',
41103                                 'padding-right' : '10px',
41104                                 'padding-top' : '10px' 
41105                             }
41106                             
41107                         }, Roo.id());
41108                                 this.ds.load({});
41109                     }
41110                 },
41111                 autoWidth : true,
41112                 monitorWindowResize : false,
41113                 cellrenderer : function(v,x,r)
41114                 {
41115                     return v;
41116                 },
41117                 sm : {
41118                     xtype: 'CellSelectionModel',
41119                     xns: Roo.grid
41120                 },
41121                 dataSource : {
41122                     xtype: 'Store',
41123                     xns: Roo.data,
41124                     listeners : {
41125                         beforeload : function (_self, options)
41126                         {
41127                             options.params = options.params || {};
41128                             options.params._month = _this.monthField.getValue();
41129                             options.params.limit = 9999;
41130                             options.params['sort'] = 'when_dt';    
41131                             options.params['dir'] = 'ASC';    
41132                             this.proxy.loadResponse = this.loadResponse;
41133                             Roo.log("load?");
41134                             //this.addColumns();
41135                         },
41136                         load : function (_self, records, options)
41137                         {
41138                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
41139                                 // if you click on the translation.. you can edit it...
41140                                 var el = Roo.get(this);
41141                                 var id = el.dom.getAttribute('data-id');
41142                                 var d = el.dom.getAttribute('data-date');
41143                                 var t = el.dom.getAttribute('data-time');
41144                                 //var id = this.child('span').dom.textContent;
41145                                 
41146                                 //Roo.log(this);
41147                                 Pman.Dialog.CourseCalendar.show({
41148                                     id : id,
41149                                     when_d : d,
41150                                     when_t : t,
41151                                     productitem_active : id ? 1 : 0
41152                                 }, function() {
41153                                     _this.grid.ds.load({});
41154                                 });
41155                            
41156                            });
41157                            
41158                            _this.panel.fireEvent('resize', [ '', '' ]);
41159                         }
41160                     },
41161                     loadResponse : function(o, success, response){
41162                             // this is overridden on before load..
41163                             
41164                             Roo.log("our code?");       
41165                             //Roo.log(success);
41166                             //Roo.log(response)
41167                             delete this.activeRequest;
41168                             if(!success){
41169                                 this.fireEvent("loadexception", this, o, response);
41170                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
41171                                 return;
41172                             }
41173                             var result;
41174                             try {
41175                                 result = o.reader.read(response);
41176                             }catch(e){
41177                                 Roo.log("load exception?");
41178                                 this.fireEvent("loadexception", this, o, response, e);
41179                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
41180                                 return;
41181                             }
41182                             Roo.log("ready...");        
41183                             // loop through result.records;
41184                             // and set this.tdate[date] = [] << array of records..
41185                             _this.tdata  = {};
41186                             Roo.each(result.records, function(r){
41187                                 //Roo.log(r.data);
41188                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
41189                                     _this.tdata[r.data.when_dt.format('j')] = [];
41190                                 }
41191                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
41192                             });
41193                             
41194                             //Roo.log(_this.tdata);
41195                             
41196                             result.records = [];
41197                             result.totalRecords = 6;
41198                     
41199                             // let's generate some duumy records for the rows.
41200                             //var st = _this.dateField.getValue();
41201                             
41202                             // work out monday..
41203                             //st = st.add(Date.DAY, -1 * st.format('w'));
41204                             
41205                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
41206                             
41207                             var firstOfMonth = date.getFirstDayOfMonth();
41208                             var days = date.getDaysInMonth();
41209                             var d = 1;
41210                             var firstAdded = false;
41211                             for (var i = 0; i < result.totalRecords ; i++) {
41212                                 //var d= st.add(Date.DAY, i);
41213                                 var row = {};
41214                                 var added = 0;
41215                                 for(var w = 0 ; w < 7 ; w++){
41216                                     if(!firstAdded && firstOfMonth != w){
41217                                         continue;
41218                                     }
41219                                     if(d > days){
41220                                         continue;
41221                                     }
41222                                     firstAdded = true;
41223                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
41224                                     row['weekday'+w] = String.format(
41225                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
41226                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
41227                                                     d,
41228                                                     date.format('Y-m-')+dd
41229                                                 );
41230                                     added++;
41231                                     if(typeof(_this.tdata[d]) != 'undefined'){
41232                                         Roo.each(_this.tdata[d], function(r){
41233                                             var is_sub = '';
41234                                             var deactive = '';
41235                                             var id = r.id;
41236                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
41237                                             if(r.parent_id*1>0){
41238                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
41239                                                 id = r.parent_id;
41240                                             }
41241                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
41242                                                 deactive = 'de-act-link';
41243                                             }
41244                                             
41245                                             row['weekday'+w] += String.format(
41246                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
41247                                                     id, //0
41248                                                     r.product_id_name, //1
41249                                                     r.when_dt.format('h:ia'), //2
41250                                                     is_sub, //3
41251                                                     deactive, //4
41252                                                     desc // 5
41253                                             );
41254                                         });
41255                                     }
41256                                     d++;
41257                                 }
41258                                 
41259                                 // only do this if something added..
41260                                 if(added > 0){ 
41261                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
41262                                 }
41263                                 
41264                                 
41265                                 // push it twice. (second one with an hour..
41266                                 
41267                             }
41268                             //Roo.log(result);
41269                             this.fireEvent("load", this, o, o.request.arg);
41270                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
41271                         },
41272                     sortInfo : {field: 'when_dt', direction : 'ASC' },
41273                     proxy : {
41274                         xtype: 'HttpProxy',
41275                         xns: Roo.data,
41276                         method : 'GET',
41277                         url : baseURL + '/Roo/Shop_course.php'
41278                     },
41279                     reader : {
41280                         xtype: 'JsonReader',
41281                         xns: Roo.data,
41282                         id : 'id',
41283                         fields : [
41284                             {
41285                                 'name': 'id',
41286                                 'type': 'int'
41287                             },
41288                             {
41289                                 'name': 'when_dt',
41290                                 'type': 'string'
41291                             },
41292                             {
41293                                 'name': 'end_dt',
41294                                 'type': 'string'
41295                             },
41296                             {
41297                                 'name': 'parent_id',
41298                                 'type': 'int'
41299                             },
41300                             {
41301                                 'name': 'product_id',
41302                                 'type': 'int'
41303                             },
41304                             {
41305                                 'name': 'productitem_id',
41306                                 'type': 'int'
41307                             },
41308                             {
41309                                 'name': 'guid',
41310                                 'type': 'int'
41311                             }
41312                         ]
41313                     }
41314                 },
41315                 toolbar : {
41316                     xtype: 'Toolbar',
41317                     xns: Roo,
41318                     items : [
41319                         {
41320                             xtype: 'Button',
41321                             xns: Roo.Toolbar,
41322                             listeners : {
41323                                 click : function (_self, e)
41324                                 {
41325                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
41326                                     sd.setMonth(sd.getMonth()-1);
41327                                     _this.monthField.setValue(sd.format('Y-m-d'));
41328                                     _this.grid.ds.load({});
41329                                 }
41330                             },
41331                             text : "Back"
41332                         },
41333                         {
41334                             xtype: 'Separator',
41335                             xns: Roo.Toolbar
41336                         },
41337                         {
41338                             xtype: 'MonthField',
41339                             xns: Roo.form,
41340                             listeners : {
41341                                 render : function (_self)
41342                                 {
41343                                     _this.monthField = _self;
41344                                    // _this.monthField.set  today
41345                                 },
41346                                 select : function (combo, date)
41347                                 {
41348                                     _this.grid.ds.load({});
41349                                 }
41350                             },
41351                             value : (function() { return new Date(); })()
41352                         },
41353                         {
41354                             xtype: 'Separator',
41355                             xns: Roo.Toolbar
41356                         },
41357                         {
41358                             xtype: 'TextItem',
41359                             xns: Roo.Toolbar,
41360                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
41361                         },
41362                         {
41363                             xtype: 'Fill',
41364                             xns: Roo.Toolbar
41365                         },
41366                         {
41367                             xtype: 'Button',
41368                             xns: Roo.Toolbar,
41369                             listeners : {
41370                                 click : function (_self, e)
41371                                 {
41372                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
41373                                     sd.setMonth(sd.getMonth()+1);
41374                                     _this.monthField.setValue(sd.format('Y-m-d'));
41375                                     _this.grid.ds.load({});
41376                                 }
41377                             },
41378                             text : "Next"
41379                         }
41380                     ]
41381                 },
41382                  
41383             }
41384         };
41385         
41386         *//*
41387  * Based on:
41388  * Ext JS Library 1.1.1
41389  * Copyright(c) 2006-2007, Ext JS, LLC.
41390  *
41391  * Originally Released Under LGPL - original licence link has changed is not relivant.
41392  *
41393  * Fork - LGPL
41394  * <script type="text/javascript">
41395  */
41396  
41397 /**
41398  * @class Roo.LoadMask
41399  * A simple utility class for generically masking elements while loading data.  If the element being masked has
41400  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
41401  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
41402  * element's UpdateManager load indicator and will be destroyed after the initial load.
41403  * @constructor
41404  * Create a new LoadMask
41405  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
41406  * @param {Object} config The config object
41407  */
41408 Roo.LoadMask = function(el, config){
41409     this.el = Roo.get(el);
41410     Roo.apply(this, config);
41411     if(this.store){
41412         this.store.on('beforeload', this.onBeforeLoad, this);
41413         this.store.on('load', this.onLoad, this);
41414         this.store.on('loadexception', this.onLoadException, this);
41415         this.removeMask = false;
41416     }else{
41417         var um = this.el.getUpdateManager();
41418         um.showLoadIndicator = false; // disable the default indicator
41419         um.on('beforeupdate', this.onBeforeLoad, this);
41420         um.on('update', this.onLoad, this);
41421         um.on('failure', this.onLoad, this);
41422         this.removeMask = true;
41423     }
41424 };
41425
41426 Roo.LoadMask.prototype = {
41427     /**
41428      * @cfg {Boolean} removeMask
41429      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
41430      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
41431      */
41432     /**
41433      * @cfg {String} msg
41434      * The text to display in a centered loading message box (defaults to 'Loading...')
41435      */
41436     msg : 'Loading...',
41437     /**
41438      * @cfg {String} msgCls
41439      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
41440      */
41441     msgCls : 'x-mask-loading',
41442
41443     /**
41444      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
41445      * @type Boolean
41446      */
41447     disabled: false,
41448
41449     /**
41450      * Disables the mask to prevent it from being displayed
41451      */
41452     disable : function(){
41453        this.disabled = true;
41454     },
41455
41456     /**
41457      * Enables the mask so that it can be displayed
41458      */
41459     enable : function(){
41460         this.disabled = false;
41461     },
41462     
41463     onLoadException : function()
41464     {
41465         Roo.log(arguments);
41466         
41467         if (typeof(arguments[3]) != 'undefined') {
41468             Roo.MessageBox.alert("Error loading",arguments[3]);
41469         } 
41470         /*
41471         try {
41472             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
41473                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
41474             }   
41475         } catch(e) {
41476             
41477         }
41478         */
41479     
41480         
41481         
41482         this.el.unmask(this.removeMask);
41483     },
41484     // private
41485     onLoad : function()
41486     {
41487         this.el.unmask(this.removeMask);
41488     },
41489
41490     // private
41491     onBeforeLoad : function(){
41492         if(!this.disabled){
41493             this.el.mask(this.msg, this.msgCls);
41494         }
41495     },
41496
41497     // private
41498     destroy : function(){
41499         if(this.store){
41500             this.store.un('beforeload', this.onBeforeLoad, this);
41501             this.store.un('load', this.onLoad, this);
41502             this.store.un('loadexception', this.onLoadException, this);
41503         }else{
41504             var um = this.el.getUpdateManager();
41505             um.un('beforeupdate', this.onBeforeLoad, this);
41506             um.un('update', this.onLoad, this);
41507             um.un('failure', this.onLoad, this);
41508         }
41509     }
41510 };/*
41511  * Based on:
41512  * Ext JS Library 1.1.1
41513  * Copyright(c) 2006-2007, Ext JS, LLC.
41514  *
41515  * Originally Released Under LGPL - original licence link has changed is not relivant.
41516  *
41517  * Fork - LGPL
41518  * <script type="text/javascript">
41519  */
41520
41521
41522 /**
41523  * @class Roo.XTemplate
41524  * @extends Roo.Template
41525  * Provides a template that can have nested templates for loops or conditionals. The syntax is:
41526 <pre><code>
41527 var t = new Roo.XTemplate(
41528         '&lt;select name="{name}"&gt;',
41529                 '&lt;tpl for="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
41530         '&lt;/select&gt;'
41531 );
41532  
41533 // then append, applying the master template values
41534  </code></pre>
41535  *
41536  * Supported features:
41537  *
41538  *  Tags:
41539
41540 <pre><code>
41541       {a_variable} - output encoded.
41542       {a_variable.format:("Y-m-d")} - call a method on the variable
41543       {a_variable:raw} - unencoded output
41544       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
41545       {a_variable:this.method_on_template(...)} - call a method on the template object.
41546  
41547 </code></pre>
41548  *  The tpl tag:
41549 <pre><code>
41550         &lt;tpl for="a_variable or condition.."&gt;&lt;/tpl&gt;
41551         &lt;tpl if="a_variable or condition"&gt;&lt;/tpl&gt;
41552         &lt;tpl exec="some javascript"&gt;&lt;/tpl&gt;
41553         &lt;tpl name="named_template"&gt;&lt;/tpl&gt; (experimental)
41554   
41555         &lt;tpl for="."&gt;&lt;/tpl&gt; - just iterate the property..
41556         &lt;tpl for=".."&gt;&lt;/tpl&gt; - iterates with the parent (probably the template) 
41557 </code></pre>
41558  *      
41559  */
41560 Roo.XTemplate = function()
41561 {
41562     Roo.XTemplate.superclass.constructor.apply(this, arguments);
41563     if (this.html) {
41564         this.compile();
41565     }
41566 };
41567
41568
41569 Roo.extend(Roo.XTemplate, Roo.Template, {
41570
41571     /**
41572      * The various sub templates
41573      */
41574     tpls : false,
41575     /**
41576      *
41577      * basic tag replacing syntax
41578      * WORD:WORD()
41579      *
41580      * // you can fake an object call by doing this
41581      *  x.t:(test,tesT) 
41582      * 
41583      */
41584     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
41585
41586     /**
41587      * compile the template
41588      *
41589      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
41590      *
41591      */
41592     compile: function()
41593     {
41594         var s = this.html;
41595      
41596         s = ['<tpl>', s, '</tpl>'].join('');
41597     
41598         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
41599             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
41600             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
41601             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
41602             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
41603             m,
41604             id     = 0,
41605             tpls   = [];
41606     
41607         while(true == !!(m = s.match(re))){
41608             var forMatch   = m[0].match(nameRe),
41609                 ifMatch   = m[0].match(ifRe),
41610                 execMatch   = m[0].match(execRe),
41611                 namedMatch   = m[0].match(namedRe),
41612                 
41613                 exp  = null, 
41614                 fn   = null,
41615                 exec = null,
41616                 name = forMatch && forMatch[1] ? forMatch[1] : '';
41617                 
41618             if (ifMatch) {
41619                 // if - puts fn into test..
41620                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
41621                 if(exp){
41622                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
41623                 }
41624             }
41625             
41626             if (execMatch) {
41627                 // exec - calls a function... returns empty if true is  returned.
41628                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
41629                 if(exp){
41630                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
41631                 }
41632             }
41633             
41634             
41635             if (name) {
41636                 // for = 
41637                 switch(name){
41638                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
41639                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
41640                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
41641                 }
41642             }
41643             var uid = namedMatch ? namedMatch[1] : id;
41644             
41645             
41646             tpls.push({
41647                 id:     namedMatch ? namedMatch[1] : id,
41648                 target: name,
41649                 exec:   exec,
41650                 test:   fn,
41651                 body:   m[1] || ''
41652             });
41653             if (namedMatch) {
41654                 s = s.replace(m[0], '');
41655             } else { 
41656                 s = s.replace(m[0], '{xtpl'+ id + '}');
41657             }
41658             ++id;
41659         }
41660         this.tpls = [];
41661         for(var i = tpls.length-1; i >= 0; --i){
41662             this.compileTpl(tpls[i]);
41663             this.tpls[tpls[i].id] = tpls[i];
41664         }
41665         this.master = tpls[tpls.length-1];
41666         return this;
41667     },
41668     /**
41669      * same as applyTemplate, except it's done to one of the subTemplates
41670      * when using named templates, you can do:
41671      *
41672      * var str = pl.applySubTemplate('your-name', values);
41673      *
41674      * 
41675      * @param {Number} id of the template
41676      * @param {Object} values to apply to template
41677      * @param {Object} parent (normaly the instance of this object)
41678      */
41679     applySubTemplate : function(id, values, parent)
41680     {
41681         
41682         
41683         var t = this.tpls[id];
41684         
41685         
41686         try { 
41687             if(t.test && !t.test.call(this, values, parent)){
41688                 return '';
41689             }
41690         } catch(e) {
41691             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
41692             Roo.log(e.toString());
41693             Roo.log(t.test);
41694             return ''
41695         }
41696         try { 
41697             
41698             if(t.exec && t.exec.call(this, values, parent)){
41699                 return '';
41700             }
41701         } catch(e) {
41702             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
41703             Roo.log(e.toString());
41704             Roo.log(t.exec);
41705             return ''
41706         }
41707         try {
41708             var vs = t.target ? t.target.call(this, values, parent) : values;
41709             parent = t.target ? values : parent;
41710             if(t.target && vs instanceof Array){
41711                 var buf = [];
41712                 for(var i = 0, len = vs.length; i < len; i++){
41713                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
41714                 }
41715                 return buf.join('');
41716             }
41717             return t.compiled.call(this, vs, parent);
41718         } catch (e) {
41719             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
41720             Roo.log(e.toString());
41721             Roo.log(t.compiled);
41722             return '';
41723         }
41724     },
41725
41726     compileTpl : function(tpl)
41727     {
41728         var fm = Roo.util.Format;
41729         var useF = this.disableFormats !== true;
41730         var sep = Roo.isGecko ? "+" : ",";
41731         var undef = function(str) {
41732             Roo.log("Property not found :"  + str);
41733             return '';
41734         };
41735         
41736         var fn = function(m, name, format, args)
41737         {
41738             //Roo.log(arguments);
41739             args = args ? args.replace(/\\'/g,"'") : args;
41740             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
41741             if (typeof(format) == 'undefined') {
41742                 format= 'htmlEncode';
41743             }
41744             if (format == 'raw' ) {
41745                 format = false;
41746             }
41747             
41748             if(name.substr(0, 4) == 'xtpl'){
41749                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
41750             }
41751             
41752             // build an array of options to determine if value is undefined..
41753             
41754             // basically get 'xxxx.yyyy' then do
41755             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
41756             //    (function () { Roo.log("Property not found"); return ''; })() :
41757             //    ......
41758             
41759             var udef_ar = [];
41760             var lookfor = '';
41761             Roo.each(name.split('.'), function(st) {
41762                 lookfor += (lookfor.length ? '.': '') + st;
41763                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
41764             });
41765             
41766             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
41767             
41768             
41769             if(format && useF){
41770                 
41771                 args = args ? ',' + args : "";
41772                  
41773                 if(format.substr(0, 5) != "this."){
41774                     format = "fm." + format + '(';
41775                 }else{
41776                     format = 'this.call("'+ format.substr(5) + '", ';
41777                     args = ", values";
41778                 }
41779                 
41780                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
41781             }
41782              
41783             if (args.length) {
41784                 // called with xxyx.yuu:(test,test)
41785                 // change to ()
41786                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
41787             }
41788             // raw.. - :raw modifier..
41789             return "'"+ sep + udef_st  + name + ")"+sep+"'";
41790             
41791         };
41792         var body;
41793         // branched to use + in gecko and [].join() in others
41794         if(Roo.isGecko){
41795             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
41796                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
41797                     "';};};";
41798         }else{
41799             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
41800             body.push(tpl.body.replace(/(\r\n|\n)/g,
41801                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
41802             body.push("'].join('');};};");
41803             body = body.join('');
41804         }
41805         
41806         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
41807        
41808         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
41809         eval(body);
41810         
41811         return this;
41812     },
41813
41814     applyTemplate : function(values){
41815         return this.master.compiled.call(this, values, {});
41816         //var s = this.subs;
41817     },
41818
41819     apply : function(){
41820         return this.applyTemplate.apply(this, arguments);
41821     }
41822
41823  });
41824
41825 Roo.XTemplate.from = function(el){
41826     el = Roo.getDom(el);
41827     return new Roo.XTemplate(el.value || el.innerHTML);
41828 };