d1d218d42f7a84e26162d44355e9ad47b5a0d651
[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  * @class Roo.data.SortTypes
15  * @singleton
16  * Defines the default sorting (casting?) comparison functions used when sorting data.
17  */
18 Roo.data.SortTypes = {
19     /**
20      * Default sort that does nothing
21      * @param {Mixed} s The value being converted
22      * @return {Mixed} The comparison value
23      */
24     none : function(s){
25         return s;
26     },
27     
28     /**
29      * The regular expression used to strip tags
30      * @type {RegExp}
31      * @property
32      */
33     stripTagsRE : /<\/?[^>]+>/gi,
34     
35     /**
36      * Strips all HTML tags to sort on text only
37      * @param {Mixed} s The value being converted
38      * @return {String} The comparison value
39      */
40     asText : function(s){
41         return String(s).replace(this.stripTagsRE, "");
42     },
43     
44     /**
45      * Strips all HTML tags to sort on text only - Case insensitive
46      * @param {Mixed} s The value being converted
47      * @return {String} The comparison value
48      */
49     asUCText : function(s){
50         return String(s).toUpperCase().replace(this.stripTagsRE, "");
51     },
52     
53     /**
54      * Case insensitive string
55      * @param {Mixed} s The value being converted
56      * @return {String} The comparison value
57      */
58     asUCString : function(s) {
59         return String(s).toUpperCase();
60     },
61     
62     /**
63      * Date sorting
64      * @param {Mixed} s The value being converted
65      * @return {Number} The comparison value
66      */
67     asDate : function(s) {
68         if(!s){
69             return 0;
70         }
71         if(s instanceof Date){
72             return s.getTime();
73         }
74         return Date.parse(String(s));
75     },
76     
77     /**
78      * Float sorting
79      * @param {Mixed} s The value being converted
80      * @return {Float} The comparison value
81      */
82     asFloat : function(s) {
83         var val = parseFloat(String(s).replace(/,/g, ""));
84         if(isNaN(val)) {
85             val = 0;
86         }
87         return val;
88     },
89     
90     /**
91      * Integer sorting
92      * @param {Mixed} s The value being converted
93      * @return {Number} The comparison value
94      */
95     asInt : function(s) {
96         var val = parseInt(String(s).replace(/,/g, ""));
97         if(isNaN(val)) {
98             val = 0;
99         }
100         return val;
101     }
102 };/*
103  * Based on:
104  * Ext JS Library 1.1.1
105  * Copyright(c) 2006-2007, Ext JS, LLC.
106  *
107  * Originally Released Under LGPL - original licence link has changed is not relivant.
108  *
109  * Fork - LGPL
110  * <script type="text/javascript">
111  */
112
113 /**
114 * @class Roo.data.Record
115  * Instances of this class encapsulate both record <em>definition</em> information, and record
116  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
117  * to access Records cached in an {@link Roo.data.Store} object.<br>
118  * <p>
119  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
120  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
121  * objects.<br>
122  * <p>
123  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
124  * @constructor
125  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
126  * {@link #create}. The parameters are the same.
127  * @param {Array} data An associative Array of data values keyed by the field name.
128  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
129  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
130  * not specified an integer id is generated.
131  */
132 Roo.data.Record = function(data, id){
133     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
134     this.data = data;
135 };
136
137 /**
138  * Generate a constructor for a specific record layout.
139  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
140  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
141  * Each field definition object may contain the following properties: <ul>
142  * <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,
143  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
144  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
145  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
146  * is being used, then this is a string containing the javascript expression to reference the data relative to 
147  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
148  * to the data item relative to the record element. If the mapping expression is the same as the field name,
149  * this may be omitted.</p></li>
150  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
151  * <ul><li>auto (Default, implies no conversion)</li>
152  * <li>string</li>
153  * <li>int</li>
154  * <li>float</li>
155  * <li>boolean</li>
156  * <li>date</li></ul></p></li>
157  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
158  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
159  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
160  * by the Reader into an object that will be stored in the Record. It is passed the
161  * following parameters:<ul>
162  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
163  * </ul></p></li>
164  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
165  * </ul>
166  * <br>usage:<br><pre><code>
167 var TopicRecord = Roo.data.Record.create(
168     {name: 'title', mapping: 'topic_title'},
169     {name: 'author', mapping: 'username'},
170     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
171     {name: 'lastPost', mapping: 'post_time', type: 'date'},
172     {name: 'lastPoster', mapping: 'user2'},
173     {name: 'excerpt', mapping: 'post_text'}
174 );
175
176 var myNewRecord = new TopicRecord({
177     title: 'Do my job please',
178     author: 'noobie',
179     totalPosts: 1,
180     lastPost: new Date(),
181     lastPoster: 'Animal',
182     excerpt: 'No way dude!'
183 });
184 myStore.add(myNewRecord);
185 </code></pre>
186  * @method create
187  * @static
188  */
189 Roo.data.Record.create = function(o){
190     var f = function(){
191         f.superclass.constructor.apply(this, arguments);
192     };
193     Roo.extend(f, Roo.data.Record);
194     var p = f.prototype;
195     p.fields = new Roo.util.MixedCollection(false, function(field){
196         return field.name;
197     });
198     for(var i = 0, len = o.length; i < len; i++){
199         p.fields.add(new Roo.data.Field(o[i]));
200     }
201     f.getField = function(name){
202         return p.fields.get(name);  
203     };
204     return f;
205 };
206
207 Roo.data.Record.AUTO_ID = 1000;
208 Roo.data.Record.EDIT = 'edit';
209 Roo.data.Record.REJECT = 'reject';
210 Roo.data.Record.COMMIT = 'commit';
211
212 Roo.data.Record.prototype = {
213     /**
214      * Readonly flag - true if this record has been modified.
215      * @type Boolean
216      */
217     dirty : false,
218     editing : false,
219     error: null,
220     modified: null,
221
222     // private
223     join : function(store){
224         this.store = store;
225     },
226
227     /**
228      * Set the named field to the specified value.
229      * @param {String} name The name of the field to set.
230      * @param {Object} value The value to set the field to.
231      */
232     set : function(name, value){
233         if(this.data[name] == value){
234             return;
235         }
236         this.dirty = true;
237         if(!this.modified){
238             this.modified = {};
239         }
240         if(typeof this.modified[name] == 'undefined'){
241             this.modified[name] = this.data[name];
242         }
243         this.data[name] = value;
244         if(!this.editing && this.store){
245             this.store.afterEdit(this);
246         }       
247     },
248
249     /**
250      * Get the value of the named field.
251      * @param {String} name The name of the field to get the value of.
252      * @return {Object} The value of the field.
253      */
254     get : function(name){
255         return this.data[name]; 
256     },
257
258     // private
259     beginEdit : function(){
260         this.editing = true;
261         this.modified = {}; 
262     },
263
264     // private
265     cancelEdit : function(){
266         this.editing = false;
267         delete this.modified;
268     },
269
270     // private
271     endEdit : function(){
272         this.editing = false;
273         if(this.dirty && this.store){
274             this.store.afterEdit(this);
275         }
276     },
277
278     /**
279      * Usually called by the {@link Roo.data.Store} which owns the Record.
280      * Rejects all changes made to the Record since either creation, or the last commit operation.
281      * Modified fields are reverted to their original values.
282      * <p>
283      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
284      * of reject operations.
285      */
286     reject : function(){
287         var m = this.modified;
288         for(var n in m){
289             if(typeof m[n] != "function"){
290                 this.data[n] = m[n];
291             }
292         }
293         this.dirty = false;
294         delete this.modified;
295         this.editing = false;
296         if(this.store){
297             this.store.afterReject(this);
298         }
299     },
300
301     /**
302      * Usually called by the {@link Roo.data.Store} which owns the Record.
303      * Commits all changes made to the Record since either creation, or the last commit operation.
304      * <p>
305      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
306      * of commit operations.
307      */
308     commit : function(){
309         this.dirty = false;
310         delete this.modified;
311         this.editing = false;
312         if(this.store){
313             this.store.afterCommit(this);
314         }
315     },
316
317     // private
318     hasError : function(){
319         return this.error != null;
320     },
321
322     // private
323     clearError : function(){
324         this.error = null;
325     },
326
327     /**
328      * Creates a copy of this record.
329      * @param {String} id (optional) A new record id if you don't want to use this record's id
330      * @return {Record}
331      */
332     copy : function(newId) {
333         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
334     }
335 };/*
336  * Based on:
337  * Ext JS Library 1.1.1
338  * Copyright(c) 2006-2007, Ext JS, LLC.
339  *
340  * Originally Released Under LGPL - original licence link has changed is not relivant.
341  *
342  * Fork - LGPL
343  * <script type="text/javascript">
344  */
345
346
347
348 /**
349  * @class Roo.data.Store
350  * @extends Roo.util.Observable
351  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
352  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
353  * <p>
354  * 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
355  * has no knowledge of the format of the data returned by the Proxy.<br>
356  * <p>
357  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
358  * instances from the data object. These records are cached and made available through accessor functions.
359  * @constructor
360  * Creates a new Store.
361  * @param {Object} config A config object containing the objects needed for the Store to access data,
362  * and read the data into Records.
363  */
364 Roo.data.Store = function(config){
365     this.data = new Roo.util.MixedCollection(false);
366     this.data.getKey = function(o){
367         return o.id;
368     };
369     this.baseParams = {};
370     // private
371     this.paramNames = {
372         "start" : "start",
373         "limit" : "limit",
374         "sort" : "sort",
375         "dir" : "dir",
376         "multisort" : "_multisort"
377     };
378
379     if(config && config.data){
380         this.inlineData = config.data;
381         delete config.data;
382     }
383
384     Roo.apply(this, config);
385     
386     if(this.reader){ // reader passed
387         this.reader = Roo.factory(this.reader, Roo.data);
388         this.reader.xmodule = this.xmodule || false;
389         if(!this.recordType){
390             this.recordType = this.reader.recordType;
391         }
392         if(this.reader.onMetaChange){
393             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
394         }
395     }
396
397     if(this.recordType){
398         this.fields = this.recordType.prototype.fields;
399     }
400     this.modified = [];
401
402     this.addEvents({
403         /**
404          * @event datachanged
405          * Fires when the data cache has changed, and a widget which is using this Store
406          * as a Record cache should refresh its view.
407          * @param {Store} this
408          */
409         datachanged : true,
410         /**
411          * @event metachange
412          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
413          * @param {Store} this
414          * @param {Object} meta The JSON metadata
415          */
416         metachange : true,
417         /**
418          * @event add
419          * Fires when Records have been added to the Store
420          * @param {Store} this
421          * @param {Roo.data.Record[]} records The array of Records added
422          * @param {Number} index The index at which the record(s) were added
423          */
424         add : true,
425         /**
426          * @event remove
427          * Fires when a Record has been removed from the Store
428          * @param {Store} this
429          * @param {Roo.data.Record} record The Record that was removed
430          * @param {Number} index The index at which the record was removed
431          */
432         remove : true,
433         /**
434          * @event update
435          * Fires when a Record has been updated
436          * @param {Store} this
437          * @param {Roo.data.Record} record The Record that was updated
438          * @param {String} operation The update operation being performed.  Value may be one of:
439          * <pre><code>
440  Roo.data.Record.EDIT
441  Roo.data.Record.REJECT
442  Roo.data.Record.COMMIT
443          * </code></pre>
444          */
445         update : true,
446         /**
447          * @event clear
448          * Fires when the data cache has been cleared.
449          * @param {Store} this
450          */
451         clear : true,
452         /**
453          * @event beforeload
454          * Fires before a request is made for a new data object.  If the beforeload handler returns false
455          * the load action will be canceled.
456          * @param {Store} this
457          * @param {Object} options The loading options that were specified (see {@link #load} for details)
458          */
459         beforeload : true,
460         /**
461          * @event beforeloadadd
462          * Fires after a new set of Records has been loaded.
463          * @param {Store} this
464          * @param {Roo.data.Record[]} records The Records that were loaded
465          * @param {Object} options The loading options that were specified (see {@link #load} for details)
466          */
467         beforeloadadd : true,
468         /**
469          * @event load
470          * Fires after a new set of Records has been loaded, before they are added to the store.
471          * @param {Store} this
472          * @param {Roo.data.Record[]} records The Records that were loaded
473          * @param {Object} options The loading options that were specified (see {@link #load} for details)
474          * @params {Object} return from reader
475          */
476         load : true,
477         /**
478          * @event loadexception
479          * Fires if an exception occurs in the Proxy during loading.
480          * Called with the signature of the Proxy's "loadexception" event.
481          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
482          * 
483          * @param {Proxy} 
484          * @param {Object} return from JsonData.reader() - success, totalRecords, records
485          * @param {Object} load options 
486          * @param {Object} jsonData from your request (normally this contains the Exception)
487          */
488         loadexception : true
489     });
490     
491     if(this.proxy){
492         this.proxy = Roo.factory(this.proxy, Roo.data);
493         this.proxy.xmodule = this.xmodule || false;
494         this.relayEvents(this.proxy,  ["loadexception"]);
495     }
496     this.sortToggle = {};
497     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
498
499     Roo.data.Store.superclass.constructor.call(this);
500
501     if(this.inlineData){
502         this.loadData(this.inlineData);
503         delete this.inlineData;
504     }
505 };
506
507 Roo.extend(Roo.data.Store, Roo.util.Observable, {
508      /**
509     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
510     * without a remote query - used by combo/forms at present.
511     */
512     
513     /**
514     * @cfg {Roo.data.DataProxy} proxy The Proxy object which provides access to a data object.
515     */
516     /**
517     * @cfg {Array} data Inline data to be loaded when the store is initialized.
518     */
519     /**
520     * @cfg {Roo.data.Reader} reader The Reader object which processes the data object and returns
521     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
522     */
523     /**
524     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
525     * on any HTTP request
526     */
527     /**
528     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
529     */
530     /**
531     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
532     */
533     multiSort: false,
534     /**
535     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
536     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
537     */
538     remoteSort : false,
539
540     /**
541     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
542      * loaded or when a record is removed. (defaults to false).
543     */
544     pruneModifiedRecords : false,
545
546     // private
547     lastOptions : null,
548
549     /**
550      * Add Records to the Store and fires the add event.
551      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
552      */
553     add : function(records){
554         records = [].concat(records);
555         for(var i = 0, len = records.length; i < len; i++){
556             records[i].join(this);
557         }
558         var index = this.data.length;
559         this.data.addAll(records);
560         this.fireEvent("add", this, records, index);
561     },
562
563     /**
564      * Remove a Record from the Store and fires the remove event.
565      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
566      */
567     remove : function(record){
568         var index = this.data.indexOf(record);
569         this.data.removeAt(index);
570  
571         if(this.pruneModifiedRecords){
572             this.modified.remove(record);
573         }
574         this.fireEvent("remove", this, record, index);
575     },
576
577     /**
578      * Remove all Records from the Store and fires the clear event.
579      */
580     removeAll : function(){
581         this.data.clear();
582         if(this.pruneModifiedRecords){
583             this.modified = [];
584         }
585         this.fireEvent("clear", this);
586     },
587
588     /**
589      * Inserts Records to the Store at the given index and fires the add event.
590      * @param {Number} index The start index at which to insert the passed Records.
591      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
592      */
593     insert : function(index, records){
594         records = [].concat(records);
595         for(var i = 0, len = records.length; i < len; i++){
596             this.data.insert(index, records[i]);
597             records[i].join(this);
598         }
599         this.fireEvent("add", this, records, index);
600     },
601
602     /**
603      * Get the index within the cache of the passed Record.
604      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
605      * @return {Number} The index of the passed Record. Returns -1 if not found.
606      */
607     indexOf : function(record){
608         return this.data.indexOf(record);
609     },
610
611     /**
612      * Get the index within the cache of the Record with the passed id.
613      * @param {String} id The id of the Record to find.
614      * @return {Number} The index of the Record. Returns -1 if not found.
615      */
616     indexOfId : function(id){
617         return this.data.indexOfKey(id);
618     },
619
620     /**
621      * Get the Record with the specified id.
622      * @param {String} id The id of the Record to find.
623      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
624      */
625     getById : function(id){
626         return this.data.key(id);
627     },
628
629     /**
630      * Get the Record at the specified index.
631      * @param {Number} index The index of the Record to find.
632      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
633      */
634     getAt : function(index){
635         return this.data.itemAt(index);
636     },
637
638     /**
639      * Returns a range of Records between specified indices.
640      * @param {Number} startIndex (optional) The starting index (defaults to 0)
641      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
642      * @return {Roo.data.Record[]} An array of Records
643      */
644     getRange : function(start, end){
645         return this.data.getRange(start, end);
646     },
647
648     // private
649     storeOptions : function(o){
650         o = Roo.apply({}, o);
651         delete o.callback;
652         delete o.scope;
653         this.lastOptions = o;
654     },
655
656     /**
657      * Loads the Record cache from the configured Proxy using the configured Reader.
658      * <p>
659      * If using remote paging, then the first load call must specify the <em>start</em>
660      * and <em>limit</em> properties in the options.params property to establish the initial
661      * position within the dataset, and the number of Records to cache on each read from the Proxy.
662      * <p>
663      * <strong>It is important to note that for remote data sources, loading is asynchronous,
664      * and this call will return before the new data has been loaded. Perform any post-processing
665      * in a callback function, or in a "load" event handler.</strong>
666      * <p>
667      * @param {Object} options An object containing properties which control loading options:<ul>
668      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
669      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
670      * passed the following arguments:<ul>
671      * <li>r : Roo.data.Record[]</li>
672      * <li>options: Options object from the load call</li>
673      * <li>success: Boolean success indicator</li></ul></li>
674      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
675      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
676      * </ul>
677      */
678     load : function(options){
679         options = options || {};
680         if(this.fireEvent("beforeload", this, options) !== false){
681             this.storeOptions(options);
682             var p = Roo.apply(options.params || {}, this.baseParams);
683             // if meta was not loaded from remote source.. try requesting it.
684             if (!this.reader.metaFromRemote) {
685                 p._requestMeta = 1;
686             }
687             if(this.sortInfo && this.remoteSort){
688                 var pn = this.paramNames;
689                 p[pn["sort"]] = this.sortInfo.field;
690                 p[pn["dir"]] = this.sortInfo.direction;
691             }
692             if (this.multiSort) {
693                 var pn = this.paramNames;
694                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
695             }
696             
697             this.proxy.load(p, this.reader, this.loadRecords, this, options);
698         }
699     },
700
701     /**
702      * Reloads the Record cache from the configured Proxy using the configured Reader and
703      * the options from the last load operation performed.
704      * @param {Object} options (optional) An object containing properties which may override the options
705      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
706      * the most recently used options are reused).
707      */
708     reload : function(options){
709         this.load(Roo.applyIf(options||{}, this.lastOptions));
710     },
711
712     // private
713     // Called as a callback by the Reader during a load operation.
714     loadRecords : function(o, options, success){
715         if(!o || success === false){
716             if(success !== false){
717                 this.fireEvent("load", this, [], options, o);
718             }
719             if(options.callback){
720                 options.callback.call(options.scope || this, [], options, false);
721             }
722             return;
723         }
724         // if data returned failure - throw an exception.
725         if (o.success === false) {
726             // show a message if no listener is registered.
727             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
728                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
729             }
730             // loadmask wil be hooked into this..
731             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
732             return;
733         }
734         var r = o.records, t = o.totalRecords || r.length;
735         
736         this.fireEvent("beforeloadadd", this, r, options, o);
737         
738         if(!options || options.add !== true){
739             if(this.pruneModifiedRecords){
740                 this.modified = [];
741             }
742             for(var i = 0, len = r.length; i < len; i++){
743                 r[i].join(this);
744             }
745             if(this.snapshot){
746                 this.data = this.snapshot;
747                 delete this.snapshot;
748             }
749             this.data.clear();
750             this.data.addAll(r);
751             this.totalLength = t;
752             this.applySort();
753             this.fireEvent("datachanged", this);
754         }else{
755             this.totalLength = Math.max(t, this.data.length+r.length);
756             this.add(r);
757         }
758         
759         if(this.parent && !Roo.isIOS && !this.useNativeIOS && this.parent.emptyTitle.length) {
760                 
761             var e = new Roo.data.Record({});
762
763             e.set(this.parent.displayField, this.parent.emptyTitle);
764             e.set(this.parent.valueField, '');
765
766             this.insert(0, e);
767         }
768             
769         this.fireEvent("load", this, r, options, o);
770         if(options.callback){
771             options.callback.call(options.scope || this, r, options, true);
772         }
773     },
774
775
776     /**
777      * Loads data from a passed data block. A Reader which understands the format of the data
778      * must have been configured in the constructor.
779      * @param {Object} data The data block from which to read the Records.  The format of the data expected
780      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
781      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
782      */
783     loadData : function(o, append){
784         var r = this.reader.readRecords(o);
785         this.loadRecords(r, {add: append}, true);
786     },
787     
788      /**
789      * using 'cn' the nested child reader read the child array into it's child stores.
790      * @param {Object} rec The record with a 'children array
791      */
792     loadDataFromChildren : function(rec)
793     {
794         this.loadData(this.reader.toLoadData(rec));
795     },
796     
797
798     /**
799      * Gets the number of cached records.
800      * <p>
801      * <em>If using paging, this may not be the total size of the dataset. If the data object
802      * used by the Reader contains the dataset size, then the getTotalCount() function returns
803      * the data set size</em>
804      */
805     getCount : function(){
806         return this.data.length || 0;
807     },
808
809     /**
810      * Gets the total number of records in the dataset as returned by the server.
811      * <p>
812      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
813      * the dataset size</em>
814      */
815     getTotalCount : function(){
816         return this.totalLength || 0;
817     },
818
819     /**
820      * Returns the sort state of the Store as an object with two properties:
821      * <pre><code>
822  field {String} The name of the field by which the Records are sorted
823  direction {String} The sort order, "ASC" or "DESC"
824      * </code></pre>
825      */
826     getSortState : function(){
827         return this.sortInfo;
828     },
829
830     // private
831     applySort : function(){
832         if(this.sortInfo && !this.remoteSort){
833             var s = this.sortInfo, f = s.field;
834             var st = this.fields.get(f).sortType;
835             var fn = function(r1, r2){
836                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
837                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
838             };
839             this.data.sort(s.direction, fn);
840             if(this.snapshot && this.snapshot != this.data){
841                 this.snapshot.sort(s.direction, fn);
842             }
843         }
844     },
845
846     /**
847      * Sets the default sort column and order to be used by the next load operation.
848      * @param {String} fieldName The name of the field to sort by.
849      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
850      */
851     setDefaultSort : function(field, dir){
852         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
853     },
854
855     /**
856      * Sort the Records.
857      * If remote sorting is used, the sort is performed on the server, and the cache is
858      * reloaded. If local sorting is used, the cache is sorted internally.
859      * @param {String} fieldName The name of the field to sort by.
860      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
861      */
862     sort : function(fieldName, dir){
863         var f = this.fields.get(fieldName);
864         if(!dir){
865             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
866             
867             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
868                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
869             }else{
870                 dir = f.sortDir;
871             }
872         }
873         this.sortToggle[f.name] = dir;
874         this.sortInfo = {field: f.name, direction: dir};
875         if(!this.remoteSort){
876             this.applySort();
877             this.fireEvent("datachanged", this);
878         }else{
879             this.load(this.lastOptions);
880         }
881     },
882
883     /**
884      * Calls the specified function for each of the Records in the cache.
885      * @param {Function} fn The function to call. The Record is passed as the first parameter.
886      * Returning <em>false</em> aborts and exits the iteration.
887      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
888      */
889     each : function(fn, scope){
890         this.data.each(fn, scope);
891     },
892
893     /**
894      * Gets all records modified since the last commit.  Modified records are persisted across load operations
895      * (e.g., during paging).
896      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
897      */
898     getModifiedRecords : function(){
899         return this.modified;
900     },
901
902     // private
903     createFilterFn : function(property, value, anyMatch){
904         if(!value.exec){ // not a regex
905             value = String(value);
906             if(value.length == 0){
907                 return false;
908             }
909             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
910         }
911         return function(r){
912             return value.test(r.data[property]);
913         };
914     },
915
916     /**
917      * Sums the value of <i>property</i> for each record between start and end and returns the result.
918      * @param {String} property A field on your records
919      * @param {Number} start The record index to start at (defaults to 0)
920      * @param {Number} end The last record index to include (defaults to length - 1)
921      * @return {Number} The sum
922      */
923     sum : function(property, start, end){
924         var rs = this.data.items, v = 0;
925         start = start || 0;
926         end = (end || end === 0) ? end : rs.length-1;
927
928         for(var i = start; i <= end; i++){
929             v += (rs[i].data[property] || 0);
930         }
931         return v;
932     },
933
934     /**
935      * Filter the records by a specified property.
936      * @param {String} field A field on your records
937      * @param {String/RegExp} value Either a string that the field
938      * should start with or a RegExp to test against the field
939      * @param {Boolean} anyMatch True to match any part not just the beginning
940      */
941     filter : function(property, value, anyMatch){
942         var fn = this.createFilterFn(property, value, anyMatch);
943         return fn ? this.filterBy(fn) : this.clearFilter();
944     },
945
946     /**
947      * Filter by a function. The specified function will be called with each
948      * record in this data source. If the function returns true the record is included,
949      * otherwise it is filtered.
950      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
951      * @param {Object} scope (optional) The scope of the function (defaults to this)
952      */
953     filterBy : function(fn, scope){
954         this.snapshot = this.snapshot || this.data;
955         this.data = this.queryBy(fn, scope||this);
956         this.fireEvent("datachanged", this);
957     },
958
959     /**
960      * Query the records by a specified property.
961      * @param {String} field A field on your records
962      * @param {String/RegExp} value Either a string that the field
963      * should start with or a RegExp to test against the field
964      * @param {Boolean} anyMatch True to match any part not just the beginning
965      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
966      */
967     query : function(property, value, anyMatch){
968         var fn = this.createFilterFn(property, value, anyMatch);
969         return fn ? this.queryBy(fn) : this.data.clone();
970     },
971
972     /**
973      * Query by a function. The specified function will be called with each
974      * record in this data source. If the function returns true the record is included
975      * in the results.
976      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
977      * @param {Object} scope (optional) The scope of the function (defaults to this)
978       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
979      **/
980     queryBy : function(fn, scope){
981         var data = this.snapshot || this.data;
982         return data.filterBy(fn, scope||this);
983     },
984
985     /**
986      * Collects unique values for a particular dataIndex from this store.
987      * @param {String} dataIndex The property to collect
988      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
989      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
990      * @return {Array} An array of the unique values
991      **/
992     collect : function(dataIndex, allowNull, bypassFilter){
993         var d = (bypassFilter === true && this.snapshot) ?
994                 this.snapshot.items : this.data.items;
995         var v, sv, r = [], l = {};
996         for(var i = 0, len = d.length; i < len; i++){
997             v = d[i].data[dataIndex];
998             sv = String(v);
999             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
1000                 l[sv] = true;
1001                 r[r.length] = v;
1002             }
1003         }
1004         return r;
1005     },
1006
1007     /**
1008      * Revert to a view of the Record cache with no filtering applied.
1009      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
1010      */
1011     clearFilter : function(suppressEvent){
1012         if(this.snapshot && this.snapshot != this.data){
1013             this.data = this.snapshot;
1014             delete this.snapshot;
1015             if(suppressEvent !== true){
1016                 this.fireEvent("datachanged", this);
1017             }
1018         }
1019     },
1020
1021     // private
1022     afterEdit : function(record){
1023         if(this.modified.indexOf(record) == -1){
1024             this.modified.push(record);
1025         }
1026         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
1027     },
1028     
1029     // private
1030     afterReject : function(record){
1031         this.modified.remove(record);
1032         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
1033     },
1034
1035     // private
1036     afterCommit : function(record){
1037         this.modified.remove(record);
1038         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
1039     },
1040
1041     /**
1042      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
1043      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
1044      */
1045     commitChanges : function(){
1046         var m = this.modified.slice(0);
1047         this.modified = [];
1048         for(var i = 0, len = m.length; i < len; i++){
1049             m[i].commit();
1050         }
1051     },
1052
1053     /**
1054      * Cancel outstanding changes on all changed records.
1055      */
1056     rejectChanges : function(){
1057         var m = this.modified.slice(0);
1058         this.modified = [];
1059         for(var i = 0, len = m.length; i < len; i++){
1060             m[i].reject();
1061         }
1062     },
1063
1064     onMetaChange : function(meta, rtype, o){
1065         this.recordType = rtype;
1066         this.fields = rtype.prototype.fields;
1067         delete this.snapshot;
1068         this.sortInfo = meta.sortInfo || this.sortInfo;
1069         this.modified = [];
1070         this.fireEvent('metachange', this, this.reader.meta);
1071     },
1072     
1073     moveIndex : function(data, type)
1074     {
1075         var index = this.indexOf(data);
1076         
1077         var newIndex = index + type;
1078         
1079         this.remove(data);
1080         
1081         this.insert(newIndex, data);
1082         
1083     }
1084 });/*
1085  * Based on:
1086  * Ext JS Library 1.1.1
1087  * Copyright(c) 2006-2007, Ext JS, LLC.
1088  *
1089  * Originally Released Under LGPL - original licence link has changed is not relivant.
1090  *
1091  * Fork - LGPL
1092  * <script type="text/javascript">
1093  */
1094
1095 /**
1096  * @class Roo.data.SimpleStore
1097  * @extends Roo.data.Store
1098  * Small helper class to make creating Stores from Array data easier.
1099  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
1100  * @cfg {Array} fields An array of field definition objects, or field name strings.
1101  * @cfg {Object} an existing reader (eg. copied from another store)
1102  * @cfg {Array} data The multi-dimensional array of data
1103  * @constructor
1104  * @param {Object} config
1105  */
1106 Roo.data.SimpleStore = function(config)
1107 {
1108     Roo.data.SimpleStore.superclass.constructor.call(this, {
1109         isLocal : true,
1110         reader: typeof(config.reader) != 'undefined' ? config.reader : new Roo.data.ArrayReader({
1111                 id: config.id
1112             },
1113             Roo.data.Record.create(config.fields)
1114         ),
1115         proxy : new Roo.data.MemoryProxy(config.data)
1116     });
1117     this.load();
1118 };
1119 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
1120  * Based on:
1121  * Ext JS Library 1.1.1
1122  * Copyright(c) 2006-2007, Ext JS, LLC.
1123  *
1124  * Originally Released Under LGPL - original licence link has changed is not relivant.
1125  *
1126  * Fork - LGPL
1127  * <script type="text/javascript">
1128  */
1129
1130 /**
1131 /**
1132  * @extends Roo.data.Store
1133  * @class Roo.data.JsonStore
1134  * Small helper class to make creating Stores for JSON data easier. <br/>
1135 <pre><code>
1136 var store = new Roo.data.JsonStore({
1137     url: 'get-images.php',
1138     root: 'images',
1139     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
1140 });
1141 </code></pre>
1142  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
1143  * JsonReader and HttpProxy (unless inline data is provided).</b>
1144  * @cfg {Array} fields An array of field definition objects, or field name strings.
1145  * @constructor
1146  * @param {Object} config
1147  */
1148 Roo.data.JsonStore = function(c){
1149     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
1150         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
1151         reader: new Roo.data.JsonReader(c, c.fields)
1152     }));
1153 };
1154 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
1155  * Based on:
1156  * Ext JS Library 1.1.1
1157  * Copyright(c) 2006-2007, Ext JS, LLC.
1158  *
1159  * Originally Released Under LGPL - original licence link has changed is not relivant.
1160  *
1161  * Fork - LGPL
1162  * <script type="text/javascript">
1163  */
1164
1165  
1166 Roo.data.Field = function(config){
1167     if(typeof config == "string"){
1168         config = {name: config};
1169     }
1170     Roo.apply(this, config);
1171     
1172     if(!this.type){
1173         this.type = "auto";
1174     }
1175     
1176     var st = Roo.data.SortTypes;
1177     // named sortTypes are supported, here we look them up
1178     if(typeof this.sortType == "string"){
1179         this.sortType = st[this.sortType];
1180     }
1181     
1182     // set default sortType for strings and dates
1183     if(!this.sortType){
1184         switch(this.type){
1185             case "string":
1186                 this.sortType = st.asUCString;
1187                 break;
1188             case "date":
1189                 this.sortType = st.asDate;
1190                 break;
1191             default:
1192                 this.sortType = st.none;
1193         }
1194     }
1195
1196     // define once
1197     var stripRe = /[\$,%]/g;
1198
1199     // prebuilt conversion function for this field, instead of
1200     // switching every time we're reading a value
1201     if(!this.convert){
1202         var cv, dateFormat = this.dateFormat;
1203         switch(this.type){
1204             case "":
1205             case "auto":
1206             case undefined:
1207                 cv = function(v){ return v; };
1208                 break;
1209             case "string":
1210                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
1211                 break;
1212             case "int":
1213                 cv = function(v){
1214                     return v !== undefined && v !== null && v !== '' ?
1215                            parseInt(String(v).replace(stripRe, ""), 10) : '';
1216                     };
1217                 break;
1218             case "float":
1219                 cv = function(v){
1220                     return v !== undefined && v !== null && v !== '' ?
1221                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
1222                     };
1223                 break;
1224             case "bool":
1225             case "boolean":
1226                 cv = function(v){ return v === true || v === "true" || v == 1; };
1227                 break;
1228             case "date":
1229                 cv = function(v){
1230                     if(!v){
1231                         return '';
1232                     }
1233                     if(v instanceof Date){
1234                         return v;
1235                     }
1236                     if(dateFormat){
1237                         if(dateFormat == "timestamp"){
1238                             return new Date(v*1000);
1239                         }
1240                         return Date.parseDate(v, dateFormat);
1241                     }
1242                     var parsed = Date.parse(v);
1243                     return parsed ? new Date(parsed) : null;
1244                 };
1245              break;
1246             
1247         }
1248         this.convert = cv;
1249     }
1250 };
1251
1252 Roo.data.Field.prototype = {
1253     dateFormat: null,
1254     defaultValue: "",
1255     mapping: null,
1256     sortType : null,
1257     sortDir : "ASC"
1258 };/*
1259  * Based on:
1260  * Ext JS Library 1.1.1
1261  * Copyright(c) 2006-2007, Ext JS, LLC.
1262  *
1263  * Originally Released Under LGPL - original licence link has changed is not relivant.
1264  *
1265  * Fork - LGPL
1266  * <script type="text/javascript">
1267  */
1268  
1269 // Base class for reading structured data from a data source.  This class is intended to be
1270 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
1271
1272 /**
1273  * @class Roo.data.DataReader
1274  * Base class for reading structured data from a data source.  This class is intended to be
1275  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
1276  */
1277
1278 Roo.data.DataReader = function(meta, recordType){
1279     
1280     this.meta = meta;
1281     
1282     this.recordType = recordType instanceof Array ? 
1283         Roo.data.Record.create(recordType) : recordType;
1284 };
1285
1286 Roo.data.DataReader.prototype = {
1287     
1288     
1289     readerType : 'Data',
1290      /**
1291      * Create an empty record
1292      * @param {Object} data (optional) - overlay some values
1293      * @return {Roo.data.Record} record created.
1294      */
1295     newRow :  function(d) {
1296         var da =  {};
1297         this.recordType.prototype.fields.each(function(c) {
1298             switch( c.type) {
1299                 case 'int' : da[c.name] = 0; break;
1300                 case 'date' : da[c.name] = new Date(); break;
1301                 case 'float' : da[c.name] = 0.0; break;
1302                 case 'boolean' : da[c.name] = false; break;
1303                 default : da[c.name] = ""; break;
1304             }
1305             
1306         });
1307         return new this.recordType(Roo.apply(da, d));
1308     }
1309     
1310     
1311 };/*
1312  * Based on:
1313  * Ext JS Library 1.1.1
1314  * Copyright(c) 2006-2007, Ext JS, LLC.
1315  *
1316  * Originally Released Under LGPL - original licence link has changed is not relivant.
1317  *
1318  * Fork - LGPL
1319  * <script type="text/javascript">
1320  */
1321
1322 /**
1323  * @class Roo.data.DataProxy
1324  * @extends Roo.data.Observable
1325  * This class is an abstract base class for implementations which provide retrieval of
1326  * unformatted data objects.<br>
1327  * <p>
1328  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
1329  * (of the appropriate type which knows how to parse the data object) to provide a block of
1330  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
1331  * <p>
1332  * Custom implementations must implement the load method as described in
1333  * {@link Roo.data.HttpProxy#load}.
1334  */
1335 Roo.data.DataProxy = function(){
1336     this.addEvents({
1337         /**
1338          * @event beforeload
1339          * Fires before a network request is made to retrieve a data object.
1340          * @param {Object} This DataProxy object.
1341          * @param {Object} params The params parameter to the load function.
1342          */
1343         beforeload : true,
1344         /**
1345          * @event load
1346          * Fires before the load method's callback is called.
1347          * @param {Object} This DataProxy object.
1348          * @param {Object} o The data object.
1349          * @param {Object} arg The callback argument object passed to the load function.
1350          */
1351         load : true,
1352         /**
1353          * @event loadexception
1354          * Fires if an Exception occurs during data retrieval.
1355          * @param {Object} This DataProxy object.
1356          * @param {Object} o The data object.
1357          * @param {Object} arg The callback argument object passed to the load function.
1358          * @param {Object} e The Exception.
1359          */
1360         loadexception : true
1361     });
1362     Roo.data.DataProxy.superclass.constructor.call(this);
1363 };
1364
1365 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
1366
1367     /**
1368      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
1369      */
1370 /*
1371  * Based on:
1372  * Ext JS Library 1.1.1
1373  * Copyright(c) 2006-2007, Ext JS, LLC.
1374  *
1375  * Originally Released Under LGPL - original licence link has changed is not relivant.
1376  *
1377  * Fork - LGPL
1378  * <script type="text/javascript">
1379  */
1380 /**
1381  * @class Roo.data.MemoryProxy
1382  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
1383  * to the Reader when its load method is called.
1384  * @constructor
1385  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
1386  */
1387 Roo.data.MemoryProxy = function(data){
1388     if (data.data) {
1389         data = data.data;
1390     }
1391     Roo.data.MemoryProxy.superclass.constructor.call(this);
1392     this.data = data;
1393 };
1394
1395 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
1396     
1397     /**
1398      * Load data from the requested source (in this case an in-memory
1399      * data object passed to the constructor), read the data object into
1400      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
1401      * process that block using the passed callback.
1402      * @param {Object} params This parameter is not used by the MemoryProxy class.
1403      * @param {Roo.data.DataReader} reader The Reader object which converts the data
1404      * object into a block of Roo.data.Records.
1405      * @param {Function} callback The function into which to pass the block of Roo.data.records.
1406      * The function must be passed <ul>
1407      * <li>The Record block object</li>
1408      * <li>The "arg" argument from the load function</li>
1409      * <li>A boolean success indicator</li>
1410      * </ul>
1411      * @param {Object} scope The scope in which to call the callback
1412      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
1413      */
1414     load : function(params, reader, callback, scope, arg){
1415         params = params || {};
1416         var result;
1417         try {
1418             result = reader.readRecords(params.data ? params.data :this.data);
1419         }catch(e){
1420             this.fireEvent("loadexception", this, arg, null, e);
1421             callback.call(scope, null, arg, false);
1422             return;
1423         }
1424         callback.call(scope, result, arg, true);
1425     },
1426     
1427     // private
1428     update : function(params, records){
1429         
1430     }
1431 });/*
1432  * Based on:
1433  * Ext JS Library 1.1.1
1434  * Copyright(c) 2006-2007, Ext JS, LLC.
1435  *
1436  * Originally Released Under LGPL - original licence link has changed is not relivant.
1437  *
1438  * Fork - LGPL
1439  * <script type="text/javascript">
1440  */
1441 /**
1442  * @class Roo.data.HttpProxy
1443  * @extends Roo.data.DataProxy
1444  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
1445  * configured to reference a certain URL.<br><br>
1446  * <p>
1447  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
1448  * from which the running page was served.<br><br>
1449  * <p>
1450  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
1451  * <p>
1452  * Be aware that to enable the browser to parse an XML document, the server must set
1453  * the Content-Type header in the HTTP response to "text/xml".
1454  * @constructor
1455  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
1456  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
1457  * will be used to make the request.
1458  */
1459 Roo.data.HttpProxy = function(conn){
1460     Roo.data.HttpProxy.superclass.constructor.call(this);
1461     // is conn a conn config or a real conn?
1462     this.conn = conn;
1463     this.useAjax = !conn || !conn.events;
1464   
1465 };
1466
1467 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
1468     // thse are take from connection...
1469     
1470     /**
1471      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
1472      */
1473     /**
1474      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
1475      * extra parameters to each request made by this object. (defaults to undefined)
1476      */
1477     /**
1478      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
1479      *  to each request made by this object. (defaults to undefined)
1480      */
1481     /**
1482      * @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)
1483      */
1484     /**
1485      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
1486      */
1487      /**
1488      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
1489      * @type Boolean
1490      */
1491   
1492
1493     /**
1494      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
1495      * @type Boolean
1496      */
1497     /**
1498      * Return the {@link Roo.data.Connection} object being used by this Proxy.
1499      * @return {Connection} The Connection object. This object may be used to subscribe to events on
1500      * a finer-grained basis than the DataProxy events.
1501      */
1502     getConnection : function(){
1503         return this.useAjax ? Roo.Ajax : this.conn;
1504     },
1505
1506     /**
1507      * Load data from the configured {@link Roo.data.Connection}, read the data object into
1508      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
1509      * process that block using the passed callback.
1510      * @param {Object} params An object containing properties which are to be used as HTTP parameters
1511      * for the request to the remote server.
1512      * @param {Roo.data.DataReader} reader The Reader object which converts the data
1513      * object into a block of Roo.data.Records.
1514      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
1515      * The function must be passed <ul>
1516      * <li>The Record block object</li>
1517      * <li>The "arg" argument from the load function</li>
1518      * <li>A boolean success indicator</li>
1519      * </ul>
1520      * @param {Object} scope The scope in which to call the callback
1521      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
1522      */
1523     load : function(params, reader, callback, scope, arg){
1524         if(this.fireEvent("beforeload", this, params) !== false){
1525             var  o = {
1526                 params : params || {},
1527                 request: {
1528                     callback : callback,
1529                     scope : scope,
1530                     arg : arg
1531                 },
1532                 reader: reader,
1533                 callback : this.loadResponse,
1534                 scope: this
1535             };
1536             if(this.useAjax){
1537                 Roo.applyIf(o, this.conn);
1538                 if(this.activeRequest){
1539                     Roo.Ajax.abort(this.activeRequest);
1540                 }
1541                 this.activeRequest = Roo.Ajax.request(o);
1542             }else{
1543                 this.conn.request(o);
1544             }
1545         }else{
1546             callback.call(scope||this, null, arg, false);
1547         }
1548     },
1549
1550     // private
1551     loadResponse : function(o, success, response){
1552         delete this.activeRequest;
1553         if(!success){
1554             this.fireEvent("loadexception", this, o, response);
1555             o.request.callback.call(o.request.scope, null, o.request.arg, false);
1556             return;
1557         }
1558         var result;
1559         try {
1560             result = o.reader.read(response);
1561         }catch(e){
1562             this.fireEvent("loadexception", this, o, response, e);
1563             o.request.callback.call(o.request.scope, null, o.request.arg, false);
1564             return;
1565         }
1566         
1567         this.fireEvent("load", this, o, o.request.arg);
1568         o.request.callback.call(o.request.scope, result, o.request.arg, true);
1569     },
1570
1571     // private
1572     update : function(dataSet){
1573
1574     },
1575
1576     // private
1577     updateResponse : function(dataSet){
1578
1579     }
1580 });/*
1581  * Based on:
1582  * Ext JS Library 1.1.1
1583  * Copyright(c) 2006-2007, Ext JS, LLC.
1584  *
1585  * Originally Released Under LGPL - original licence link has changed is not relivant.
1586  *
1587  * Fork - LGPL
1588  * <script type="text/javascript">
1589  */
1590
1591 /**
1592  * @class Roo.data.ScriptTagProxy
1593  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
1594  * other than the originating domain of the running page.<br><br>
1595  * <p>
1596  * <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
1597  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
1598  * <p>
1599  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
1600  * source code that is used as the source inside a &lt;script> tag.<br><br>
1601  * <p>
1602  * In order for the browser to process the returned data, the server must wrap the data object
1603  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
1604  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
1605  * depending on whether the callback name was passed:
1606  * <p>
1607  * <pre><code>
1608 boolean scriptTag = false;
1609 String cb = request.getParameter("callback");
1610 if (cb != null) {
1611     scriptTag = true;
1612     response.setContentType("text/javascript");
1613 } else {
1614     response.setContentType("application/x-json");
1615 }
1616 Writer out = response.getWriter();
1617 if (scriptTag) {
1618     out.write(cb + "(");
1619 }
1620 out.print(dataBlock.toJsonString());
1621 if (scriptTag) {
1622     out.write(");");
1623 }
1624 </pre></code>
1625  *
1626  * @constructor
1627  * @param {Object} config A configuration object.
1628  */
1629 Roo.data.ScriptTagProxy = function(config){
1630     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
1631     Roo.apply(this, config);
1632     this.head = document.getElementsByTagName("head")[0];
1633 };
1634
1635 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
1636
1637 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
1638     /**
1639      * @cfg {String} url The URL from which to request the data object.
1640      */
1641     /**
1642      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
1643      */
1644     timeout : 30000,
1645     /**
1646      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
1647      * the server the name of the callback function set up by the load call to process the returned data object.
1648      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
1649      * javascript output which calls this named function passing the data object as its only parameter.
1650      */
1651     callbackParam : "callback",
1652     /**
1653      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
1654      * name to the request.
1655      */
1656     nocache : true,
1657
1658     /**
1659      * Load data from the configured URL, read the data object into
1660      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
1661      * process that block using the passed callback.
1662      * @param {Object} params An object containing properties which are to be used as HTTP parameters
1663      * for the request to the remote server.
1664      * @param {Roo.data.DataReader} reader The Reader object which converts the data
1665      * object into a block of Roo.data.Records.
1666      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
1667      * The function must be passed <ul>
1668      * <li>The Record block object</li>
1669      * <li>The "arg" argument from the load function</li>
1670      * <li>A boolean success indicator</li>
1671      * </ul>
1672      * @param {Object} scope The scope in which to call the callback
1673      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
1674      */
1675     load : function(params, reader, callback, scope, arg){
1676         if(this.fireEvent("beforeload", this, params) !== false){
1677
1678             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
1679
1680             var url = this.url;
1681             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
1682             if(this.nocache){
1683                 url += "&_dc=" + (new Date().getTime());
1684             }
1685             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
1686             var trans = {
1687                 id : transId,
1688                 cb : "stcCallback"+transId,
1689                 scriptId : "stcScript"+transId,
1690                 params : params,
1691                 arg : arg,
1692                 url : url,
1693                 callback : callback,
1694                 scope : scope,
1695                 reader : reader
1696             };
1697             var conn = this;
1698
1699             window[trans.cb] = function(o){
1700                 conn.handleResponse(o, trans);
1701             };
1702
1703             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
1704
1705             if(this.autoAbort !== false){
1706                 this.abort();
1707             }
1708
1709             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
1710
1711             var script = document.createElement("script");
1712             script.setAttribute("src", url);
1713             script.setAttribute("type", "text/javascript");
1714             script.setAttribute("id", trans.scriptId);
1715             this.head.appendChild(script);
1716
1717             this.trans = trans;
1718         }else{
1719             callback.call(scope||this, null, arg, false);
1720         }
1721     },
1722
1723     // private
1724     isLoading : function(){
1725         return this.trans ? true : false;
1726     },
1727
1728     /**
1729      * Abort the current server request.
1730      */
1731     abort : function(){
1732         if(this.isLoading()){
1733             this.destroyTrans(this.trans);
1734         }
1735     },
1736
1737     // private
1738     destroyTrans : function(trans, isLoaded){
1739         this.head.removeChild(document.getElementById(trans.scriptId));
1740         clearTimeout(trans.timeoutId);
1741         if(isLoaded){
1742             window[trans.cb] = undefined;
1743             try{
1744                 delete window[trans.cb];
1745             }catch(e){}
1746         }else{
1747             // if hasn't been loaded, wait for load to remove it to prevent script error
1748             window[trans.cb] = function(){
1749                 window[trans.cb] = undefined;
1750                 try{
1751                     delete window[trans.cb];
1752                 }catch(e){}
1753             };
1754         }
1755     },
1756
1757     // private
1758     handleResponse : function(o, trans){
1759         this.trans = false;
1760         this.destroyTrans(trans, true);
1761         var result;
1762         try {
1763             result = trans.reader.readRecords(o);
1764         }catch(e){
1765             this.fireEvent("loadexception", this, o, trans.arg, e);
1766             trans.callback.call(trans.scope||window, null, trans.arg, false);
1767             return;
1768         }
1769         this.fireEvent("load", this, o, trans.arg);
1770         trans.callback.call(trans.scope||window, result, trans.arg, true);
1771     },
1772
1773     // private
1774     handleFailure : function(trans){
1775         this.trans = false;
1776         this.destroyTrans(trans, false);
1777         this.fireEvent("loadexception", this, null, trans.arg);
1778         trans.callback.call(trans.scope||window, null, trans.arg, false);
1779     }
1780 });/*
1781  * Based on:
1782  * Ext JS Library 1.1.1
1783  * Copyright(c) 2006-2007, Ext JS, LLC.
1784  *
1785  * Originally Released Under LGPL - original licence link has changed is not relivant.
1786  *
1787  * Fork - LGPL
1788  * <script type="text/javascript">
1789  */
1790
1791 /**
1792  * @class Roo.data.JsonReader
1793  * @extends Roo.data.DataReader
1794  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
1795  * based on mappings in a provided Roo.data.Record constructor.
1796  * 
1797  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
1798  * in the reply previously. 
1799  * 
1800  * <p>
1801  * Example code:
1802  * <pre><code>
1803 var RecordDef = Roo.data.Record.create([
1804     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
1805     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
1806 ]);
1807 var myReader = new Roo.data.JsonReader({
1808     totalProperty: "results",    // The property which contains the total dataset size (optional)
1809     root: "rows",                // The property which contains an Array of row objects
1810     id: "id"                     // The property within each row object that provides an ID for the record (optional)
1811 }, RecordDef);
1812 </code></pre>
1813  * <p>
1814  * This would consume a JSON file like this:
1815  * <pre><code>
1816 { 'results': 2, 'rows': [
1817     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
1818     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
1819 }
1820 </code></pre>
1821  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
1822  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
1823  * paged from the remote server.
1824  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
1825  * @cfg {String} root name of the property which contains the Array of row objects.
1826  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
1827  * @cfg {Array} fields Array of field definition objects
1828  * @constructor
1829  * Create a new JsonReader
1830  * @param {Object} meta Metadata configuration options
1831  * @param {Object} recordType Either an Array of field definition objects,
1832  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
1833  */
1834 Roo.data.JsonReader = function(meta, recordType){
1835     
1836     meta = meta || {};
1837     // set some defaults:
1838     Roo.applyIf(meta, {
1839         totalProperty: 'total',
1840         successProperty : 'success',
1841         root : 'data',
1842         id : 'id'
1843     });
1844     
1845     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
1846 };
1847 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
1848     
1849     readerType : 'Json',
1850     
1851     /**
1852      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
1853      * Used by Store query builder to append _requestMeta to params.
1854      * 
1855      */
1856     metaFromRemote : false,
1857     /**
1858      * This method is only used by a DataProxy which has retrieved data from a remote server.
1859      * @param {Object} response The XHR object which contains the JSON data in its responseText.
1860      * @return {Object} data A data block which is used by an Roo.data.Store object as
1861      * a cache of Roo.data.Records.
1862      */
1863     read : function(response){
1864         var json = response.responseText;
1865        
1866         var o = /* eval:var:o */ eval("("+json+")");
1867         if(!o) {
1868             throw {message: "JsonReader.read: Json object not found"};
1869         }
1870         
1871         if(o.metaData){
1872             
1873             delete this.ef;
1874             this.metaFromRemote = true;
1875             this.meta = o.metaData;
1876             this.recordType = Roo.data.Record.create(o.metaData.fields);
1877             this.onMetaChange(this.meta, this.recordType, o);
1878         }
1879         return this.readRecords(o);
1880     },
1881
1882     // private function a store will implement
1883     onMetaChange : function(meta, recordType, o){
1884
1885     },
1886
1887     /**
1888          * @ignore
1889          */
1890     simpleAccess: function(obj, subsc) {
1891         return obj[subsc];
1892     },
1893
1894         /**
1895          * @ignore
1896          */
1897     getJsonAccessor: function(){
1898         var re = /[\[\.]/;
1899         return function(expr) {
1900             try {
1901                 return(re.test(expr))
1902                     ? new Function("obj", "return obj." + expr)
1903                     : function(obj){
1904                         return obj[expr];
1905                     };
1906             } catch(e){}
1907             return Roo.emptyFn;
1908         };
1909     }(),
1910
1911     /**
1912      * Create a data block containing Roo.data.Records from an XML document.
1913      * @param {Object} o An object which contains an Array of row objects in the property specified
1914      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
1915      * which contains the total size of the dataset.
1916      * @return {Object} data A data block which is used by an Roo.data.Store object as
1917      * a cache of Roo.data.Records.
1918      */
1919     readRecords : function(o){
1920         /**
1921          * After any data loads, the raw JSON data is available for further custom processing.
1922          * @type Object
1923          */
1924         this.o = o;
1925         var s = this.meta, Record = this.recordType,
1926             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
1927
1928 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
1929         if (!this.ef) {
1930             if(s.totalProperty) {
1931                     this.getTotal = this.getJsonAccessor(s.totalProperty);
1932                 }
1933                 if(s.successProperty) {
1934                     this.getSuccess = this.getJsonAccessor(s.successProperty);
1935                 }
1936                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
1937                 if (s.id) {
1938                         var g = this.getJsonAccessor(s.id);
1939                         this.getId = function(rec) {
1940                                 var r = g(rec);  
1941                                 return (r === undefined || r === "") ? null : r;
1942                         };
1943                 } else {
1944                         this.getId = function(){return null;};
1945                 }
1946             this.ef = [];
1947             for(var jj = 0; jj < fl; jj++){
1948                 f = fi[jj];
1949                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
1950                 this.ef[jj] = this.getJsonAccessor(map);
1951             }
1952         }
1953
1954         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
1955         if(s.totalProperty){
1956             var vt = parseInt(this.getTotal(o), 10);
1957             if(!isNaN(vt)){
1958                 totalRecords = vt;
1959             }
1960         }
1961         if(s.successProperty){
1962             var vs = this.getSuccess(o);
1963             if(vs === false || vs === 'false'){
1964                 success = false;
1965             }
1966         }
1967         var records = [];
1968         for(var i = 0; i < c; i++){
1969                 var n = root[i];
1970             var values = {};
1971             var id = this.getId(n);
1972             for(var j = 0; j < fl; j++){
1973                 f = fi[j];
1974             var v = this.ef[j](n);
1975             if (!f.convert) {
1976                 Roo.log('missing convert for ' + f.name);
1977                 Roo.log(f);
1978                 continue;
1979             }
1980             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
1981             }
1982             var record = new Record(values, id);
1983             record.json = n;
1984             records[i] = record;
1985         }
1986         return {
1987             raw : o,
1988             success : success,
1989             records : records,
1990             totalRecords : totalRecords
1991         };
1992     },
1993     // used when loading children.. @see loadDataFromChildren
1994     toLoadData: function(rec)
1995     {
1996         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
1997         var data = typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
1998         return { data : data, total : data.length };
1999         
2000     }
2001 });/*
2002  * Based on:
2003  * Ext JS Library 1.1.1
2004  * Copyright(c) 2006-2007, Ext JS, LLC.
2005  *
2006  * Originally Released Under LGPL - original licence link has changed is not relivant.
2007  *
2008  * Fork - LGPL
2009  * <script type="text/javascript">
2010  */
2011
2012 /**
2013  * @class Roo.data.XmlReader
2014  * @extends Roo.data.DataReader
2015  * Data reader class to create an Array of {@link Roo.data.Record} objects from an XML document
2016  * based on mappings in a provided Roo.data.Record constructor.<br><br>
2017  * <p>
2018  * <em>Note that in order for the browser to parse a returned XML document, the Content-Type
2019  * header in the HTTP response must be set to "text/xml".</em>
2020  * <p>
2021  * Example code:
2022  * <pre><code>
2023 var RecordDef = Roo.data.Record.create([
2024    {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
2025    {name: 'occupation'}                 // This field will use "occupation" as the mapping.
2026 ]);
2027 var myReader = new Roo.data.XmlReader({
2028    totalRecords: "results", // The element which contains the total dataset size (optional)
2029    record: "row",           // The repeated element which contains row information
2030    id: "id"                 // The element within the row that provides an ID for the record (optional)
2031 }, RecordDef);
2032 </code></pre>
2033  * <p>
2034  * This would consume an XML file like this:
2035  * <pre><code>
2036 &lt;?xml?>
2037 &lt;dataset>
2038  &lt;results>2&lt;/results>
2039  &lt;row>
2040    &lt;id>1&lt;/id>
2041    &lt;name>Bill&lt;/name>
2042    &lt;occupation>Gardener&lt;/occupation>
2043  &lt;/row>
2044  &lt;row>
2045    &lt;id>2&lt;/id>
2046    &lt;name>Ben&lt;/name>
2047    &lt;occupation>Horticulturalist&lt;/occupation>
2048  &lt;/row>
2049 &lt;/dataset>
2050 </code></pre>
2051  * @cfg {String} totalRecords The DomQuery path from which to retrieve the total number of records
2052  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
2053  * paged from the remote server.
2054  * @cfg {String} record The DomQuery path to the repeated element which contains record information.
2055  * @cfg {String} success The DomQuery path to the success attribute used by forms.
2056  * @cfg {String} id The DomQuery path relative from the record element to the element that contains
2057  * a record identifier value.
2058  * @constructor
2059  * Create a new XmlReader
2060  * @param {Object} meta Metadata configuration options
2061  * @param {Mixed} recordType The definition of the data record type to produce.  This can be either a valid
2062  * Record subclass created with {@link Roo.data.Record#create}, or an array of objects with which to call
2063  * Roo.data.Record.create.  See the {@link Roo.data.Record} class for more details.
2064  */
2065 Roo.data.XmlReader = function(meta, recordType){
2066     meta = meta || {};
2067     Roo.data.XmlReader.superclass.constructor.call(this, meta, recordType||meta.fields);
2068 };
2069 Roo.extend(Roo.data.XmlReader, Roo.data.DataReader, {
2070     
2071     readerType : 'Xml',
2072     
2073     /**
2074      * This method is only used by a DataProxy which has retrieved data from a remote server.
2075          * @param {Object} response The XHR object which contains the parsed XML document.  The response is expected
2076          * to contain a method called 'responseXML' that returns an XML document object.
2077      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
2078      * a cache of Roo.data.Records.
2079      */
2080     read : function(response){
2081         var doc = response.responseXML;
2082         if(!doc) {
2083             throw {message: "XmlReader.read: XML Document not available"};
2084         }
2085         return this.readRecords(doc);
2086     },
2087
2088     /**
2089      * Create a data block containing Roo.data.Records from an XML document.
2090          * @param {Object} doc A parsed XML document.
2091      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
2092      * a cache of Roo.data.Records.
2093      */
2094     readRecords : function(doc){
2095         /**
2096          * After any data loads/reads, the raw XML Document is available for further custom processing.
2097          * @type XMLDocument
2098          */
2099         this.xmlData = doc;
2100         var root = doc.documentElement || doc;
2101         var q = Roo.DomQuery;
2102         var recordType = this.recordType, fields = recordType.prototype.fields;
2103         var sid = this.meta.id;
2104         var totalRecords = 0, success = true;
2105         if(this.meta.totalRecords){
2106             totalRecords = q.selectNumber(this.meta.totalRecords, root, 0);
2107         }
2108         
2109         if(this.meta.success){
2110             var sv = q.selectValue(this.meta.success, root, true);
2111             success = sv !== false && sv !== 'false';
2112         }
2113         var records = [];
2114         var ns = q.select(this.meta.record, root);
2115         for(var i = 0, len = ns.length; i < len; i++) {
2116                 var n = ns[i];
2117                 var values = {};
2118                 var id = sid ? q.selectValue(sid, n) : undefined;
2119                 for(var j = 0, jlen = fields.length; j < jlen; j++){
2120                     var f = fields.items[j];
2121                 var v = q.selectValue(f.mapping || f.name, n, f.defaultValue);
2122                     v = f.convert(v);
2123                     values[f.name] = v;
2124                 }
2125                 var record = new recordType(values, id);
2126                 record.node = n;
2127                 records[records.length] = record;
2128             }
2129
2130             return {
2131                 success : success,
2132                 records : records,
2133                 totalRecords : totalRecords || records.length
2134             };
2135     }
2136 });/*
2137  * Based on:
2138  * Ext JS Library 1.1.1
2139  * Copyright(c) 2006-2007, Ext JS, LLC.
2140  *
2141  * Originally Released Under LGPL - original licence link has changed is not relivant.
2142  *
2143  * Fork - LGPL
2144  * <script type="text/javascript">
2145  */
2146
2147 /**
2148  * @class Roo.data.ArrayReader
2149  * @extends Roo.data.DataReader
2150  * Data reader class to create an Array of Roo.data.Record objects from an Array.
2151  * Each element of that Array represents a row of data fields. The
2152  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
2153  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
2154  * <p>
2155  * Example code:.
2156  * <pre><code>
2157 var RecordDef = Roo.data.Record.create([
2158     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
2159     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
2160 ]);
2161 var myReader = new Roo.data.ArrayReader({
2162     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
2163 }, RecordDef);
2164 </code></pre>
2165  * <p>
2166  * This would consume an Array like this:
2167  * <pre><code>
2168 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
2169   </code></pre>
2170  
2171  * @constructor
2172  * Create a new JsonReader
2173  * @param {Object} meta Metadata configuration options.
2174  * @param {Object|Array} recordType Either an Array of field definition objects
2175  * 
2176  * @cfg {Array} fields Array of field definition objects
2177  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
2178  * as specified to {@link Roo.data.Record#create},
2179  * or an {@link Roo.data.Record} object
2180  *
2181  * 
2182  * created using {@link Roo.data.Record#create}.
2183  */
2184 Roo.data.ArrayReader = function(meta, recordType)
2185 {    
2186     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
2187 };
2188
2189 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
2190     
2191       /**
2192      * Create a data block containing Roo.data.Records from an XML document.
2193      * @param {Object} o An Array of row objects which represents the dataset.
2194      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
2195      * a cache of Roo.data.Records.
2196      */
2197     readRecords : function(o)
2198     {
2199         var sid = this.meta ? this.meta.id : null;
2200         var recordType = this.recordType, fields = recordType.prototype.fields;
2201         var records = [];
2202         var root = o;
2203         for(var i = 0; i < root.length; i++){
2204                 var n = root[i];
2205             var values = {};
2206             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
2207             for(var j = 0, jlen = fields.length; j < jlen; j++){
2208                 var f = fields.items[j];
2209                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
2210                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
2211                 v = f.convert(v);
2212                 values[f.name] = v;
2213             }
2214             var record = new recordType(values, id);
2215             record.json = n;
2216             records[records.length] = record;
2217         }
2218         return {
2219             records : records,
2220             totalRecords : records.length
2221         };
2222     },
2223     // used when loading children.. @see loadDataFromChildren
2224     toLoadData: function(rec)
2225     {
2226         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
2227         return typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
2228         
2229     }
2230     
2231     
2232 });/*
2233  * Based on:
2234  * Ext JS Library 1.1.1
2235  * Copyright(c) 2006-2007, Ext JS, LLC.
2236  *
2237  * Originally Released Under LGPL - original licence link has changed is not relivant.
2238  *
2239  * Fork - LGPL
2240  * <script type="text/javascript">
2241  */
2242
2243
2244 /**
2245  * @class Roo.data.Tree
2246  * @extends Roo.util.Observable
2247  * Represents a tree data structure and bubbles all the events for its nodes. The nodes
2248  * in the tree have most standard DOM functionality.
2249  * @constructor
2250  * @param {Node} root (optional) The root node
2251  */
2252 Roo.data.Tree = function(root){
2253    this.nodeHash = {};
2254    /**
2255     * The root node for this tree
2256     * @type Node
2257     */
2258    this.root = null;
2259    if(root){
2260        this.setRootNode(root);
2261    }
2262    this.addEvents({
2263        /**
2264         * @event append
2265         * Fires when a new child node is appended to a node in this tree.
2266         * @param {Tree} tree The owner tree
2267         * @param {Node} parent The parent node
2268         * @param {Node} node The newly appended node
2269         * @param {Number} index The index of the newly appended node
2270         */
2271        "append" : true,
2272        /**
2273         * @event remove
2274         * Fires when a child node is removed from a node in this tree.
2275         * @param {Tree} tree The owner tree
2276         * @param {Node} parent The parent node
2277         * @param {Node} node The child node removed
2278         */
2279        "remove" : true,
2280        /**
2281         * @event move
2282         * Fires when a node is moved to a new location in the tree
2283         * @param {Tree} tree The owner tree
2284         * @param {Node} node The node moved
2285         * @param {Node} oldParent The old parent of this node
2286         * @param {Node} newParent The new parent of this node
2287         * @param {Number} index The index it was moved to
2288         */
2289        "move" : true,
2290        /**
2291         * @event insert
2292         * Fires when a new child node is inserted in a node in this tree.
2293         * @param {Tree} tree The owner tree
2294         * @param {Node} parent The parent node
2295         * @param {Node} node The child node inserted
2296         * @param {Node} refNode The child node the node was inserted before
2297         */
2298        "insert" : true,
2299        /**
2300         * @event beforeappend
2301         * Fires before a new child is appended to a node in this tree, return false to cancel the append.
2302         * @param {Tree} tree The owner tree
2303         * @param {Node} parent The parent node
2304         * @param {Node} node The child node to be appended
2305         */
2306        "beforeappend" : true,
2307        /**
2308         * @event beforeremove
2309         * Fires before a child is removed from a node in this tree, return false to cancel the remove.
2310         * @param {Tree} tree The owner tree
2311         * @param {Node} parent The parent node
2312         * @param {Node} node The child node to be removed
2313         */
2314        "beforeremove" : true,
2315        /**
2316         * @event beforemove
2317         * Fires before a node is moved to a new location in the tree. Return false to cancel the move.
2318         * @param {Tree} tree The owner tree
2319         * @param {Node} node The node being moved
2320         * @param {Node} oldParent The parent of the node
2321         * @param {Node} newParent The new parent the node is moving to
2322         * @param {Number} index The index it is being moved to
2323         */
2324        "beforemove" : true,
2325        /**
2326         * @event beforeinsert
2327         * Fires before a new child is inserted in a node in this tree, return false to cancel the insert.
2328         * @param {Tree} tree The owner tree
2329         * @param {Node} parent The parent node
2330         * @param {Node} node The child node to be inserted
2331         * @param {Node} refNode The child node the node is being inserted before
2332         */
2333        "beforeinsert" : true
2334    });
2335
2336     Roo.data.Tree.superclass.constructor.call(this);
2337 };
2338
2339 Roo.extend(Roo.data.Tree, Roo.util.Observable, {
2340     pathSeparator: "/",
2341
2342     proxyNodeEvent : function(){
2343         return this.fireEvent.apply(this, arguments);
2344     },
2345
2346     /**
2347      * Returns the root node for this tree.
2348      * @return {Node}
2349      */
2350     getRootNode : function(){
2351         return this.root;
2352     },
2353
2354     /**
2355      * Sets the root node for this tree.
2356      * @param {Node} node
2357      * @return {Node}
2358      */
2359     setRootNode : function(node){
2360         this.root = node;
2361         node.ownerTree = this;
2362         node.isRoot = true;
2363         this.registerNode(node);
2364         return node;
2365     },
2366
2367     /**
2368      * Gets a node in this tree by its id.
2369      * @param {String} id
2370      * @return {Node}
2371      */
2372     getNodeById : function(id){
2373         return this.nodeHash[id];
2374     },
2375
2376     registerNode : function(node){
2377         this.nodeHash[node.id] = node;
2378     },
2379
2380     unregisterNode : function(node){
2381         delete this.nodeHash[node.id];
2382     },
2383
2384     toString : function(){
2385         return "[Tree"+(this.id?" "+this.id:"")+"]";
2386     }
2387 });
2388
2389 /**
2390  * @class Roo.data.Node
2391  * @extends Roo.util.Observable
2392  * @cfg {Boolean} leaf true if this node is a leaf and does not have children
2393  * @cfg {String} id The id for this node. If one is not specified, one is generated.
2394  * @constructor
2395  * @param {Object} attributes The attributes/config for the node
2396  */
2397 Roo.data.Node = function(attributes){
2398     /**
2399      * The attributes supplied for the node. You can use this property to access any custom attributes you supplied.
2400      * @type {Object}
2401      */
2402     this.attributes = attributes || {};
2403     this.leaf = this.attributes.leaf;
2404     /**
2405      * The node id. @type String
2406      */
2407     this.id = this.attributes.id;
2408     if(!this.id){
2409         this.id = Roo.id(null, "ynode-");
2410         this.attributes.id = this.id;
2411     }
2412      
2413     
2414     /**
2415      * All child nodes of this node. @type Array
2416      */
2417     this.childNodes = [];
2418     if(!this.childNodes.indexOf){ // indexOf is a must
2419         this.childNodes.indexOf = function(o){
2420             for(var i = 0, len = this.length; i < len; i++){
2421                 if(this[i] == o) {
2422                     return i;
2423                 }
2424             }
2425             return -1;
2426         };
2427     }
2428     /**
2429      * The parent node for this node. @type Node
2430      */
2431     this.parentNode = null;
2432     /**
2433      * The first direct child node of this node, or null if this node has no child nodes. @type Node
2434      */
2435     this.firstChild = null;
2436     /**
2437      * The last direct child node of this node, or null if this node has no child nodes. @type Node
2438      */
2439     this.lastChild = null;
2440     /**
2441      * The node immediately preceding this node in the tree, or null if there is no sibling node. @type Node
2442      */
2443     this.previousSibling = null;
2444     /**
2445      * The node immediately following this node in the tree, or null if there is no sibling node. @type Node
2446      */
2447     this.nextSibling = null;
2448
2449     this.addEvents({
2450        /**
2451         * @event append
2452         * Fires when a new child node is appended
2453         * @param {Tree} tree The owner tree
2454         * @param {Node} this This node
2455         * @param {Node} node The newly appended node
2456         * @param {Number} index The index of the newly appended node
2457         */
2458        "append" : true,
2459        /**
2460         * @event remove
2461         * Fires when a child node is removed
2462         * @param {Tree} tree The owner tree
2463         * @param {Node} this This node
2464         * @param {Node} node The removed node
2465         */
2466        "remove" : true,
2467        /**
2468         * @event move
2469         * Fires when this node is moved to a new location in the tree
2470         * @param {Tree} tree The owner tree
2471         * @param {Node} this This node
2472         * @param {Node} oldParent The old parent of this node
2473         * @param {Node} newParent The new parent of this node
2474         * @param {Number} index The index it was moved to
2475         */
2476        "move" : true,
2477        /**
2478         * @event insert
2479         * Fires when a new child node is inserted.
2480         * @param {Tree} tree The owner tree
2481         * @param {Node} this This node
2482         * @param {Node} node The child node inserted
2483         * @param {Node} refNode The child node the node was inserted before
2484         */
2485        "insert" : true,
2486        /**
2487         * @event beforeappend
2488         * Fires before a new child is appended, return false to cancel the append.
2489         * @param {Tree} tree The owner tree
2490         * @param {Node} this This node
2491         * @param {Node} node The child node to be appended
2492         */
2493        "beforeappend" : true,
2494        /**
2495         * @event beforeremove
2496         * Fires before a child is removed, return false to cancel the remove.
2497         * @param {Tree} tree The owner tree
2498         * @param {Node} this This node
2499         * @param {Node} node The child node to be removed
2500         */
2501        "beforeremove" : true,
2502        /**
2503         * @event beforemove
2504         * Fires before this node is moved to a new location in the tree. Return false to cancel the move.
2505         * @param {Tree} tree The owner tree
2506         * @param {Node} this This node
2507         * @param {Node} oldParent The parent of this node
2508         * @param {Node} newParent The new parent this node is moving to
2509         * @param {Number} index The index it is being moved to
2510         */
2511        "beforemove" : true,
2512        /**
2513         * @event beforeinsert
2514         * Fires before a new child is inserted, return false to cancel the insert.
2515         * @param {Tree} tree The owner tree
2516         * @param {Node} this This node
2517         * @param {Node} node The child node to be inserted
2518         * @param {Node} refNode The child node the node is being inserted before
2519         */
2520        "beforeinsert" : true
2521    });
2522     this.listeners = this.attributes.listeners;
2523     Roo.data.Node.superclass.constructor.call(this);
2524 };
2525
2526 Roo.extend(Roo.data.Node, Roo.util.Observable, {
2527     fireEvent : function(evtName){
2528         // first do standard event for this node
2529         if(Roo.data.Node.superclass.fireEvent.apply(this, arguments) === false){
2530             return false;
2531         }
2532         // then bubble it up to the tree if the event wasn't cancelled
2533         var ot = this.getOwnerTree();
2534         if(ot){
2535             if(ot.proxyNodeEvent.apply(ot, arguments) === false){
2536                 return false;
2537             }
2538         }
2539         return true;
2540     },
2541
2542     /**
2543      * Returns true if this node is a leaf
2544      * @return {Boolean}
2545      */
2546     isLeaf : function(){
2547         return this.leaf === true;
2548     },
2549
2550     // private
2551     setFirstChild : function(node){
2552         this.firstChild = node;
2553     },
2554
2555     //private
2556     setLastChild : function(node){
2557         this.lastChild = node;
2558     },
2559
2560
2561     /**
2562      * Returns true if this node is the last child of its parent
2563      * @return {Boolean}
2564      */
2565     isLast : function(){
2566        return (!this.parentNode ? true : this.parentNode.lastChild == this);
2567     },
2568
2569     /**
2570      * Returns true if this node is the first child of its parent
2571      * @return {Boolean}
2572      */
2573     isFirst : function(){
2574        return (!this.parentNode ? true : this.parentNode.firstChild == this);
2575     },
2576
2577     hasChildNodes : function(){
2578         return !this.isLeaf() && this.childNodes.length > 0;
2579     },
2580
2581     /**
2582      * Insert node(s) as the last child node of this node.
2583      * @param {Node/Array} node The node or Array of nodes to append
2584      * @return {Node} The appended node if single append, or null if an array was passed
2585      */
2586     appendChild : function(node){
2587         var multi = false;
2588         if(node instanceof Array){
2589             multi = node;
2590         }else if(arguments.length > 1){
2591             multi = arguments;
2592         }
2593         
2594         // if passed an array or multiple args do them one by one
2595         if(multi){
2596             for(var i = 0, len = multi.length; i < len; i++) {
2597                 this.appendChild(multi[i]);
2598             }
2599         }else{
2600             if(this.fireEvent("beforeappend", this.ownerTree, this, node) === false){
2601                 return false;
2602             }
2603             var index = this.childNodes.length;
2604             var oldParent = node.parentNode;
2605             // it's a move, make sure we move it cleanly
2606             if(oldParent){
2607                 if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index) === false){
2608                     return false;
2609                 }
2610                 oldParent.removeChild(node);
2611             }
2612             
2613             index = this.childNodes.length;
2614             if(index == 0){
2615                 this.setFirstChild(node);
2616             }
2617             this.childNodes.push(node);
2618             node.parentNode = this;
2619             var ps = this.childNodes[index-1];
2620             if(ps){
2621                 node.previousSibling = ps;
2622                 ps.nextSibling = node;
2623             }else{
2624                 node.previousSibling = null;
2625             }
2626             node.nextSibling = null;
2627             this.setLastChild(node);
2628             node.setOwnerTree(this.getOwnerTree());
2629             this.fireEvent("append", this.ownerTree, this, node, index);
2630             if(this.ownerTree) {
2631                 this.ownerTree.fireEvent("appendnode", this, node, index);
2632             }
2633             if(oldParent){
2634                 node.fireEvent("move", this.ownerTree, node, oldParent, this, index);
2635             }
2636             return node;
2637         }
2638     },
2639
2640     /**
2641      * Removes a child node from this node.
2642      * @param {Node} node The node to remove
2643      * @return {Node} The removed node
2644      */
2645     removeChild : function(node){
2646         var index = this.childNodes.indexOf(node);
2647         if(index == -1){
2648             return false;
2649         }
2650         if(this.fireEvent("beforeremove", this.ownerTree, this, node) === false){
2651             return false;
2652         }
2653
2654         // remove it from childNodes collection
2655         this.childNodes.splice(index, 1);
2656
2657         // update siblings
2658         if(node.previousSibling){
2659             node.previousSibling.nextSibling = node.nextSibling;
2660         }
2661         if(node.nextSibling){
2662             node.nextSibling.previousSibling = node.previousSibling;
2663         }
2664
2665         // update child refs
2666         if(this.firstChild == node){
2667             this.setFirstChild(node.nextSibling);
2668         }
2669         if(this.lastChild == node){
2670             this.setLastChild(node.previousSibling);
2671         }
2672
2673         node.setOwnerTree(null);
2674         // clear any references from the node
2675         node.parentNode = null;
2676         node.previousSibling = null;
2677         node.nextSibling = null;
2678         this.fireEvent("remove", this.ownerTree, this, node);
2679         return node;
2680     },
2681
2682     /**
2683      * Inserts the first node before the second node in this nodes childNodes collection.
2684      * @param {Node} node The node to insert
2685      * @param {Node} refNode The node to insert before (if null the node is appended)
2686      * @return {Node} The inserted node
2687      */
2688     insertBefore : function(node, refNode){
2689         if(!refNode){ // like standard Dom, refNode can be null for append
2690             return this.appendChild(node);
2691         }
2692         // nothing to do
2693         if(node == refNode){
2694             return false;
2695         }
2696
2697         if(this.fireEvent("beforeinsert", this.ownerTree, this, node, refNode) === false){
2698             return false;
2699         }
2700         var index = this.childNodes.indexOf(refNode);
2701         var oldParent = node.parentNode;
2702         var refIndex = index;
2703
2704         // when moving internally, indexes will change after remove
2705         if(oldParent == this && this.childNodes.indexOf(node) < index){
2706             refIndex--;
2707         }
2708
2709         // it's a move, make sure we move it cleanly
2710         if(oldParent){
2711             if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index, refNode) === false){
2712                 return false;
2713             }
2714             oldParent.removeChild(node);
2715         }
2716         if(refIndex == 0){
2717             this.setFirstChild(node);
2718         }
2719         this.childNodes.splice(refIndex, 0, node);
2720         node.parentNode = this;
2721         var ps = this.childNodes[refIndex-1];
2722         if(ps){
2723             node.previousSibling = ps;
2724             ps.nextSibling = node;
2725         }else{
2726             node.previousSibling = null;
2727         }
2728         node.nextSibling = refNode;
2729         refNode.previousSibling = node;
2730         node.setOwnerTree(this.getOwnerTree());
2731         this.fireEvent("insert", this.ownerTree, this, node, refNode);
2732         if(oldParent){
2733             node.fireEvent("move", this.ownerTree, node, oldParent, this, refIndex, refNode);
2734         }
2735         return node;
2736     },
2737
2738     /**
2739      * Returns the child node at the specified index.
2740      * @param {Number} index
2741      * @return {Node}
2742      */
2743     item : function(index){
2744         return this.childNodes[index];
2745     },
2746
2747     /**
2748      * Replaces one child node in this node with another.
2749      * @param {Node} newChild The replacement node
2750      * @param {Node} oldChild The node to replace
2751      * @return {Node} The replaced node
2752      */
2753     replaceChild : function(newChild, oldChild){
2754         this.insertBefore(newChild, oldChild);
2755         this.removeChild(oldChild);
2756         return oldChild;
2757     },
2758
2759     /**
2760      * Returns the index of a child node
2761      * @param {Node} node
2762      * @return {Number} The index of the node or -1 if it was not found
2763      */
2764     indexOf : function(child){
2765         return this.childNodes.indexOf(child);
2766     },
2767
2768     /**
2769      * Returns the tree this node is in.
2770      * @return {Tree}
2771      */
2772     getOwnerTree : function(){
2773         // if it doesn't have one, look for one
2774         if(!this.ownerTree){
2775             var p = this;
2776             while(p){
2777                 if(p.ownerTree){
2778                     this.ownerTree = p.ownerTree;
2779                     break;
2780                 }
2781                 p = p.parentNode;
2782             }
2783         }
2784         return this.ownerTree;
2785     },
2786
2787     /**
2788      * Returns depth of this node (the root node has a depth of 0)
2789      * @return {Number}
2790      */
2791     getDepth : function(){
2792         var depth = 0;
2793         var p = this;
2794         while(p.parentNode){
2795             ++depth;
2796             p = p.parentNode;
2797         }
2798         return depth;
2799     },
2800
2801     // private
2802     setOwnerTree : function(tree){
2803         // if it's move, we need to update everyone
2804         if(tree != this.ownerTree){
2805             if(this.ownerTree){
2806                 this.ownerTree.unregisterNode(this);
2807             }
2808             this.ownerTree = tree;
2809             var cs = this.childNodes;
2810             for(var i = 0, len = cs.length; i < len; i++) {
2811                 cs[i].setOwnerTree(tree);
2812             }
2813             if(tree){
2814                 tree.registerNode(this);
2815             }
2816         }
2817     },
2818
2819     /**
2820      * Returns the path for this node. The path can be used to expand or select this node programmatically.
2821      * @param {String} attr (optional) The attr to use for the path (defaults to the node's id)
2822      * @return {String} The path
2823      */
2824     getPath : function(attr){
2825         attr = attr || "id";
2826         var p = this.parentNode;
2827         var b = [this.attributes[attr]];
2828         while(p){
2829             b.unshift(p.attributes[attr]);
2830             p = p.parentNode;
2831         }
2832         var sep = this.getOwnerTree().pathSeparator;
2833         return sep + b.join(sep);
2834     },
2835
2836     /**
2837      * Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
2838      * function call will be the scope provided or the current node. The arguments to the function
2839      * will be the args provided or the current node. If the function returns false at any point,
2840      * the bubble is stopped.
2841      * @param {Function} fn The function to call
2842      * @param {Object} scope (optional) The scope of the function (defaults to current node)
2843      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
2844      */
2845     bubble : function(fn, scope, args){
2846         var p = this;
2847         while(p){
2848             if(fn.call(scope || p, args || p) === false){
2849                 break;
2850             }
2851             p = p.parentNode;
2852         }
2853     },
2854
2855     /**
2856      * Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
2857      * function call will be the scope provided or the current node. The arguments to the function
2858      * will be the args provided or the current node. If the function returns false at any point,
2859      * the cascade is stopped on that branch.
2860      * @param {Function} fn The function to call
2861      * @param {Object} scope (optional) The scope of the function (defaults to current node)
2862      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
2863      */
2864     cascade : function(fn, scope, args){
2865         if(fn.call(scope || this, args || this) !== false){
2866             var cs = this.childNodes;
2867             for(var i = 0, len = cs.length; i < len; i++) {
2868                 cs[i].cascade(fn, scope, args);
2869             }
2870         }
2871     },
2872
2873     /**
2874      * Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of
2875      * function call will be the scope provided or the current node. The arguments to the function
2876      * will be the args provided or the current node. If the function returns false at any point,
2877      * the iteration stops.
2878      * @param {Function} fn The function to call
2879      * @param {Object} scope (optional) The scope of the function (defaults to current node)
2880      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
2881      */
2882     eachChild : function(fn, scope, args){
2883         var cs = this.childNodes;
2884         for(var i = 0, len = cs.length; i < len; i++) {
2885                 if(fn.call(scope || this, args || cs[i]) === false){
2886                     break;
2887                 }
2888         }
2889     },
2890
2891     /**
2892      * Finds the first child that has the attribute with the specified value.
2893      * @param {String} attribute The attribute name
2894      * @param {Mixed} value The value to search for
2895      * @return {Node} The found child or null if none was found
2896      */
2897     findChild : function(attribute, value){
2898         var cs = this.childNodes;
2899         for(var i = 0, len = cs.length; i < len; i++) {
2900                 if(cs[i].attributes[attribute] == value){
2901                     return cs[i];
2902                 }
2903         }
2904         return null;
2905     },
2906
2907     /**
2908      * Finds the first child by a custom function. The child matches if the function passed
2909      * returns true.
2910      * @param {Function} fn
2911      * @param {Object} scope (optional)
2912      * @return {Node} The found child or null if none was found
2913      */
2914     findChildBy : function(fn, scope){
2915         var cs = this.childNodes;
2916         for(var i = 0, len = cs.length; i < len; i++) {
2917                 if(fn.call(scope||cs[i], cs[i]) === true){
2918                     return cs[i];
2919                 }
2920         }
2921         return null;
2922     },
2923
2924     /**
2925      * Sorts this nodes children using the supplied sort function
2926      * @param {Function} fn
2927      * @param {Object} scope (optional)
2928      */
2929     sort : function(fn, scope){
2930         var cs = this.childNodes;
2931         var len = cs.length;
2932         if(len > 0){
2933             var sortFn = scope ? function(){fn.apply(scope, arguments);} : fn;
2934             cs.sort(sortFn);
2935             for(var i = 0; i < len; i++){
2936                 var n = cs[i];
2937                 n.previousSibling = cs[i-1];
2938                 n.nextSibling = cs[i+1];
2939                 if(i == 0){
2940                     this.setFirstChild(n);
2941                 }
2942                 if(i == len-1){
2943                     this.setLastChild(n);
2944                 }
2945             }
2946         }
2947     },
2948
2949     /**
2950      * Returns true if this node is an ancestor (at any point) of the passed node.
2951      * @param {Node} node
2952      * @return {Boolean}
2953      */
2954     contains : function(node){
2955         return node.isAncestor(this);
2956     },
2957
2958     /**
2959      * Returns true if the passed node is an ancestor (at any point) of this node.
2960      * @param {Node} node
2961      * @return {Boolean}
2962      */
2963     isAncestor : function(node){
2964         var p = this.parentNode;
2965         while(p){
2966             if(p == node){
2967                 return true;
2968             }
2969             p = p.parentNode;
2970         }
2971         return false;
2972     },
2973
2974     toString : function(){
2975         return "[Node"+(this.id?" "+this.id:"")+"]";
2976     }
2977 });/*
2978  * Based on:
2979  * Ext JS Library 1.1.1
2980  * Copyright(c) 2006-2007, Ext JS, LLC.
2981  *
2982  * Originally Released Under LGPL - original licence link has changed is not relivant.
2983  *
2984  * Fork - LGPL
2985  * <script type="text/javascript">
2986  */
2987  (function(){ 
2988 /**
2989  * @class Roo.Layer
2990  * @extends Roo.Element
2991  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
2992  * automatic maintaining of shadow/shim positions.
2993  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
2994  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
2995  * you can pass a string with a CSS class name. False turns off the shadow.
2996  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
2997  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
2998  * @cfg {String} cls CSS class to add to the element
2999  * @cfg {Number} zindex Starting z-index (defaults to 11000)
3000  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
3001  * @constructor
3002  * @param {Object} config An object with config options.
3003  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
3004  */
3005
3006 Roo.Layer = function(config, existingEl){
3007     config = config || {};
3008     var dh = Roo.DomHelper;
3009     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
3010     if(existingEl){
3011         this.dom = Roo.getDom(existingEl);
3012     }
3013     if(!this.dom){
3014         var o = config.dh || {tag: "div", cls: "x-layer"};
3015         this.dom = dh.append(pel, o);
3016     }
3017     if(config.cls){
3018         this.addClass(config.cls);
3019     }
3020     this.constrain = config.constrain !== false;
3021     this.visibilityMode = Roo.Element.VISIBILITY;
3022     if(config.id){
3023         this.id = this.dom.id = config.id;
3024     }else{
3025         this.id = Roo.id(this.dom);
3026     }
3027     this.zindex = config.zindex || this.getZIndex();
3028     this.position("absolute", this.zindex);
3029     if(config.shadow){
3030         this.shadowOffset = config.shadowOffset || 4;
3031         this.shadow = new Roo.Shadow({
3032             offset : this.shadowOffset,
3033             mode : config.shadow
3034         });
3035     }else{
3036         this.shadowOffset = 0;
3037     }
3038     this.useShim = config.shim !== false && Roo.useShims;
3039     this.useDisplay = config.useDisplay;
3040     this.hide();
3041 };
3042
3043 var supr = Roo.Element.prototype;
3044
3045 // shims are shared among layer to keep from having 100 iframes
3046 var shims = [];
3047
3048 Roo.extend(Roo.Layer, Roo.Element, {
3049
3050     getZIndex : function(){
3051         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
3052     },
3053
3054     getShim : function(){
3055         if(!this.useShim){
3056             return null;
3057         }
3058         if(this.shim){
3059             return this.shim;
3060         }
3061         var shim = shims.shift();
3062         if(!shim){
3063             shim = this.createShim();
3064             shim.enableDisplayMode('block');
3065             shim.dom.style.display = 'none';
3066             shim.dom.style.visibility = 'visible';
3067         }
3068         var pn = this.dom.parentNode;
3069         if(shim.dom.parentNode != pn){
3070             pn.insertBefore(shim.dom, this.dom);
3071         }
3072         shim.setStyle('z-index', this.getZIndex()-2);
3073         this.shim = shim;
3074         return shim;
3075     },
3076
3077     hideShim : function(){
3078         if(this.shim){
3079             this.shim.setDisplayed(false);
3080             shims.push(this.shim);
3081             delete this.shim;
3082         }
3083     },
3084
3085     disableShadow : function(){
3086         if(this.shadow){
3087             this.shadowDisabled = true;
3088             this.shadow.hide();
3089             this.lastShadowOffset = this.shadowOffset;
3090             this.shadowOffset = 0;
3091         }
3092     },
3093
3094     enableShadow : function(show){
3095         if(this.shadow){
3096             this.shadowDisabled = false;
3097             this.shadowOffset = this.lastShadowOffset;
3098             delete this.lastShadowOffset;
3099             if(show){
3100                 this.sync(true);
3101             }
3102         }
3103     },
3104
3105     // private
3106     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
3107     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
3108     sync : function(doShow){
3109         var sw = this.shadow;
3110         if(!this.updating && this.isVisible() && (sw || this.useShim)){
3111             var sh = this.getShim();
3112
3113             var w = this.getWidth(),
3114                 h = this.getHeight();
3115
3116             var l = this.getLeft(true),
3117                 t = this.getTop(true);
3118
3119             if(sw && !this.shadowDisabled){
3120                 if(doShow && !sw.isVisible()){
3121                     sw.show(this);
3122                 }else{
3123                     sw.realign(l, t, w, h);
3124                 }
3125                 if(sh){
3126                     if(doShow){
3127                        sh.show();
3128                     }
3129                     // fit the shim behind the shadow, so it is shimmed too
3130                     var a = sw.adjusts, s = sh.dom.style;
3131                     s.left = (Math.min(l, l+a.l))+"px";
3132                     s.top = (Math.min(t, t+a.t))+"px";
3133                     s.width = (w+a.w)+"px";
3134                     s.height = (h+a.h)+"px";
3135                 }
3136             }else if(sh){
3137                 if(doShow){
3138                    sh.show();
3139                 }
3140                 sh.setSize(w, h);
3141                 sh.setLeftTop(l, t);
3142             }
3143             
3144         }
3145     },
3146
3147     // private
3148     destroy : function(){
3149         this.hideShim();
3150         if(this.shadow){
3151             this.shadow.hide();
3152         }
3153         this.removeAllListeners();
3154         var pn = this.dom.parentNode;
3155         if(pn){
3156             pn.removeChild(this.dom);
3157         }
3158         Roo.Element.uncache(this.id);
3159     },
3160
3161     remove : function(){
3162         this.destroy();
3163     },
3164
3165     // private
3166     beginUpdate : function(){
3167         this.updating = true;
3168     },
3169
3170     // private
3171     endUpdate : function(){
3172         this.updating = false;
3173         this.sync(true);
3174     },
3175
3176     // private
3177     hideUnders : function(negOffset){
3178         if(this.shadow){
3179             this.shadow.hide();
3180         }
3181         this.hideShim();
3182     },
3183
3184     // private
3185     constrainXY : function(){
3186         if(this.constrain){
3187             var vw = Roo.lib.Dom.getViewWidth(),
3188                 vh = Roo.lib.Dom.getViewHeight();
3189             var s = Roo.get(document).getScroll();
3190
3191             var xy = this.getXY();
3192             var x = xy[0], y = xy[1];   
3193             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
3194             // only move it if it needs it
3195             var moved = false;
3196             // first validate right/bottom
3197             if((x + w) > vw+s.left){
3198                 x = vw - w - this.shadowOffset;
3199                 moved = true;
3200             }
3201             if((y + h) > vh+s.top){
3202                 y = vh - h - this.shadowOffset;
3203                 moved = true;
3204             }
3205             // then make sure top/left isn't negative
3206             if(x < s.left){
3207                 x = s.left;
3208                 moved = true;
3209             }
3210             if(y < s.top){
3211                 y = s.top;
3212                 moved = true;
3213             }
3214             if(moved){
3215                 if(this.avoidY){
3216                     var ay = this.avoidY;
3217                     if(y <= ay && (y+h) >= ay){
3218                         y = ay-h-5;   
3219                     }
3220                 }
3221                 xy = [x, y];
3222                 this.storeXY(xy);
3223                 supr.setXY.call(this, xy);
3224                 this.sync();
3225             }
3226         }
3227     },
3228
3229     isVisible : function(){
3230         return this.visible;    
3231     },
3232
3233     // private
3234     showAction : function(){
3235         this.visible = true; // track visibility to prevent getStyle calls
3236         if(this.useDisplay === true){
3237             this.setDisplayed("");
3238         }else if(this.lastXY){
3239             supr.setXY.call(this, this.lastXY);
3240         }else if(this.lastLT){
3241             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
3242         }
3243     },
3244
3245     // private
3246     hideAction : function(){
3247         this.visible = false;
3248         if(this.useDisplay === true){
3249             this.setDisplayed(false);
3250         }else{
3251             this.setLeftTop(-10000,-10000);
3252         }
3253     },
3254
3255     // overridden Element method
3256     setVisible : function(v, a, d, c, e){
3257         if(v){
3258             this.showAction();
3259         }
3260         if(a && v){
3261             var cb = function(){
3262                 this.sync(true);
3263                 if(c){
3264                     c();
3265                 }
3266             }.createDelegate(this);
3267             supr.setVisible.call(this, true, true, d, cb, e);
3268         }else{
3269             if(!v){
3270                 this.hideUnders(true);
3271             }
3272             var cb = c;
3273             if(a){
3274                 cb = function(){
3275                     this.hideAction();
3276                     if(c){
3277                         c();
3278                     }
3279                 }.createDelegate(this);
3280             }
3281             supr.setVisible.call(this, v, a, d, cb, e);
3282             if(v){
3283                 this.sync(true);
3284             }else if(!a){
3285                 this.hideAction();
3286             }
3287         }
3288     },
3289
3290     storeXY : function(xy){
3291         delete this.lastLT;
3292         this.lastXY = xy;
3293     },
3294
3295     storeLeftTop : function(left, top){
3296         delete this.lastXY;
3297         this.lastLT = [left, top];
3298     },
3299
3300     // private
3301     beforeFx : function(){
3302         this.beforeAction();
3303         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
3304     },
3305
3306     // private
3307     afterFx : function(){
3308         Roo.Layer.superclass.afterFx.apply(this, arguments);
3309         this.sync(this.isVisible());
3310     },
3311
3312     // private
3313     beforeAction : function(){
3314         if(!this.updating && this.shadow){
3315             this.shadow.hide();
3316         }
3317     },
3318
3319     // overridden Element method
3320     setLeft : function(left){
3321         this.storeLeftTop(left, this.getTop(true));
3322         supr.setLeft.apply(this, arguments);
3323         this.sync();
3324     },
3325
3326     setTop : function(top){
3327         this.storeLeftTop(this.getLeft(true), top);
3328         supr.setTop.apply(this, arguments);
3329         this.sync();
3330     },
3331
3332     setLeftTop : function(left, top){
3333         this.storeLeftTop(left, top);
3334         supr.setLeftTop.apply(this, arguments);
3335         this.sync();
3336     },
3337
3338     setXY : function(xy, a, d, c, e){
3339         this.fixDisplay();
3340         this.beforeAction();
3341         this.storeXY(xy);
3342         var cb = this.createCB(c);
3343         supr.setXY.call(this, xy, a, d, cb, e);
3344         if(!a){
3345             cb();
3346         }
3347     },
3348
3349     // private
3350     createCB : function(c){
3351         var el = this;
3352         return function(){
3353             el.constrainXY();
3354             el.sync(true);
3355             if(c){
3356                 c();
3357             }
3358         };
3359     },
3360
3361     // overridden Element method
3362     setX : function(x, a, d, c, e){
3363         this.setXY([x, this.getY()], a, d, c, e);
3364     },
3365
3366     // overridden Element method
3367     setY : function(y, a, d, c, e){
3368         this.setXY([this.getX(), y], a, d, c, e);
3369     },
3370
3371     // overridden Element method
3372     setSize : function(w, h, a, d, c, e){
3373         this.beforeAction();
3374         var cb = this.createCB(c);
3375         supr.setSize.call(this, w, h, a, d, cb, e);
3376         if(!a){
3377             cb();
3378         }
3379     },
3380
3381     // overridden Element method
3382     setWidth : function(w, a, d, c, e){
3383         this.beforeAction();
3384         var cb = this.createCB(c);
3385         supr.setWidth.call(this, w, a, d, cb, e);
3386         if(!a){
3387             cb();
3388         }
3389     },
3390
3391     // overridden Element method
3392     setHeight : function(h, a, d, c, e){
3393         this.beforeAction();
3394         var cb = this.createCB(c);
3395         supr.setHeight.call(this, h, a, d, cb, e);
3396         if(!a){
3397             cb();
3398         }
3399     },
3400
3401     // overridden Element method
3402     setBounds : function(x, y, w, h, a, d, c, e){
3403         this.beforeAction();
3404         var cb = this.createCB(c);
3405         if(!a){
3406             this.storeXY([x, y]);
3407             supr.setXY.call(this, [x, y]);
3408             supr.setSize.call(this, w, h, a, d, cb, e);
3409             cb();
3410         }else{
3411             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
3412         }
3413         return this;
3414     },
3415     
3416     /**
3417      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
3418      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
3419      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
3420      * @param {Number} zindex The new z-index to set
3421      * @return {this} The Layer
3422      */
3423     setZIndex : function(zindex){
3424         this.zindex = zindex;
3425         this.setStyle("z-index", zindex + 2);
3426         if(this.shadow){
3427             this.shadow.setZIndex(zindex + 1);
3428         }
3429         if(this.shim){
3430             this.shim.setStyle("z-index", zindex);
3431         }
3432     }
3433 });
3434 })();/*
3435  * Based on:
3436  * Ext JS Library 1.1.1
3437  * Copyright(c) 2006-2007, Ext JS, LLC.
3438  *
3439  * Originally Released Under LGPL - original licence link has changed is not relivant.
3440  *
3441  * Fork - LGPL
3442  * <script type="text/javascript">
3443  */
3444
3445
3446 /**
3447  * @class Roo.Shadow
3448  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
3449  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
3450  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
3451  * @constructor
3452  * Create a new Shadow
3453  * @param {Object} config The config object
3454  */
3455 Roo.Shadow = function(config){
3456     Roo.apply(this, config);
3457     if(typeof this.mode != "string"){
3458         this.mode = this.defaultMode;
3459     }
3460     var o = this.offset, a = {h: 0};
3461     var rad = Math.floor(this.offset/2);
3462     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
3463         case "drop":
3464             a.w = 0;
3465             a.l = a.t = o;
3466             a.t -= 1;
3467             if(Roo.isIE){
3468                 a.l -= this.offset + rad;
3469                 a.t -= this.offset + rad;
3470                 a.w -= rad;
3471                 a.h -= rad;
3472                 a.t += 1;
3473             }
3474         break;
3475         case "sides":
3476             a.w = (o*2);
3477             a.l = -o;
3478             a.t = o-1;
3479             if(Roo.isIE){
3480                 a.l -= (this.offset - rad);
3481                 a.t -= this.offset + rad;
3482                 a.l += 1;
3483                 a.w -= (this.offset - rad)*2;
3484                 a.w -= rad + 1;
3485                 a.h -= 1;
3486             }
3487         break;
3488         case "frame":
3489             a.w = a.h = (o*2);
3490             a.l = a.t = -o;
3491             a.t += 1;
3492             a.h -= 2;
3493             if(Roo.isIE){
3494                 a.l -= (this.offset - rad);
3495                 a.t -= (this.offset - rad);
3496                 a.l += 1;
3497                 a.w -= (this.offset + rad + 1);
3498                 a.h -= (this.offset + rad);
3499                 a.h += 1;
3500             }
3501         break;
3502     };
3503
3504     this.adjusts = a;
3505 };
3506
3507 Roo.Shadow.prototype = {
3508     /**
3509      * @cfg {String} mode
3510      * The shadow display mode.  Supports the following options:<br />
3511      * sides: Shadow displays on both sides and bottom only<br />
3512      * frame: Shadow displays equally on all four sides<br />
3513      * drop: Traditional bottom-right drop shadow (default)
3514      */
3515     /**
3516      * @cfg {String} offset
3517      * The number of pixels to offset the shadow from the element (defaults to 4)
3518      */
3519     offset: 4,
3520
3521     // private
3522     defaultMode: "drop",
3523
3524     /**
3525      * Displays the shadow under the target element
3526      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
3527      */
3528     show : function(target){
3529         target = Roo.get(target);
3530         if(!this.el){
3531             this.el = Roo.Shadow.Pool.pull();
3532             if(this.el.dom.nextSibling != target.dom){
3533                 this.el.insertBefore(target);
3534             }
3535         }
3536         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
3537         if(Roo.isIE){
3538             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
3539         }
3540         this.realign(
3541             target.getLeft(true),
3542             target.getTop(true),
3543             target.getWidth(),
3544             target.getHeight()
3545         );
3546         this.el.dom.style.display = "block";
3547     },
3548
3549     /**
3550      * Returns true if the shadow is visible, else false
3551      */
3552     isVisible : function(){
3553         return this.el ? true : false;  
3554     },
3555
3556     /**
3557      * Direct alignment when values are already available. Show must be called at least once before
3558      * calling this method to ensure it is initialized.
3559      * @param {Number} left The target element left position
3560      * @param {Number} top The target element top position
3561      * @param {Number} width The target element width
3562      * @param {Number} height The target element height
3563      */
3564     realign : function(l, t, w, h){
3565         if(!this.el){
3566             return;
3567         }
3568         var a = this.adjusts, d = this.el.dom, s = d.style;
3569         var iea = 0;
3570         s.left = (l+a.l)+"px";
3571         s.top = (t+a.t)+"px";
3572         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
3573  
3574         if(s.width != sws || s.height != shs){
3575             s.width = sws;
3576             s.height = shs;
3577             if(!Roo.isIE){
3578                 var cn = d.childNodes;
3579                 var sww = Math.max(0, (sw-12))+"px";
3580                 cn[0].childNodes[1].style.width = sww;
3581                 cn[1].childNodes[1].style.width = sww;
3582                 cn[2].childNodes[1].style.width = sww;
3583                 cn[1].style.height = Math.max(0, (sh-12))+"px";
3584             }
3585         }
3586     },
3587
3588     /**
3589      * Hides this shadow
3590      */
3591     hide : function(){
3592         if(this.el){
3593             this.el.dom.style.display = "none";
3594             Roo.Shadow.Pool.push(this.el);
3595             delete this.el;
3596         }
3597     },
3598
3599     /**
3600      * Adjust the z-index of this shadow
3601      * @param {Number} zindex The new z-index
3602      */
3603     setZIndex : function(z){
3604         this.zIndex = z;
3605         if(this.el){
3606             this.el.setStyle("z-index", z);
3607         }
3608     }
3609 };
3610
3611 // Private utility class that manages the internal Shadow cache
3612 Roo.Shadow.Pool = function(){
3613     var p = [];
3614     var markup = Roo.isIE ?
3615                  '<div class="x-ie-shadow"></div>' :
3616                  '<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>';
3617     return {
3618         pull : function(){
3619             var sh = p.shift();
3620             if(!sh){
3621                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
3622                 sh.autoBoxAdjust = false;
3623             }
3624             return sh;
3625         },
3626
3627         push : function(sh){
3628             p.push(sh);
3629         }
3630     };
3631 }();/*
3632  * Based on:
3633  * Ext JS Library 1.1.1
3634  * Copyright(c) 2006-2007, Ext JS, LLC.
3635  *
3636  * Originally Released Under LGPL - original licence link has changed is not relivant.
3637  *
3638  * Fork - LGPL
3639  * <script type="text/javascript">
3640  */
3641
3642
3643 /**
3644  * @class Roo.SplitBar
3645  * @extends Roo.util.Observable
3646  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
3647  * <br><br>
3648  * Usage:
3649  * <pre><code>
3650 var split = new Roo.SplitBar("elementToDrag", "elementToSize",
3651                    Roo.SplitBar.HORIZONTAL, Roo.SplitBar.LEFT);
3652 split.setAdapter(new Roo.SplitBar.AbsoluteLayoutAdapter("container"));
3653 split.minSize = 100;
3654 split.maxSize = 600;
3655 split.animate = true;
3656 split.on('moved', splitterMoved);
3657 </code></pre>
3658  * @constructor
3659  * Create a new SplitBar
3660  * @param {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
3661  * @param {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
3662  * @param {Number} orientation (optional) Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
3663  * @param {Number} placement (optional) Either Roo.SplitBar.LEFT or Roo.SplitBar.RIGHT for horizontal or  
3664                         Roo.SplitBar.TOP or Roo.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
3665                         position of the SplitBar).
3666  */
3667 Roo.SplitBar = function(dragElement, resizingElement, orientation, placement, existingProxy){
3668     
3669     /** @private */
3670     this.el = Roo.get(dragElement, true);
3671     this.el.dom.unselectable = "on";
3672     /** @private */
3673     this.resizingEl = Roo.get(resizingElement, true);
3674
3675     /**
3676      * @private
3677      * The orientation of the split. Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
3678      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
3679      * @type Number
3680      */
3681     this.orientation = orientation || Roo.SplitBar.HORIZONTAL;
3682     
3683     /**
3684      * The minimum size of the resizing element. (Defaults to 0)
3685      * @type Number
3686      */
3687     this.minSize = 0;
3688     
3689     /**
3690      * The maximum size of the resizing element. (Defaults to 2000)
3691      * @type Number
3692      */
3693     this.maxSize = 2000;
3694     
3695     /**
3696      * Whether to animate the transition to the new size
3697      * @type Boolean
3698      */
3699     this.animate = false;
3700     
3701     /**
3702      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
3703      * @type Boolean
3704      */
3705     this.useShim = false;
3706     
3707     /** @private */
3708     this.shim = null;
3709     
3710     if(!existingProxy){
3711         /** @private */
3712         this.proxy = Roo.SplitBar.createProxy(this.orientation);
3713     }else{
3714         this.proxy = Roo.get(existingProxy).dom;
3715     }
3716     /** @private */
3717     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
3718     
3719     /** @private */
3720     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
3721     
3722     /** @private */
3723     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
3724     
3725     /** @private */
3726     this.dragSpecs = {};
3727     
3728     /**
3729      * @private The adapter to use to positon and resize elements
3730      */
3731     this.adapter = new Roo.SplitBar.BasicLayoutAdapter();
3732     this.adapter.init(this);
3733     
3734     if(this.orientation == Roo.SplitBar.HORIZONTAL){
3735         /** @private */
3736         this.placement = placement || (this.el.getX() > this.resizingEl.getX() ? Roo.SplitBar.LEFT : Roo.SplitBar.RIGHT);
3737         this.el.addClass("x-splitbar-h");
3738     }else{
3739         /** @private */
3740         this.placement = placement || (this.el.getY() > this.resizingEl.getY() ? Roo.SplitBar.TOP : Roo.SplitBar.BOTTOM);
3741         this.el.addClass("x-splitbar-v");
3742     }
3743     
3744     this.addEvents({
3745         /**
3746          * @event resize
3747          * Fires when the splitter is moved (alias for {@link #event-moved})
3748          * @param {Roo.SplitBar} this
3749          * @param {Number} newSize the new width or height
3750          */
3751         "resize" : true,
3752         /**
3753          * @event moved
3754          * Fires when the splitter is moved
3755          * @param {Roo.SplitBar} this
3756          * @param {Number} newSize the new width or height
3757          */
3758         "moved" : true,
3759         /**
3760          * @event beforeresize
3761          * Fires before the splitter is dragged
3762          * @param {Roo.SplitBar} this
3763          */
3764         "beforeresize" : true,
3765
3766         "beforeapply" : true
3767     });
3768
3769     Roo.util.Observable.call(this);
3770 };
3771
3772 Roo.extend(Roo.SplitBar, Roo.util.Observable, {
3773     onStartProxyDrag : function(x, y){
3774         this.fireEvent("beforeresize", this);
3775         if(!this.overlay){
3776             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "x-drag-overlay", html: "&#160;"}, true);
3777             o.unselectable();
3778             o.enableDisplayMode("block");
3779             // all splitbars share the same overlay
3780             Roo.SplitBar.prototype.overlay = o;
3781         }
3782         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
3783         this.overlay.show();
3784         Roo.get(this.proxy).setDisplayed("block");
3785         var size = this.adapter.getElementSize(this);
3786         this.activeMinSize = this.getMinimumSize();;
3787         this.activeMaxSize = this.getMaximumSize();;
3788         var c1 = size - this.activeMinSize;
3789         var c2 = Math.max(this.activeMaxSize - size, 0);
3790         if(this.orientation == Roo.SplitBar.HORIZONTAL){
3791             this.dd.resetConstraints();
3792             this.dd.setXConstraint(
3793                 this.placement == Roo.SplitBar.LEFT ? c1 : c2, 
3794                 this.placement == Roo.SplitBar.LEFT ? c2 : c1
3795             );
3796             this.dd.setYConstraint(0, 0);
3797         }else{
3798             this.dd.resetConstraints();
3799             this.dd.setXConstraint(0, 0);
3800             this.dd.setYConstraint(
3801                 this.placement == Roo.SplitBar.TOP ? c1 : c2, 
3802                 this.placement == Roo.SplitBar.TOP ? c2 : c1
3803             );
3804          }
3805         this.dragSpecs.startSize = size;
3806         this.dragSpecs.startPoint = [x, y];
3807         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
3808     },
3809     
3810     /** 
3811      * @private Called after the drag operation by the DDProxy
3812      */
3813     onEndProxyDrag : function(e){
3814         Roo.get(this.proxy).setDisplayed(false);
3815         var endPoint = Roo.lib.Event.getXY(e);
3816         if(this.overlay){
3817             this.overlay.hide();
3818         }
3819         var newSize;
3820         if(this.orientation == Roo.SplitBar.HORIZONTAL){
3821             newSize = this.dragSpecs.startSize + 
3822                 (this.placement == Roo.SplitBar.LEFT ?
3823                     endPoint[0] - this.dragSpecs.startPoint[0] :
3824                     this.dragSpecs.startPoint[0] - endPoint[0]
3825                 );
3826         }else{
3827             newSize = this.dragSpecs.startSize + 
3828                 (this.placement == Roo.SplitBar.TOP ?
3829                     endPoint[1] - this.dragSpecs.startPoint[1] :
3830                     this.dragSpecs.startPoint[1] - endPoint[1]
3831                 );
3832         }
3833         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
3834         if(newSize != this.dragSpecs.startSize){
3835             if(this.fireEvent('beforeapply', this, newSize) !== false){
3836                 this.adapter.setElementSize(this, newSize);
3837                 this.fireEvent("moved", this, newSize);
3838                 this.fireEvent("resize", this, newSize);
3839             }
3840         }
3841     },
3842     
3843     /**
3844      * Get the adapter this SplitBar uses
3845      * @return The adapter object
3846      */
3847     getAdapter : function(){
3848         return this.adapter;
3849     },
3850     
3851     /**
3852      * Set the adapter this SplitBar uses
3853      * @param {Object} adapter A SplitBar adapter object
3854      */
3855     setAdapter : function(adapter){
3856         this.adapter = adapter;
3857         this.adapter.init(this);
3858     },
3859     
3860     /**
3861      * Gets the minimum size for the resizing element
3862      * @return {Number} The minimum size
3863      */
3864     getMinimumSize : function(){
3865         return this.minSize;
3866     },
3867     
3868     /**
3869      * Sets the minimum size for the resizing element
3870      * @param {Number} minSize The minimum size
3871      */
3872     setMinimumSize : function(minSize){
3873         this.minSize = minSize;
3874     },
3875     
3876     /**
3877      * Gets the maximum size for the resizing element
3878      * @return {Number} The maximum size
3879      */
3880     getMaximumSize : function(){
3881         return this.maxSize;
3882     },
3883     
3884     /**
3885      * Sets the maximum size for the resizing element
3886      * @param {Number} maxSize The maximum size
3887      */
3888     setMaximumSize : function(maxSize){
3889         this.maxSize = maxSize;
3890     },
3891     
3892     /**
3893      * Sets the initialize size for the resizing element
3894      * @param {Number} size The initial size
3895      */
3896     setCurrentSize : function(size){
3897         var oldAnimate = this.animate;
3898         this.animate = false;
3899         this.adapter.setElementSize(this, size);
3900         this.animate = oldAnimate;
3901     },
3902     
3903     /**
3904      * Destroy this splitbar. 
3905      * @param {Boolean} removeEl True to remove the element
3906      */
3907     destroy : function(removeEl){
3908         if(this.shim){
3909             this.shim.remove();
3910         }
3911         this.dd.unreg();
3912         this.proxy.parentNode.removeChild(this.proxy);
3913         if(removeEl){
3914             this.el.remove();
3915         }
3916     }
3917 });
3918
3919 /**
3920  * @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.
3921  */
3922 Roo.SplitBar.createProxy = function(dir){
3923     var proxy = new Roo.Element(document.createElement("div"));
3924     proxy.unselectable();
3925     var cls = 'x-splitbar-proxy';
3926     proxy.addClass(cls + ' ' + (dir == Roo.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
3927     document.body.appendChild(proxy.dom);
3928     return proxy.dom;
3929 };
3930
3931 /** 
3932  * @class Roo.SplitBar.BasicLayoutAdapter
3933  * Default Adapter. It assumes the splitter and resizing element are not positioned
3934  * elements and only gets/sets the width of the element. Generally used for table based layouts.
3935  */
3936 Roo.SplitBar.BasicLayoutAdapter = function(){
3937 };
3938
3939 Roo.SplitBar.BasicLayoutAdapter.prototype = {
3940     // do nothing for now
3941     init : function(s){
3942     
3943     },
3944     /**
3945      * Called before drag operations to get the current size of the resizing element. 
3946      * @param {Roo.SplitBar} s The SplitBar using this adapter
3947      */
3948      getElementSize : function(s){
3949         if(s.orientation == Roo.SplitBar.HORIZONTAL){
3950             return s.resizingEl.getWidth();
3951         }else{
3952             return s.resizingEl.getHeight();
3953         }
3954     },
3955     
3956     /**
3957      * Called after drag operations to set the size of the resizing element.
3958      * @param {Roo.SplitBar} s The SplitBar using this adapter
3959      * @param {Number} newSize The new size to set
3960      * @param {Function} onComplete A function to be invoked when resizing is complete
3961      */
3962     setElementSize : function(s, newSize, onComplete){
3963         if(s.orientation == Roo.SplitBar.HORIZONTAL){
3964             if(!s.animate){
3965                 s.resizingEl.setWidth(newSize);
3966                 if(onComplete){
3967                     onComplete(s, newSize);
3968                 }
3969             }else{
3970                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
3971             }
3972         }else{
3973             
3974             if(!s.animate){
3975                 s.resizingEl.setHeight(newSize);
3976                 if(onComplete){
3977                     onComplete(s, newSize);
3978                 }
3979             }else{
3980                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
3981             }
3982         }
3983     }
3984 };
3985
3986 /** 
3987  *@class Roo.SplitBar.AbsoluteLayoutAdapter
3988  * @extends Roo.SplitBar.BasicLayoutAdapter
3989  * Adapter that  moves the splitter element to align with the resized sizing element. 
3990  * Used with an absolute positioned SplitBar.
3991  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
3992  * document.body, make sure you assign an id to the body element.
3993  */
3994 Roo.SplitBar.AbsoluteLayoutAdapter = function(container){
3995     this.basic = new Roo.SplitBar.BasicLayoutAdapter();
3996     this.container = Roo.get(container);
3997 };
3998
3999 Roo.SplitBar.AbsoluteLayoutAdapter.prototype = {
4000     init : function(s){
4001         this.basic.init(s);
4002     },
4003     
4004     getElementSize : function(s){
4005         return this.basic.getElementSize(s);
4006     },
4007     
4008     setElementSize : function(s, newSize, onComplete){
4009         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
4010     },
4011     
4012     moveSplitter : function(s){
4013         var yes = Roo.SplitBar;
4014         switch(s.placement){
4015             case yes.LEFT:
4016                 s.el.setX(s.resizingEl.getRight());
4017                 break;
4018             case yes.RIGHT:
4019                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
4020                 break;
4021             case yes.TOP:
4022                 s.el.setY(s.resizingEl.getBottom());
4023                 break;
4024             case yes.BOTTOM:
4025                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
4026                 break;
4027         }
4028     }
4029 };
4030
4031 /**
4032  * Orientation constant - Create a vertical SplitBar
4033  * @static
4034  * @type Number
4035  */
4036 Roo.SplitBar.VERTICAL = 1;
4037
4038 /**
4039  * Orientation constant - Create a horizontal SplitBar
4040  * @static
4041  * @type Number
4042  */
4043 Roo.SplitBar.HORIZONTAL = 2;
4044
4045 /**
4046  * Placement constant - The resizing element is to the left of the splitter element
4047  * @static
4048  * @type Number
4049  */
4050 Roo.SplitBar.LEFT = 1;
4051
4052 /**
4053  * Placement constant - The resizing element is to the right of the splitter element
4054  * @static
4055  * @type Number
4056  */
4057 Roo.SplitBar.RIGHT = 2;
4058
4059 /**
4060  * Placement constant - The resizing element is positioned above the splitter element
4061  * @static
4062  * @type Number
4063  */
4064 Roo.SplitBar.TOP = 3;
4065
4066 /**
4067  * Placement constant - The resizing element is positioned under splitter element
4068  * @static
4069  * @type Number
4070  */
4071 Roo.SplitBar.BOTTOM = 4;
4072 /*
4073  * Based on:
4074  * Ext JS Library 1.1.1
4075  * Copyright(c) 2006-2007, Ext JS, LLC.
4076  *
4077  * Originally Released Under LGPL - original licence link has changed is not relivant.
4078  *
4079  * Fork - LGPL
4080  * <script type="text/javascript">
4081  */
4082
4083 /**
4084  * @class Roo.View
4085  * @extends Roo.util.Observable
4086  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
4087  * This class also supports single and multi selection modes. <br>
4088  * Create a data model bound view:
4089  <pre><code>
4090  var store = new Roo.data.Store(...);
4091
4092  var view = new Roo.View({
4093     el : "my-element",
4094     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
4095  
4096     singleSelect: true,
4097     selectedClass: "ydataview-selected",
4098     store: store
4099  });
4100
4101  // listen for node click?
4102  view.on("click", function(vw, index, node, e){
4103  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
4104  });
4105
4106  // load XML data
4107  dataModel.load("foobar.xml");
4108  </code></pre>
4109  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
4110  * <br><br>
4111  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
4112  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
4113  * 
4114  * Note: old style constructor is still suported (container, template, config)
4115  * 
4116  * @constructor
4117  * Create a new View
4118  * @param {Object} config The config object
4119  * 
4120  */
4121 Roo.View = function(config, depreciated_tpl, depreciated_config){
4122     
4123     this.parent = false;
4124     
4125     if (typeof(depreciated_tpl) == 'undefined') {
4126         // new way.. - universal constructor.
4127         Roo.apply(this, config);
4128         this.el  = Roo.get(this.el);
4129     } else {
4130         // old format..
4131         this.el  = Roo.get(config);
4132         this.tpl = depreciated_tpl;
4133         Roo.apply(this, depreciated_config);
4134     }
4135     this.wrapEl  = this.el.wrap().wrap();
4136     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
4137     
4138     
4139     if(typeof(this.tpl) == "string"){
4140         this.tpl = new Roo.Template(this.tpl);
4141     } else {
4142         // support xtype ctors..
4143         this.tpl = new Roo.factory(this.tpl, Roo);
4144     }
4145     
4146     
4147     this.tpl.compile();
4148     
4149     /** @private */
4150     this.addEvents({
4151         /**
4152          * @event beforeclick
4153          * Fires before a click is processed. Returns false to cancel the default action.
4154          * @param {Roo.View} this
4155          * @param {Number} index The index of the target node
4156          * @param {HTMLElement} node The target node
4157          * @param {Roo.EventObject} e The raw event object
4158          */
4159             "beforeclick" : true,
4160         /**
4161          * @event click
4162          * Fires when a template node is clicked.
4163          * @param {Roo.View} this
4164          * @param {Number} index The index of the target node
4165          * @param {HTMLElement} node The target node
4166          * @param {Roo.EventObject} e The raw event object
4167          */
4168             "click" : true,
4169         /**
4170          * @event dblclick
4171          * Fires when a template node is double clicked.
4172          * @param {Roo.View} this
4173          * @param {Number} index The index of the target node
4174          * @param {HTMLElement} node The target node
4175          * @param {Roo.EventObject} e The raw event object
4176          */
4177             "dblclick" : true,
4178         /**
4179          * @event contextmenu
4180          * Fires when a template node is right clicked.
4181          * @param {Roo.View} this
4182          * @param {Number} index The index of the target node
4183          * @param {HTMLElement} node The target node
4184          * @param {Roo.EventObject} e The raw event object
4185          */
4186             "contextmenu" : true,
4187         /**
4188          * @event selectionchange
4189          * Fires when the selected nodes change.
4190          * @param {Roo.View} this
4191          * @param {Array} selections Array of the selected nodes
4192          */
4193             "selectionchange" : true,
4194     
4195         /**
4196          * @event beforeselect
4197          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
4198          * @param {Roo.View} this
4199          * @param {HTMLElement} node The node to be selected
4200          * @param {Array} selections Array of currently selected nodes
4201          */
4202             "beforeselect" : true,
4203         /**
4204          * @event preparedata
4205          * Fires on every row to render, to allow you to change the data.
4206          * @param {Roo.View} this
4207          * @param {Object} data to be rendered (change this)
4208          */
4209           "preparedata" : true
4210           
4211           
4212         });
4213
4214
4215
4216     this.el.on({
4217         "click": this.onClick,
4218         "dblclick": this.onDblClick,
4219         "contextmenu": this.onContextMenu,
4220         scope:this
4221     });
4222
4223     this.selections = [];
4224     this.nodes = [];
4225     this.cmp = new Roo.CompositeElementLite([]);
4226     if(this.store){
4227         this.store = Roo.factory(this.store, Roo.data);
4228         this.setStore(this.store, true);
4229     }
4230     
4231     if ( this.footer && this.footer.xtype) {
4232            
4233          var fctr = this.wrapEl.appendChild(document.createElement("div"));
4234         
4235         this.footer.dataSource = this.store;
4236         this.footer.container = fctr;
4237         this.footer = Roo.factory(this.footer, Roo);
4238         fctr.insertFirst(this.el);
4239         
4240         // this is a bit insane - as the paging toolbar seems to detach the el..
4241 //        dom.parentNode.parentNode.parentNode
4242          // they get detached?
4243     }
4244     
4245     
4246     Roo.View.superclass.constructor.call(this);
4247     
4248     
4249 };
4250
4251 Roo.extend(Roo.View, Roo.util.Observable, {
4252     
4253      /**
4254      * @cfg {Roo.data.Store} store Data store to load data from.
4255      */
4256     store : false,
4257     
4258     /**
4259      * @cfg {String|Roo.Element} el The container element.
4260      */
4261     el : '',
4262     
4263     /**
4264      * @cfg {String|Roo.Template} tpl The template used by this View 
4265      */
4266     tpl : false,
4267     /**
4268      * @cfg {String} dataName the named area of the template to use as the data area
4269      *                          Works with domtemplates roo-name="name"
4270      */
4271     dataName: false,
4272     /**
4273      * @cfg {String} selectedClass The css class to add to selected nodes
4274      */
4275     selectedClass : "x-view-selected",
4276      /**
4277      * @cfg {String} emptyText The empty text to show when nothing is loaded.
4278      */
4279     emptyText : "",
4280     
4281     /**
4282      * @cfg {String} text to display on mask (default Loading)
4283      */
4284     mask : false,
4285     /**
4286      * @cfg {Boolean} multiSelect Allow multiple selection
4287      */
4288     multiSelect : false,
4289     /**
4290      * @cfg {Boolean} singleSelect Allow single selection
4291      */
4292     singleSelect:  false,
4293     
4294     /**
4295      * @cfg {Boolean} toggleSelect - selecting 
4296      */
4297     toggleSelect : false,
4298     
4299     /**
4300      * @cfg {Boolean} tickable - selecting 
4301      */
4302     tickable : false,
4303     
4304     /**
4305      * Returns the element this view is bound to.
4306      * @return {Roo.Element}
4307      */
4308     getEl : function(){
4309         return this.wrapEl;
4310     },
4311     
4312     
4313
4314     /**
4315      * Refreshes the view. - called by datachanged on the store. - do not call directly.
4316      */
4317     refresh : function(){
4318         //Roo.log('refresh');
4319         var t = this.tpl;
4320         
4321         // if we are using something like 'domtemplate', then
4322         // the what gets used is:
4323         // t.applySubtemplate(NAME, data, wrapping data..)
4324         // the outer template then get' applied with
4325         //     the store 'extra data'
4326         // and the body get's added to the
4327         //      roo-name="data" node?
4328         //      <span class='roo-tpl-{name}'></span> ?????
4329         
4330         
4331         
4332         this.clearSelections();
4333         this.el.update("");
4334         var html = [];
4335         var records = this.store.getRange();
4336         if(records.length < 1) {
4337             
4338             // is this valid??  = should it render a template??
4339             
4340             this.el.update(this.emptyText);
4341             return;
4342         }
4343         var el = this.el;
4344         if (this.dataName) {
4345             this.el.update(t.apply(this.store.meta)); //????
4346             el = this.el.child('.roo-tpl-' + this.dataName);
4347         }
4348         
4349         for(var i = 0, len = records.length; i < len; i++){
4350             var data = this.prepareData(records[i].data, i, records[i]);
4351             this.fireEvent("preparedata", this, data, i, records[i]);
4352             
4353             var d = Roo.apply({}, data);
4354             
4355             if(this.tickable){
4356                 Roo.apply(d, {'roo-id' : Roo.id()});
4357                 
4358                 var _this = this;
4359             
4360                 Roo.each(this.parent.item, function(item){
4361                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
4362                         return;
4363                     }
4364                     Roo.apply(d, {'roo-data-checked' : 'checked'});
4365                 });
4366             }
4367             
4368             html[html.length] = Roo.util.Format.trim(
4369                 this.dataName ?
4370                     t.applySubtemplate(this.dataName, d, this.store.meta) :
4371                     t.apply(d)
4372             );
4373         }
4374         
4375         
4376         
4377         el.update(html.join(""));
4378         this.nodes = el.dom.childNodes;
4379         this.updateIndexes(0);
4380     },
4381     
4382
4383     /**
4384      * Function to override to reformat the data that is sent to
4385      * the template for each node.
4386      * DEPRICATED - use the preparedata event handler.
4387      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
4388      * a JSON object for an UpdateManager bound view).
4389      */
4390     prepareData : function(data, index, record)
4391     {
4392         this.fireEvent("preparedata", this, data, index, record);
4393         return data;
4394     },
4395
4396     onUpdate : function(ds, record){
4397         // Roo.log('on update');   
4398         this.clearSelections();
4399         var index = this.store.indexOf(record);
4400         var n = this.nodes[index];
4401         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
4402         n.parentNode.removeChild(n);
4403         this.updateIndexes(index, index);
4404     },
4405
4406     
4407     
4408 // --------- FIXME     
4409     onAdd : function(ds, records, index)
4410     {
4411         //Roo.log(['on Add', ds, records, index] );        
4412         this.clearSelections();
4413         if(this.nodes.length == 0){
4414             this.refresh();
4415             return;
4416         }
4417         var n = this.nodes[index];
4418         for(var i = 0, len = records.length; i < len; i++){
4419             var d = this.prepareData(records[i].data, i, records[i]);
4420             if(n){
4421                 this.tpl.insertBefore(n, d);
4422             }else{
4423                 
4424                 this.tpl.append(this.el, d);
4425             }
4426         }
4427         this.updateIndexes(index);
4428     },
4429
4430     onRemove : function(ds, record, index){
4431        // Roo.log('onRemove');
4432         this.clearSelections();
4433         var el = this.dataName  ?
4434             this.el.child('.roo-tpl-' + this.dataName) :
4435             this.el; 
4436         
4437         el.dom.removeChild(this.nodes[index]);
4438         this.updateIndexes(index);
4439     },
4440
4441     /**
4442      * Refresh an individual node.
4443      * @param {Number} index
4444      */
4445     refreshNode : function(index){
4446         this.onUpdate(this.store, this.store.getAt(index));
4447     },
4448
4449     updateIndexes : function(startIndex, endIndex){
4450         var ns = this.nodes;
4451         startIndex = startIndex || 0;
4452         endIndex = endIndex || ns.length - 1;
4453         for(var i = startIndex; i <= endIndex; i++){
4454             ns[i].nodeIndex = i;
4455         }
4456     },
4457
4458     /**
4459      * Changes the data store this view uses and refresh the view.
4460      * @param {Store} store
4461      */
4462     setStore : function(store, initial){
4463         if(!initial && this.store){
4464             this.store.un("datachanged", this.refresh);
4465             this.store.un("add", this.onAdd);
4466             this.store.un("remove", this.onRemove);
4467             this.store.un("update", this.onUpdate);
4468             this.store.un("clear", this.refresh);
4469             this.store.un("beforeload", this.onBeforeLoad);
4470             this.store.un("load", this.onLoad);
4471             this.store.un("loadexception", this.onLoad);
4472         }
4473         if(store){
4474           
4475             store.on("datachanged", this.refresh, this);
4476             store.on("add", this.onAdd, this);
4477             store.on("remove", this.onRemove, this);
4478             store.on("update", this.onUpdate, this);
4479             store.on("clear", this.refresh, this);
4480             store.on("beforeload", this.onBeforeLoad, this);
4481             store.on("load", this.onLoad, this);
4482             store.on("loadexception", this.onLoad, this);
4483         }
4484         
4485         if(store){
4486             this.refresh();
4487         }
4488     },
4489     /**
4490      * onbeforeLoad - masks the loading area.
4491      *
4492      */
4493     onBeforeLoad : function(store,opts)
4494     {
4495          //Roo.log('onBeforeLoad');   
4496         if (!opts.add) {
4497             this.el.update("");
4498         }
4499         this.el.mask(this.mask ? this.mask : "Loading" ); 
4500     },
4501     onLoad : function ()
4502     {
4503         this.el.unmask();
4504     },
4505     
4506
4507     /**
4508      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
4509      * @param {HTMLElement} node
4510      * @return {HTMLElement} The template node
4511      */
4512     findItemFromChild : function(node){
4513         var el = this.dataName  ?
4514             this.el.child('.roo-tpl-' + this.dataName,true) :
4515             this.el.dom; 
4516         
4517         if(!node || node.parentNode == el){
4518                     return node;
4519             }
4520             var p = node.parentNode;
4521             while(p && p != el){
4522             if(p.parentNode == el){
4523                 return p;
4524             }
4525             p = p.parentNode;
4526         }
4527             return null;
4528     },
4529
4530     /** @ignore */
4531     onClick : function(e){
4532         var item = this.findItemFromChild(e.getTarget());
4533         if(item){
4534             var index = this.indexOf(item);
4535             if(this.onItemClick(item, index, e) !== false){
4536                 this.fireEvent("click", this, index, item, e);
4537             }
4538         }else{
4539             this.clearSelections();
4540         }
4541     },
4542
4543     /** @ignore */
4544     onContextMenu : function(e){
4545         var item = this.findItemFromChild(e.getTarget());
4546         if(item){
4547             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
4548         }
4549     },
4550
4551     /** @ignore */
4552     onDblClick : function(e){
4553         var item = this.findItemFromChild(e.getTarget());
4554         if(item){
4555             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
4556         }
4557     },
4558
4559     onItemClick : function(item, index, e)
4560     {
4561         if(this.fireEvent("beforeclick", this, index, item, e) === false){
4562             return false;
4563         }
4564         if (this.toggleSelect) {
4565             var m = this.isSelected(item) ? 'unselect' : 'select';
4566             //Roo.log(m);
4567             var _t = this;
4568             _t[m](item, true, false);
4569             return true;
4570         }
4571         if(this.multiSelect || this.singleSelect){
4572             if(this.multiSelect && e.shiftKey && this.lastSelection){
4573                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
4574             }else{
4575                 this.select(item, this.multiSelect && e.ctrlKey);
4576                 this.lastSelection = item;
4577             }
4578             
4579             if(!this.tickable){
4580                 e.preventDefault();
4581             }
4582             
4583         }
4584         return true;
4585     },
4586
4587     /**
4588      * Get the number of selected nodes.
4589      * @return {Number}
4590      */
4591     getSelectionCount : function(){
4592         return this.selections.length;
4593     },
4594
4595     /**
4596      * Get the currently selected nodes.
4597      * @return {Array} An array of HTMLElements
4598      */
4599     getSelectedNodes : function(){
4600         return this.selections;
4601     },
4602
4603     /**
4604      * Get the indexes of the selected nodes.
4605      * @return {Array}
4606      */
4607     getSelectedIndexes : function(){
4608         var indexes = [], s = this.selections;
4609         for(var i = 0, len = s.length; i < len; i++){
4610             indexes.push(s[i].nodeIndex);
4611         }
4612         return indexes;
4613     },
4614
4615     /**
4616      * Clear all selections
4617      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
4618      */
4619     clearSelections : function(suppressEvent){
4620         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
4621             this.cmp.elements = this.selections;
4622             this.cmp.removeClass(this.selectedClass);
4623             this.selections = [];
4624             if(!suppressEvent){
4625                 this.fireEvent("selectionchange", this, this.selections);
4626             }
4627         }
4628     },
4629
4630     /**
4631      * Returns true if the passed node is selected
4632      * @param {HTMLElement/Number} node The node or node index
4633      * @return {Boolean}
4634      */
4635     isSelected : function(node){
4636         var s = this.selections;
4637         if(s.length < 1){
4638             return false;
4639         }
4640         node = this.getNode(node);
4641         return s.indexOf(node) !== -1;
4642     },
4643
4644     /**
4645      * Selects nodes.
4646      * @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
4647      * @param {Boolean} keepExisting (optional) true to keep existing selections
4648      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
4649      */
4650     select : function(nodeInfo, keepExisting, suppressEvent){
4651         if(nodeInfo instanceof Array){
4652             if(!keepExisting){
4653                 this.clearSelections(true);
4654             }
4655             for(var i = 0, len = nodeInfo.length; i < len; i++){
4656                 this.select(nodeInfo[i], true, true);
4657             }
4658             return;
4659         } 
4660         var node = this.getNode(nodeInfo);
4661         if(!node || this.isSelected(node)){
4662             return; // already selected.
4663         }
4664         if(!keepExisting){
4665             this.clearSelections(true);
4666         }
4667         
4668         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
4669             Roo.fly(node).addClass(this.selectedClass);
4670             this.selections.push(node);
4671             if(!suppressEvent){
4672                 this.fireEvent("selectionchange", this, this.selections);
4673             }
4674         }
4675         
4676         
4677     },
4678       /**
4679      * Unselects nodes.
4680      * @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
4681      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
4682      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
4683      */
4684     unselect : function(nodeInfo, keepExisting, suppressEvent)
4685     {
4686         if(nodeInfo instanceof Array){
4687             Roo.each(this.selections, function(s) {
4688                 this.unselect(s, nodeInfo);
4689             }, this);
4690             return;
4691         }
4692         var node = this.getNode(nodeInfo);
4693         if(!node || !this.isSelected(node)){
4694             //Roo.log("not selected");
4695             return; // not selected.
4696         }
4697         // fireevent???
4698         var ns = [];
4699         Roo.each(this.selections, function(s) {
4700             if (s == node ) {
4701                 Roo.fly(node).removeClass(this.selectedClass);
4702
4703                 return;
4704             }
4705             ns.push(s);
4706         },this);
4707         
4708         this.selections= ns;
4709         this.fireEvent("selectionchange", this, this.selections);
4710     },
4711
4712     /**
4713      * Gets a template node.
4714      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
4715      * @return {HTMLElement} The node or null if it wasn't found
4716      */
4717     getNode : function(nodeInfo){
4718         if(typeof nodeInfo == "string"){
4719             return document.getElementById(nodeInfo);
4720         }else if(typeof nodeInfo == "number"){
4721             return this.nodes[nodeInfo];
4722         }
4723         return nodeInfo;
4724     },
4725
4726     /**
4727      * Gets a range template nodes.
4728      * @param {Number} startIndex
4729      * @param {Number} endIndex
4730      * @return {Array} An array of nodes
4731      */
4732     getNodes : function(start, end){
4733         var ns = this.nodes;
4734         start = start || 0;
4735         end = typeof end == "undefined" ? ns.length - 1 : end;
4736         var nodes = [];
4737         if(start <= end){
4738             for(var i = start; i <= end; i++){
4739                 nodes.push(ns[i]);
4740             }
4741         } else{
4742             for(var i = start; i >= end; i--){
4743                 nodes.push(ns[i]);
4744             }
4745         }
4746         return nodes;
4747     },
4748
4749     /**
4750      * Finds the index of the passed node
4751      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
4752      * @return {Number} The index of the node or -1
4753      */
4754     indexOf : function(node){
4755         node = this.getNode(node);
4756         if(typeof node.nodeIndex == "number"){
4757             return node.nodeIndex;
4758         }
4759         var ns = this.nodes;
4760         for(var i = 0, len = ns.length; i < len; i++){
4761             if(ns[i] == node){
4762                 return i;
4763             }
4764         }
4765         return -1;
4766     }
4767 });
4768 /*
4769  * Based on:
4770  * Ext JS Library 1.1.1
4771  * Copyright(c) 2006-2007, Ext JS, LLC.
4772  *
4773  * Originally Released Under LGPL - original licence link has changed is not relivant.
4774  *
4775  * Fork - LGPL
4776  * <script type="text/javascript">
4777  */
4778
4779 /**
4780  * @class Roo.JsonView
4781  * @extends Roo.View
4782  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
4783 <pre><code>
4784 var view = new Roo.JsonView({
4785     container: "my-element",
4786     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
4787     multiSelect: true, 
4788     jsonRoot: "data" 
4789 });
4790
4791 // listen for node click?
4792 view.on("click", function(vw, index, node, e){
4793     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
4794 });
4795
4796 // direct load of JSON data
4797 view.load("foobar.php");
4798
4799 // Example from my blog list
4800 var tpl = new Roo.Template(
4801     '&lt;div class="entry"&gt;' +
4802     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
4803     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
4804     "&lt;/div&gt;&lt;hr /&gt;"
4805 );
4806
4807 var moreView = new Roo.JsonView({
4808     container :  "entry-list", 
4809     template : tpl,
4810     jsonRoot: "posts"
4811 });
4812 moreView.on("beforerender", this.sortEntries, this);
4813 moreView.load({
4814     url: "/blog/get-posts.php",
4815     params: "allposts=true",
4816     text: "Loading Blog Entries..."
4817 });
4818 </code></pre>
4819
4820 * Note: old code is supported with arguments : (container, template, config)
4821
4822
4823  * @constructor
4824  * Create a new JsonView
4825  * 
4826  * @param {Object} config The config object
4827  * 
4828  */
4829 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
4830     
4831     
4832     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
4833
4834     var um = this.el.getUpdateManager();
4835     um.setRenderer(this);
4836     um.on("update", this.onLoad, this);
4837     um.on("failure", this.onLoadException, this);
4838
4839     /**
4840      * @event beforerender
4841      * Fires before rendering of the downloaded JSON data.
4842      * @param {Roo.JsonView} this
4843      * @param {Object} data The JSON data loaded
4844      */
4845     /**
4846      * @event load
4847      * Fires when data is loaded.
4848      * @param {Roo.JsonView} this
4849      * @param {Object} data The JSON data loaded
4850      * @param {Object} response The raw Connect response object
4851      */
4852     /**
4853      * @event loadexception
4854      * Fires when loading fails.
4855      * @param {Roo.JsonView} this
4856      * @param {Object} response The raw Connect response object
4857      */
4858     this.addEvents({
4859         'beforerender' : true,
4860         'load' : true,
4861         'loadexception' : true
4862     });
4863 };
4864 Roo.extend(Roo.JsonView, Roo.View, {
4865     /**
4866      * @type {String} The root property in the loaded JSON object that contains the data
4867      */
4868     jsonRoot : "",
4869
4870     /**
4871      * Refreshes the view.
4872      */
4873     refresh : function(){
4874         this.clearSelections();
4875         this.el.update("");
4876         var html = [];
4877         var o = this.jsonData;
4878         if(o && o.length > 0){
4879             for(var i = 0, len = o.length; i < len; i++){
4880                 var data = this.prepareData(o[i], i, o);
4881                 html[html.length] = this.tpl.apply(data);
4882             }
4883         }else{
4884             html.push(this.emptyText);
4885         }
4886         this.el.update(html.join(""));
4887         this.nodes = this.el.dom.childNodes;
4888         this.updateIndexes(0);
4889     },
4890
4891     /**
4892      * 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.
4893      * @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:
4894      <pre><code>
4895      view.load({
4896          url: "your-url.php",
4897          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
4898          callback: yourFunction,
4899          scope: yourObject, //(optional scope)
4900          discardUrl: false,
4901          nocache: false,
4902          text: "Loading...",
4903          timeout: 30,
4904          scripts: false
4905      });
4906      </code></pre>
4907      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
4908      * 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.
4909      * @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}
4910      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
4911      * @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.
4912      */
4913     load : function(){
4914         var um = this.el.getUpdateManager();
4915         um.update.apply(um, arguments);
4916     },
4917
4918     // note - render is a standard framework call...
4919     // using it for the response is really flaky... - it's called by UpdateManager normally, except when called by the XComponent/addXtype.
4920     render : function(el, response){
4921         
4922         this.clearSelections();
4923         this.el.update("");
4924         var o;
4925         try{
4926             if (response != '') {
4927                 o = Roo.util.JSON.decode(response.responseText);
4928                 if(this.jsonRoot){
4929                     
4930                     o = o[this.jsonRoot];
4931                 }
4932             }
4933         } catch(e){
4934         }
4935         /**
4936          * The current JSON data or null
4937          */
4938         this.jsonData = o;
4939         this.beforeRender();
4940         this.refresh();
4941     },
4942
4943 /**
4944  * Get the number of records in the current JSON dataset
4945  * @return {Number}
4946  */
4947     getCount : function(){
4948         return this.jsonData ? this.jsonData.length : 0;
4949     },
4950
4951 /**
4952  * Returns the JSON object for the specified node(s)
4953  * @param {HTMLElement/Array} node The node or an array of nodes
4954  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
4955  * you get the JSON object for the node
4956  */
4957     getNodeData : function(node){
4958         if(node instanceof Array){
4959             var data = [];
4960             for(var i = 0, len = node.length; i < len; i++){
4961                 data.push(this.getNodeData(node[i]));
4962             }
4963             return data;
4964         }
4965         return this.jsonData[this.indexOf(node)] || null;
4966     },
4967
4968     beforeRender : function(){
4969         this.snapshot = this.jsonData;
4970         if(this.sortInfo){
4971             this.sort.apply(this, this.sortInfo);
4972         }
4973         this.fireEvent("beforerender", this, this.jsonData);
4974     },
4975
4976     onLoad : function(el, o){
4977         this.fireEvent("load", this, this.jsonData, o);
4978     },
4979
4980     onLoadException : function(el, o){
4981         this.fireEvent("loadexception", this, o);
4982     },
4983
4984 /**
4985  * Filter the data by a specific property.
4986  * @param {String} property A property on your JSON objects
4987  * @param {String/RegExp} value Either string that the property values
4988  * should start with, or a RegExp to test against the property
4989  */
4990     filter : function(property, value){
4991         if(this.jsonData){
4992             var data = [];
4993             var ss = this.snapshot;
4994             if(typeof value == "string"){
4995                 var vlen = value.length;
4996                 if(vlen == 0){
4997                     this.clearFilter();
4998                     return;
4999                 }
5000                 value = value.toLowerCase();
5001                 for(var i = 0, len = ss.length; i < len; i++){
5002                     var o = ss[i];
5003                     if(o[property].substr(0, vlen).toLowerCase() == value){
5004                         data.push(o);
5005                     }
5006                 }
5007             } else if(value.exec){ // regex?
5008                 for(var i = 0, len = ss.length; i < len; i++){
5009                     var o = ss[i];
5010                     if(value.test(o[property])){
5011                         data.push(o);
5012                     }
5013                 }
5014             } else{
5015                 return;
5016             }
5017             this.jsonData = data;
5018             this.refresh();
5019         }
5020     },
5021
5022 /**
5023  * Filter by a function. The passed function will be called with each
5024  * object in the current dataset. If the function returns true the value is kept,
5025  * otherwise it is filtered.
5026  * @param {Function} fn
5027  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
5028  */
5029     filterBy : function(fn, scope){
5030         if(this.jsonData){
5031             var data = [];
5032             var ss = this.snapshot;
5033             for(var i = 0, len = ss.length; i < len; i++){
5034                 var o = ss[i];
5035                 if(fn.call(scope || this, o)){
5036                     data.push(o);
5037                 }
5038             }
5039             this.jsonData = data;
5040             this.refresh();
5041         }
5042     },
5043
5044 /**
5045  * Clears the current filter.
5046  */
5047     clearFilter : function(){
5048         if(this.snapshot && this.jsonData != this.snapshot){
5049             this.jsonData = this.snapshot;
5050             this.refresh();
5051         }
5052     },
5053
5054
5055 /**
5056  * Sorts the data for this view and refreshes it.
5057  * @param {String} property A property on your JSON objects to sort on
5058  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
5059  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
5060  */
5061     sort : function(property, dir, sortType){
5062         this.sortInfo = Array.prototype.slice.call(arguments, 0);
5063         if(this.jsonData){
5064             var p = property;
5065             var dsc = dir && dir.toLowerCase() == "desc";
5066             var f = function(o1, o2){
5067                 var v1 = sortType ? sortType(o1[p]) : o1[p];
5068                 var v2 = sortType ? sortType(o2[p]) : o2[p];
5069                 ;
5070                 if(v1 < v2){
5071                     return dsc ? +1 : -1;
5072                 } else if(v1 > v2){
5073                     return dsc ? -1 : +1;
5074                 } else{
5075                     return 0;
5076                 }
5077             };
5078             this.jsonData.sort(f);
5079             this.refresh();
5080             if(this.jsonData != this.snapshot){
5081                 this.snapshot.sort(f);
5082             }
5083         }
5084     }
5085 });/*
5086  * Based on:
5087  * Ext JS Library 1.1.1
5088  * Copyright(c) 2006-2007, Ext JS, LLC.
5089  *
5090  * Originally Released Under LGPL - original licence link has changed is not relivant.
5091  *
5092  * Fork - LGPL
5093  * <script type="text/javascript">
5094  */
5095  
5096
5097 /**
5098  * @class Roo.ColorPalette
5099  * @extends Roo.Component
5100  * Simple color palette class for choosing colors.  The palette can be rendered to any container.<br />
5101  * Here's an example of typical usage:
5102  * <pre><code>
5103 var cp = new Roo.ColorPalette({value:'993300'});  // initial selected color
5104 cp.render('my-div');
5105
5106 cp.on('select', function(palette, selColor){
5107     // do something with selColor
5108 });
5109 </code></pre>
5110  * @constructor
5111  * Create a new ColorPalette
5112  * @param {Object} config The config object
5113  */
5114 Roo.ColorPalette = function(config){
5115     Roo.ColorPalette.superclass.constructor.call(this, config);
5116     this.addEvents({
5117         /**
5118              * @event select
5119              * Fires when a color is selected
5120              * @param {ColorPalette} this
5121              * @param {String} color The 6-digit color hex code (without the # symbol)
5122              */
5123         select: true
5124     });
5125
5126     if(this.handler){
5127         this.on("select", this.handler, this.scope, true);
5128     }
5129 };
5130 Roo.extend(Roo.ColorPalette, Roo.Component, {
5131     /**
5132      * @cfg {String} itemCls
5133      * The CSS class to apply to the containing element (defaults to "x-color-palette")
5134      */
5135     itemCls : "x-color-palette",
5136     /**
5137      * @cfg {String} value
5138      * The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that
5139      * the hex codes are case-sensitive.
5140      */
5141     value : null,
5142     clickEvent:'click',
5143     // private
5144     ctype: "Roo.ColorPalette",
5145
5146     /**
5147      * @cfg {Boolean} allowReselect If set to true then reselecting a color that is already selected fires the selection event
5148      */
5149     allowReselect : false,
5150
5151     /**
5152      * <p>An array of 6-digit color hex code strings (without the # symbol).  This array can contain any number
5153      * of colors, and each hex code should be unique.  The width of the palette is controlled via CSS by adjusting
5154      * the width property of the 'x-color-palette' class (or assigning a custom class), so you can balance the number
5155      * of colors with the width setting until the box is symmetrical.</p>
5156      * <p>You can override individual colors if needed:</p>
5157      * <pre><code>
5158 var cp = new Roo.ColorPalette();
5159 cp.colors[0] = "FF0000";  // change the first box to red
5160 </code></pre>
5161
5162 Or you can provide a custom array of your own for complete control:
5163 <pre><code>
5164 var cp = new Roo.ColorPalette();
5165 cp.colors = ["000000", "993300", "333300"];
5166 </code></pre>
5167      * @type Array
5168      */
5169     colors : [
5170         "000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333",
5171         "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080",
5172         "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696",
5173         "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0",
5174         "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"
5175     ],
5176
5177     // private
5178     onRender : function(container, position){
5179         var t = new Roo.MasterTemplate(
5180             '<tpl><a href="#" class="color-{0}" hidefocus="on"><em><span style="background:#{0}" unselectable="on">&#160;</span></em></a></tpl>'
5181         );
5182         var c = this.colors;
5183         for(var i = 0, len = c.length; i < len; i++){
5184             t.add([c[i]]);
5185         }
5186         var el = document.createElement("div");
5187         el.className = this.itemCls;
5188         t.overwrite(el);
5189         container.dom.insertBefore(el, position);
5190         this.el = Roo.get(el);
5191         this.el.on(this.clickEvent, this.handleClick,  this, {delegate: "a"});
5192         if(this.clickEvent != 'click'){
5193             this.el.on('click', Roo.emptyFn,  this, {delegate: "a", preventDefault:true});
5194         }
5195     },
5196
5197     // private
5198     afterRender : function(){
5199         Roo.ColorPalette.superclass.afterRender.call(this);
5200         if(this.value){
5201             var s = this.value;
5202             this.value = null;
5203             this.select(s);
5204         }
5205     },
5206
5207     // private
5208     handleClick : function(e, t){
5209         e.preventDefault();
5210         if(!this.disabled){
5211             var c = t.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
5212             this.select(c.toUpperCase());
5213         }
5214     },
5215
5216     /**
5217      * Selects the specified color in the palette (fires the select event)
5218      * @param {String} color A valid 6-digit color hex code (# will be stripped if included)
5219      */
5220     select : function(color){
5221         color = color.replace("#", "");
5222         if(color != this.value || this.allowReselect){
5223             var el = this.el;
5224             if(this.value){
5225                 el.child("a.color-"+this.value).removeClass("x-color-palette-sel");
5226             }
5227             el.child("a.color-"+color).addClass("x-color-palette-sel");
5228             this.value = color;
5229             this.fireEvent("select", this, color);
5230         }
5231     }
5232 });/*
5233  * Based on:
5234  * Ext JS Library 1.1.1
5235  * Copyright(c) 2006-2007, Ext JS, LLC.
5236  *
5237  * Originally Released Under LGPL - original licence link has changed is not relivant.
5238  *
5239  * Fork - LGPL
5240  * <script type="text/javascript">
5241  */
5242  
5243 /**
5244  * @class Roo.DatePicker
5245  * @extends Roo.Component
5246  * Simple date picker class.
5247  * @constructor
5248  * Create a new DatePicker
5249  * @param {Object} config The config object
5250  */
5251 Roo.DatePicker = function(config){
5252     Roo.DatePicker.superclass.constructor.call(this, config);
5253
5254     this.value = config && config.value ?
5255                  config.value.clearTime() : new Date().clearTime();
5256
5257     this.addEvents({
5258         /**
5259              * @event select
5260              * Fires when a date is selected
5261              * @param {DatePicker} this
5262              * @param {Date} date The selected date
5263              */
5264         'select': true,
5265         /**
5266              * @event monthchange
5267              * Fires when the displayed month changes 
5268              * @param {DatePicker} this
5269              * @param {Date} date The selected month
5270              */
5271         'monthchange': true
5272     });
5273
5274     if(this.handler){
5275         this.on("select", this.handler,  this.scope || this);
5276     }
5277     // build the disabledDatesRE
5278     if(!this.disabledDatesRE && this.disabledDates){
5279         var dd = this.disabledDates;
5280         var re = "(?:";
5281         for(var i = 0; i < dd.length; i++){
5282             re += dd[i];
5283             if(i != dd.length-1) {
5284                 re += "|";
5285             }
5286         }
5287         this.disabledDatesRE = new RegExp(re + ")");
5288     }
5289 };
5290
5291 Roo.extend(Roo.DatePicker, Roo.Component, {
5292     /**
5293      * @cfg {String} todayText
5294      * The text to display on the button that selects the current date (defaults to "Today")
5295      */
5296     todayText : "Today",
5297     /**
5298      * @cfg {String} okText
5299      * The text to display on the ok button
5300      */
5301     okText : "&#160;OK&#160;", // &#160; to give the user extra clicking room
5302     /**
5303      * @cfg {String} cancelText
5304      * The text to display on the cancel button
5305      */
5306     cancelText : "Cancel",
5307     /**
5308      * @cfg {String} todayTip
5309      * The tooltip to display for the button that selects the current date (defaults to "{current date} (Spacebar)")
5310      */
5311     todayTip : "{0} (Spacebar)",
5312     /**
5313      * @cfg {Date} minDate
5314      * Minimum allowable date (JavaScript date object, defaults to null)
5315      */
5316     minDate : null,
5317     /**
5318      * @cfg {Date} maxDate
5319      * Maximum allowable date (JavaScript date object, defaults to null)
5320      */
5321     maxDate : null,
5322     /**
5323      * @cfg {String} minText
5324      * The error text to display if the minDate validation fails (defaults to "This date is before the minimum date")
5325      */
5326     minText : "This date is before the minimum date",
5327     /**
5328      * @cfg {String} maxText
5329      * The error text to display if the maxDate validation fails (defaults to "This date is after the maximum date")
5330      */
5331     maxText : "This date is after the maximum date",
5332     /**
5333      * @cfg {String} format
5334      * The default date format string which can be overriden for localization support.  The format must be
5335      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
5336      */
5337     format : "m/d/y",
5338     /**
5339      * @cfg {Array} disabledDays
5340      * An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
5341      */
5342     disabledDays : null,
5343     /**
5344      * @cfg {String} disabledDaysText
5345      * The tooltip to display when the date falls on a disabled day (defaults to "")
5346      */
5347     disabledDaysText : "",
5348     /**
5349      * @cfg {RegExp} disabledDatesRE
5350      * JavaScript regular expression used to disable a pattern of dates (defaults to null)
5351      */
5352     disabledDatesRE : null,
5353     /**
5354      * @cfg {String} disabledDatesText
5355      * The tooltip text to display when the date falls on a disabled date (defaults to "")
5356      */
5357     disabledDatesText : "",
5358     /**
5359      * @cfg {Boolean} constrainToViewport
5360      * True to constrain the date picker to the viewport (defaults to true)
5361      */
5362     constrainToViewport : true,
5363     /**
5364      * @cfg {Array} monthNames
5365      * An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)
5366      */
5367     monthNames : Date.monthNames,
5368     /**
5369      * @cfg {Array} dayNames
5370      * An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)
5371      */
5372     dayNames : Date.dayNames,
5373     /**
5374      * @cfg {String} nextText
5375      * The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')
5376      */
5377     nextText: 'Next Month (Control+Right)',
5378     /**
5379      * @cfg {String} prevText
5380      * The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')
5381      */
5382     prevText: 'Previous Month (Control+Left)',
5383     /**
5384      * @cfg {String} monthYearText
5385      * The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')
5386      */
5387     monthYearText: 'Choose a month (Control+Up/Down to move years)',
5388     /**
5389      * @cfg {Number} startDay
5390      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
5391      */
5392     startDay : 0,
5393     /**
5394      * @cfg {Bool} showClear
5395      * Show a clear button (usefull for date form elements that can be blank.)
5396      */
5397     
5398     showClear: false,
5399     
5400     /**
5401      * Sets the value of the date field
5402      * @param {Date} value The date to set
5403      */
5404     setValue : function(value){
5405         var old = this.value;
5406         
5407         if (typeof(value) == 'string') {
5408          
5409             value = Date.parseDate(value, this.format);
5410         }
5411         if (!value) {
5412             value = new Date();
5413         }
5414         
5415         this.value = value.clearTime(true);
5416         if(this.el){
5417             this.update(this.value);
5418         }
5419     },
5420
5421     /**
5422      * Gets the current selected value of the date field
5423      * @return {Date} The selected date
5424      */
5425     getValue : function(){
5426         return this.value;
5427     },
5428
5429     // private
5430     focus : function(){
5431         if(this.el){
5432             this.update(this.activeDate);
5433         }
5434     },
5435
5436     // privateval
5437     onRender : function(container, position){
5438         
5439         var m = [
5440              '<table cellspacing="0">',
5441                 '<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>',
5442                 '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'];
5443         var dn = this.dayNames;
5444         for(var i = 0; i < 7; i++){
5445             var d = this.startDay+i;
5446             if(d > 6){
5447                 d = d-7;
5448             }
5449             m.push("<th><span>", dn[d].substr(0,1), "</span></th>");
5450         }
5451         m[m.length] = "</tr></thead><tbody><tr>";
5452         for(var i = 0; i < 42; i++) {
5453             if(i % 7 == 0 && i != 0){
5454                 m[m.length] = "</tr><tr>";
5455             }
5456             m[m.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>';
5457         }
5458         m[m.length] = '</tr></tbody></table></td></tr><tr>'+
5459             '<td colspan="3" class="x-date-bottom" align="center"></td></tr></table><div class="x-date-mp"></div>';
5460
5461         var el = document.createElement("div");
5462         el.className = "x-date-picker";
5463         el.innerHTML = m.join("");
5464
5465         container.dom.insertBefore(el, position);
5466
5467         this.el = Roo.get(el);
5468         this.eventEl = Roo.get(el.firstChild);
5469
5470         new Roo.util.ClickRepeater(this.el.child("td.x-date-left a"), {
5471             handler: this.showPrevMonth,
5472             scope: this,
5473             preventDefault:true,
5474             stopDefault:true
5475         });
5476
5477         new Roo.util.ClickRepeater(this.el.child("td.x-date-right a"), {
5478             handler: this.showNextMonth,
5479             scope: this,
5480             preventDefault:true,
5481             stopDefault:true
5482         });
5483
5484         this.eventEl.on("mousewheel", this.handleMouseWheel,  this);
5485
5486         this.monthPicker = this.el.down('div.x-date-mp');
5487         this.monthPicker.enableDisplayMode('block');
5488         
5489         var kn = new Roo.KeyNav(this.eventEl, {
5490             "left" : function(e){
5491                 e.ctrlKey ?
5492                     this.showPrevMonth() :
5493                     this.update(this.activeDate.add("d", -1));
5494             },
5495
5496             "right" : function(e){
5497                 e.ctrlKey ?
5498                     this.showNextMonth() :
5499                     this.update(this.activeDate.add("d", 1));
5500             },
5501
5502             "up" : function(e){
5503                 e.ctrlKey ?
5504                     this.showNextYear() :
5505                     this.update(this.activeDate.add("d", -7));
5506             },
5507
5508             "down" : function(e){
5509                 e.ctrlKey ?
5510                     this.showPrevYear() :
5511                     this.update(this.activeDate.add("d", 7));
5512             },
5513
5514             "pageUp" : function(e){
5515                 this.showNextMonth();
5516             },
5517
5518             "pageDown" : function(e){
5519                 this.showPrevMonth();
5520             },
5521
5522             "enter" : function(e){
5523                 e.stopPropagation();
5524                 return true;
5525             },
5526
5527             scope : this
5528         });
5529
5530         this.eventEl.on("click", this.handleDateClick,  this, {delegate: "a.x-date-date"});
5531
5532         this.eventEl.addKeyListener(Roo.EventObject.SPACE, this.selectToday,  this);
5533
5534         this.el.unselectable();
5535         
5536         this.cells = this.el.select("table.x-date-inner tbody td");
5537         this.textNodes = this.el.query("table.x-date-inner tbody span");
5538
5539         this.mbtn = new Roo.Button(this.el.child("td.x-date-middle", true), {
5540             text: "&#160;",
5541             tooltip: this.monthYearText
5542         });
5543
5544         this.mbtn.on('click', this.showMonthPicker, this);
5545         this.mbtn.el.child(this.mbtn.menuClassTarget).addClass("x-btn-with-menu");
5546
5547
5548         var today = (new Date()).dateFormat(this.format);
5549         
5550         var baseTb = new Roo.Toolbar(this.el.child("td.x-date-bottom", true));
5551         if (this.showClear) {
5552             baseTb.add( new Roo.Toolbar.Fill());
5553         }
5554         baseTb.add({
5555             text: String.format(this.todayText, today),
5556             tooltip: String.format(this.todayTip, today),
5557             handler: this.selectToday,
5558             scope: this
5559         });
5560         
5561         //var todayBtn = new Roo.Button(this.el.child("td.x-date-bottom", true), {
5562             
5563         //});
5564         if (this.showClear) {
5565             
5566             baseTb.add( new Roo.Toolbar.Fill());
5567             baseTb.add({
5568                 text: '&#160;',
5569                 cls: 'x-btn-icon x-btn-clear',
5570                 handler: function() {
5571                     //this.value = '';
5572                     this.fireEvent("select", this, '');
5573                 },
5574                 scope: this
5575             });
5576         }
5577         
5578         
5579         if(Roo.isIE){
5580             this.el.repaint();
5581         }
5582         this.update(this.value);
5583     },
5584
5585     createMonthPicker : function(){
5586         if(!this.monthPicker.dom.firstChild){
5587             var buf = ['<table border="0" cellspacing="0">'];
5588             for(var i = 0; i < 6; i++){
5589                 buf.push(
5590                     '<tr><td class="x-date-mp-month"><a href="#">', this.monthNames[i].substr(0, 3), '</a></td>',
5591                     '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', this.monthNames[i+6].substr(0, 3), '</a></td>',
5592                     i == 0 ?
5593                     '<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>' :
5594                     '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>'
5595                 );
5596             }
5597             buf.push(
5598                 '<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">',
5599                     this.okText,
5600                     '</button><button type="button" class="x-date-mp-cancel">',
5601                     this.cancelText,
5602                     '</button></td></tr>',
5603                 '</table>'
5604             );
5605             this.monthPicker.update(buf.join(''));
5606             this.monthPicker.on('click', this.onMonthClick, this);
5607             this.monthPicker.on('dblclick', this.onMonthDblClick, this);
5608
5609             this.mpMonths = this.monthPicker.select('td.x-date-mp-month');
5610             this.mpYears = this.monthPicker.select('td.x-date-mp-year');
5611
5612             this.mpMonths.each(function(m, a, i){
5613                 i += 1;
5614                 if((i%2) == 0){
5615                     m.dom.xmonth = 5 + Math.round(i * .5);
5616                 }else{
5617                     m.dom.xmonth = Math.round((i-1) * .5);
5618                 }
5619             });
5620         }
5621     },
5622
5623     showMonthPicker : function(){
5624         this.createMonthPicker();
5625         var size = this.el.getSize();
5626         this.monthPicker.setSize(size);
5627         this.monthPicker.child('table').setSize(size);
5628
5629         this.mpSelMonth = (this.activeDate || this.value).getMonth();
5630         this.updateMPMonth(this.mpSelMonth);
5631         this.mpSelYear = (this.activeDate || this.value).getFullYear();
5632         this.updateMPYear(this.mpSelYear);
5633
5634         this.monthPicker.slideIn('t', {duration:.2});
5635     },
5636
5637     updateMPYear : function(y){
5638         this.mpyear = y;
5639         var ys = this.mpYears.elements;
5640         for(var i = 1; i <= 10; i++){
5641             var td = ys[i-1], y2;
5642             if((i%2) == 0){
5643                 y2 = y + Math.round(i * .5);
5644                 td.firstChild.innerHTML = y2;
5645                 td.xyear = y2;
5646             }else{
5647                 y2 = y - (5-Math.round(i * .5));
5648                 td.firstChild.innerHTML = y2;
5649                 td.xyear = y2;
5650             }
5651             this.mpYears.item(i-1)[y2 == this.mpSelYear ? 'addClass' : 'removeClass']('x-date-mp-sel');
5652         }
5653     },
5654
5655     updateMPMonth : function(sm){
5656         this.mpMonths.each(function(m, a, i){
5657             m[m.dom.xmonth == sm ? 'addClass' : 'removeClass']('x-date-mp-sel');
5658         });
5659     },
5660
5661     selectMPMonth: function(m){
5662         
5663     },
5664
5665     onMonthClick : function(e, t){
5666         e.stopEvent();
5667         var el = new Roo.Element(t), pn;
5668         if(el.is('button.x-date-mp-cancel')){
5669             this.hideMonthPicker();
5670         }
5671         else if(el.is('button.x-date-mp-ok')){
5672             this.update(new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
5673             this.hideMonthPicker();
5674         }
5675         else if(pn = el.up('td.x-date-mp-month', 2)){
5676             this.mpMonths.removeClass('x-date-mp-sel');
5677             pn.addClass('x-date-mp-sel');
5678             this.mpSelMonth = pn.dom.xmonth;
5679         }
5680         else if(pn = el.up('td.x-date-mp-year', 2)){
5681             this.mpYears.removeClass('x-date-mp-sel');
5682             pn.addClass('x-date-mp-sel');
5683             this.mpSelYear = pn.dom.xyear;
5684         }
5685         else if(el.is('a.x-date-mp-prev')){
5686             this.updateMPYear(this.mpyear-10);
5687         }
5688         else if(el.is('a.x-date-mp-next')){
5689             this.updateMPYear(this.mpyear+10);
5690         }
5691     },
5692
5693     onMonthDblClick : function(e, t){
5694         e.stopEvent();
5695         var el = new Roo.Element(t), pn;
5696         if(pn = el.up('td.x-date-mp-month', 2)){
5697             this.update(new Date(this.mpSelYear, pn.dom.xmonth, (this.activeDate || this.value).getDate()));
5698             this.hideMonthPicker();
5699         }
5700         else if(pn = el.up('td.x-date-mp-year', 2)){
5701             this.update(new Date(pn.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
5702             this.hideMonthPicker();
5703         }
5704     },
5705
5706     hideMonthPicker : function(disableAnim){
5707         if(this.monthPicker){
5708             if(disableAnim === true){
5709                 this.monthPicker.hide();
5710             }else{
5711                 this.monthPicker.slideOut('t', {duration:.2});
5712             }
5713         }
5714     },
5715
5716     // private
5717     showPrevMonth : function(e){
5718         this.update(this.activeDate.add("mo", -1));
5719     },
5720
5721     // private
5722     showNextMonth : function(e){
5723         this.update(this.activeDate.add("mo", 1));
5724     },
5725
5726     // private
5727     showPrevYear : function(){
5728         this.update(this.activeDate.add("y", -1));
5729     },
5730
5731     // private
5732     showNextYear : function(){
5733         this.update(this.activeDate.add("y", 1));
5734     },
5735
5736     // private
5737     handleMouseWheel : function(e){
5738         var delta = e.getWheelDelta();
5739         if(delta > 0){
5740             this.showPrevMonth();
5741             e.stopEvent();
5742         } else if(delta < 0){
5743             this.showNextMonth();
5744             e.stopEvent();
5745         }
5746     },
5747
5748     // private
5749     handleDateClick : function(e, t){
5750         e.stopEvent();
5751         if(t.dateValue && !Roo.fly(t.parentNode).hasClass("x-date-disabled")){
5752             this.setValue(new Date(t.dateValue));
5753             this.fireEvent("select", this, this.value);
5754         }
5755     },
5756
5757     // private
5758     selectToday : function(){
5759         this.setValue(new Date().clearTime());
5760         this.fireEvent("select", this, this.value);
5761     },
5762
5763     // private
5764     update : function(date)
5765     {
5766         var vd = this.activeDate;
5767         this.activeDate = date;
5768         if(vd && this.el){
5769             var t = date.getTime();
5770             if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
5771                 this.cells.removeClass("x-date-selected");
5772                 this.cells.each(function(c){
5773                    if(c.dom.firstChild.dateValue == t){
5774                        c.addClass("x-date-selected");
5775                        setTimeout(function(){
5776                             try{c.dom.firstChild.focus();}catch(e){}
5777                        }, 50);
5778                        return false;
5779                    }
5780                 });
5781                 return;
5782             }
5783         }
5784         
5785         var days = date.getDaysInMonth();
5786         var firstOfMonth = date.getFirstDateOfMonth();
5787         var startingPos = firstOfMonth.getDay()-this.startDay;
5788
5789         if(startingPos <= this.startDay){
5790             startingPos += 7;
5791         }
5792
5793         var pm = date.add("mo", -1);
5794         var prevStart = pm.getDaysInMonth()-startingPos;
5795
5796         var cells = this.cells.elements;
5797         var textEls = this.textNodes;
5798         days += startingPos;
5799
5800         // convert everything to numbers so it's fast
5801         var day = 86400000;
5802         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
5803         var today = new Date().clearTime().getTime();
5804         var sel = date.clearTime().getTime();
5805         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
5806         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
5807         var ddMatch = this.disabledDatesRE;
5808         var ddText = this.disabledDatesText;
5809         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
5810         var ddaysText = this.disabledDaysText;
5811         var format = this.format;
5812
5813         var setCellClass = function(cal, cell){
5814             cell.title = "";
5815             var t = d.getTime();
5816             cell.firstChild.dateValue = t;
5817             if(t == today){
5818                 cell.className += " x-date-today";
5819                 cell.title = cal.todayText;
5820             }
5821             if(t == sel){
5822                 cell.className += " x-date-selected";
5823                 setTimeout(function(){
5824                     try{cell.firstChild.focus();}catch(e){}
5825                 }, 50);
5826             }
5827             // disabling
5828             if(t < min) {
5829                 cell.className = " x-date-disabled";
5830                 cell.title = cal.minText;
5831                 return;
5832             }
5833             if(t > max) {
5834                 cell.className = " x-date-disabled";
5835                 cell.title = cal.maxText;
5836                 return;
5837             }
5838             if(ddays){
5839                 if(ddays.indexOf(d.getDay()) != -1){
5840                     cell.title = ddaysText;
5841                     cell.className = " x-date-disabled";
5842                 }
5843             }
5844             if(ddMatch && format){
5845                 var fvalue = d.dateFormat(format);
5846                 if(ddMatch.test(fvalue)){
5847                     cell.title = ddText.replace("%0", fvalue);
5848                     cell.className = " x-date-disabled";
5849                 }
5850             }
5851         };
5852
5853         var i = 0;
5854         for(; i < startingPos; i++) {
5855             textEls[i].innerHTML = (++prevStart);
5856             d.setDate(d.getDate()+1);
5857             cells[i].className = "x-date-prevday";
5858             setCellClass(this, cells[i]);
5859         }
5860         for(; i < days; i++){
5861             intDay = i - startingPos + 1;
5862             textEls[i].innerHTML = (intDay);
5863             d.setDate(d.getDate()+1);
5864             cells[i].className = "x-date-active";
5865             setCellClass(this, cells[i]);
5866         }
5867         var extraDays = 0;
5868         for(; i < 42; i++) {
5869              textEls[i].innerHTML = (++extraDays);
5870              d.setDate(d.getDate()+1);
5871              cells[i].className = "x-date-nextday";
5872              setCellClass(this, cells[i]);
5873         }
5874
5875         this.mbtn.setText(this.monthNames[date.getMonth()] + " " + date.getFullYear());
5876         this.fireEvent('monthchange', this, date);
5877         
5878         if(!this.internalRender){
5879             var main = this.el.dom.firstChild;
5880             var w = main.offsetWidth;
5881             this.el.setWidth(w + this.el.getBorderWidth("lr"));
5882             Roo.fly(main).setWidth(w);
5883             this.internalRender = true;
5884             // opera does not respect the auto grow header center column
5885             // then, after it gets a width opera refuses to recalculate
5886             // without a second pass
5887             if(Roo.isOpera && !this.secondPass){
5888                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
5889                 this.secondPass = true;
5890                 this.update.defer(10, this, [date]);
5891             }
5892         }
5893         
5894         
5895     }
5896 });        /*
5897  * Based on:
5898  * Ext JS Library 1.1.1
5899  * Copyright(c) 2006-2007, Ext JS, LLC.
5900  *
5901  * Originally Released Under LGPL - original licence link has changed is not relivant.
5902  *
5903  * Fork - LGPL
5904  * <script type="text/javascript">
5905  */
5906 /**
5907  * @class Roo.TabPanel
5908  * @extends Roo.util.Observable
5909  * A lightweight tab container.
5910  * <br><br>
5911  * Usage:
5912  * <pre><code>
5913 // basic tabs 1, built from existing content
5914 var tabs = new Roo.TabPanel("tabs1");
5915 tabs.addTab("script", "View Script");
5916 tabs.addTab("markup", "View Markup");
5917 tabs.activate("script");
5918
5919 // more advanced tabs, built from javascript
5920 var jtabs = new Roo.TabPanel("jtabs");
5921 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
5922
5923 // set up the UpdateManager
5924 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
5925 var updater = tab2.getUpdateManager();
5926 updater.setDefaultUrl("ajax1.htm");
5927 tab2.on('activate', updater.refresh, updater, true);
5928
5929 // Use setUrl for Ajax loading
5930 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
5931 tab3.setUrl("ajax2.htm", null, true);
5932
5933 // Disabled tab
5934 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
5935 tab4.disable();
5936
5937 jtabs.activate("jtabs-1");
5938  * </code></pre>
5939  * @constructor
5940  * Create a new TabPanel.
5941  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
5942  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
5943  */
5944 Roo.TabPanel = function(container, config){
5945     /**
5946     * The container element for this TabPanel.
5947     * @type Roo.Element
5948     */
5949     this.el = Roo.get(container, true);
5950     if(config){
5951         if(typeof config == "boolean"){
5952             this.tabPosition = config ? "bottom" : "top";
5953         }else{
5954             Roo.apply(this, config);
5955         }
5956     }
5957     if(this.tabPosition == "bottom"){
5958         this.bodyEl = Roo.get(this.createBody(this.el.dom));
5959         this.el.addClass("x-tabs-bottom");
5960     }
5961     this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
5962     this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
5963     this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
5964     if(Roo.isIE){
5965         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
5966     }
5967     if(this.tabPosition != "bottom"){
5968         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
5969          * @type Roo.Element
5970          */
5971         this.bodyEl = Roo.get(this.createBody(this.el.dom));
5972         this.el.addClass("x-tabs-top");
5973     }
5974     this.items = [];
5975
5976     this.bodyEl.setStyle("position", "relative");
5977
5978     this.active = null;
5979     this.activateDelegate = this.activate.createDelegate(this);
5980
5981     this.addEvents({
5982         /**
5983          * @event tabchange
5984          * Fires when the active tab changes
5985          * @param {Roo.TabPanel} this
5986          * @param {Roo.TabPanelItem} activePanel The new active tab
5987          */
5988         "tabchange": true,
5989         /**
5990          * @event beforetabchange
5991          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
5992          * @param {Roo.TabPanel} this
5993          * @param {Object} e Set cancel to true on this object to cancel the tab change
5994          * @param {Roo.TabPanelItem} tab The tab being changed to
5995          */
5996         "beforetabchange" : true
5997     });
5998
5999     Roo.EventManager.onWindowResize(this.onResize, this);
6000     this.cpad = this.el.getPadding("lr");
6001     this.hiddenCount = 0;
6002
6003
6004     // toolbar on the tabbar support...
6005     if (this.toolbar) {
6006         var tcfg = this.toolbar;
6007         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
6008         this.toolbar = new Roo.Toolbar(tcfg);
6009         if (Roo.isSafari) {
6010             var tbl = tcfg.container.child('table', true);
6011             tbl.setAttribute('width', '100%');
6012         }
6013         
6014     }
6015    
6016
6017
6018     Roo.TabPanel.superclass.constructor.call(this);
6019 };
6020
6021 Roo.extend(Roo.TabPanel, Roo.util.Observable, {
6022     /*
6023      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
6024      */
6025     tabPosition : "top",
6026     /*
6027      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
6028      */
6029     currentTabWidth : 0,
6030     /*
6031      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
6032      */
6033     minTabWidth : 40,
6034     /*
6035      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
6036      */
6037     maxTabWidth : 250,
6038     /*
6039      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
6040      */
6041     preferredTabWidth : 175,
6042     /*
6043      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
6044      */
6045     resizeTabs : false,
6046     /*
6047      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
6048      */
6049     monitorResize : true,
6050     /*
6051      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
6052      */
6053     toolbar : false,
6054
6055     /**
6056      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
6057      * @param {String} id The id of the div to use <b>or create</b>
6058      * @param {String} text The text for the tab
6059      * @param {String} content (optional) Content to put in the TabPanelItem body
6060      * @param {Boolean} closable (optional) True to create a close icon on the tab
6061      * @return {Roo.TabPanelItem} The created TabPanelItem
6062      */
6063     addTab : function(id, text, content, closable){
6064         var item = new Roo.TabPanelItem(this, id, text, closable);
6065         this.addTabItem(item);
6066         if(content){
6067             item.setContent(content);
6068         }
6069         return item;
6070     },
6071
6072     /**
6073      * Returns the {@link Roo.TabPanelItem} with the specified id/index
6074      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
6075      * @return {Roo.TabPanelItem}
6076      */
6077     getTab : function(id){
6078         return this.items[id];
6079     },
6080
6081     /**
6082      * Hides the {@link Roo.TabPanelItem} with the specified id/index
6083      * @param {String/Number} id The id or index of the TabPanelItem to hide.
6084      */
6085     hideTab : function(id){
6086         var t = this.items[id];
6087         if(!t.isHidden()){
6088            t.setHidden(true);
6089            this.hiddenCount++;
6090            this.autoSizeTabs();
6091         }
6092     },
6093
6094     /**
6095      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
6096      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
6097      */
6098     unhideTab : function(id){
6099         var t = this.items[id];
6100         if(t.isHidden()){
6101            t.setHidden(false);
6102            this.hiddenCount--;
6103            this.autoSizeTabs();
6104         }
6105     },
6106
6107     /**
6108      * Adds an existing {@link Roo.TabPanelItem}.
6109      * @param {Roo.TabPanelItem} item The TabPanelItem to add
6110      */
6111     addTabItem : function(item){
6112         this.items[item.id] = item;
6113         this.items.push(item);
6114         if(this.resizeTabs){
6115            item.setWidth(this.currentTabWidth || this.preferredTabWidth);
6116            this.autoSizeTabs();
6117         }else{
6118             item.autoSize();
6119         }
6120     },
6121
6122     /**
6123      * Removes a {@link Roo.TabPanelItem}.
6124      * @param {String/Number} id The id or index of the TabPanelItem to remove.
6125      */
6126     removeTab : function(id){
6127         var items = this.items;
6128         var tab = items[id];
6129         if(!tab) { return; }
6130         var index = items.indexOf(tab);
6131         if(this.active == tab && items.length > 1){
6132             var newTab = this.getNextAvailable(index);
6133             if(newTab) {
6134                 newTab.activate();
6135             }
6136         }
6137         this.stripEl.dom.removeChild(tab.pnode.dom);
6138         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
6139             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
6140         }
6141         items.splice(index, 1);
6142         delete this.items[tab.id];
6143         tab.fireEvent("close", tab);
6144         tab.purgeListeners();
6145         this.autoSizeTabs();
6146     },
6147
6148     getNextAvailable : function(start){
6149         var items = this.items;
6150         var index = start;
6151         // look for a next tab that will slide over to
6152         // replace the one being removed
6153         while(index < items.length){
6154             var item = items[++index];
6155             if(item && !item.isHidden()){
6156                 return item;
6157             }
6158         }
6159         // if one isn't found select the previous tab (on the left)
6160         index = start;
6161         while(index >= 0){
6162             var item = items[--index];
6163             if(item && !item.isHidden()){
6164                 return item;
6165             }
6166         }
6167         return null;
6168     },
6169
6170     /**
6171      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
6172      * @param {String/Number} id The id or index of the TabPanelItem to disable.
6173      */
6174     disableTab : function(id){
6175         var tab = this.items[id];
6176         if(tab && this.active != tab){
6177             tab.disable();
6178         }
6179     },
6180
6181     /**
6182      * Enables a {@link Roo.TabPanelItem} that is disabled.
6183      * @param {String/Number} id The id or index of the TabPanelItem to enable.
6184      */
6185     enableTab : function(id){
6186         var tab = this.items[id];
6187         tab.enable();
6188     },
6189
6190     /**
6191      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
6192      * @param {String/Number} id The id or index of the TabPanelItem to activate.
6193      * @return {Roo.TabPanelItem} The TabPanelItem.
6194      */
6195     activate : function(id){
6196         var tab = this.items[id];
6197         if(!tab){
6198             return null;
6199         }
6200         if(tab == this.active || tab.disabled){
6201             return tab;
6202         }
6203         var e = {};
6204         this.fireEvent("beforetabchange", this, e, tab);
6205         if(e.cancel !== true && !tab.disabled){
6206             if(this.active){
6207                 this.active.hide();
6208             }
6209             this.active = this.items[id];
6210             this.active.show();
6211             this.fireEvent("tabchange", this, this.active);
6212         }
6213         return tab;
6214     },
6215
6216     /**
6217      * Gets the active {@link Roo.TabPanelItem}.
6218      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
6219      */
6220     getActiveTab : function(){
6221         return this.active;
6222     },
6223
6224     /**
6225      * Updates the tab body element to fit the height of the container element
6226      * for overflow scrolling
6227      * @param {Number} targetHeight (optional) Override the starting height from the elements height
6228      */
6229     syncHeight : function(targetHeight){
6230         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
6231         var bm = this.bodyEl.getMargins();
6232         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
6233         this.bodyEl.setHeight(newHeight);
6234         return newHeight;
6235     },
6236
6237     onResize : function(){
6238         if(this.monitorResize){
6239             this.autoSizeTabs();
6240         }
6241     },
6242
6243     /**
6244      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
6245      */
6246     beginUpdate : function(){
6247         this.updating = true;
6248     },
6249
6250     /**
6251      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
6252      */
6253     endUpdate : function(){
6254         this.updating = false;
6255         this.autoSizeTabs();
6256     },
6257
6258     /**
6259      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
6260      */
6261     autoSizeTabs : function(){
6262         var count = this.items.length;
6263         var vcount = count - this.hiddenCount;
6264         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
6265             return;
6266         }
6267         var w = Math.max(this.el.getWidth() - this.cpad, 10);
6268         var availWidth = Math.floor(w / vcount);
6269         var b = this.stripBody;
6270         if(b.getWidth() > w){
6271             var tabs = this.items;
6272             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
6273             if(availWidth < this.minTabWidth){
6274                 /*if(!this.sleft){    // incomplete scrolling code
6275                     this.createScrollButtons();
6276                 }
6277                 this.showScroll();
6278                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
6279             }
6280         }else{
6281             if(this.currentTabWidth < this.preferredTabWidth){
6282                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
6283             }
6284         }
6285     },
6286
6287     /**
6288      * Returns the number of tabs in this TabPanel.
6289      * @return {Number}
6290      */
6291      getCount : function(){
6292          return this.items.length;
6293      },
6294
6295     /**
6296      * Resizes all the tabs to the passed width
6297      * @param {Number} The new width
6298      */
6299     setTabWidth : function(width){
6300         this.currentTabWidth = width;
6301         for(var i = 0, len = this.items.length; i < len; i++) {
6302                 if(!this.items[i].isHidden()) {
6303                 this.items[i].setWidth(width);
6304             }
6305         }
6306     },
6307
6308     /**
6309      * Destroys this TabPanel
6310      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
6311      */
6312     destroy : function(removeEl){
6313         Roo.EventManager.removeResizeListener(this.onResize, this);
6314         for(var i = 0, len = this.items.length; i < len; i++){
6315             this.items[i].purgeListeners();
6316         }
6317         if(removeEl === true){
6318             this.el.update("");
6319             this.el.remove();
6320         }
6321     }
6322 });
6323
6324 /**
6325  * @class Roo.TabPanelItem
6326  * @extends Roo.util.Observable
6327  * Represents an individual item (tab plus body) in a TabPanel.
6328  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
6329  * @param {String} id The id of this TabPanelItem
6330  * @param {String} text The text for the tab of this TabPanelItem
6331  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
6332  */
6333 Roo.TabPanelItem = function(tabPanel, id, text, closable){
6334     /**
6335      * The {@link Roo.TabPanel} this TabPanelItem belongs to
6336      * @type Roo.TabPanel
6337      */
6338     this.tabPanel = tabPanel;
6339     /**
6340      * The id for this TabPanelItem
6341      * @type String
6342      */
6343     this.id = id;
6344     /** @private */
6345     this.disabled = false;
6346     /** @private */
6347     this.text = text;
6348     /** @private */
6349     this.loaded = false;
6350     this.closable = closable;
6351
6352     /**
6353      * The body element for this TabPanelItem.
6354      * @type Roo.Element
6355      */
6356     this.bodyEl = Roo.get(tabPanel.createItemBody(tabPanel.bodyEl.dom, id));
6357     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
6358     this.bodyEl.setStyle("display", "block");
6359     this.bodyEl.setStyle("zoom", "1");
6360     this.hideAction();
6361
6362     var els = tabPanel.createStripElements(tabPanel.stripEl.dom, text, closable);
6363     /** @private */
6364     this.el = Roo.get(els.el, true);
6365     this.inner = Roo.get(els.inner, true);
6366     this.textEl = Roo.get(this.el.dom.firstChild.firstChild.firstChild, true);
6367     this.pnode = Roo.get(els.el.parentNode, true);
6368     this.el.on("mousedown", this.onTabMouseDown, this);
6369     this.el.on("click", this.onTabClick, this);
6370     /** @private */
6371     if(closable){
6372         var c = Roo.get(els.close, true);
6373         c.dom.title = this.closeText;
6374         c.addClassOnOver("close-over");
6375         c.on("click", this.closeClick, this);
6376      }
6377
6378     this.addEvents({
6379          /**
6380          * @event activate
6381          * Fires when this tab becomes the active tab.
6382          * @param {Roo.TabPanel} tabPanel The parent TabPanel
6383          * @param {Roo.TabPanelItem} this
6384          */
6385         "activate": true,
6386         /**
6387          * @event beforeclose
6388          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
6389          * @param {Roo.TabPanelItem} this
6390          * @param {Object} e Set cancel to true on this object to cancel the close.
6391          */
6392         "beforeclose": true,
6393         /**
6394          * @event close
6395          * Fires when this tab is closed.
6396          * @param {Roo.TabPanelItem} this
6397          */
6398          "close": true,
6399         /**
6400          * @event deactivate
6401          * Fires when this tab is no longer the active tab.
6402          * @param {Roo.TabPanel} tabPanel The parent TabPanel
6403          * @param {Roo.TabPanelItem} this
6404          */
6405          "deactivate" : true
6406     });
6407     this.hidden = false;
6408
6409     Roo.TabPanelItem.superclass.constructor.call(this);
6410 };
6411
6412 Roo.extend(Roo.TabPanelItem, Roo.util.Observable, {
6413     purgeListeners : function(){
6414        Roo.util.Observable.prototype.purgeListeners.call(this);
6415        this.el.removeAllListeners();
6416     },
6417     /**
6418      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
6419      */
6420     show : function(){
6421         this.pnode.addClass("on");
6422         this.showAction();
6423         if(Roo.isOpera){
6424             this.tabPanel.stripWrap.repaint();
6425         }
6426         this.fireEvent("activate", this.tabPanel, this);
6427     },
6428
6429     /**
6430      * Returns true if this tab is the active tab.
6431      * @return {Boolean}
6432      */
6433     isActive : function(){
6434         return this.tabPanel.getActiveTab() == this;
6435     },
6436
6437     /**
6438      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
6439      */
6440     hide : function(){
6441         this.pnode.removeClass("on");
6442         this.hideAction();
6443         this.fireEvent("deactivate", this.tabPanel, this);
6444     },
6445
6446     hideAction : function(){
6447         this.bodyEl.hide();
6448         this.bodyEl.setStyle("position", "absolute");
6449         this.bodyEl.setLeft("-20000px");
6450         this.bodyEl.setTop("-20000px");
6451     },
6452
6453     showAction : function(){
6454         this.bodyEl.setStyle("position", "relative");
6455         this.bodyEl.setTop("");
6456         this.bodyEl.setLeft("");
6457         this.bodyEl.show();
6458     },
6459
6460     /**
6461      * Set the tooltip for the tab.
6462      * @param {String} tooltip The tab's tooltip
6463      */
6464     setTooltip : function(text){
6465         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
6466             this.textEl.dom.qtip = text;
6467             this.textEl.dom.removeAttribute('title');
6468         }else{
6469             this.textEl.dom.title = text;
6470         }
6471     },
6472
6473     onTabClick : function(e){
6474         e.preventDefault();
6475         this.tabPanel.activate(this.id);
6476     },
6477
6478     onTabMouseDown : function(e){
6479         e.preventDefault();
6480         this.tabPanel.activate(this.id);
6481     },
6482
6483     getWidth : function(){
6484         return this.inner.getWidth();
6485     },
6486
6487     setWidth : function(width){
6488         var iwidth = width - this.pnode.getPadding("lr");
6489         this.inner.setWidth(iwidth);
6490         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
6491         this.pnode.setWidth(width);
6492     },
6493
6494     /**
6495      * Show or hide the tab
6496      * @param {Boolean} hidden True to hide or false to show.
6497      */
6498     setHidden : function(hidden){
6499         this.hidden = hidden;
6500         this.pnode.setStyle("display", hidden ? "none" : "");
6501     },
6502
6503     /**
6504      * Returns true if this tab is "hidden"
6505      * @return {Boolean}
6506      */
6507     isHidden : function(){
6508         return this.hidden;
6509     },
6510
6511     /**
6512      * Returns the text for this tab
6513      * @return {String}
6514      */
6515     getText : function(){
6516         return this.text;
6517     },
6518
6519     autoSize : function(){
6520         //this.el.beginMeasure();
6521         this.textEl.setWidth(1);
6522         /*
6523          *  #2804 [new] Tabs in Roojs
6524          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
6525          */
6526         this.setWidth(this.textEl.dom.scrollWidth+this.pnode.getPadding("lr")+this.inner.getPadding("lr") + 2);
6527         //this.el.endMeasure();
6528     },
6529
6530     /**
6531      * Sets the text for the tab (Note: this also sets the tooltip text)
6532      * @param {String} text The tab's text and tooltip
6533      */
6534     setText : function(text){
6535         this.text = text;
6536         this.textEl.update(text);
6537         this.setTooltip(text);
6538         if(!this.tabPanel.resizeTabs){
6539             this.autoSize();
6540         }
6541     },
6542     /**
6543      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
6544      */
6545     activate : function(){
6546         this.tabPanel.activate(this.id);
6547     },
6548
6549     /**
6550      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
6551      */
6552     disable : function(){
6553         if(this.tabPanel.active != this){
6554             this.disabled = true;
6555             this.pnode.addClass("disabled");
6556         }
6557     },
6558
6559     /**
6560      * Enables this TabPanelItem if it was previously disabled.
6561      */
6562     enable : function(){
6563         this.disabled = false;
6564         this.pnode.removeClass("disabled");
6565     },
6566
6567     /**
6568      * Sets the content for this TabPanelItem.
6569      * @param {String} content The content
6570      * @param {Boolean} loadScripts true to look for and load scripts
6571      */
6572     setContent : function(content, loadScripts){
6573         this.bodyEl.update(content, loadScripts);
6574     },
6575
6576     /**
6577      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
6578      * @return {Roo.UpdateManager} The UpdateManager
6579      */
6580     getUpdateManager : function(){
6581         return this.bodyEl.getUpdateManager();
6582     },
6583
6584     /**
6585      * Set a URL to be used to load the content for this TabPanelItem.
6586      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
6587      * @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)
6588      * @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)
6589      * @return {Roo.UpdateManager} The UpdateManager
6590      */
6591     setUrl : function(url, params, loadOnce){
6592         if(this.refreshDelegate){
6593             this.un('activate', this.refreshDelegate);
6594         }
6595         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
6596         this.on("activate", this.refreshDelegate);
6597         return this.bodyEl.getUpdateManager();
6598     },
6599
6600     /** @private */
6601     _handleRefresh : function(url, params, loadOnce){
6602         if(!loadOnce || !this.loaded){
6603             var updater = this.bodyEl.getUpdateManager();
6604             updater.update(url, params, this._setLoaded.createDelegate(this));
6605         }
6606     },
6607
6608     /**
6609      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
6610      *   Will fail silently if the setUrl method has not been called.
6611      *   This does not activate the panel, just updates its content.
6612      */
6613     refresh : function(){
6614         if(this.refreshDelegate){
6615            this.loaded = false;
6616            this.refreshDelegate();
6617         }
6618     },
6619
6620     /** @private */
6621     _setLoaded : function(){
6622         this.loaded = true;
6623     },
6624
6625     /** @private */
6626     closeClick : function(e){
6627         var o = {};
6628         e.stopEvent();
6629         this.fireEvent("beforeclose", this, o);
6630         if(o.cancel !== true){
6631             this.tabPanel.removeTab(this.id);
6632         }
6633     },
6634     /**
6635      * The text displayed in the tooltip for the close icon.
6636      * @type String
6637      */
6638     closeText : "Close this tab"
6639 });
6640
6641 /** @private */
6642 Roo.TabPanel.prototype.createStrip = function(container){
6643     var strip = document.createElement("div");
6644     strip.className = "x-tabs-wrap";
6645     container.appendChild(strip);
6646     return strip;
6647 };
6648 /** @private */
6649 Roo.TabPanel.prototype.createStripList = function(strip){
6650     // div wrapper for retard IE
6651     // returns the "tr" element.
6652     strip.innerHTML = '<div class="x-tabs-strip-wrap">'+
6653         '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
6654         '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
6655     return strip.firstChild.firstChild.firstChild.firstChild;
6656 };
6657 /** @private */
6658 Roo.TabPanel.prototype.createBody = function(container){
6659     var body = document.createElement("div");
6660     Roo.id(body, "tab-body");
6661     Roo.fly(body).addClass("x-tabs-body");
6662     container.appendChild(body);
6663     return body;
6664 };
6665 /** @private */
6666 Roo.TabPanel.prototype.createItemBody = function(bodyEl, id){
6667     var body = Roo.getDom(id);
6668     if(!body){
6669         body = document.createElement("div");
6670         body.id = id;
6671     }
6672     Roo.fly(body).addClass("x-tabs-item-body");
6673     bodyEl.insertBefore(body, bodyEl.firstChild);
6674     return body;
6675 };
6676 /** @private */
6677 Roo.TabPanel.prototype.createStripElements = function(stripEl, text, closable){
6678     var td = document.createElement("td");
6679     stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
6680     //stripEl.appendChild(td);
6681     if(closable){
6682         td.className = "x-tabs-closable";
6683         if(!this.closeTpl){
6684             this.closeTpl = new Roo.Template(
6685                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
6686                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
6687                '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
6688             );
6689         }
6690         var el = this.closeTpl.overwrite(td, {"text": text});
6691         var close = el.getElementsByTagName("div")[0];
6692         var inner = el.getElementsByTagName("em")[0];
6693         return {"el": el, "close": close, "inner": inner};
6694     } else {
6695         if(!this.tabTpl){
6696             this.tabTpl = new Roo.Template(
6697                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
6698                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
6699             );
6700         }
6701         var el = this.tabTpl.overwrite(td, {"text": text});
6702         var inner = el.getElementsByTagName("em")[0];
6703         return {"el": el, "inner": inner};
6704     }
6705 };/*
6706  * Based on:
6707  * Ext JS Library 1.1.1
6708  * Copyright(c) 2006-2007, Ext JS, LLC.
6709  *
6710  * Originally Released Under LGPL - original licence link has changed is not relivant.
6711  *
6712  * Fork - LGPL
6713  * <script type="text/javascript">
6714  */
6715
6716 /**
6717  * @class Roo.Button
6718  * @extends Roo.util.Observable
6719  * Simple Button class
6720  * @cfg {String} text The button text
6721  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
6722  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
6723  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event)
6724  * @cfg {Object} scope The scope of the handler
6725  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width)
6726  * @cfg {String/Object} tooltip The tooltip for the button - can be a string or QuickTips config object
6727  * @cfg {Boolean} hidden True to start hidden (defaults to false)
6728  * @cfg {Boolean} disabled True to start disabled (defaults to false)
6729  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
6730  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed, only
6731    applies if enableToggle = true)
6732  * @cfg {String/HTMLElement/Element} renderTo The element to append the button to
6733  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
6734   an {@link Roo.util.ClickRepeater} config object (defaults to false).
6735  * @constructor
6736  * Create a new button
6737  * @param {Object} config The config object
6738  */
6739 Roo.Button = function(renderTo, config)
6740 {
6741     if (!config) {
6742         config = renderTo;
6743         renderTo = config.renderTo || false;
6744     }
6745     
6746     Roo.apply(this, config);
6747     this.addEvents({
6748         /**
6749              * @event click
6750              * Fires when this button is clicked
6751              * @param {Button} this
6752              * @param {EventObject} e The click event
6753              */
6754             "click" : true,
6755         /**
6756              * @event toggle
6757              * Fires when the "pressed" state of this button changes (only if enableToggle = true)
6758              * @param {Button} this
6759              * @param {Boolean} pressed
6760              */
6761             "toggle" : true,
6762         /**
6763              * @event mouseover
6764              * Fires when the mouse hovers over the button
6765              * @param {Button} this
6766              * @param {Event} e The event object
6767              */
6768         'mouseover' : true,
6769         /**
6770              * @event mouseout
6771              * Fires when the mouse exits the button
6772              * @param {Button} this
6773              * @param {Event} e The event object
6774              */
6775         'mouseout': true,
6776          /**
6777              * @event render
6778              * Fires when the button is rendered
6779              * @param {Button} this
6780              */
6781         'render': true
6782     });
6783     if(this.menu){
6784         this.menu = Roo.menu.MenuMgr.get(this.menu);
6785     }
6786     // register listeners first!!  - so render can be captured..
6787     Roo.util.Observable.call(this);
6788     if(renderTo){
6789         this.render(renderTo);
6790     }
6791     
6792   
6793 };
6794
6795 Roo.extend(Roo.Button, Roo.util.Observable, {
6796     /**
6797      * 
6798      */
6799     
6800     /**
6801      * Read-only. True if this button is hidden
6802      * @type Boolean
6803      */
6804     hidden : false,
6805     /**
6806      * Read-only. True if this button is disabled
6807      * @type Boolean
6808      */
6809     disabled : false,
6810     /**
6811      * Read-only. True if this button is pressed (only if enableToggle = true)
6812      * @type Boolean
6813      */
6814     pressed : false,
6815
6816     /**
6817      * @cfg {Number} tabIndex 
6818      * The DOM tabIndex for this button (defaults to undefined)
6819      */
6820     tabIndex : undefined,
6821
6822     /**
6823      * @cfg {Boolean} enableToggle
6824      * True to enable pressed/not pressed toggling (defaults to false)
6825      */
6826     enableToggle: false,
6827     /**
6828      * @cfg {Mixed} menu
6829      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
6830      */
6831     menu : undefined,
6832     /**
6833      * @cfg {String} menuAlign
6834      * The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').
6835      */
6836     menuAlign : "tl-bl?",
6837
6838     /**
6839      * @cfg {String} iconCls
6840      * A css class which sets a background image to be used as the icon for this button (defaults to undefined).
6841      */
6842     iconCls : undefined,
6843     /**
6844      * @cfg {String} type
6845      * The button's type, corresponding to the DOM input element type attribute.  Either "submit," "reset" or "button" (default).
6846      */
6847     type : 'button',
6848
6849     // private
6850     menuClassTarget: 'tr',
6851
6852     /**
6853      * @cfg {String} clickEvent
6854      * The type of event to map to the button's event handler (defaults to 'click')
6855      */
6856     clickEvent : 'click',
6857
6858     /**
6859      * @cfg {Boolean} handleMouseEvents
6860      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
6861      */
6862     handleMouseEvents : true,
6863
6864     /**
6865      * @cfg {String} tooltipType
6866      * The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
6867      */
6868     tooltipType : 'qtip',
6869
6870     /**
6871      * @cfg {String} cls
6872      * A CSS class to apply to the button's main element.
6873      */
6874     
6875     /**
6876      * @cfg {Roo.Template} template (Optional)
6877      * An {@link Roo.Template} with which to create the Button's main element. This Template must
6878      * contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
6879      * require code modifications if required elements (e.g. a button) aren't present.
6880      */
6881
6882     // private
6883     render : function(renderTo){
6884         var btn;
6885         if(this.hideParent){
6886             this.parentEl = Roo.get(renderTo);
6887         }
6888         if(!this.dhconfig){
6889             if(!this.template){
6890                 if(!Roo.Button.buttonTemplate){
6891                     // hideous table template
6892                     Roo.Button.buttonTemplate = new Roo.Template(
6893                         '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
6894                         '<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>',
6895                         "</tr></tbody></table>");
6896                 }
6897                 this.template = Roo.Button.buttonTemplate;
6898             }
6899             btn = this.template.append(renderTo, [this.text || '&#160;', this.type], true);
6900             var btnEl = btn.child("button:first");
6901             btnEl.on('focus', this.onFocus, this);
6902             btnEl.on('blur', this.onBlur, this);
6903             if(this.cls){
6904                 btn.addClass(this.cls);
6905             }
6906             if(this.icon){
6907                 btnEl.setStyle('background-image', 'url(' +this.icon +')');
6908             }
6909             if(this.iconCls){
6910                 btnEl.addClass(this.iconCls);
6911                 if(!this.cls){
6912                     btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
6913                 }
6914             }
6915             if(this.tabIndex !== undefined){
6916                 btnEl.dom.tabIndex = this.tabIndex;
6917             }
6918             if(this.tooltip){
6919                 if(typeof this.tooltip == 'object'){
6920                     Roo.QuickTips.tips(Roo.apply({
6921                           target: btnEl.id
6922                     }, this.tooltip));
6923                 } else {
6924                     btnEl.dom[this.tooltipType] = this.tooltip;
6925                 }
6926             }
6927         }else{
6928             btn = Roo.DomHelper.append(Roo.get(renderTo).dom, this.dhconfig, true);
6929         }
6930         this.el = btn;
6931         if(this.id){
6932             this.el.dom.id = this.el.id = this.id;
6933         }
6934         if(this.menu){
6935             this.el.child(this.menuClassTarget).addClass("x-btn-with-menu");
6936             this.menu.on("show", this.onMenuShow, this);
6937             this.menu.on("hide", this.onMenuHide, this);
6938         }
6939         btn.addClass("x-btn");
6940         if(Roo.isIE && !Roo.isIE7){
6941             this.autoWidth.defer(1, this);
6942         }else{
6943             this.autoWidth();
6944         }
6945         if(this.handleMouseEvents){
6946             btn.on("mouseover", this.onMouseOver, this);
6947             btn.on("mouseout", this.onMouseOut, this);
6948             btn.on("mousedown", this.onMouseDown, this);
6949         }
6950         btn.on(this.clickEvent, this.onClick, this);
6951         //btn.on("mouseup", this.onMouseUp, this);
6952         if(this.hidden){
6953             this.hide();
6954         }
6955         if(this.disabled){
6956             this.disable();
6957         }
6958         Roo.ButtonToggleMgr.register(this);
6959         if(this.pressed){
6960             this.el.addClass("x-btn-pressed");
6961         }
6962         if(this.repeat){
6963             var repeater = new Roo.util.ClickRepeater(btn,
6964                 typeof this.repeat == "object" ? this.repeat : {}
6965             );
6966             repeater.on("click", this.onClick,  this);
6967         }
6968         
6969         this.fireEvent('render', this);
6970         
6971     },
6972     /**
6973      * Returns the button's underlying element
6974      * @return {Roo.Element} The element
6975      */
6976     getEl : function(){
6977         return this.el;  
6978     },
6979     
6980     /**
6981      * Destroys this Button and removes any listeners.
6982      */
6983     destroy : function(){
6984         Roo.ButtonToggleMgr.unregister(this);
6985         this.el.removeAllListeners();
6986         this.purgeListeners();
6987         this.el.remove();
6988     },
6989
6990     // private
6991     autoWidth : function(){
6992         if(this.el){
6993             this.el.setWidth("auto");
6994             if(Roo.isIE7 && Roo.isStrict){
6995                 var ib = this.el.child('button');
6996                 if(ib && ib.getWidth() > 20){
6997                     ib.clip();
6998                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
6999                 }
7000             }
7001             if(this.minWidth){
7002                 if(this.hidden){
7003                     this.el.beginMeasure();
7004                 }
7005                 if(this.el.getWidth() < this.minWidth){
7006                     this.el.setWidth(this.minWidth);
7007                 }
7008                 if(this.hidden){
7009                     this.el.endMeasure();
7010                 }
7011             }
7012         }
7013     },
7014
7015     /**
7016      * Assigns this button's click handler
7017      * @param {Function} handler The function to call when the button is clicked
7018      * @param {Object} scope (optional) Scope for the function passed in
7019      */
7020     setHandler : function(handler, scope){
7021         this.handler = handler;
7022         this.scope = scope;  
7023     },
7024     
7025     /**
7026      * Sets this button's text
7027      * @param {String} text The button text
7028      */
7029     setText : function(text){
7030         this.text = text;
7031         if(this.el){
7032             this.el.child("td.x-btn-center button.x-btn-text").update(text);
7033         }
7034         this.autoWidth();
7035     },
7036     
7037     /**
7038      * Gets the text for this button
7039      * @return {String} The button text
7040      */
7041     getText : function(){
7042         return this.text;  
7043     },
7044     
7045     /**
7046      * Show this button
7047      */
7048     show: function(){
7049         this.hidden = false;
7050         if(this.el){
7051             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "");
7052         }
7053     },
7054     
7055     /**
7056      * Hide this button
7057      */
7058     hide: function(){
7059         this.hidden = true;
7060         if(this.el){
7061             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "none");
7062         }
7063     },
7064     
7065     /**
7066      * Convenience function for boolean show/hide
7067      * @param {Boolean} visible True to show, false to hide
7068      */
7069     setVisible: function(visible){
7070         if(visible) {
7071             this.show();
7072         }else{
7073             this.hide();
7074         }
7075     },
7076     
7077     /**
7078      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
7079      * @param {Boolean} state (optional) Force a particular state
7080      */
7081     toggle : function(state){
7082         state = state === undefined ? !this.pressed : state;
7083         if(state != this.pressed){
7084             if(state){
7085                 this.el.addClass("x-btn-pressed");
7086                 this.pressed = true;
7087                 this.fireEvent("toggle", this, true);
7088             }else{
7089                 this.el.removeClass("x-btn-pressed");
7090                 this.pressed = false;
7091                 this.fireEvent("toggle", this, false);
7092             }
7093             if(this.toggleHandler){
7094                 this.toggleHandler.call(this.scope || this, this, state);
7095             }
7096         }
7097     },
7098     
7099     /**
7100      * Focus the button
7101      */
7102     focus : function(){
7103         this.el.child('button:first').focus();
7104     },
7105     
7106     /**
7107      * Disable this button
7108      */
7109     disable : function(){
7110         if(this.el){
7111             this.el.addClass("x-btn-disabled");
7112         }
7113         this.disabled = true;
7114     },
7115     
7116     /**
7117      * Enable this button
7118      */
7119     enable : function(){
7120         if(this.el){
7121             this.el.removeClass("x-btn-disabled");
7122         }
7123         this.disabled = false;
7124     },
7125
7126     /**
7127      * Convenience function for boolean enable/disable
7128      * @param {Boolean} enabled True to enable, false to disable
7129      */
7130     setDisabled : function(v){
7131         this[v !== true ? "enable" : "disable"]();
7132     },
7133
7134     // private
7135     onClick : function(e)
7136     {
7137         if(e){
7138             e.preventDefault();
7139         }
7140         if(e.button != 0){
7141             return;
7142         }
7143         if(!this.disabled){
7144             if(this.enableToggle){
7145                 this.toggle();
7146             }
7147             if(this.menu && !this.menu.isVisible()){
7148                 this.menu.show(this.el, this.menuAlign);
7149             }
7150             this.fireEvent("click", this, e);
7151             if(this.handler){
7152                 this.el.removeClass("x-btn-over");
7153                 this.handler.call(this.scope || this, this, e);
7154             }
7155         }
7156     },
7157     // private
7158     onMouseOver : function(e){
7159         if(!this.disabled){
7160             this.el.addClass("x-btn-over");
7161             this.fireEvent('mouseover', this, e);
7162         }
7163     },
7164     // private
7165     onMouseOut : function(e){
7166         if(!e.within(this.el,  true)){
7167             this.el.removeClass("x-btn-over");
7168             this.fireEvent('mouseout', this, e);
7169         }
7170     },
7171     // private
7172     onFocus : function(e){
7173         if(!this.disabled){
7174             this.el.addClass("x-btn-focus");
7175         }
7176     },
7177     // private
7178     onBlur : function(e){
7179         this.el.removeClass("x-btn-focus");
7180     },
7181     // private
7182     onMouseDown : function(e){
7183         if(!this.disabled && e.button == 0){
7184             this.el.addClass("x-btn-click");
7185             Roo.get(document).on('mouseup', this.onMouseUp, this);
7186         }
7187     },
7188     // private
7189     onMouseUp : function(e){
7190         if(e.button == 0){
7191             this.el.removeClass("x-btn-click");
7192             Roo.get(document).un('mouseup', this.onMouseUp, this);
7193         }
7194     },
7195     // private
7196     onMenuShow : function(e){
7197         this.el.addClass("x-btn-menu-active");
7198     },
7199     // private
7200     onMenuHide : function(e){
7201         this.el.removeClass("x-btn-menu-active");
7202     }   
7203 });
7204
7205 // Private utility class used by Button
7206 Roo.ButtonToggleMgr = function(){
7207    var groups = {};
7208    
7209    function toggleGroup(btn, state){
7210        if(state){
7211            var g = groups[btn.toggleGroup];
7212            for(var i = 0, l = g.length; i < l; i++){
7213                if(g[i] != btn){
7214                    g[i].toggle(false);
7215                }
7216            }
7217        }
7218    }
7219    
7220    return {
7221        register : function(btn){
7222            if(!btn.toggleGroup){
7223                return;
7224            }
7225            var g = groups[btn.toggleGroup];
7226            if(!g){
7227                g = groups[btn.toggleGroup] = [];
7228            }
7229            g.push(btn);
7230            btn.on("toggle", toggleGroup);
7231        },
7232        
7233        unregister : function(btn){
7234            if(!btn.toggleGroup){
7235                return;
7236            }
7237            var g = groups[btn.toggleGroup];
7238            if(g){
7239                g.remove(btn);
7240                btn.un("toggle", toggleGroup);
7241            }
7242        }
7243    };
7244 }();/*
7245  * Based on:
7246  * Ext JS Library 1.1.1
7247  * Copyright(c) 2006-2007, Ext JS, LLC.
7248  *
7249  * Originally Released Under LGPL - original licence link has changed is not relivant.
7250  *
7251  * Fork - LGPL
7252  * <script type="text/javascript">
7253  */
7254  
7255 /**
7256  * @class Roo.SplitButton
7257  * @extends Roo.Button
7258  * A split button that provides a built-in dropdown arrow that can fire an event separately from the default
7259  * click event of the button.  Typically this would be used to display a dropdown menu that provides additional
7260  * options to the primary button action, but any custom handler can provide the arrowclick implementation.
7261  * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event)
7262  * @cfg {String} arrowTooltip The title attribute of the arrow
7263  * @constructor
7264  * Create a new menu button
7265  * @param {String/HTMLElement/Element} renderTo The element to append the button to
7266  * @param {Object} config The config object
7267  */
7268 Roo.SplitButton = function(renderTo, config){
7269     Roo.SplitButton.superclass.constructor.call(this, renderTo, config);
7270     /**
7271      * @event arrowclick
7272      * Fires when this button's arrow is clicked
7273      * @param {SplitButton} this
7274      * @param {EventObject} e The click event
7275      */
7276     this.addEvents({"arrowclick":true});
7277 };
7278
7279 Roo.extend(Roo.SplitButton, Roo.Button, {
7280     render : function(renderTo){
7281         // this is one sweet looking template!
7282         var tpl = new Roo.Template(
7283             '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>',
7284             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>',
7285             '<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>',
7286             "</tbody></table></td><td>",
7287             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>',
7288             '<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>',
7289             "</tbody></table></td></tr></table>"
7290         );
7291         var btn = tpl.append(renderTo, [this.text, this.type], true);
7292         var btnEl = btn.child("button");
7293         if(this.cls){
7294             btn.addClass(this.cls);
7295         }
7296         if(this.icon){
7297             btnEl.setStyle('background-image', 'url(' +this.icon +')');
7298         }
7299         if(this.iconCls){
7300             btnEl.addClass(this.iconCls);
7301             if(!this.cls){
7302                 btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
7303             }
7304         }
7305         this.el = btn;
7306         if(this.handleMouseEvents){
7307             btn.on("mouseover", this.onMouseOver, this);
7308             btn.on("mouseout", this.onMouseOut, this);
7309             btn.on("mousedown", this.onMouseDown, this);
7310             btn.on("mouseup", this.onMouseUp, this);
7311         }
7312         btn.on(this.clickEvent, this.onClick, this);
7313         if(this.tooltip){
7314             if(typeof this.tooltip == 'object'){
7315                 Roo.QuickTips.tips(Roo.apply({
7316                       target: btnEl.id
7317                 }, this.tooltip));
7318             } else {
7319                 btnEl.dom[this.tooltipType] = this.tooltip;
7320             }
7321         }
7322         if(this.arrowTooltip){
7323             btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip;
7324         }
7325         if(this.hidden){
7326             this.hide();
7327         }
7328         if(this.disabled){
7329             this.disable();
7330         }
7331         if(this.pressed){
7332             this.el.addClass("x-btn-pressed");
7333         }
7334         if(Roo.isIE && !Roo.isIE7){
7335             this.autoWidth.defer(1, this);
7336         }else{
7337             this.autoWidth();
7338         }
7339         if(this.menu){
7340             this.menu.on("show", this.onMenuShow, this);
7341             this.menu.on("hide", this.onMenuHide, this);
7342         }
7343         this.fireEvent('render', this);
7344     },
7345
7346     // private
7347     autoWidth : function(){
7348         if(this.el){
7349             var tbl = this.el.child("table:first");
7350             var tbl2 = this.el.child("table:last");
7351             this.el.setWidth("auto");
7352             tbl.setWidth("auto");
7353             if(Roo.isIE7 && Roo.isStrict){
7354                 var ib = this.el.child('button:first');
7355                 if(ib && ib.getWidth() > 20){
7356                     ib.clip();
7357                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
7358                 }
7359             }
7360             if(this.minWidth){
7361                 if(this.hidden){
7362                     this.el.beginMeasure();
7363                 }
7364                 if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){
7365                     tbl.setWidth(this.minWidth-tbl2.getWidth());
7366                 }
7367                 if(this.hidden){
7368                     this.el.endMeasure();
7369                 }
7370             }
7371             this.el.setWidth(tbl.getWidth()+tbl2.getWidth());
7372         } 
7373     },
7374     /**
7375      * Sets this button's click handler
7376      * @param {Function} handler The function to call when the button is clicked
7377      * @param {Object} scope (optional) Scope for the function passed above
7378      */
7379     setHandler : function(handler, scope){
7380         this.handler = handler;
7381         this.scope = scope;  
7382     },
7383     
7384     /**
7385      * Sets this button's arrow click handler
7386      * @param {Function} handler The function to call when the arrow is clicked
7387      * @param {Object} scope (optional) Scope for the function passed above
7388      */
7389     setArrowHandler : function(handler, scope){
7390         this.arrowHandler = handler;
7391         this.scope = scope;  
7392     },
7393     
7394     /**
7395      * Focus the button
7396      */
7397     focus : function(){
7398         if(this.el){
7399             this.el.child("button:first").focus();
7400         }
7401     },
7402
7403     // private
7404     onClick : function(e){
7405         e.preventDefault();
7406         if(!this.disabled){
7407             if(e.getTarget(".x-btn-menu-arrow-wrap")){
7408                 if(this.menu && !this.menu.isVisible()){
7409                     this.menu.show(this.el, this.menuAlign);
7410                 }
7411                 this.fireEvent("arrowclick", this, e);
7412                 if(this.arrowHandler){
7413                     this.arrowHandler.call(this.scope || this, this, e);
7414                 }
7415             }else{
7416                 this.fireEvent("click", this, e);
7417                 if(this.handler){
7418                     this.handler.call(this.scope || this, this, e);
7419                 }
7420             }
7421         }
7422     },
7423     // private
7424     onMouseDown : function(e){
7425         if(!this.disabled){
7426             Roo.fly(e.getTarget("table")).addClass("x-btn-click");
7427         }
7428     },
7429     // private
7430     onMouseUp : function(e){
7431         Roo.fly(e.getTarget("table")).removeClass("x-btn-click");
7432     }   
7433 });
7434
7435
7436 // backwards compat
7437 Roo.MenuButton = Roo.SplitButton;/*
7438  * Based on:
7439  * Ext JS Library 1.1.1
7440  * Copyright(c) 2006-2007, Ext JS, LLC.
7441  *
7442  * Originally Released Under LGPL - original licence link has changed is not relivant.
7443  *
7444  * Fork - LGPL
7445  * <script type="text/javascript">
7446  */
7447
7448 /**
7449  * @class Roo.Toolbar
7450  * Basic Toolbar class.
7451  * @constructor
7452  * Creates a new Toolbar
7453  * @param {Object} container The config object
7454  */ 
7455 Roo.Toolbar = function(container, buttons, config)
7456 {
7457     /// old consturctor format still supported..
7458     if(container instanceof Array){ // omit the container for later rendering
7459         buttons = container;
7460         config = buttons;
7461         container = null;
7462     }
7463     if (typeof(container) == 'object' && container.xtype) {
7464         config = container;
7465         container = config.container;
7466         buttons = config.buttons || []; // not really - use items!!
7467     }
7468     var xitems = [];
7469     if (config && config.items) {
7470         xitems = config.items;
7471         delete config.items;
7472     }
7473     Roo.apply(this, config);
7474     this.buttons = buttons;
7475     
7476     if(container){
7477         this.render(container);
7478     }
7479     this.xitems = xitems;
7480     Roo.each(xitems, function(b) {
7481         this.add(b);
7482     }, this);
7483     
7484 };
7485
7486 Roo.Toolbar.prototype = {
7487     /**
7488      * @cfg {Array} items
7489      * array of button configs or elements to add (will be converted to a MixedCollection)
7490      */
7491     
7492     /**
7493      * @cfg {String/HTMLElement/Element} container
7494      * The id or element that will contain the toolbar
7495      */
7496     // private
7497     render : function(ct){
7498         this.el = Roo.get(ct);
7499         if(this.cls){
7500             this.el.addClass(this.cls);
7501         }
7502         // using a table allows for vertical alignment
7503         // 100% width is needed by Safari...
7504         this.el.update('<div class="x-toolbar x-small-editor"><table cellspacing="0"><tr></tr></table></div>');
7505         this.tr = this.el.child("tr", true);
7506         var autoId = 0;
7507         this.items = new Roo.util.MixedCollection(false, function(o){
7508             return o.id || ("item" + (++autoId));
7509         });
7510         if(this.buttons){
7511             this.add.apply(this, this.buttons);
7512             delete this.buttons;
7513         }
7514     },
7515
7516     /**
7517      * Adds element(s) to the toolbar -- this function takes a variable number of 
7518      * arguments of mixed type and adds them to the toolbar.
7519      * @param {Mixed} arg1 The following types of arguments are all valid:<br />
7520      * <ul>
7521      * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li>
7522      * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li>
7523      * <li>Field: Any form field (equivalent to {@link #addField})</li>
7524      * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li>
7525      * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}).
7526      * Note that there are a few special strings that are treated differently as explained nRoo.</li>
7527      * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li>
7528      * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li>
7529      * <li>'->': Creates a fill element (equivalent to {@link #addFill})</li>
7530      * </ul>
7531      * @param {Mixed} arg2
7532      * @param {Mixed} etc.
7533      */
7534     add : function(){
7535         var a = arguments, l = a.length;
7536         for(var i = 0; i < l; i++){
7537             this._add(a[i]);
7538         }
7539     },
7540     // private..
7541     _add : function(el) {
7542         
7543         if (el.xtype) {
7544             el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.form : Roo.Toolbar);
7545         }
7546         
7547         if (el.applyTo){ // some kind of form field
7548             return this.addField(el);
7549         } 
7550         if (el.render){ // some kind of Toolbar.Item
7551             return this.addItem(el);
7552         }
7553         if (typeof el == "string"){ // string
7554             if(el == "separator" || el == "-"){
7555                 return this.addSeparator();
7556             }
7557             if (el == " "){
7558                 return this.addSpacer();
7559             }
7560             if(el == "->"){
7561                 return this.addFill();
7562             }
7563             return this.addText(el);
7564             
7565         }
7566         if(el.tagName){ // element
7567             return this.addElement(el);
7568         }
7569         if(typeof el == "object"){ // must be button config?
7570             return this.addButton(el);
7571         }
7572         // and now what?!?!
7573         return false;
7574         
7575     },
7576     
7577     /**
7578      * Add an Xtype element
7579      * @param {Object} xtype Xtype Object
7580      * @return {Object} created Object
7581      */
7582     addxtype : function(e){
7583         return this.add(e);  
7584     },
7585     
7586     /**
7587      * Returns the Element for this toolbar.
7588      * @return {Roo.Element}
7589      */
7590     getEl : function(){
7591         return this.el;  
7592     },
7593     
7594     /**
7595      * Adds a separator
7596      * @return {Roo.Toolbar.Item} The separator item
7597      */
7598     addSeparator : function(){
7599         return this.addItem(new Roo.Toolbar.Separator());
7600     },
7601
7602     /**
7603      * Adds a spacer element
7604      * @return {Roo.Toolbar.Spacer} The spacer item
7605      */
7606     addSpacer : function(){
7607         return this.addItem(new Roo.Toolbar.Spacer());
7608     },
7609
7610     /**
7611      * Adds a fill element that forces subsequent additions to the right side of the toolbar
7612      * @return {Roo.Toolbar.Fill} The fill item
7613      */
7614     addFill : function(){
7615         return this.addItem(new Roo.Toolbar.Fill());
7616     },
7617
7618     /**
7619      * Adds any standard HTML element to the toolbar
7620      * @param {String/HTMLElement/Element} el The element or id of the element to add
7621      * @return {Roo.Toolbar.Item} The element's item
7622      */
7623     addElement : function(el){
7624         return this.addItem(new Roo.Toolbar.Item(el));
7625     },
7626     /**
7627      * Collection of items on the toolbar.. (only Toolbar Items, so use fields to retrieve fields)
7628      * @type Roo.util.MixedCollection  
7629      */
7630     items : false,
7631      
7632     /**
7633      * Adds any Toolbar.Item or subclass
7634      * @param {Roo.Toolbar.Item} item
7635      * @return {Roo.Toolbar.Item} The item
7636      */
7637     addItem : function(item){
7638         var td = this.nextBlock();
7639         item.render(td);
7640         this.items.add(item);
7641         return item;
7642     },
7643     
7644     /**
7645      * Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config.
7646      * @param {Object/Array} config A button config or array of configs
7647      * @return {Roo.Toolbar.Button/Array}
7648      */
7649     addButton : function(config){
7650         if(config instanceof Array){
7651             var buttons = [];
7652             for(var i = 0, len = config.length; i < len; i++) {
7653                 buttons.push(this.addButton(config[i]));
7654             }
7655             return buttons;
7656         }
7657         var b = config;
7658         if(!(config instanceof Roo.Toolbar.Button)){
7659             b = config.split ?
7660                 new Roo.Toolbar.SplitButton(config) :
7661                 new Roo.Toolbar.Button(config);
7662         }
7663         var td = this.nextBlock();
7664         b.render(td);
7665         this.items.add(b);
7666         return b;
7667     },
7668     
7669     /**
7670      * Adds text to the toolbar
7671      * @param {String} text The text to add
7672      * @return {Roo.Toolbar.Item} The element's item
7673      */
7674     addText : function(text){
7675         return this.addItem(new Roo.Toolbar.TextItem(text));
7676     },
7677     
7678     /**
7679      * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index.
7680      * @param {Number} index The index where the item is to be inserted
7681      * @param {Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array)} item The button, or button config object to be inserted.
7682      * @return {Roo.Toolbar.Button/Item}
7683      */
7684     insertButton : function(index, item){
7685         if(item instanceof Array){
7686             var buttons = [];
7687             for(var i = 0, len = item.length; i < len; i++) {
7688                buttons.push(this.insertButton(index + i, item[i]));
7689             }
7690             return buttons;
7691         }
7692         if (!(item instanceof Roo.Toolbar.Button)){
7693            item = new Roo.Toolbar.Button(item);
7694         }
7695         var td = document.createElement("td");
7696         this.tr.insertBefore(td, this.tr.childNodes[index]);
7697         item.render(td);
7698         this.items.insert(index, item);
7699         return item;
7700     },
7701     
7702     /**
7703      * Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config.
7704      * @param {Object} config
7705      * @return {Roo.Toolbar.Item} The element's item
7706      */
7707     addDom : function(config, returnEl){
7708         var td = this.nextBlock();
7709         Roo.DomHelper.overwrite(td, config);
7710         var ti = new Roo.Toolbar.Item(td.firstChild);
7711         ti.render(td);
7712         this.items.add(ti);
7713         return ti;
7714     },
7715
7716     /**
7717      * Collection of fields on the toolbar.. usefull for quering (value is false if there are no fields)
7718      * @type Roo.util.MixedCollection  
7719      */
7720     fields : false,
7721     
7722     /**
7723      * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).
7724      * Note: the field should not have been rendered yet. For a field that has already been
7725      * rendered, use {@link #addElement}.
7726      * @param {Roo.form.Field} field
7727      * @return {Roo.ToolbarItem}
7728      */
7729      
7730       
7731     addField : function(field) {
7732         if (!this.fields) {
7733             var autoId = 0;
7734             this.fields = new Roo.util.MixedCollection(false, function(o){
7735                 return o.id || ("item" + (++autoId));
7736             });
7737
7738         }
7739         
7740         var td = this.nextBlock();
7741         field.render(td);
7742         var ti = new Roo.Toolbar.Item(td.firstChild);
7743         ti.render(td);
7744         this.items.add(ti);
7745         this.fields.add(field);
7746         return ti;
7747     },
7748     /**
7749      * Hide the toolbar
7750      * @method hide
7751      */
7752      
7753       
7754     hide : function()
7755     {
7756         this.el.child('div').setVisibilityMode(Roo.Element.DISPLAY);
7757         this.el.child('div').hide();
7758     },
7759     /**
7760      * Show the toolbar
7761      * @method show
7762      */
7763     show : function()
7764     {
7765         this.el.child('div').show();
7766     },
7767       
7768     // private
7769     nextBlock : function(){
7770         var td = document.createElement("td");
7771         this.tr.appendChild(td);
7772         return td;
7773     },
7774
7775     // private
7776     destroy : function(){
7777         if(this.items){ // rendered?
7778             Roo.destroy.apply(Roo, this.items.items);
7779         }
7780         if(this.fields){ // rendered?
7781             Roo.destroy.apply(Roo, this.fields.items);
7782         }
7783         Roo.Element.uncache(this.el, this.tr);
7784     }
7785 };
7786
7787 /**
7788  * @class Roo.Toolbar.Item
7789  * The base class that other classes should extend in order to get some basic common toolbar item functionality.
7790  * @constructor
7791  * Creates a new Item
7792  * @param {HTMLElement} el 
7793  */
7794 Roo.Toolbar.Item = function(el){
7795     var cfg = {};
7796     if (typeof (el.xtype) != 'undefined') {
7797         cfg = el;
7798         el = cfg.el;
7799     }
7800     
7801     this.el = Roo.getDom(el);
7802     this.id = Roo.id(this.el);
7803     this.hidden = false;
7804     
7805     this.addEvents({
7806          /**
7807              * @event render
7808              * Fires when the button is rendered
7809              * @param {Button} this
7810              */
7811         'render': true
7812     });
7813     Roo.Toolbar.Item.superclass.constructor.call(this,cfg);
7814 };
7815 Roo.extend(Roo.Toolbar.Item, Roo.util.Observable, {
7816 //Roo.Toolbar.Item.prototype = {
7817     
7818     /**
7819      * Get this item's HTML Element
7820      * @return {HTMLElement}
7821      */
7822     getEl : function(){
7823        return this.el;  
7824     },
7825
7826     // private
7827     render : function(td){
7828         
7829          this.td = td;
7830         td.appendChild(this.el);
7831         
7832         this.fireEvent('render', this);
7833     },
7834     
7835     /**
7836      * Removes and destroys this item.
7837      */
7838     destroy : function(){
7839         this.td.parentNode.removeChild(this.td);
7840     },
7841     
7842     /**
7843      * Shows this item.
7844      */
7845     show: function(){
7846         this.hidden = false;
7847         this.td.style.display = "";
7848     },
7849     
7850     /**
7851      * Hides this item.
7852      */
7853     hide: function(){
7854         this.hidden = true;
7855         this.td.style.display = "none";
7856     },
7857     
7858     /**
7859      * Convenience function for boolean show/hide.
7860      * @param {Boolean} visible true to show/false to hide
7861      */
7862     setVisible: function(visible){
7863         if(visible) {
7864             this.show();
7865         }else{
7866             this.hide();
7867         }
7868     },
7869     
7870     /**
7871      * Try to focus this item.
7872      */
7873     focus : function(){
7874         Roo.fly(this.el).focus();
7875     },
7876     
7877     /**
7878      * Disables this item.
7879      */
7880     disable : function(){
7881         Roo.fly(this.td).addClass("x-item-disabled");
7882         this.disabled = true;
7883         this.el.disabled = true;
7884     },
7885     
7886     /**
7887      * Enables this item.
7888      */
7889     enable : function(){
7890         Roo.fly(this.td).removeClass("x-item-disabled");
7891         this.disabled = false;
7892         this.el.disabled = false;
7893     }
7894 });
7895
7896
7897 /**
7898  * @class Roo.Toolbar.Separator
7899  * @extends Roo.Toolbar.Item
7900  * A simple toolbar separator class
7901  * @constructor
7902  * Creates a new Separator
7903  */
7904 Roo.Toolbar.Separator = function(cfg){
7905     
7906     var s = document.createElement("span");
7907     s.className = "ytb-sep";
7908     if (cfg) {
7909         cfg.el = s;
7910     }
7911     
7912     Roo.Toolbar.Separator.superclass.constructor.call(this, cfg || s);
7913 };
7914 Roo.extend(Roo.Toolbar.Separator, Roo.Toolbar.Item, {
7915     enable:Roo.emptyFn,
7916     disable:Roo.emptyFn,
7917     focus:Roo.emptyFn
7918 });
7919
7920 /**
7921  * @class Roo.Toolbar.Spacer
7922  * @extends Roo.Toolbar.Item
7923  * A simple element that adds extra horizontal space to a toolbar.
7924  * @constructor
7925  * Creates a new Spacer
7926  */
7927 Roo.Toolbar.Spacer = function(cfg){
7928     var s = document.createElement("div");
7929     s.className = "ytb-spacer";
7930     if (cfg) {
7931         cfg.el = s;
7932     }
7933     Roo.Toolbar.Spacer.superclass.constructor.call(this, cfg || s);
7934 };
7935 Roo.extend(Roo.Toolbar.Spacer, Roo.Toolbar.Item, {
7936     enable:Roo.emptyFn,
7937     disable:Roo.emptyFn,
7938     focus:Roo.emptyFn
7939 });
7940
7941 /**
7942  * @class Roo.Toolbar.Fill
7943  * @extends Roo.Toolbar.Spacer
7944  * A simple element that adds a greedy (100% width) horizontal space to a toolbar.
7945  * @constructor
7946  * Creates a new Spacer
7947  */
7948 Roo.Toolbar.Fill = Roo.extend(Roo.Toolbar.Spacer, {
7949     // private
7950     render : function(td){
7951         td.style.width = '100%';
7952         Roo.Toolbar.Fill.superclass.render.call(this, td);
7953     }
7954 });
7955
7956 /**
7957  * @class Roo.Toolbar.TextItem
7958  * @extends Roo.Toolbar.Item
7959  * A simple class that renders text directly into a toolbar.
7960  * @constructor
7961  * Creates a new TextItem
7962  * @param {String} text
7963  */
7964 Roo.Toolbar.TextItem = function(cfg){
7965     var  text = cfg || "";
7966     if (typeof(cfg) == 'object') {
7967         text = cfg.text || "";
7968     }  else {
7969         cfg = null;
7970     }
7971     var s = document.createElement("span");
7972     s.className = "ytb-text";
7973     s.innerHTML = text;
7974     if (cfg) {
7975         cfg.el  = s;
7976     }
7977     
7978     Roo.Toolbar.TextItem.superclass.constructor.call(this, cfg ||  s);
7979 };
7980 Roo.extend(Roo.Toolbar.TextItem, Roo.Toolbar.Item, {
7981     
7982      
7983     enable:Roo.emptyFn,
7984     disable:Roo.emptyFn,
7985     focus:Roo.emptyFn
7986 });
7987
7988 /**
7989  * @class Roo.Toolbar.Button
7990  * @extends Roo.Button
7991  * A button that renders into a toolbar.
7992  * @constructor
7993  * Creates a new Button
7994  * @param {Object} config A standard {@link Roo.Button} config object
7995  */
7996 Roo.Toolbar.Button = function(config){
7997     Roo.Toolbar.Button.superclass.constructor.call(this, null, config);
7998 };
7999 Roo.extend(Roo.Toolbar.Button, Roo.Button, {
8000     render : function(td){
8001         this.td = td;
8002         Roo.Toolbar.Button.superclass.render.call(this, td);
8003     },
8004     
8005     /**
8006      * Removes and destroys this button
8007      */
8008     destroy : function(){
8009         Roo.Toolbar.Button.superclass.destroy.call(this);
8010         this.td.parentNode.removeChild(this.td);
8011     },
8012     
8013     /**
8014      * Shows this button
8015      */
8016     show: function(){
8017         this.hidden = false;
8018         this.td.style.display = "";
8019     },
8020     
8021     /**
8022      * Hides this button
8023      */
8024     hide: function(){
8025         this.hidden = true;
8026         this.td.style.display = "none";
8027     },
8028
8029     /**
8030      * Disables this item
8031      */
8032     disable : function(){
8033         Roo.fly(this.td).addClass("x-item-disabled");
8034         this.disabled = true;
8035     },
8036
8037     /**
8038      * Enables this item
8039      */
8040     enable : function(){
8041         Roo.fly(this.td).removeClass("x-item-disabled");
8042         this.disabled = false;
8043     }
8044 });
8045 // backwards compat
8046 Roo.ToolbarButton = Roo.Toolbar.Button;
8047
8048 /**
8049  * @class Roo.Toolbar.SplitButton
8050  * @extends Roo.SplitButton
8051  * A menu button that renders into a toolbar.
8052  * @constructor
8053  * Creates a new SplitButton
8054  * @param {Object} config A standard {@link Roo.SplitButton} config object
8055  */
8056 Roo.Toolbar.SplitButton = function(config){
8057     Roo.Toolbar.SplitButton.superclass.constructor.call(this, null, config);
8058 };
8059 Roo.extend(Roo.Toolbar.SplitButton, Roo.SplitButton, {
8060     render : function(td){
8061         this.td = td;
8062         Roo.Toolbar.SplitButton.superclass.render.call(this, td);
8063     },
8064     
8065     /**
8066      * Removes and destroys this button
8067      */
8068     destroy : function(){
8069         Roo.Toolbar.SplitButton.superclass.destroy.call(this);
8070         this.td.parentNode.removeChild(this.td);
8071     },
8072     
8073     /**
8074      * Shows this button
8075      */
8076     show: function(){
8077         this.hidden = false;
8078         this.td.style.display = "";
8079     },
8080     
8081     /**
8082      * Hides this button
8083      */
8084     hide: function(){
8085         this.hidden = true;
8086         this.td.style.display = "none";
8087     }
8088 });
8089
8090 // backwards compat
8091 Roo.Toolbar.MenuButton = Roo.Toolbar.SplitButton;/*
8092  * Based on:
8093  * Ext JS Library 1.1.1
8094  * Copyright(c) 2006-2007, Ext JS, LLC.
8095  *
8096  * Originally Released Under LGPL - original licence link has changed is not relivant.
8097  *
8098  * Fork - LGPL
8099  * <script type="text/javascript">
8100  */
8101  
8102 /**
8103  * @class Roo.PagingToolbar
8104  * @extends Roo.Toolbar
8105  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
8106  * @constructor
8107  * Create a new PagingToolbar
8108  * @param {Object} config The config object
8109  */
8110 Roo.PagingToolbar = function(el, ds, config)
8111 {
8112     // old args format still supported... - xtype is prefered..
8113     if (typeof(el) == 'object' && el.xtype) {
8114         // created from xtype...
8115         config = el;
8116         ds = el.dataSource;
8117         el = config.container;
8118     }
8119     var items = [];
8120     if (config.items) {
8121         items = config.items;
8122         config.items = [];
8123     }
8124     
8125     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
8126     this.ds = ds;
8127     this.cursor = 0;
8128     this.renderButtons(this.el);
8129     this.bind(ds);
8130     
8131     // supprot items array.
8132    
8133     Roo.each(items, function(e) {
8134         this.add(Roo.factory(e));
8135     },this);
8136     
8137 };
8138
8139 Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
8140     /**
8141      * @cfg {Roo.data.Store} dataSource
8142      * The underlying data store providing the paged data
8143      */
8144     /**
8145      * @cfg {String/HTMLElement/Element} container
8146      * container The id or element that will contain the toolbar
8147      */
8148     /**
8149      * @cfg {Boolean} displayInfo
8150      * True to display the displayMsg (defaults to false)
8151      */
8152     /**
8153      * @cfg {Number} pageSize
8154      * The number of records to display per page (defaults to 20)
8155      */
8156     pageSize: 20,
8157     /**
8158      * @cfg {String} displayMsg
8159      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
8160      */
8161     displayMsg : 'Displaying {0} - {1} of {2}',
8162     /**
8163      * @cfg {String} emptyMsg
8164      * The message to display when no records are found (defaults to "No data to display")
8165      */
8166     emptyMsg : 'No data to display',
8167     /**
8168      * Customizable piece of the default paging text (defaults to "Page")
8169      * @type String
8170      */
8171     beforePageText : "Page",
8172     /**
8173      * Customizable piece of the default paging text (defaults to "of %0")
8174      * @type String
8175      */
8176     afterPageText : "of {0}",
8177     /**
8178      * Customizable piece of the default paging text (defaults to "First Page")
8179      * @type String
8180      */
8181     firstText : "First Page",
8182     /**
8183      * Customizable piece of the default paging text (defaults to "Previous Page")
8184      * @type String
8185      */
8186     prevText : "Previous Page",
8187     /**
8188      * Customizable piece of the default paging text (defaults to "Next Page")
8189      * @type String
8190      */
8191     nextText : "Next Page",
8192     /**
8193      * Customizable piece of the default paging text (defaults to "Last Page")
8194      * @type String
8195      */
8196     lastText : "Last Page",
8197     /**
8198      * Customizable piece of the default paging text (defaults to "Refresh")
8199      * @type String
8200      */
8201     refreshText : "Refresh",
8202
8203     // private
8204     renderButtons : function(el){
8205         Roo.PagingToolbar.superclass.render.call(this, el);
8206         this.first = this.addButton({
8207             tooltip: this.firstText,
8208             cls: "x-btn-icon x-grid-page-first",
8209             disabled: true,
8210             handler: this.onClick.createDelegate(this, ["first"])
8211         });
8212         this.prev = this.addButton({
8213             tooltip: this.prevText,
8214             cls: "x-btn-icon x-grid-page-prev",
8215             disabled: true,
8216             handler: this.onClick.createDelegate(this, ["prev"])
8217         });
8218         //this.addSeparator();
8219         this.add(this.beforePageText);
8220         this.field = Roo.get(this.addDom({
8221            tag: "input",
8222            type: "text",
8223            size: "3",
8224            value: "1",
8225            cls: "x-grid-page-number"
8226         }).el);
8227         this.field.on("keydown", this.onPagingKeydown, this);
8228         this.field.on("focus", function(){this.dom.select();});
8229         this.afterTextEl = this.addText(String.format(this.afterPageText, 1));
8230         this.field.setHeight(18);
8231         //this.addSeparator();
8232         this.next = this.addButton({
8233             tooltip: this.nextText,
8234             cls: "x-btn-icon x-grid-page-next",
8235             disabled: true,
8236             handler: this.onClick.createDelegate(this, ["next"])
8237         });
8238         this.last = this.addButton({
8239             tooltip: this.lastText,
8240             cls: "x-btn-icon x-grid-page-last",
8241             disabled: true,
8242             handler: this.onClick.createDelegate(this, ["last"])
8243         });
8244         //this.addSeparator();
8245         this.loading = this.addButton({
8246             tooltip: this.refreshText,
8247             cls: "x-btn-icon x-grid-loading",
8248             handler: this.onClick.createDelegate(this, ["refresh"])
8249         });
8250
8251         if(this.displayInfo){
8252             this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'});
8253         }
8254     },
8255
8256     // private
8257     updateInfo : function(){
8258         if(this.displayEl){
8259             var count = this.ds.getCount();
8260             var msg = count == 0 ?
8261                 this.emptyMsg :
8262                 String.format(
8263                     this.displayMsg,
8264                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
8265                 );
8266             this.displayEl.update(msg);
8267         }
8268     },
8269
8270     // private
8271     onLoad : function(ds, r, o){
8272        this.cursor = o.params ? o.params.start : 0;
8273        var d = this.getPageData(), ap = d.activePage, ps = d.pages;
8274
8275        this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages);
8276        this.field.dom.value = ap;
8277        this.first.setDisabled(ap == 1);
8278        this.prev.setDisabled(ap == 1);
8279        this.next.setDisabled(ap == ps);
8280        this.last.setDisabled(ap == ps);
8281        this.loading.enable();
8282        this.updateInfo();
8283     },
8284
8285     // private
8286     getPageData : function(){
8287         var total = this.ds.getTotalCount();
8288         return {
8289             total : total,
8290             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
8291             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
8292         };
8293     },
8294
8295     // private
8296     onLoadError : function(){
8297         this.loading.enable();
8298     },
8299
8300     // private
8301     onPagingKeydown : function(e){
8302         var k = e.getKey();
8303         var d = this.getPageData();
8304         if(k == e.RETURN){
8305             var v = this.field.dom.value, pageNum;
8306             if(!v || isNaN(pageNum = parseInt(v, 10))){
8307                 this.field.dom.value = d.activePage;
8308                 return;
8309             }
8310             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
8311             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
8312             e.stopEvent();
8313         }
8314         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))
8315         {
8316           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
8317           this.field.dom.value = pageNum;
8318           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
8319           e.stopEvent();
8320         }
8321         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
8322         {
8323           var v = this.field.dom.value, pageNum; 
8324           var increment = (e.shiftKey) ? 10 : 1;
8325           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
8326             increment *= -1;
8327           }
8328           if(!v || isNaN(pageNum = parseInt(v, 10))) {
8329             this.field.dom.value = d.activePage;
8330             return;
8331           }
8332           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
8333           {
8334             this.field.dom.value = parseInt(v, 10) + increment;
8335             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
8336             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
8337           }
8338           e.stopEvent();
8339         }
8340     },
8341
8342     // private
8343     beforeLoad : function(){
8344         if(this.loading){
8345             this.loading.disable();
8346         }
8347     },
8348
8349     // private
8350     onClick : function(which){
8351         var ds = this.ds;
8352         switch(which){
8353             case "first":
8354                 ds.load({params:{start: 0, limit: this.pageSize}});
8355             break;
8356             case "prev":
8357                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
8358             break;
8359             case "next":
8360                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
8361             break;
8362             case "last":
8363                 var total = ds.getTotalCount();
8364                 var extra = total % this.pageSize;
8365                 var lastStart = extra ? (total - extra) : total-this.pageSize;
8366                 ds.load({params:{start: lastStart, limit: this.pageSize}});
8367             break;
8368             case "refresh":
8369                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
8370             break;
8371         }
8372     },
8373
8374     /**
8375      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
8376      * @param {Roo.data.Store} store The data store to unbind
8377      */
8378     unbind : function(ds){
8379         ds.un("beforeload", this.beforeLoad, this);
8380         ds.un("load", this.onLoad, this);
8381         ds.un("loadexception", this.onLoadError, this);
8382         ds.un("remove", this.updateInfo, this);
8383         ds.un("add", this.updateInfo, this);
8384         this.ds = undefined;
8385     },
8386
8387     /**
8388      * Binds the paging toolbar to the specified {@link Roo.data.Store}
8389      * @param {Roo.data.Store} store The data store to bind
8390      */
8391     bind : function(ds){
8392         ds.on("beforeload", this.beforeLoad, this);
8393         ds.on("load", this.onLoad, this);
8394         ds.on("loadexception", this.onLoadError, this);
8395         ds.on("remove", this.updateInfo, this);
8396         ds.on("add", this.updateInfo, this);
8397         this.ds = ds;
8398     }
8399 });/*
8400  * Based on:
8401  * Ext JS Library 1.1.1
8402  * Copyright(c) 2006-2007, Ext JS, LLC.
8403  *
8404  * Originally Released Under LGPL - original licence link has changed is not relivant.
8405  *
8406  * Fork - LGPL
8407  * <script type="text/javascript">
8408  */
8409
8410 /**
8411  * @class Roo.Resizable
8412  * @extends Roo.util.Observable
8413  * <p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element
8414  * and positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap
8415  * 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
8416  * the element will be wrapped for you automatically.</p>
8417  * <p>Here is the list of valid resize handles:</p>
8418  * <pre>
8419 Value   Description
8420 ------  -------------------
8421  'n'     north
8422  's'     south
8423  'e'     east
8424  'w'     west
8425  'nw'    northwest
8426  'sw'    southwest
8427  'se'    southeast
8428  'ne'    northeast
8429  'hd'    horizontal drag
8430  'all'   all
8431 </pre>
8432  * <p>Here's an example showing the creation of a typical Resizable:</p>
8433  * <pre><code>
8434 var resizer = new Roo.Resizable("element-id", {
8435     handles: 'all',
8436     minWidth: 200,
8437     minHeight: 100,
8438     maxWidth: 500,
8439     maxHeight: 400,
8440     pinned: true
8441 });
8442 resizer.on("resize", myHandler);
8443 </code></pre>
8444  * <p>To hide a particular handle, set its display to none in CSS, or through script:<br>
8445  * resizer.east.setDisplayed(false);</p>
8446  * @cfg {Boolean/String/Element} resizeChild True to resize the first child, or id/element to resize (defaults to false)
8447  * @cfg {Array/String} adjustments String "auto" or an array [width, height] with values to be <b>added</b> to the
8448  * resize operation's new size (defaults to [0, 0])
8449  * @cfg {Number} minWidth The minimum width for the element (defaults to 5)
8450  * @cfg {Number} minHeight The minimum height for the element (defaults to 5)
8451  * @cfg {Number} maxWidth The maximum width for the element (defaults to 10000)
8452  * @cfg {Number} maxHeight The maximum height for the element (defaults to 10000)
8453  * @cfg {Boolean} enabled False to disable resizing (defaults to true)
8454  * @cfg {Boolean} wrap True to wrap an element with a div if needed (required for textareas and images, defaults to false)
8455  * @cfg {Number} width The width of the element in pixels (defaults to null)
8456  * @cfg {Number} height The height of the element in pixels (defaults to null)
8457  * @cfg {Boolean} animate True to animate the resize (not compatible with dynamic sizing, defaults to false)
8458  * @cfg {Number} duration Animation duration if animate = true (defaults to .35)
8459  * @cfg {Boolean} dynamic True to resize the element while dragging instead of using a proxy (defaults to false)
8460  * @cfg {String} handles String consisting of the resize handles to display (defaults to undefined)
8461  * @cfg {Boolean} multiDirectional <b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated
8462  * in favor of the handles config option (defaults to false)
8463  * @cfg {Boolean} disableTrackOver True to disable mouse tracking. This is only applied at config time. (defaults to false)
8464  * @cfg {String} easing Animation easing if animate = true (defaults to 'easingOutStrong')
8465  * @cfg {Number} widthIncrement The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)
8466  * @cfg {Number} heightIncrement The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)
8467  * @cfg {Boolean} pinned True to ensure that the resize handles are always visible, false to display them only when the
8468  * user mouses over the resizable borders. This is only applied at config time. (defaults to false)
8469  * @cfg {Boolean} preserveRatio True to preserve the original ratio between height and width during resize (defaults to false)
8470  * @cfg {Boolean} transparent True for transparent handles. This is only applied at config time. (defaults to false)
8471  * @cfg {Number} minX The minimum allowed page X for the element (only used for west resizing, defaults to 0)
8472  * @cfg {Number} minY The minimum allowed page Y for the element (only used for north resizing, defaults to 0)
8473  * @cfg {Boolean} draggable Convenience to initialize drag drop (defaults to false)
8474  * @constructor
8475  * Create a new resizable component
8476  * @param {String/HTMLElement/Roo.Element} el The id or element to resize
8477  * @param {Object} config configuration options
8478   */
8479 Roo.Resizable = function(el, config)
8480 {
8481     this.el = Roo.get(el);
8482
8483     if(config && config.wrap){
8484         config.resizeChild = this.el;
8485         this.el = this.el.wrap(typeof config.wrap == "object" ? config.wrap : {cls:"xresizable-wrap"});
8486         this.el.id = this.el.dom.id = config.resizeChild.id + "-rzwrap";
8487         this.el.setStyle("overflow", "hidden");
8488         this.el.setPositioning(config.resizeChild.getPositioning());
8489         config.resizeChild.clearPositioning();
8490         if(!config.width || !config.height){
8491             var csize = config.resizeChild.getSize();
8492             this.el.setSize(csize.width, csize.height);
8493         }
8494         if(config.pinned && !config.adjustments){
8495             config.adjustments = "auto";
8496         }
8497     }
8498
8499     this.proxy = this.el.createProxy({tag: "div", cls: "x-resizable-proxy", id: this.el.id + "-rzproxy"});
8500     this.proxy.unselectable();
8501     this.proxy.enableDisplayMode('block');
8502
8503     Roo.apply(this, config);
8504
8505     if(this.pinned){
8506         this.disableTrackOver = true;
8507         this.el.addClass("x-resizable-pinned");
8508     }
8509     // if the element isn't positioned, make it relative
8510     var position = this.el.getStyle("position");
8511     if(position != "absolute" && position != "fixed"){
8512         this.el.setStyle("position", "relative");
8513     }
8514     if(!this.handles){ // no handles passed, must be legacy style
8515         this.handles = 's,e,se';
8516         if(this.multiDirectional){
8517             this.handles += ',n,w';
8518         }
8519     }
8520     if(this.handles == "all"){
8521         this.handles = "n s e w ne nw se sw";
8522     }
8523     var hs = this.handles.split(/\s*?[,;]\s*?| /);
8524     var ps = Roo.Resizable.positions;
8525     for(var i = 0, len = hs.length; i < len; i++){
8526         if(hs[i] && ps[hs[i]]){
8527             var pos = ps[hs[i]];
8528             this[pos] = new Roo.Resizable.Handle(this, pos, this.disableTrackOver, this.transparent);
8529         }
8530     }
8531     // legacy
8532     this.corner = this.southeast;
8533     
8534     // updateBox = the box can move..
8535     if(this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1 || this.handles.indexOf("hd") != -1) {
8536         this.updateBox = true;
8537     }
8538
8539     this.activeHandle = null;
8540
8541     if(this.resizeChild){
8542         if(typeof this.resizeChild == "boolean"){
8543             this.resizeChild = Roo.get(this.el.dom.firstChild, true);
8544         }else{
8545             this.resizeChild = Roo.get(this.resizeChild, true);
8546         }
8547     }
8548     
8549     if(this.adjustments == "auto"){
8550         var rc = this.resizeChild;
8551         var hw = this.west, he = this.east, hn = this.north, hs = this.south;
8552         if(rc && (hw || hn)){
8553             rc.position("relative");
8554             rc.setLeft(hw ? hw.el.getWidth() : 0);
8555             rc.setTop(hn ? hn.el.getHeight() : 0);
8556         }
8557         this.adjustments = [
8558             (he ? -he.el.getWidth() : 0) + (hw ? -hw.el.getWidth() : 0),
8559             (hn ? -hn.el.getHeight() : 0) + (hs ? -hs.el.getHeight() : 0) -1
8560         ];
8561     }
8562
8563     if(this.draggable){
8564         this.dd = this.dynamic ?
8565             this.el.initDD(null) : this.el.initDDProxy(null, {dragElId: this.proxy.id});
8566         this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
8567     }
8568
8569     // public events
8570     this.addEvents({
8571         /**
8572          * @event beforeresize
8573          * Fired before resize is allowed. Set enabled to false to cancel resize.
8574          * @param {Roo.Resizable} this
8575          * @param {Roo.EventObject} e The mousedown event
8576          */
8577         "beforeresize" : true,
8578         /**
8579          * @event resizing
8580          * Fired a resizing.
8581          * @param {Roo.Resizable} this
8582          * @param {Number} x The new x position
8583          * @param {Number} y The new y position
8584          * @param {Number} w The new w width
8585          * @param {Number} h The new h hight
8586          * @param {Roo.EventObject} e The mouseup event
8587          */
8588         "resizing" : true,
8589         /**
8590          * @event resize
8591          * Fired after a resize.
8592          * @param {Roo.Resizable} this
8593          * @param {Number} width The new width
8594          * @param {Number} height The new height
8595          * @param {Roo.EventObject} e The mouseup event
8596          */
8597         "resize" : true
8598     });
8599
8600     if(this.width !== null && this.height !== null){
8601         this.resizeTo(this.width, this.height);
8602     }else{
8603         this.updateChildSize();
8604     }
8605     if(Roo.isIE){
8606         this.el.dom.style.zoom = 1;
8607     }
8608     Roo.Resizable.superclass.constructor.call(this);
8609 };
8610
8611 Roo.extend(Roo.Resizable, Roo.util.Observable, {
8612         resizeChild : false,
8613         adjustments : [0, 0],
8614         minWidth : 5,
8615         minHeight : 5,
8616         maxWidth : 10000,
8617         maxHeight : 10000,
8618         enabled : true,
8619         animate : false,
8620         duration : .35,
8621         dynamic : false,
8622         handles : false,
8623         multiDirectional : false,
8624         disableTrackOver : false,
8625         easing : 'easeOutStrong',
8626         widthIncrement : 0,
8627         heightIncrement : 0,
8628         pinned : false,
8629         width : null,
8630         height : null,
8631         preserveRatio : false,
8632         transparent: false,
8633         minX: 0,
8634         minY: 0,
8635         draggable: false,
8636
8637         /**
8638          * @cfg {String/HTMLElement/Element} constrainTo Constrain the resize to a particular element
8639          */
8640         constrainTo: undefined,
8641         /**
8642          * @cfg {Roo.lib.Region} resizeRegion Constrain the resize to a particular region
8643          */
8644         resizeRegion: undefined,
8645
8646
8647     /**
8648      * Perform a manual resize
8649      * @param {Number} width
8650      * @param {Number} height
8651      */
8652     resizeTo : function(width, height){
8653         this.el.setSize(width, height);
8654         this.updateChildSize();
8655         this.fireEvent("resize", this, width, height, null);
8656     },
8657
8658     // private
8659     startSizing : function(e, handle){
8660         this.fireEvent("beforeresize", this, e);
8661         if(this.enabled){ // 2nd enabled check in case disabled before beforeresize handler
8662
8663             if(!this.overlay){
8664                 this.overlay = this.el.createProxy({tag: "div", cls: "x-resizable-overlay", html: "&#160;"});
8665                 this.overlay.unselectable();
8666                 this.overlay.enableDisplayMode("block");
8667                 this.overlay.on("mousemove", this.onMouseMove, this);
8668                 this.overlay.on("mouseup", this.onMouseUp, this);
8669             }
8670             this.overlay.setStyle("cursor", handle.el.getStyle("cursor"));
8671
8672             this.resizing = true;
8673             this.startBox = this.el.getBox();
8674             this.startPoint = e.getXY();
8675             this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0],
8676                             (this.startBox.y + this.startBox.height) - this.startPoint[1]];
8677
8678             this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
8679             this.overlay.show();
8680
8681             if(this.constrainTo) {
8682                 var ct = Roo.get(this.constrainTo);
8683                 this.resizeRegion = ct.getRegion().adjust(
8684                     ct.getFrameWidth('t'),
8685                     ct.getFrameWidth('l'),
8686                     -ct.getFrameWidth('b'),
8687                     -ct.getFrameWidth('r')
8688                 );
8689             }
8690
8691             this.proxy.setStyle('visibility', 'hidden'); // workaround display none
8692             this.proxy.show();
8693             this.proxy.setBox(this.startBox);
8694             if(!this.dynamic){
8695                 this.proxy.setStyle('visibility', 'visible');
8696             }
8697         }
8698     },
8699
8700     // private
8701     onMouseDown : function(handle, e){
8702         if(this.enabled){
8703             e.stopEvent();
8704             this.activeHandle = handle;
8705             this.startSizing(e, handle);
8706         }
8707     },
8708
8709     // private
8710     onMouseUp : function(e){
8711         var size = this.resizeElement();
8712         this.resizing = false;
8713         this.handleOut();
8714         this.overlay.hide();
8715         this.proxy.hide();
8716         this.fireEvent("resize", this, size.width, size.height, e);
8717     },
8718
8719     // private
8720     updateChildSize : function(){
8721         
8722         if(this.resizeChild){
8723             var el = this.el;
8724             var child = this.resizeChild;
8725             var adj = this.adjustments;
8726             if(el.dom.offsetWidth){
8727                 var b = el.getSize(true);
8728                 child.setSize(b.width+adj[0], b.height+adj[1]);
8729             }
8730             // Second call here for IE
8731             // The first call enables instant resizing and
8732             // the second call corrects scroll bars if they
8733             // exist
8734             if(Roo.isIE){
8735                 setTimeout(function(){
8736                     if(el.dom.offsetWidth){
8737                         var b = el.getSize(true);
8738                         child.setSize(b.width+adj[0], b.height+adj[1]);
8739                     }
8740                 }, 10);
8741             }
8742         }
8743     },
8744
8745     // private
8746     snap : function(value, inc, min){
8747         if(!inc || !value) {
8748             return value;
8749         }
8750         var newValue = value;
8751         var m = value % inc;
8752         if(m > 0){
8753             if(m > (inc/2)){
8754                 newValue = value + (inc-m);
8755             }else{
8756                 newValue = value - m;
8757             }
8758         }
8759         return Math.max(min, newValue);
8760     },
8761
8762     // private
8763     resizeElement : function(){
8764         var box = this.proxy.getBox();
8765         if(this.updateBox){
8766             this.el.setBox(box, false, this.animate, this.duration, null, this.easing);
8767         }else{
8768             this.el.setSize(box.width, box.height, this.animate, this.duration, null, this.easing);
8769         }
8770         this.updateChildSize();
8771         if(!this.dynamic){
8772             this.proxy.hide();
8773         }
8774         return box;
8775     },
8776
8777     // private
8778     constrain : function(v, diff, m, mx){
8779         if(v - diff < m){
8780             diff = v - m;
8781         }else if(v - diff > mx){
8782             diff = mx - v;
8783         }
8784         return diff;
8785     },
8786
8787     // private
8788     onMouseMove : function(e){
8789         
8790         if(this.enabled){
8791             try{// try catch so if something goes wrong the user doesn't get hung
8792
8793             if(this.resizeRegion && !this.resizeRegion.contains(e.getPoint())) {
8794                 return;
8795             }
8796
8797             //var curXY = this.startPoint;
8798             var curSize = this.curSize || this.startBox;
8799             var x = this.startBox.x, y = this.startBox.y;
8800             var ox = x, oy = y;
8801             var w = curSize.width, h = curSize.height;
8802             var ow = w, oh = h;
8803             var mw = this.minWidth, mh = this.minHeight;
8804             var mxw = this.maxWidth, mxh = this.maxHeight;
8805             var wi = this.widthIncrement;
8806             var hi = this.heightIncrement;
8807
8808             var eventXY = e.getXY();
8809             var diffX = -(this.startPoint[0] - Math.max(this.minX, eventXY[0]));
8810             var diffY = -(this.startPoint[1] - Math.max(this.minY, eventXY[1]));
8811
8812             var pos = this.activeHandle.position;
8813
8814             switch(pos){
8815                 case "east":
8816                     w += diffX;
8817                     w = Math.min(Math.max(mw, w), mxw);
8818                     break;
8819              
8820                 case "south":
8821                     h += diffY;
8822                     h = Math.min(Math.max(mh, h), mxh);
8823                     break;
8824                 case "southeast":
8825                     w += diffX;
8826                     h += diffY;
8827                     w = Math.min(Math.max(mw, w), mxw);
8828                     h = Math.min(Math.max(mh, h), mxh);
8829                     break;
8830                 case "north":
8831                     diffY = this.constrain(h, diffY, mh, mxh);
8832                     y += diffY;
8833                     h -= diffY;
8834                     break;
8835                 case "hdrag":
8836                     
8837                     if (wi) {
8838                         var adiffX = Math.abs(diffX);
8839                         var sub = (adiffX % wi); // how much 
8840                         if (sub > (wi/2)) { // far enough to snap
8841                             diffX = (diffX > 0) ? diffX-sub + wi : diffX+sub - wi;
8842                         } else {
8843                             // remove difference.. 
8844                             diffX = (diffX > 0) ? diffX-sub : diffX+sub;
8845                         }
8846                     }
8847                     x += diffX;
8848                     x = Math.max(this.minX, x);
8849                     break;
8850                 case "west":
8851                     diffX = this.constrain(w, diffX, mw, mxw);
8852                     x += diffX;
8853                     w -= diffX;
8854                     break;
8855                 case "northeast":
8856                     w += diffX;
8857                     w = Math.min(Math.max(mw, w), mxw);
8858                     diffY = this.constrain(h, diffY, mh, mxh);
8859                     y += diffY;
8860                     h -= diffY;
8861                     break;
8862                 case "northwest":
8863                     diffX = this.constrain(w, diffX, mw, mxw);
8864                     diffY = this.constrain(h, diffY, mh, mxh);
8865                     y += diffY;
8866                     h -= diffY;
8867                     x += diffX;
8868                     w -= diffX;
8869                     break;
8870                case "southwest":
8871                     diffX = this.constrain(w, diffX, mw, mxw);
8872                     h += diffY;
8873                     h = Math.min(Math.max(mh, h), mxh);
8874                     x += diffX;
8875                     w -= diffX;
8876                     break;
8877             }
8878
8879             var sw = this.snap(w, wi, mw);
8880             var sh = this.snap(h, hi, mh);
8881             if(sw != w || sh != h){
8882                 switch(pos){
8883                     case "northeast":
8884                         y -= sh - h;
8885                     break;
8886                     case "north":
8887                         y -= sh - h;
8888                         break;
8889                     case "southwest":
8890                         x -= sw - w;
8891                     break;
8892                     case "west":
8893                         x -= sw - w;
8894                         break;
8895                     case "northwest":
8896                         x -= sw - w;
8897                         y -= sh - h;
8898                     break;
8899                 }
8900                 w = sw;
8901                 h = sh;
8902             }
8903
8904             if(this.preserveRatio){
8905                 switch(pos){
8906                     case "southeast":
8907                     case "east":
8908                         h = oh * (w/ow);
8909                         h = Math.min(Math.max(mh, h), mxh);
8910                         w = ow * (h/oh);
8911                        break;
8912                     case "south":
8913                         w = ow * (h/oh);
8914                         w = Math.min(Math.max(mw, w), mxw);
8915                         h = oh * (w/ow);
8916                         break;
8917                     case "northeast":
8918                         w = ow * (h/oh);
8919                         w = Math.min(Math.max(mw, w), mxw);
8920                         h = oh * (w/ow);
8921                     break;
8922                     case "north":
8923                         var tw = w;
8924                         w = ow * (h/oh);
8925                         w = Math.min(Math.max(mw, w), mxw);
8926                         h = oh * (w/ow);
8927                         x += (tw - w) / 2;
8928                         break;
8929                     case "southwest":
8930                         h = oh * (w/ow);
8931                         h = Math.min(Math.max(mh, h), mxh);
8932                         var tw = w;
8933                         w = ow * (h/oh);
8934                         x += tw - w;
8935                         break;
8936                     case "west":
8937                         var th = h;
8938                         h = oh * (w/ow);
8939                         h = Math.min(Math.max(mh, h), mxh);
8940                         y += (th - h) / 2;
8941                         var tw = w;
8942                         w = ow * (h/oh);
8943                         x += tw - w;
8944                        break;
8945                     case "northwest":
8946                         var tw = w;
8947                         var th = h;
8948                         h = oh * (w/ow);
8949                         h = Math.min(Math.max(mh, h), mxh);
8950                         w = ow * (h/oh);
8951                         y += th - h;
8952                         x += tw - w;
8953                        break;
8954
8955                 }
8956             }
8957             if (pos == 'hdrag') {
8958                 w = ow;
8959             }
8960             this.proxy.setBounds(x, y, w, h);
8961             if(this.dynamic){
8962                 this.resizeElement();
8963             }
8964             }catch(e){}
8965         }
8966         this.fireEvent("resizing", this, x, y, w, h, e);
8967     },
8968
8969     // private
8970     handleOver : function(){
8971         if(this.enabled){
8972             this.el.addClass("x-resizable-over");
8973         }
8974     },
8975
8976     // private
8977     handleOut : function(){
8978         if(!this.resizing){
8979             this.el.removeClass("x-resizable-over");
8980         }
8981     },
8982
8983     /**
8984      * Returns the element this component is bound to.
8985      * @return {Roo.Element}
8986      */
8987     getEl : function(){
8988         return this.el;
8989     },
8990
8991     /**
8992      * Returns the resizeChild element (or null).
8993      * @return {Roo.Element}
8994      */
8995     getResizeChild : function(){
8996         return this.resizeChild;
8997     },
8998     groupHandler : function()
8999     {
9000         
9001     },
9002     /**
9003      * Destroys this resizable. If the element was wrapped and
9004      * removeEl is not true then the element remains.
9005      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
9006      */
9007     destroy : function(removeEl){
9008         this.proxy.remove();
9009         if(this.overlay){
9010             this.overlay.removeAllListeners();
9011             this.overlay.remove();
9012         }
9013         var ps = Roo.Resizable.positions;
9014         for(var k in ps){
9015             if(typeof ps[k] != "function" && this[ps[k]]){
9016                 var h = this[ps[k]];
9017                 h.el.removeAllListeners();
9018                 h.el.remove();
9019             }
9020         }
9021         if(removeEl){
9022             this.el.update("");
9023             this.el.remove();
9024         }
9025     }
9026 });
9027
9028 // private
9029 // hash to map config positions to true positions
9030 Roo.Resizable.positions = {
9031     n: "north", s: "south", e: "east", w: "west", se: "southeast", sw: "southwest", nw: "northwest", ne: "northeast", 
9032     hd: "hdrag"
9033 };
9034
9035 // private
9036 Roo.Resizable.Handle = function(rz, pos, disableTrackOver, transparent){
9037     if(!this.tpl){
9038         // only initialize the template if resizable is used
9039         var tpl = Roo.DomHelper.createTemplate(
9040             {tag: "div", cls: "x-resizable-handle x-resizable-handle-{0}"}
9041         );
9042         tpl.compile();
9043         Roo.Resizable.Handle.prototype.tpl = tpl;
9044     }
9045     this.position = pos;
9046     this.rz = rz;
9047     // show north drag fro topdra
9048     var handlepos = pos == 'hdrag' ? 'north' : pos;
9049     
9050     this.el = this.tpl.append(rz.el.dom, [handlepos], true);
9051     if (pos == 'hdrag') {
9052         this.el.setStyle('cursor', 'pointer');
9053     }
9054     this.el.unselectable();
9055     if(transparent){
9056         this.el.setOpacity(0);
9057     }
9058     this.el.on("mousedown", this.onMouseDown, this);
9059     if(!disableTrackOver){
9060         this.el.on("mouseover", this.onMouseOver, this);
9061         this.el.on("mouseout", this.onMouseOut, this);
9062     }
9063 };
9064
9065 // private
9066 Roo.Resizable.Handle.prototype = {
9067     afterResize : function(rz){
9068         Roo.log('after?');
9069         // do nothing
9070     },
9071     // private
9072     onMouseDown : function(e){
9073         this.rz.onMouseDown(this, e);
9074     },
9075     // private
9076     onMouseOver : function(e){
9077         this.rz.handleOver(this, e);
9078     },
9079     // private
9080     onMouseOut : function(e){
9081         this.rz.handleOut(this, e);
9082     }
9083 };/*
9084  * Based on:
9085  * Ext JS Library 1.1.1
9086  * Copyright(c) 2006-2007, Ext JS, LLC.
9087  *
9088  * Originally Released Under LGPL - original licence link has changed is not relivant.
9089  *
9090  * Fork - LGPL
9091  * <script type="text/javascript">
9092  */
9093
9094 /**
9095  * @class Roo.Editor
9096  * @extends Roo.Component
9097  * A base editor field that handles displaying/hiding on demand and has some built-in sizing and event handling logic.
9098  * @constructor
9099  * Create a new Editor
9100  * @param {Roo.form.Field} field The Field object (or descendant)
9101  * @param {Object} config The config object
9102  */
9103 Roo.Editor = function(field, config){
9104     Roo.Editor.superclass.constructor.call(this, config);
9105     this.field = field;
9106     this.addEvents({
9107         /**
9108              * @event beforestartedit
9109              * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
9110              * false from the handler of this event.
9111              * @param {Editor} this
9112              * @param {Roo.Element} boundEl The underlying element bound to this editor
9113              * @param {Mixed} value The field value being set
9114              */
9115         "beforestartedit" : true,
9116         /**
9117              * @event startedit
9118              * Fires when this editor is displayed
9119              * @param {Roo.Element} boundEl The underlying element bound to this editor
9120              * @param {Mixed} value The starting field value
9121              */
9122         "startedit" : true,
9123         /**
9124              * @event beforecomplete
9125              * Fires after a change has been made to the field, but before the change is reflected in the underlying
9126              * field.  Saving the change to the field can be canceled by returning false from the handler of this event.
9127              * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
9128              * event will not fire since no edit actually occurred.
9129              * @param {Editor} this
9130              * @param {Mixed} value The current field value
9131              * @param {Mixed} startValue The original field value
9132              */
9133         "beforecomplete" : true,
9134         /**
9135              * @event complete
9136              * Fires after editing is complete and any changed value has been written to the underlying field.
9137              * @param {Editor} this
9138              * @param {Mixed} value The current field value
9139              * @param {Mixed} startValue The original field value
9140              */
9141         "complete" : true,
9142         /**
9143          * @event specialkey
9144          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
9145          * {@link Roo.EventObject#getKey} to determine which key was pressed.
9146          * @param {Roo.form.Field} this
9147          * @param {Roo.EventObject} e The event object
9148          */
9149         "specialkey" : true
9150     });
9151 };
9152
9153 Roo.extend(Roo.Editor, Roo.Component, {
9154     /**
9155      * @cfg {Boolean/String} autosize
9156      * True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only,
9157      * or "height" to adopt the height only (defaults to false)
9158      */
9159     /**
9160      * @cfg {Boolean} revertInvalid
9161      * True to automatically revert the field value and cancel the edit when the user completes an edit and the field
9162      * validation fails (defaults to true)
9163      */
9164     /**
9165      * @cfg {Boolean} ignoreNoChange
9166      * True to skip the the edit completion process (no save, no events fired) if the user completes an edit and
9167      * the value has not changed (defaults to false).  Applies only to string values - edits for other data types
9168      * will never be ignored.
9169      */
9170     /**
9171      * @cfg {Boolean} hideEl
9172      * False to keep the bound element visible while the editor is displayed (defaults to true)
9173      */
9174     /**
9175      * @cfg {Mixed} value
9176      * The data value of the underlying field (defaults to "")
9177      */
9178     value : "",
9179     /**
9180      * @cfg {String} alignment
9181      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "c-c?").
9182      */
9183     alignment: "c-c?",
9184     /**
9185      * @cfg {Boolean/String} shadow "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop"
9186      * for bottom-right shadow (defaults to "frame")
9187      */
9188     shadow : "frame",
9189     /**
9190      * @cfg {Boolean} constrain True to constrain the editor to the viewport
9191      */
9192     constrain : false,
9193     /**
9194      * @cfg {Boolean} completeOnEnter True to complete the edit when the enter key is pressed (defaults to false)
9195      */
9196     completeOnEnter : false,
9197     /**
9198      * @cfg {Boolean} cancelOnEsc True to cancel the edit when the escape key is pressed (defaults to false)
9199      */
9200     cancelOnEsc : false,
9201     /**
9202      * @cfg {Boolean} updateEl True to update the innerHTML of the bound element when the update completes (defaults to false)
9203      */
9204     updateEl : false,
9205
9206     // private
9207     onRender : function(ct, position){
9208         this.el = new Roo.Layer({
9209             shadow: this.shadow,
9210             cls: "x-editor",
9211             parentEl : ct,
9212             shim : this.shim,
9213             shadowOffset:4,
9214             id: this.id,
9215             constrain: this.constrain
9216         });
9217         this.el.setStyle("overflow", Roo.isGecko ? "auto" : "hidden");
9218         if(this.field.msgTarget != 'title'){
9219             this.field.msgTarget = 'qtip';
9220         }
9221         this.field.render(this.el);
9222         if(Roo.isGecko){
9223             this.field.el.dom.setAttribute('autocomplete', 'off');
9224         }
9225         this.field.on("specialkey", this.onSpecialKey, this);
9226         if(this.swallowKeys){
9227             this.field.el.swallowEvent(['keydown','keypress']);
9228         }
9229         this.field.show();
9230         this.field.on("blur", this.onBlur, this);
9231         if(this.field.grow){
9232             this.field.on("autosize", this.el.sync,  this.el, {delay:1});
9233         }
9234     },
9235
9236     onSpecialKey : function(field, e)
9237     {
9238         //Roo.log('editor onSpecialKey');
9239         if(this.completeOnEnter && e.getKey() == e.ENTER){
9240             e.stopEvent();
9241             this.completeEdit();
9242             return;
9243         }
9244         // do not fire special key otherwise it might hide close the editor...
9245         if(e.getKey() == e.ENTER){    
9246             return;
9247         }
9248         if(this.cancelOnEsc && e.getKey() == e.ESC){
9249             this.cancelEdit();
9250             return;
9251         } 
9252         this.fireEvent('specialkey', field, e);
9253     
9254     },
9255
9256     /**
9257      * Starts the editing process and shows the editor.
9258      * @param {String/HTMLElement/Element} el The element to edit
9259      * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults
9260       * to the innerHTML of el.
9261      */
9262     startEdit : function(el, value){
9263         if(this.editing){
9264             this.completeEdit();
9265         }
9266         this.boundEl = Roo.get(el);
9267         var v = value !== undefined ? value : this.boundEl.dom.innerHTML;
9268         if(!this.rendered){
9269             this.render(this.parentEl || document.body);
9270         }
9271         if(this.fireEvent("beforestartedit", this, this.boundEl, v) === false){
9272             return;
9273         }
9274         this.startValue = v;
9275         this.field.setValue(v);
9276         if(this.autoSize){
9277             var sz = this.boundEl.getSize();
9278             switch(this.autoSize){
9279                 case "width":
9280                 this.setSize(sz.width,  "");
9281                 break;
9282                 case "height":
9283                 this.setSize("",  sz.height);
9284                 break;
9285                 default:
9286                 this.setSize(sz.width,  sz.height);
9287             }
9288         }
9289         this.el.alignTo(this.boundEl, this.alignment);
9290         this.editing = true;
9291         if(Roo.QuickTips){
9292             Roo.QuickTips.disable();
9293         }
9294         this.show();
9295     },
9296
9297     /**
9298      * Sets the height and width of this editor.
9299      * @param {Number} width The new width
9300      * @param {Number} height The new height
9301      */
9302     setSize : function(w, h){
9303         this.field.setSize(w, h);
9304         if(this.el){
9305             this.el.sync();
9306         }
9307     },
9308
9309     /**
9310      * Realigns the editor to the bound field based on the current alignment config value.
9311      */
9312     realign : function(){
9313         this.el.alignTo(this.boundEl, this.alignment);
9314     },
9315
9316     /**
9317      * Ends the editing process, persists the changed value to the underlying field, and hides the editor.
9318      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after edit (defaults to false)
9319      */
9320     completeEdit : function(remainVisible){
9321         if(!this.editing){
9322             return;
9323         }
9324         var v = this.getValue();
9325         if(this.revertInvalid !== false && !this.field.isValid()){
9326             v = this.startValue;
9327             this.cancelEdit(true);
9328         }
9329         if(String(v) === String(this.startValue) && this.ignoreNoChange){
9330             this.editing = false;
9331             this.hide();
9332             return;
9333         }
9334         if(this.fireEvent("beforecomplete", this, v, this.startValue) !== false){
9335             this.editing = false;
9336             if(this.updateEl && this.boundEl){
9337                 this.boundEl.update(v);
9338             }
9339             if(remainVisible !== true){
9340                 this.hide();
9341             }
9342             this.fireEvent("complete", this, v, this.startValue);
9343         }
9344     },
9345
9346     // private
9347     onShow : function(){
9348         this.el.show();
9349         if(this.hideEl !== false){
9350             this.boundEl.hide();
9351         }
9352         this.field.show();
9353         if(Roo.isIE && !this.fixIEFocus){ // IE has problems with focusing the first time
9354             this.fixIEFocus = true;
9355             this.deferredFocus.defer(50, this);
9356         }else{
9357             this.field.focus();
9358         }
9359         this.fireEvent("startedit", this.boundEl, this.startValue);
9360     },
9361
9362     deferredFocus : function(){
9363         if(this.editing){
9364             this.field.focus();
9365         }
9366     },
9367
9368     /**
9369      * Cancels the editing process and hides the editor without persisting any changes.  The field value will be
9370      * reverted to the original starting value.
9371      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after
9372      * cancel (defaults to false)
9373      */
9374     cancelEdit : function(remainVisible){
9375         if(this.editing){
9376             this.setValue(this.startValue);
9377             if(remainVisible !== true){
9378                 this.hide();
9379             }
9380         }
9381     },
9382
9383     // private
9384     onBlur : function(){
9385         if(this.allowBlur !== true && this.editing){
9386             this.completeEdit();
9387         }
9388     },
9389
9390     // private
9391     onHide : function(){
9392         if(this.editing){
9393             this.completeEdit();
9394             return;
9395         }
9396         this.field.blur();
9397         if(this.field.collapse){
9398             this.field.collapse();
9399         }
9400         this.el.hide();
9401         if(this.hideEl !== false){
9402             this.boundEl.show();
9403         }
9404         if(Roo.QuickTips){
9405             Roo.QuickTips.enable();
9406         }
9407     },
9408
9409     /**
9410      * Sets the data value of the editor
9411      * @param {Mixed} value Any valid value supported by the underlying field
9412      */
9413     setValue : function(v){
9414         this.field.setValue(v);
9415     },
9416
9417     /**
9418      * Gets the data value of the editor
9419      * @return {Mixed} The data value
9420      */
9421     getValue : function(){
9422         return this.field.getValue();
9423     }
9424 });/*
9425  * Based on:
9426  * Ext JS Library 1.1.1
9427  * Copyright(c) 2006-2007, Ext JS, LLC.
9428  *
9429  * Originally Released Under LGPL - original licence link has changed is not relivant.
9430  *
9431  * Fork - LGPL
9432  * <script type="text/javascript">
9433  */
9434  
9435 /**
9436  * @class Roo.BasicDialog
9437  * @extends Roo.util.Observable
9438  * Lightweight Dialog Class.  The code below shows the creation of a typical dialog using existing HTML markup:
9439  * <pre><code>
9440 var dlg = new Roo.BasicDialog("my-dlg", {
9441     height: 200,
9442     width: 300,
9443     minHeight: 100,
9444     minWidth: 150,
9445     modal: true,
9446     proxyDrag: true,
9447     shadow: true
9448 });
9449 dlg.addKeyListener(27, dlg.hide, dlg); // ESC can also close the dialog
9450 dlg.addButton('OK', dlg.hide, dlg);    // Could call a save function instead of hiding
9451 dlg.addButton('Cancel', dlg.hide, dlg);
9452 dlg.show();
9453 </code></pre>
9454   <b>A Dialog should always be a direct child of the body element.</b>
9455  * @cfg {Boolean/DomHelper} autoCreate True to auto create from scratch, or using a DomHelper Object (defaults to false)
9456  * @cfg {String} title Default text to display in the title bar (defaults to null)
9457  * @cfg {Number} width Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
9458  * @cfg {Number} height Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
9459  * @cfg {Number} x The default left page coordinate of the dialog (defaults to center screen)
9460  * @cfg {Number} y The default top page coordinate of the dialog (defaults to center screen)
9461  * @cfg {String/Element} animateTarget Id or element from which the dialog should animate while opening
9462  * (defaults to null with no animation)
9463  * @cfg {Boolean} resizable False to disable manual dialog resizing (defaults to true)
9464  * @cfg {String} resizeHandles Which resize handles to display - see the {@link Roo.Resizable} handles config
9465  * property for valid values (defaults to 'all')
9466  * @cfg {Number} minHeight The minimum allowable height for a resizable dialog (defaults to 80)
9467  * @cfg {Number} minWidth The minimum allowable width for a resizable dialog (defaults to 200)
9468  * @cfg {Boolean} modal True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)
9469  * @cfg {Boolean} autoScroll True to allow the dialog body contents to overflow and display scrollbars (defaults to false)
9470  * @cfg {Boolean} closable False to remove the built-in top-right corner close button (defaults to true)
9471  * @cfg {Boolean} collapsible False to remove the built-in top-right corner collapse button (defaults to true)
9472  * @cfg {Boolean} constraintoviewport True to keep the dialog constrained within the visible viewport boundaries (defaults to true)
9473  * @cfg {Boolean} syncHeightBeforeShow True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)
9474  * @cfg {Boolean} draggable False to disable dragging of the dialog within the viewport (defaults to true)
9475  * @cfg {Boolean} autoTabs If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)
9476  * @cfg {String} tabTag The tag name of tab elements, used when autoTabs = true (defaults to 'div')
9477  * @cfg {Boolean} proxyDrag True to drag a lightweight proxy element rather than the dialog itself, used when
9478  * draggable = true (defaults to false)
9479  * @cfg {Boolean} fixedcenter True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)
9480  * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
9481  * shadow (defaults to false)
9482  * @cfg {Number} shadowOffset The number of pixels to offset the shadow if displayed (defaults to 5)
9483  * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "right")
9484  * @cfg {Number} minButtonWidth Minimum width of all dialog buttons (defaults to 75)
9485  * @cfg {Array} buttons Array of buttons
9486  * @cfg {Boolean} shim True to create an iframe shim that prevents selects from showing through (defaults to false)
9487  * @constructor
9488  * Create a new BasicDialog.
9489  * @param {String/HTMLElement/Roo.Element} el The container element or DOM node, or its id
9490  * @param {Object} config Configuration options
9491  */
9492 Roo.BasicDialog = function(el, config){
9493     this.el = Roo.get(el);
9494     var dh = Roo.DomHelper;
9495     if(!this.el && config && config.autoCreate){
9496         if(typeof config.autoCreate == "object"){
9497             if(!config.autoCreate.id){
9498                 config.autoCreate.id = el;
9499             }
9500             this.el = dh.append(document.body,
9501                         config.autoCreate, true);
9502         }else{
9503             this.el = dh.append(document.body,
9504                         {tag: "div", id: el, style:'visibility:hidden;'}, true);
9505         }
9506     }
9507     el = this.el;
9508     el.setDisplayed(true);
9509     el.hide = this.hideAction;
9510     this.id = el.id;
9511     el.addClass("x-dlg");
9512
9513     Roo.apply(this, config);
9514
9515     this.proxy = el.createProxy("x-dlg-proxy");
9516     this.proxy.hide = this.hideAction;
9517     this.proxy.setOpacity(.5);
9518     this.proxy.hide();
9519
9520     if(config.width){
9521         el.setWidth(config.width);
9522     }
9523     if(config.height){
9524         el.setHeight(config.height);
9525     }
9526     this.size = el.getSize();
9527     if(typeof config.x != "undefined" && typeof config.y != "undefined"){
9528         this.xy = [config.x,config.y];
9529     }else{
9530         this.xy = el.getCenterXY(true);
9531     }
9532     /** The header element @type Roo.Element */
9533     this.header = el.child("> .x-dlg-hd");
9534     /** The body element @type Roo.Element */
9535     this.body = el.child("> .x-dlg-bd");
9536     /** The footer element @type Roo.Element */
9537     this.footer = el.child("> .x-dlg-ft");
9538
9539     if(!this.header){
9540         this.header = el.createChild({tag: "div", cls:"x-dlg-hd", html: "&#160;"}, this.body ? this.body.dom : null);
9541     }
9542     if(!this.body){
9543         this.body = el.createChild({tag: "div", cls:"x-dlg-bd"});
9544     }
9545
9546     this.header.unselectable();
9547     if(this.title){
9548         this.header.update(this.title);
9549     }
9550     // this element allows the dialog to be focused for keyboard event
9551     this.focusEl = el.createChild({tag: "a", href:"#", cls:"x-dlg-focus", tabIndex:"-1"});
9552     this.focusEl.swallowEvent("click", true);
9553
9554     this.header.wrap({cls:"x-dlg-hd-right"}).wrap({cls:"x-dlg-hd-left"}, true);
9555
9556     // wrap the body and footer for special rendering
9557     this.bwrap = this.body.wrap({tag: "div", cls:"x-dlg-dlg-body"});
9558     if(this.footer){
9559         this.bwrap.dom.appendChild(this.footer.dom);
9560     }
9561
9562     this.bg = this.el.createChild({
9563         tag: "div", cls:"x-dlg-bg",
9564         html: '<div class="x-dlg-bg-left"><div class="x-dlg-bg-right"><div class="x-dlg-bg-center">&#160;</div></div></div>'
9565     });
9566     this.centerBg = this.bg.child("div.x-dlg-bg-center");
9567
9568
9569     if(this.autoScroll !== false && !this.autoTabs){
9570         this.body.setStyle("overflow", "auto");
9571     }
9572
9573     this.toolbox = this.el.createChild({cls: "x-dlg-toolbox"});
9574
9575     if(this.closable !== false){
9576         this.el.addClass("x-dlg-closable");
9577         this.close = this.toolbox.createChild({cls:"x-dlg-close"});
9578         this.close.on("click", this.closeClick, this);
9579         this.close.addClassOnOver("x-dlg-close-over");
9580     }
9581     if(this.collapsible !== false){
9582         this.collapseBtn = this.toolbox.createChild({cls:"x-dlg-collapse"});
9583         this.collapseBtn.on("click", this.collapseClick, this);
9584         this.collapseBtn.addClassOnOver("x-dlg-collapse-over");
9585         this.header.on("dblclick", this.collapseClick, this);
9586     }
9587     if(this.resizable !== false){
9588         this.el.addClass("x-dlg-resizable");
9589         this.resizer = new Roo.Resizable(el, {
9590             minWidth: this.minWidth || 80,
9591             minHeight:this.minHeight || 80,
9592             handles: this.resizeHandles || "all",
9593             pinned: true
9594         });
9595         this.resizer.on("beforeresize", this.beforeResize, this);
9596         this.resizer.on("resize", this.onResize, this);
9597     }
9598     if(this.draggable !== false){
9599         el.addClass("x-dlg-draggable");
9600         if (!this.proxyDrag) {
9601             var dd = new Roo.dd.DD(el.dom.id, "WindowDrag");
9602         }
9603         else {
9604             var dd = new Roo.dd.DDProxy(el.dom.id, "WindowDrag", {dragElId: this.proxy.id});
9605         }
9606         dd.setHandleElId(this.header.id);
9607         dd.endDrag = this.endMove.createDelegate(this);
9608         dd.startDrag = this.startMove.createDelegate(this);
9609         dd.onDrag = this.onDrag.createDelegate(this);
9610         dd.scroll = false;
9611         this.dd = dd;
9612     }
9613     if(this.modal){
9614         this.mask = dh.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
9615         this.mask.enableDisplayMode("block");
9616         this.mask.hide();
9617         this.el.addClass("x-dlg-modal");
9618     }
9619     if(this.shadow){
9620         this.shadow = new Roo.Shadow({
9621             mode : typeof this.shadow == "string" ? this.shadow : "sides",
9622             offset : this.shadowOffset
9623         });
9624     }else{
9625         this.shadowOffset = 0;
9626     }
9627     if(Roo.useShims && this.shim !== false){
9628         this.shim = this.el.createShim();
9629         this.shim.hide = this.hideAction;
9630         this.shim.hide();
9631     }else{
9632         this.shim = false;
9633     }
9634     if(this.autoTabs){
9635         this.initTabs();
9636     }
9637     if (this.buttons) { 
9638         var bts= this.buttons;
9639         this.buttons = [];
9640         Roo.each(bts, function(b) {
9641             this.addButton(b);
9642         }, this);
9643     }
9644     
9645     
9646     this.addEvents({
9647         /**
9648          * @event keydown
9649          * Fires when a key is pressed
9650          * @param {Roo.BasicDialog} this
9651          * @param {Roo.EventObject} e
9652          */
9653         "keydown" : true,
9654         /**
9655          * @event move
9656          * Fires when this dialog is moved by the user.
9657          * @param {Roo.BasicDialog} this
9658          * @param {Number} x The new page X
9659          * @param {Number} y The new page Y
9660          */
9661         "move" : true,
9662         /**
9663          * @event resize
9664          * Fires when this dialog is resized by the user.
9665          * @param {Roo.BasicDialog} this
9666          * @param {Number} width The new width
9667          * @param {Number} height The new height
9668          */
9669         "resize" : true,
9670         /**
9671          * @event beforehide
9672          * Fires before this dialog is hidden.
9673          * @param {Roo.BasicDialog} this
9674          */
9675         "beforehide" : true,
9676         /**
9677          * @event hide
9678          * Fires when this dialog is hidden.
9679          * @param {Roo.BasicDialog} this
9680          */
9681         "hide" : true,
9682         /**
9683          * @event beforeshow
9684          * Fires before this dialog is shown.
9685          * @param {Roo.BasicDialog} this
9686          */
9687         "beforeshow" : true,
9688         /**
9689          * @event show
9690          * Fires when this dialog is shown.
9691          * @param {Roo.BasicDialog} this
9692          */
9693         "show" : true
9694     });
9695     el.on("keydown", this.onKeyDown, this);
9696     el.on("mousedown", this.toFront, this);
9697     Roo.EventManager.onWindowResize(this.adjustViewport, this, true);
9698     this.el.hide();
9699     Roo.DialogManager.register(this);
9700     Roo.BasicDialog.superclass.constructor.call(this);
9701 };
9702
9703 Roo.extend(Roo.BasicDialog, Roo.util.Observable, {
9704     shadowOffset: Roo.isIE ? 6 : 5,
9705     minHeight: 80,
9706     minWidth: 200,
9707     minButtonWidth: 75,
9708     defaultButton: null,
9709     buttonAlign: "right",
9710     tabTag: 'div',
9711     firstShow: true,
9712
9713     /**
9714      * Sets the dialog title text
9715      * @param {String} text The title text to display
9716      * @return {Roo.BasicDialog} this
9717      */
9718     setTitle : function(text){
9719         this.header.update(text);
9720         return this;
9721     },
9722
9723     // private
9724     closeClick : function(){
9725         this.hide();
9726     },
9727
9728     // private
9729     collapseClick : function(){
9730         this[this.collapsed ? "expand" : "collapse"]();
9731     },
9732
9733     /**
9734      * Collapses the dialog to its minimized state (only the title bar is visible).
9735      * Equivalent to the user clicking the collapse dialog button.
9736      */
9737     collapse : function(){
9738         if(!this.collapsed){
9739             this.collapsed = true;
9740             this.el.addClass("x-dlg-collapsed");
9741             this.restoreHeight = this.el.getHeight();
9742             this.resizeTo(this.el.getWidth(), this.header.getHeight());
9743         }
9744     },
9745
9746     /**
9747      * Expands a collapsed dialog back to its normal state.  Equivalent to the user
9748      * clicking the expand dialog button.
9749      */
9750     expand : function(){
9751         if(this.collapsed){
9752             this.collapsed = false;
9753             this.el.removeClass("x-dlg-collapsed");
9754             this.resizeTo(this.el.getWidth(), this.restoreHeight);
9755         }
9756     },
9757
9758     /**
9759      * Reinitializes the tabs component, clearing out old tabs and finding new ones.
9760      * @return {Roo.TabPanel} The tabs component
9761      */
9762     initTabs : function(){
9763         var tabs = this.getTabs();
9764         while(tabs.getTab(0)){
9765             tabs.removeTab(0);
9766         }
9767         this.el.select(this.tabTag+'.x-dlg-tab').each(function(el){
9768             var dom = el.dom;
9769             tabs.addTab(Roo.id(dom), dom.title);
9770             dom.title = "";
9771         });
9772         tabs.activate(0);
9773         return tabs;
9774     },
9775
9776     // private
9777     beforeResize : function(){
9778         this.resizer.minHeight = Math.max(this.minHeight, this.getHeaderFooterHeight(true)+40);
9779     },
9780
9781     // private
9782     onResize : function(){
9783         this.refreshSize();
9784         this.syncBodyHeight();
9785         this.adjustAssets();
9786         this.focus();
9787         this.fireEvent("resize", this, this.size.width, this.size.height);
9788     },
9789
9790     // private
9791     onKeyDown : function(e){
9792         if(this.isVisible()){
9793             this.fireEvent("keydown", this, e);
9794         }
9795     },
9796
9797     /**
9798      * Resizes the dialog.
9799      * @param {Number} width
9800      * @param {Number} height
9801      * @return {Roo.BasicDialog} this
9802      */
9803     resizeTo : function(width, height){
9804         this.el.setSize(width, height);
9805         this.size = {width: width, height: height};
9806         this.syncBodyHeight();
9807         if(this.fixedcenter){
9808             this.center();
9809         }
9810         if(this.isVisible()){
9811             this.constrainXY();
9812             this.adjustAssets();
9813         }
9814         this.fireEvent("resize", this, width, height);
9815         return this;
9816     },
9817
9818
9819     /**
9820      * Resizes the dialog to fit the specified content size.
9821      * @param {Number} width
9822      * @param {Number} height
9823      * @return {Roo.BasicDialog} this
9824      */
9825     setContentSize : function(w, h){
9826         h += this.getHeaderFooterHeight() + this.body.getMargins("tb");
9827         w += this.body.getMargins("lr") + this.bwrap.getMargins("lr") + this.centerBg.getPadding("lr");
9828         //if(!this.el.isBorderBox()){
9829             h +=  this.body.getPadding("tb") + this.bwrap.getBorderWidth("tb") + this.body.getBorderWidth("tb") + this.el.getBorderWidth("tb");
9830             w += this.body.getPadding("lr") + this.bwrap.getBorderWidth("lr") + this.body.getBorderWidth("lr") + this.bwrap.getPadding("lr") + this.el.getBorderWidth("lr");
9831         //}
9832         if(this.tabs){
9833             h += this.tabs.stripWrap.getHeight() + this.tabs.bodyEl.getMargins("tb") + this.tabs.bodyEl.getPadding("tb");
9834             w += this.tabs.bodyEl.getMargins("lr") + this.tabs.bodyEl.getPadding("lr");
9835         }
9836         this.resizeTo(w, h);
9837         return this;
9838     },
9839
9840     /**
9841      * Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be
9842      * executed in response to a particular key being pressed while the dialog is active.
9843      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the following options:
9844      *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
9845      * @param {Function} fn The function to call
9846      * @param {Object} scope (optional) The scope of the function
9847      * @return {Roo.BasicDialog} this
9848      */
9849     addKeyListener : function(key, fn, scope){
9850         var keyCode, shift, ctrl, alt;
9851         if(typeof key == "object" && !(key instanceof Array)){
9852             keyCode = key["key"];
9853             shift = key["shift"];
9854             ctrl = key["ctrl"];
9855             alt = key["alt"];
9856         }else{
9857             keyCode = key;
9858         }
9859         var handler = function(dlg, e){
9860             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
9861                 var k = e.getKey();
9862                 if(keyCode instanceof Array){
9863                     for(var i = 0, len = keyCode.length; i < len; i++){
9864                         if(keyCode[i] == k){
9865                           fn.call(scope || window, dlg, k, e);
9866                           return;
9867                         }
9868                     }
9869                 }else{
9870                     if(k == keyCode){
9871                         fn.call(scope || window, dlg, k, e);
9872                     }
9873                 }
9874             }
9875         };
9876         this.on("keydown", handler);
9877         return this;
9878     },
9879
9880     /**
9881      * Returns the TabPanel component (creates it if it doesn't exist).
9882      * Note: If you wish to simply check for the existence of tabs without creating them,
9883      * check for a null 'tabs' property.
9884      * @return {Roo.TabPanel} The tabs component
9885      */
9886     getTabs : function(){
9887         if(!this.tabs){
9888             this.el.addClass("x-dlg-auto-tabs");
9889             this.body.addClass(this.tabPosition == "bottom" ? "x-tabs-bottom" : "x-tabs-top");
9890             this.tabs = new Roo.TabPanel(this.body.dom, this.tabPosition == "bottom");
9891         }
9892         return this.tabs;
9893     },
9894
9895     /**
9896      * Adds a button to the footer section of the dialog.
9897      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
9898      * object or a valid Roo.DomHelper element config
9899      * @param {Function} handler The function called when the button is clicked
9900      * @param {Object} scope (optional) The scope of the handler function (accepts position as a property)
9901      * @return {Roo.Button} The new button
9902      */
9903     addButton : function(config, handler, scope){
9904         var dh = Roo.DomHelper;
9905         if(!this.footer){
9906             this.footer = dh.append(this.bwrap, {tag: "div", cls:"x-dlg-ft"}, true);
9907         }
9908         if(!this.btnContainer){
9909             var tb = this.footer.createChild({
9910
9911                 cls:"x-dlg-btns x-dlg-btns-"+this.buttonAlign,
9912                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
9913             }, null, true);
9914             this.btnContainer = tb.firstChild.firstChild.firstChild;
9915         }
9916         var bconfig = {
9917             handler: handler,
9918             scope: scope,
9919             minWidth: this.minButtonWidth,
9920             hideParent:true
9921         };
9922         if(typeof config == "string"){
9923             bconfig.text = config;
9924         }else{
9925             if(config.tag){
9926                 bconfig.dhconfig = config;
9927             }else{
9928                 Roo.apply(bconfig, config);
9929             }
9930         }
9931         var fc = false;
9932         if ((typeof(bconfig.position) != 'undefined') && bconfig.position < this.btnContainer.childNodes.length-1) {
9933             bconfig.position = Math.max(0, bconfig.position);
9934             fc = this.btnContainer.childNodes[bconfig.position];
9935         }
9936          
9937         var btn = new Roo.Button(
9938             fc ? 
9939                 this.btnContainer.insertBefore(document.createElement("td"),fc)
9940                 : this.btnContainer.appendChild(document.createElement("td")),
9941             //Roo.get(this.btnContainer).createChild( { tag: 'td'},  fc ),
9942             bconfig
9943         );
9944         this.syncBodyHeight();
9945         if(!this.buttons){
9946             /**
9947              * Array of all the buttons that have been added to this dialog via addButton
9948              * @type Array
9949              */
9950             this.buttons = [];
9951         }
9952         this.buttons.push(btn);
9953         return btn;
9954     },
9955
9956     /**
9957      * Sets the default button to be focused when the dialog is displayed.
9958      * @param {Roo.BasicDialog.Button} btn The button object returned by {@link #addButton}
9959      * @return {Roo.BasicDialog} this
9960      */
9961     setDefaultButton : function(btn){
9962         this.defaultButton = btn;
9963         return this;
9964     },
9965
9966     // private
9967     getHeaderFooterHeight : function(safe){
9968         var height = 0;
9969         if(this.header){
9970            height += this.header.getHeight();
9971         }
9972         if(this.footer){
9973            var fm = this.footer.getMargins();
9974             height += (this.footer.getHeight()+fm.top+fm.bottom);
9975         }
9976         height += this.bwrap.getPadding("tb")+this.bwrap.getBorderWidth("tb");
9977         height += this.centerBg.getPadding("tb");
9978         return height;
9979     },
9980
9981     // private
9982     syncBodyHeight : function()
9983     {
9984         var bd = this.body, // the text
9985             cb = this.centerBg, // wrapper around bottom.. but does not seem to be used..
9986             bw = this.bwrap;
9987         var height = this.size.height - this.getHeaderFooterHeight(false);
9988         bd.setHeight(height-bd.getMargins("tb"));
9989         var hh = this.header.getHeight();
9990         var h = this.size.height-hh;
9991         cb.setHeight(h);
9992         
9993         bw.setLeftTop(cb.getPadding("l"), hh+cb.getPadding("t"));
9994         bw.setHeight(h-cb.getPadding("tb"));
9995         
9996         bw.setWidth(this.el.getWidth(true)-cb.getPadding("lr"));
9997         bd.setWidth(bw.getWidth(true));
9998         if(this.tabs){
9999             this.tabs.syncHeight();
10000             if(Roo.isIE){
10001                 this.tabs.el.repaint();
10002             }
10003         }
10004     },
10005
10006     /**
10007      * Restores the previous state of the dialog if Roo.state is configured.
10008      * @return {Roo.BasicDialog} this
10009      */
10010     restoreState : function(){
10011         var box = Roo.state.Manager.get(this.stateId || (this.el.id + "-state"));
10012         if(box && box.width){
10013             this.xy = [box.x, box.y];
10014             this.resizeTo(box.width, box.height);
10015         }
10016         return this;
10017     },
10018
10019     // private
10020     beforeShow : function(){
10021         this.expand();
10022         if(this.fixedcenter){
10023             this.xy = this.el.getCenterXY(true);
10024         }
10025         if(this.modal){
10026             Roo.get(document.body).addClass("x-body-masked");
10027             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
10028             this.mask.show();
10029         }
10030         this.constrainXY();
10031     },
10032
10033     // private
10034     animShow : function(){
10035         var b = Roo.get(this.animateTarget).getBox();
10036         this.proxy.setSize(b.width, b.height);
10037         this.proxy.setLocation(b.x, b.y);
10038         this.proxy.show();
10039         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height,
10040                     true, .35, this.showEl.createDelegate(this));
10041     },
10042
10043     /**
10044      * Shows the dialog.
10045      * @param {String/HTMLElement/Roo.Element} animateTarget (optional) Reset the animation target
10046      * @return {Roo.BasicDialog} this
10047      */
10048     show : function(animateTarget){
10049         if (this.fireEvent("beforeshow", this) === false){
10050             return;
10051         }
10052         if(this.syncHeightBeforeShow){
10053             this.syncBodyHeight();
10054         }else if(this.firstShow){
10055             this.firstShow = false;
10056             this.syncBodyHeight(); // sync the height on the first show instead of in the constructor
10057         }
10058         this.animateTarget = animateTarget || this.animateTarget;
10059         if(!this.el.isVisible()){
10060             this.beforeShow();
10061             if(this.animateTarget && Roo.get(this.animateTarget)){
10062                 this.animShow();
10063             }else{
10064                 this.showEl();
10065             }
10066         }
10067         return this;
10068     },
10069
10070     // private
10071     showEl : function(){
10072         this.proxy.hide();
10073         this.el.setXY(this.xy);
10074         this.el.show();
10075         this.adjustAssets(true);
10076         this.toFront();
10077         this.focus();
10078         // IE peekaboo bug - fix found by Dave Fenwick
10079         if(Roo.isIE){
10080             this.el.repaint();
10081         }
10082         this.fireEvent("show", this);
10083     },
10084
10085     /**
10086      * Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the
10087      * dialog itself will receive focus.
10088      */
10089     focus : function(){
10090         if(this.defaultButton){
10091             this.defaultButton.focus();
10092         }else{
10093             this.focusEl.focus();
10094         }
10095     },
10096
10097     // private
10098     constrainXY : function(){
10099         if(this.constraintoviewport !== false){
10100             if(!this.viewSize){
10101                 if(this.container){
10102                     var s = this.container.getSize();
10103                     this.viewSize = [s.width, s.height];
10104                 }else{
10105                     this.viewSize = [Roo.lib.Dom.getViewWidth(),Roo.lib.Dom.getViewHeight()];
10106                 }
10107             }
10108             var s = Roo.get(this.container||document).getScroll();
10109
10110             var x = this.xy[0], y = this.xy[1];
10111             var w = this.size.width, h = this.size.height;
10112             var vw = this.viewSize[0], vh = this.viewSize[1];
10113             // only move it if it needs it
10114             var moved = false;
10115             // first validate right/bottom
10116             if(x + w > vw+s.left){
10117                 x = vw - w;
10118                 moved = true;
10119             }
10120             if(y + h > vh+s.top){
10121                 y = vh - h;
10122                 moved = true;
10123             }
10124             // then make sure top/left isn't negative
10125             if(x < s.left){
10126                 x = s.left;
10127                 moved = true;
10128             }
10129             if(y < s.top){
10130                 y = s.top;
10131                 moved = true;
10132             }
10133             if(moved){
10134                 // cache xy
10135                 this.xy = [x, y];
10136                 if(this.isVisible()){
10137                     this.el.setLocation(x, y);
10138                     this.adjustAssets();
10139                 }
10140             }
10141         }
10142     },
10143
10144     // private
10145     onDrag : function(){
10146         if(!this.proxyDrag){
10147             this.xy = this.el.getXY();
10148             this.adjustAssets();
10149         }
10150     },
10151
10152     // private
10153     adjustAssets : function(doShow){
10154         var x = this.xy[0], y = this.xy[1];
10155         var w = this.size.width, h = this.size.height;
10156         if(doShow === true){
10157             if(this.shadow){
10158                 this.shadow.show(this.el);
10159             }
10160             if(this.shim){
10161                 this.shim.show();
10162             }
10163         }
10164         if(this.shadow && this.shadow.isVisible()){
10165             this.shadow.show(this.el);
10166         }
10167         if(this.shim && this.shim.isVisible()){
10168             this.shim.setBounds(x, y, w, h);
10169         }
10170     },
10171
10172     // private
10173     adjustViewport : function(w, h){
10174         if(!w || !h){
10175             w = Roo.lib.Dom.getViewWidth();
10176             h = Roo.lib.Dom.getViewHeight();
10177         }
10178         // cache the size
10179         this.viewSize = [w, h];
10180         if(this.modal && this.mask.isVisible()){
10181             this.mask.setSize(w, h); // first make sure the mask isn't causing overflow
10182             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
10183         }
10184         if(this.isVisible()){
10185             this.constrainXY();
10186         }
10187     },
10188
10189     /**
10190      * Destroys this dialog and all its supporting elements (including any tabs, shim,
10191      * shadow, proxy, mask, etc.)  Also removes all event listeners.
10192      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
10193      */
10194     destroy : function(removeEl){
10195         if(this.isVisible()){
10196             this.animateTarget = null;
10197             this.hide();
10198         }
10199         Roo.EventManager.removeResizeListener(this.adjustViewport, this);
10200         if(this.tabs){
10201             this.tabs.destroy(removeEl);
10202         }
10203         Roo.destroy(
10204              this.shim,
10205              this.proxy,
10206              this.resizer,
10207              this.close,
10208              this.mask
10209         );
10210         if(this.dd){
10211             this.dd.unreg();
10212         }
10213         if(this.buttons){
10214            for(var i = 0, len = this.buttons.length; i < len; i++){
10215                this.buttons[i].destroy();
10216            }
10217         }
10218         this.el.removeAllListeners();
10219         if(removeEl === true){
10220             this.el.update("");
10221             this.el.remove();
10222         }
10223         Roo.DialogManager.unregister(this);
10224     },
10225
10226     // private
10227     startMove : function(){
10228         if(this.proxyDrag){
10229             this.proxy.show();
10230         }
10231         if(this.constraintoviewport !== false){
10232             this.dd.constrainTo(document.body, {right: this.shadowOffset, bottom: this.shadowOffset});
10233         }
10234     },
10235
10236     // private
10237     endMove : function(){
10238         if(!this.proxyDrag){
10239             Roo.dd.DD.prototype.endDrag.apply(this.dd, arguments);
10240         }else{
10241             Roo.dd.DDProxy.prototype.endDrag.apply(this.dd, arguments);
10242             this.proxy.hide();
10243         }
10244         this.refreshSize();
10245         this.adjustAssets();
10246         this.focus();
10247         this.fireEvent("move", this, this.xy[0], this.xy[1]);
10248     },
10249
10250     /**
10251      * Brings this dialog to the front of any other visible dialogs
10252      * @return {Roo.BasicDialog} this
10253      */
10254     toFront : function(){
10255         Roo.DialogManager.bringToFront(this);
10256         return this;
10257     },
10258
10259     /**
10260      * Sends this dialog to the back (under) of any other visible dialogs
10261      * @return {Roo.BasicDialog} this
10262      */
10263     toBack : function(){
10264         Roo.DialogManager.sendToBack(this);
10265         return this;
10266     },
10267
10268     /**
10269      * Centers this dialog in the viewport
10270      * @return {Roo.BasicDialog} this
10271      */
10272     center : function(){
10273         var xy = this.el.getCenterXY(true);
10274         this.moveTo(xy[0], xy[1]);
10275         return this;
10276     },
10277
10278     /**
10279      * Moves the dialog's top-left corner to the specified point
10280      * @param {Number} x
10281      * @param {Number} y
10282      * @return {Roo.BasicDialog} this
10283      */
10284     moveTo : function(x, y){
10285         this.xy = [x,y];
10286         if(this.isVisible()){
10287             this.el.setXY(this.xy);
10288             this.adjustAssets();
10289         }
10290         return this;
10291     },
10292
10293     /**
10294      * Aligns the dialog to the specified element
10295      * @param {String/HTMLElement/Roo.Element} element The element to align to.
10296      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details).
10297      * @param {Array} offsets (optional) Offset the positioning by [x, y]
10298      * @return {Roo.BasicDialog} this
10299      */
10300     alignTo : function(element, position, offsets){
10301         this.xy = this.el.getAlignToXY(element, position, offsets);
10302         if(this.isVisible()){
10303             this.el.setXY(this.xy);
10304             this.adjustAssets();
10305         }
10306         return this;
10307     },
10308
10309     /**
10310      * Anchors an element to another element and realigns it when the window is resized.
10311      * @param {String/HTMLElement/Roo.Element} element The element to align to.
10312      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details)
10313      * @param {Array} offsets (optional) Offset the positioning by [x, y]
10314      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
10315      * is a number, it is used as the buffer delay (defaults to 50ms).
10316      * @return {Roo.BasicDialog} this
10317      */
10318     anchorTo : function(el, alignment, offsets, monitorScroll){
10319         var action = function(){
10320             this.alignTo(el, alignment, offsets);
10321         };
10322         Roo.EventManager.onWindowResize(action, this);
10323         var tm = typeof monitorScroll;
10324         if(tm != 'undefined'){
10325             Roo.EventManager.on(window, 'scroll', action, this,
10326                 {buffer: tm == 'number' ? monitorScroll : 50});
10327         }
10328         action.call(this);
10329         return this;
10330     },
10331
10332     /**
10333      * Returns true if the dialog is visible
10334      * @return {Boolean}
10335      */
10336     isVisible : function(){
10337         return this.el.isVisible();
10338     },
10339
10340     // private
10341     animHide : function(callback){
10342         var b = Roo.get(this.animateTarget).getBox();
10343         this.proxy.show();
10344         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height);
10345         this.el.hide();
10346         this.proxy.setBounds(b.x, b.y, b.width, b.height, true, .35,
10347                     this.hideEl.createDelegate(this, [callback]));
10348     },
10349
10350     /**
10351      * Hides the dialog.
10352      * @param {Function} callback (optional) Function to call when the dialog is hidden
10353      * @return {Roo.BasicDialog} this
10354      */
10355     hide : function(callback){
10356         if (this.fireEvent("beforehide", this) === false){
10357             return;
10358         }
10359         if(this.shadow){
10360             this.shadow.hide();
10361         }
10362         if(this.shim) {
10363           this.shim.hide();
10364         }
10365         // sometimes animateTarget seems to get set.. causing problems...
10366         // this just double checks..
10367         if(this.animateTarget && Roo.get(this.animateTarget)) {
10368            this.animHide(callback);
10369         }else{
10370             this.el.hide();
10371             this.hideEl(callback);
10372         }
10373         return this;
10374     },
10375
10376     // private
10377     hideEl : function(callback){
10378         this.proxy.hide();
10379         if(this.modal){
10380             this.mask.hide();
10381             Roo.get(document.body).removeClass("x-body-masked");
10382         }
10383         this.fireEvent("hide", this);
10384         if(typeof callback == "function"){
10385             callback();
10386         }
10387     },
10388
10389     // private
10390     hideAction : function(){
10391         this.setLeft("-10000px");
10392         this.setTop("-10000px");
10393         this.setStyle("visibility", "hidden");
10394     },
10395
10396     // private
10397     refreshSize : function(){
10398         this.size = this.el.getSize();
10399         this.xy = this.el.getXY();
10400         Roo.state.Manager.set(this.stateId || this.el.id + "-state", this.el.getBox());
10401     },
10402
10403     // private
10404     // z-index is managed by the DialogManager and may be overwritten at any time
10405     setZIndex : function(index){
10406         if(this.modal){
10407             this.mask.setStyle("z-index", index);
10408         }
10409         if(this.shim){
10410             this.shim.setStyle("z-index", ++index);
10411         }
10412         if(this.shadow){
10413             this.shadow.setZIndex(++index);
10414         }
10415         this.el.setStyle("z-index", ++index);
10416         if(this.proxy){
10417             this.proxy.setStyle("z-index", ++index);
10418         }
10419         if(this.resizer){
10420             this.resizer.proxy.setStyle("z-index", ++index);
10421         }
10422
10423         this.lastZIndex = index;
10424     },
10425
10426     /**
10427      * Returns the element for this dialog
10428      * @return {Roo.Element} The underlying dialog Element
10429      */
10430     getEl : function(){
10431         return this.el;
10432     }
10433 });
10434
10435 /**
10436  * @class Roo.DialogManager
10437  * Provides global access to BasicDialogs that have been created and
10438  * support for z-indexing (layering) multiple open dialogs.
10439  */
10440 Roo.DialogManager = function(){
10441     var list = {};
10442     var accessList = [];
10443     var front = null;
10444
10445     // private
10446     var sortDialogs = function(d1, d2){
10447         return (!d1._lastAccess || d1._lastAccess < d2._lastAccess) ? -1 : 1;
10448     };
10449
10450     // private
10451     var orderDialogs = function(){
10452         accessList.sort(sortDialogs);
10453         var seed = Roo.DialogManager.zseed;
10454         for(var i = 0, len = accessList.length; i < len; i++){
10455             var dlg = accessList[i];
10456             if(dlg){
10457                 dlg.setZIndex(seed + (i*10));
10458             }
10459         }
10460     };
10461
10462     return {
10463         /**
10464          * The starting z-index for BasicDialogs (defaults to 9000)
10465          * @type Number The z-index value
10466          */
10467         zseed : 9000,
10468
10469         // private
10470         register : function(dlg){
10471             list[dlg.id] = dlg;
10472             accessList.push(dlg);
10473         },
10474
10475         // private
10476         unregister : function(dlg){
10477             delete list[dlg.id];
10478             var i=0;
10479             var len=0;
10480             if(!accessList.indexOf){
10481                 for(  i = 0, len = accessList.length; i < len; i++){
10482                     if(accessList[i] == dlg){
10483                         accessList.splice(i, 1);
10484                         return;
10485                     }
10486                 }
10487             }else{
10488                  i = accessList.indexOf(dlg);
10489                 if(i != -1){
10490                     accessList.splice(i, 1);
10491                 }
10492             }
10493         },
10494
10495         /**
10496          * Gets a registered dialog by id
10497          * @param {String/Object} id The id of the dialog or a dialog
10498          * @return {Roo.BasicDialog} this
10499          */
10500         get : function(id){
10501             return typeof id == "object" ? id : list[id];
10502         },
10503
10504         /**
10505          * Brings the specified dialog to the front
10506          * @param {String/Object} dlg The id of the dialog or a dialog
10507          * @return {Roo.BasicDialog} this
10508          */
10509         bringToFront : function(dlg){
10510             dlg = this.get(dlg);
10511             if(dlg != front){
10512                 front = dlg;
10513                 dlg._lastAccess = new Date().getTime();
10514                 orderDialogs();
10515             }
10516             return dlg;
10517         },
10518
10519         /**
10520          * Sends the specified dialog to the back
10521          * @param {String/Object} dlg The id of the dialog or a dialog
10522          * @return {Roo.BasicDialog} this
10523          */
10524         sendToBack : function(dlg){
10525             dlg = this.get(dlg);
10526             dlg._lastAccess = -(new Date().getTime());
10527             orderDialogs();
10528             return dlg;
10529         },
10530
10531         /**
10532          * Hides all dialogs
10533          */
10534         hideAll : function(){
10535             for(var id in list){
10536                 if(list[id] && typeof list[id] != "function" && list[id].isVisible()){
10537                     list[id].hide();
10538                 }
10539             }
10540         }
10541     };
10542 }();
10543
10544 /**
10545  * @class Roo.LayoutDialog
10546  * @extends Roo.BasicDialog
10547  * Dialog which provides adjustments for working with a layout in a Dialog.
10548  * Add your necessary layout config options to the dialog's config.<br>
10549  * Example usage (including a nested layout):
10550  * <pre><code>
10551 if(!dialog){
10552     dialog = new Roo.LayoutDialog("download-dlg", {
10553         modal: true,
10554         width:600,
10555         height:450,
10556         shadow:true,
10557         minWidth:500,
10558         minHeight:350,
10559         autoTabs:true,
10560         proxyDrag:true,
10561         // layout config merges with the dialog config
10562         center:{
10563             tabPosition: "top",
10564             alwaysShowTabs: true
10565         }
10566     });
10567     dialog.addKeyListener(27, dialog.hide, dialog);
10568     dialog.setDefaultButton(dialog.addButton("Close", dialog.hide, dialog));
10569     dialog.addButton("Build It!", this.getDownload, this);
10570
10571     // we can even add nested layouts
10572     var innerLayout = new Roo.BorderLayout("dl-inner", {
10573         east: {
10574             initialSize: 200,
10575             autoScroll:true,
10576             split:true
10577         },
10578         center: {
10579             autoScroll:true
10580         }
10581     });
10582     innerLayout.beginUpdate();
10583     innerLayout.add("east", new Roo.ContentPanel("dl-details"));
10584     innerLayout.add("center", new Roo.ContentPanel("selection-panel"));
10585     innerLayout.endUpdate(true);
10586
10587     var layout = dialog.getLayout();
10588     layout.beginUpdate();
10589     layout.add("center", new Roo.ContentPanel("standard-panel",
10590                         {title: "Download the Source", fitToFrame:true}));
10591     layout.add("center", new Roo.NestedLayoutPanel(innerLayout,
10592                {title: "Build your own roo.js"}));
10593     layout.getRegion("center").showPanel(sp);
10594     layout.endUpdate();
10595 }
10596 </code></pre>
10597     * @constructor
10598     * @param {String/HTMLElement/Roo.Element} el The id of or container element, or config
10599     * @param {Object} config configuration options
10600   */
10601 Roo.LayoutDialog = function(el, cfg){
10602     
10603     var config=  cfg;
10604     if (typeof(cfg) == 'undefined') {
10605         config = Roo.apply({}, el);
10606         // not sure why we use documentElement here.. - it should always be body.
10607         // IE7 borks horribly if we use documentElement.
10608         // webkit also does not like documentElement - it creates a body element...
10609         el = Roo.get( document.body || document.documentElement ).createChild();
10610         //config.autoCreate = true;
10611     }
10612     
10613     
10614     config.autoTabs = false;
10615     Roo.LayoutDialog.superclass.constructor.call(this, el, config);
10616     this.body.setStyle({overflow:"hidden", position:"relative"});
10617     this.layout = new Roo.BorderLayout(this.body.dom, config);
10618     this.layout.monitorWindowResize = false;
10619     this.el.addClass("x-dlg-auto-layout");
10620     // fix case when center region overwrites center function
10621     this.center = Roo.BasicDialog.prototype.center;
10622     this.on("show", this.layout.layout, this.layout, true);
10623     if (config.items) {
10624         var xitems = config.items;
10625         delete config.items;
10626         Roo.each(xitems, this.addxtype, this);
10627     }
10628     
10629     
10630 };
10631 Roo.extend(Roo.LayoutDialog, Roo.BasicDialog, {
10632     /**
10633      * Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout.
10634      * @deprecated
10635      */
10636     endUpdate : function(){
10637         this.layout.endUpdate();
10638     },
10639
10640     /**
10641      * Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout.
10642      *  @deprecated
10643      */
10644     beginUpdate : function(){
10645         this.layout.beginUpdate();
10646     },
10647
10648     /**
10649      * Get the BorderLayout for this dialog
10650      * @return {Roo.BorderLayout}
10651      */
10652     getLayout : function(){
10653         return this.layout;
10654     },
10655
10656     showEl : function(){
10657         Roo.LayoutDialog.superclass.showEl.apply(this, arguments);
10658         if(Roo.isIE7){
10659             this.layout.layout();
10660         }
10661     },
10662
10663     // private
10664     // Use the syncHeightBeforeShow config option to control this automatically
10665     syncBodyHeight : function(){
10666         Roo.LayoutDialog.superclass.syncBodyHeight.call(this);
10667         if(this.layout){this.layout.layout();}
10668     },
10669     
10670       /**
10671      * Add an xtype element (actually adds to the layout.)
10672      * @return {Object} xdata xtype object data.
10673      */
10674     
10675     addxtype : function(c) {
10676         return this.layout.addxtype(c);
10677     }
10678 });/*
10679  * Based on:
10680  * Ext JS Library 1.1.1
10681  * Copyright(c) 2006-2007, Ext JS, LLC.
10682  *
10683  * Originally Released Under LGPL - original licence link has changed is not relivant.
10684  *
10685  * Fork - LGPL
10686  * <script type="text/javascript">
10687  */
10688  
10689 /**
10690  * @class Roo.MessageBox
10691  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
10692  * Example usage:
10693  *<pre><code>
10694 // Basic alert:
10695 Roo.Msg.alert('Status', 'Changes saved successfully.');
10696
10697 // Prompt for user data:
10698 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
10699     if (btn == 'ok'){
10700         // process text value...
10701     }
10702 });
10703
10704 // Show a dialog using config options:
10705 Roo.Msg.show({
10706    title:'Save Changes?',
10707    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
10708    buttons: Roo.Msg.YESNOCANCEL,
10709    fn: processResult,
10710    animEl: 'elId'
10711 });
10712 </code></pre>
10713  * @singleton
10714  */
10715 Roo.MessageBox = function(){
10716     var dlg, opt, mask, waitTimer;
10717     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
10718     var buttons, activeTextEl, bwidth;
10719
10720     // private
10721     var handleButton = function(button){
10722         dlg.hide();
10723         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
10724     };
10725
10726     // private
10727     var handleHide = function(){
10728         if(opt && opt.cls){
10729             dlg.el.removeClass(opt.cls);
10730         }
10731         if(waitTimer){
10732             Roo.TaskMgr.stop(waitTimer);
10733             waitTimer = null;
10734         }
10735     };
10736
10737     // private
10738     var updateButtons = function(b){
10739         var width = 0;
10740         if(!b){
10741             buttons["ok"].hide();
10742             buttons["cancel"].hide();
10743             buttons["yes"].hide();
10744             buttons["no"].hide();
10745             dlg.footer.dom.style.display = 'none';
10746             return width;
10747         }
10748         dlg.footer.dom.style.display = '';
10749         for(var k in buttons){
10750             if(typeof buttons[k] != "function"){
10751                 if(b[k]){
10752                     buttons[k].show();
10753                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.MessageBox.buttonText[k]);
10754                     width += buttons[k].el.getWidth()+15;
10755                 }else{
10756                     buttons[k].hide();
10757                 }
10758             }
10759         }
10760         return width;
10761     };
10762
10763     // private
10764     var handleEsc = function(d, k, e){
10765         if(opt && opt.closable !== false){
10766             dlg.hide();
10767         }
10768         if(e){
10769             e.stopEvent();
10770         }
10771     };
10772
10773     return {
10774         /**
10775          * Returns a reference to the underlying {@link Roo.BasicDialog} element
10776          * @return {Roo.BasicDialog} The BasicDialog element
10777          */
10778         getDialog : function(){
10779            if(!dlg){
10780                 dlg = new Roo.BasicDialog("x-msg-box", {
10781                     autoCreate : true,
10782                     shadow: true,
10783                     draggable: true,
10784                     resizable:false,
10785                     constraintoviewport:false,
10786                     fixedcenter:true,
10787                     collapsible : false,
10788                     shim:true,
10789                     modal: true,
10790                     width:400, height:100,
10791                     buttonAlign:"center",
10792                     closeClick : function(){
10793                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
10794                             handleButton("no");
10795                         }else{
10796                             handleButton("cancel");
10797                         }
10798                     }
10799                 });
10800                 dlg.on("hide", handleHide);
10801                 mask = dlg.mask;
10802                 dlg.addKeyListener(27, handleEsc);
10803                 buttons = {};
10804                 var bt = this.buttonText;
10805                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
10806                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
10807                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
10808                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
10809                 bodyEl = dlg.body.createChild({
10810
10811                     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>'
10812                 });
10813                 msgEl = bodyEl.dom.firstChild;
10814                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
10815                 textboxEl.enableDisplayMode();
10816                 textboxEl.addKeyListener([10,13], function(){
10817                     if(dlg.isVisible() && opt && opt.buttons){
10818                         if(opt.buttons.ok){
10819                             handleButton("ok");
10820                         }else if(opt.buttons.yes){
10821                             handleButton("yes");
10822                         }
10823                     }
10824                 });
10825                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
10826                 textareaEl.enableDisplayMode();
10827                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
10828                 progressEl.enableDisplayMode();
10829                 var pf = progressEl.dom.firstChild;
10830                 if (pf) {
10831                     pp = Roo.get(pf.firstChild);
10832                     pp.setHeight(pf.offsetHeight);
10833                 }
10834                 
10835             }
10836             return dlg;
10837         },
10838
10839         /**
10840          * Updates the message box body text
10841          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
10842          * the XHTML-compliant non-breaking space character '&amp;#160;')
10843          * @return {Roo.MessageBox} This message box
10844          */
10845         updateText : function(text){
10846             if(!dlg.isVisible() && !opt.width){
10847                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
10848             }
10849             msgEl.innerHTML = text || '&#160;';
10850       
10851             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
10852             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
10853             var w = Math.max(
10854                     Math.min(opt.width || cw , this.maxWidth), 
10855                     Math.max(opt.minWidth || this.minWidth, bwidth)
10856             );
10857             if(opt.prompt){
10858                 activeTextEl.setWidth(w);
10859             }
10860             if(dlg.isVisible()){
10861                 dlg.fixedcenter = false;
10862             }
10863             // to big, make it scroll. = But as usual stupid IE does not support
10864             // !important..
10865             
10866             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
10867                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
10868                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
10869             } else {
10870                 bodyEl.dom.style.height = '';
10871                 bodyEl.dom.style.overflowY = '';
10872             }
10873             if (cw > w) {
10874                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
10875             } else {
10876                 bodyEl.dom.style.overflowX = '';
10877             }
10878             
10879             dlg.setContentSize(w, bodyEl.getHeight());
10880             if(dlg.isVisible()){
10881                 dlg.fixedcenter = true;
10882             }
10883             return this;
10884         },
10885
10886         /**
10887          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
10888          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
10889          * @param {Number} value Any number between 0 and 1 (e.g., .5)
10890          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
10891          * @return {Roo.MessageBox} This message box
10892          */
10893         updateProgress : function(value, text){
10894             if(text){
10895                 this.updateText(text);
10896             }
10897             if (pp) { // weird bug on my firefox - for some reason this is not defined
10898                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
10899             }
10900             return this;
10901         },        
10902
10903         /**
10904          * Returns true if the message box is currently displayed
10905          * @return {Boolean} True if the message box is visible, else false
10906          */
10907         isVisible : function(){
10908             return dlg && dlg.isVisible();  
10909         },
10910
10911         /**
10912          * Hides the message box if it is displayed
10913          */
10914         hide : function(){
10915             if(this.isVisible()){
10916                 dlg.hide();
10917             }  
10918         },
10919
10920         /**
10921          * Displays a new message box, or reinitializes an existing message box, based on the config options
10922          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
10923          * The following config object properties are supported:
10924          * <pre>
10925 Property    Type             Description
10926 ----------  ---------------  ------------------------------------------------------------------------------------
10927 animEl            String/Element   An id or Element from which the message box should animate as it opens and
10928                                    closes (defaults to undefined)
10929 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
10930                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
10931 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
10932                                    progress and wait dialogs will ignore this property and always hide the
10933                                    close button as they can only be closed programmatically.
10934 cls               String           A custom CSS class to apply to the message box element
10935 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
10936                                    displayed (defaults to 75)
10937 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
10938                                    function will be btn (the name of the button that was clicked, if applicable,
10939                                    e.g. "ok"), and text (the value of the active text field, if applicable).
10940                                    Progress and wait dialogs will ignore this option since they do not respond to
10941                                    user actions and can only be closed programmatically, so any required function
10942                                    should be called by the same code after it closes the dialog.
10943 icon              String           A CSS class that provides a background image to be used as an icon for
10944                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
10945 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
10946 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
10947 modal             Boolean          False to allow user interaction with the page while the message box is
10948                                    displayed (defaults to true)
10949 msg               String           A string that will replace the existing message box body text (defaults
10950                                    to the XHTML-compliant non-breaking space character '&#160;')
10951 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
10952 progress          Boolean          True to display a progress bar (defaults to false)
10953 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
10954 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
10955 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
10956 title             String           The title text
10957 value             String           The string value to set into the active textbox element if displayed
10958 wait              Boolean          True to display a progress bar (defaults to false)
10959 width             Number           The width of the dialog in pixels
10960 </pre>
10961          *
10962          * Example usage:
10963          * <pre><code>
10964 Roo.Msg.show({
10965    title: 'Address',
10966    msg: 'Please enter your address:',
10967    width: 300,
10968    buttons: Roo.MessageBox.OKCANCEL,
10969    multiline: true,
10970    fn: saveAddress,
10971    animEl: 'addAddressBtn'
10972 });
10973 </code></pre>
10974          * @param {Object} config Configuration options
10975          * @return {Roo.MessageBox} This message box
10976          */
10977         show : function(options)
10978         {
10979             
10980             // this causes nightmares if you show one dialog after another
10981             // especially on callbacks..
10982              
10983             if(this.isVisible()){
10984                 
10985                 this.hide();
10986                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
10987                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
10988                 Roo.log("New Dialog Message:" +  options.msg )
10989                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
10990                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
10991                 
10992             }
10993             var d = this.getDialog();
10994             opt = options;
10995             d.setTitle(opt.title || "&#160;");
10996             d.close.setDisplayed(opt.closable !== false);
10997             activeTextEl = textboxEl;
10998             opt.prompt = opt.prompt || (opt.multiline ? true : false);
10999             if(opt.prompt){
11000                 if(opt.multiline){
11001                     textboxEl.hide();
11002                     textareaEl.show();
11003                     textareaEl.setHeight(typeof opt.multiline == "number" ?
11004                         opt.multiline : this.defaultTextHeight);
11005                     activeTextEl = textareaEl;
11006                 }else{
11007                     textboxEl.show();
11008                     textareaEl.hide();
11009                 }
11010             }else{
11011                 textboxEl.hide();
11012                 textareaEl.hide();
11013             }
11014             progressEl.setDisplayed(opt.progress === true);
11015             this.updateProgress(0);
11016             activeTextEl.dom.value = opt.value || "";
11017             if(opt.prompt){
11018                 dlg.setDefaultButton(activeTextEl);
11019             }else{
11020                 var bs = opt.buttons;
11021                 var db = null;
11022                 if(bs && bs.ok){
11023                     db = buttons["ok"];
11024                 }else if(bs && bs.yes){
11025                     db = buttons["yes"];
11026                 }
11027                 dlg.setDefaultButton(db);
11028             }
11029             bwidth = updateButtons(opt.buttons);
11030             this.updateText(opt.msg);
11031             if(opt.cls){
11032                 d.el.addClass(opt.cls);
11033             }
11034             d.proxyDrag = opt.proxyDrag === true;
11035             d.modal = opt.modal !== false;
11036             d.mask = opt.modal !== false ? mask : false;
11037             if(!d.isVisible()){
11038                 // force it to the end of the z-index stack so it gets a cursor in FF
11039                 document.body.appendChild(dlg.el.dom);
11040                 d.animateTarget = null;
11041                 d.show(options.animEl);
11042             }
11043             return this;
11044         },
11045
11046         /**
11047          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
11048          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
11049          * and closing the message box when the process is complete.
11050          * @param {String} title The title bar text
11051          * @param {String} msg The message box body text
11052          * @return {Roo.MessageBox} This message box
11053          */
11054         progress : function(title, msg){
11055             this.show({
11056                 title : title,
11057                 msg : msg,
11058                 buttons: false,
11059                 progress:true,
11060                 closable:false,
11061                 minWidth: this.minProgressWidth,
11062                 modal : true
11063             });
11064             return this;
11065         },
11066
11067         /**
11068          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
11069          * If a callback function is passed it will be called after the user clicks the button, and the
11070          * id of the button that was clicked will be passed as the only parameter to the callback
11071          * (could also be the top-right close button).
11072          * @param {String} title The title bar text
11073          * @param {String} msg The message box body text
11074          * @param {Function} fn (optional) The callback function invoked after the message box is closed
11075          * @param {Object} scope (optional) The scope of the callback function
11076          * @return {Roo.MessageBox} This message box
11077          */
11078         alert : function(title, msg, fn, scope){
11079             this.show({
11080                 title : title,
11081                 msg : msg,
11082                 buttons: this.OK,
11083                 fn: fn,
11084                 scope : scope,
11085                 modal : true
11086             });
11087             return this;
11088         },
11089
11090         /**
11091          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
11092          * interaction while waiting for a long-running process to complete that does not have defined intervals.
11093          * You are responsible for closing the message box when the process is complete.
11094          * @param {String} msg The message box body text
11095          * @param {String} title (optional) The title bar text
11096          * @return {Roo.MessageBox} This message box
11097          */
11098         wait : function(msg, title){
11099             this.show({
11100                 title : title,
11101                 msg : msg,
11102                 buttons: false,
11103                 closable:false,
11104                 progress:true,
11105                 modal:true,
11106                 width:300,
11107                 wait:true
11108             });
11109             waitTimer = Roo.TaskMgr.start({
11110                 run: function(i){
11111                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
11112                 },
11113                 interval: 1000
11114             });
11115             return this;
11116         },
11117
11118         /**
11119          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
11120          * If a callback function is passed it will be called after the user clicks either button, and the id of the
11121          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
11122          * @param {String} title The title bar text
11123          * @param {String} msg The message box body text
11124          * @param {Function} fn (optional) The callback function invoked after the message box is closed
11125          * @param {Object} scope (optional) The scope of the callback function
11126          * @return {Roo.MessageBox} This message box
11127          */
11128         confirm : function(title, msg, fn, scope){
11129             this.show({
11130                 title : title,
11131                 msg : msg,
11132                 buttons: this.YESNO,
11133                 fn: fn,
11134                 scope : scope,
11135                 modal : true
11136             });
11137             return this;
11138         },
11139
11140         /**
11141          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
11142          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
11143          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
11144          * (could also be the top-right close button) and the text that was entered will be passed as the two
11145          * parameters to the callback.
11146          * @param {String} title The title bar text
11147          * @param {String} msg The message box body text
11148          * @param {Function} fn (optional) The callback function invoked after the message box is closed
11149          * @param {Object} scope (optional) The scope of the callback function
11150          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
11151          * property, or the height in pixels to create the textbox (defaults to false / single-line)
11152          * @return {Roo.MessageBox} This message box
11153          */
11154         prompt : function(title, msg, fn, scope, multiline){
11155             this.show({
11156                 title : title,
11157                 msg : msg,
11158                 buttons: this.OKCANCEL,
11159                 fn: fn,
11160                 minWidth:250,
11161                 scope : scope,
11162                 prompt:true,
11163                 multiline: multiline,
11164                 modal : true
11165             });
11166             return this;
11167         },
11168
11169         /**
11170          * Button config that displays a single OK button
11171          * @type Object
11172          */
11173         OK : {ok:true},
11174         /**
11175          * Button config that displays Yes and No buttons
11176          * @type Object
11177          */
11178         YESNO : {yes:true, no:true},
11179         /**
11180          * Button config that displays OK and Cancel buttons
11181          * @type Object
11182          */
11183         OKCANCEL : {ok:true, cancel:true},
11184         /**
11185          * Button config that displays Yes, No and Cancel buttons
11186          * @type Object
11187          */
11188         YESNOCANCEL : {yes:true, no:true, cancel:true},
11189
11190         /**
11191          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
11192          * @type Number
11193          */
11194         defaultTextHeight : 75,
11195         /**
11196          * The maximum width in pixels of the message box (defaults to 600)
11197          * @type Number
11198          */
11199         maxWidth : 600,
11200         /**
11201          * The minimum width in pixels of the message box (defaults to 100)
11202          * @type Number
11203          */
11204         minWidth : 100,
11205         /**
11206          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
11207          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
11208          * @type Number
11209          */
11210         minProgressWidth : 250,
11211         /**
11212          * An object containing the default button text strings that can be overriden for localized language support.
11213          * Supported properties are: ok, cancel, yes and no.
11214          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
11215          * @type Object
11216          */
11217         buttonText : {
11218             ok : "OK",
11219             cancel : "Cancel",
11220             yes : "Yes",
11221             no : "No"
11222         }
11223     };
11224 }();
11225
11226 /**
11227  * Shorthand for {@link Roo.MessageBox}
11228  */
11229 Roo.Msg = Roo.MessageBox;/*
11230  * Based on:
11231  * Ext JS Library 1.1.1
11232  * Copyright(c) 2006-2007, Ext JS, LLC.
11233  *
11234  * Originally Released Under LGPL - original licence link has changed is not relivant.
11235  *
11236  * Fork - LGPL
11237  * <script type="text/javascript">
11238  */
11239 /**
11240  * @class Roo.QuickTips
11241  * Provides attractive and customizable tooltips for any element.
11242  * @singleton
11243  */
11244 Roo.QuickTips = function(){
11245     var el, tipBody, tipBodyText, tipTitle, tm, cfg, close, tagEls = {}, esc, removeCls = null, bdLeft, bdRight;
11246     var ce, bd, xy, dd;
11247     var visible = false, disabled = true, inited = false;
11248     var showProc = 1, hideProc = 1, dismissProc = 1, locks = [];
11249     
11250     var onOver = function(e){
11251         if(disabled){
11252             return;
11253         }
11254         var t = e.getTarget();
11255         if(!t || t.nodeType !== 1 || t == document || t == document.body){
11256             return;
11257         }
11258         if(ce && t == ce.el){
11259             clearTimeout(hideProc);
11260             return;
11261         }
11262         if(t && tagEls[t.id]){
11263             tagEls[t.id].el = t;
11264             showProc = show.defer(tm.showDelay, tm, [tagEls[t.id]]);
11265             return;
11266         }
11267         var ttp, et = Roo.fly(t);
11268         var ns = cfg.namespace;
11269         if(tm.interceptTitles && t.title){
11270             ttp = t.title;
11271             t.qtip = ttp;
11272             t.removeAttribute("title");
11273             e.preventDefault();
11274         }else{
11275             ttp = t.qtip || et.getAttributeNS(ns, cfg.attribute) || et.getAttributeNS(cfg.alt_namespace, cfg.attribute) ;
11276         }
11277         if(ttp){
11278             showProc = show.defer(tm.showDelay, tm, [{
11279                 el: t, 
11280                 text: ttp.replace(/\\n/g,'<br/>'),
11281                 width: et.getAttributeNS(ns, cfg.width),
11282                 autoHide: et.getAttributeNS(ns, cfg.hide) != "user",
11283                 title: et.getAttributeNS(ns, cfg.title),
11284                     cls: et.getAttributeNS(ns, cfg.cls)
11285             }]);
11286         }
11287     };
11288     
11289     var onOut = function(e){
11290         clearTimeout(showProc);
11291         var t = e.getTarget();
11292         if(t && ce && ce.el == t && (tm.autoHide && ce.autoHide !== false)){
11293             hideProc = setTimeout(hide, tm.hideDelay);
11294         }
11295     };
11296     
11297     var onMove = function(e){
11298         if(disabled){
11299             return;
11300         }
11301         xy = e.getXY();
11302         xy[1] += 18;
11303         if(tm.trackMouse && ce){
11304             el.setXY(xy);
11305         }
11306     };
11307     
11308     var onDown = function(e){
11309         clearTimeout(showProc);
11310         clearTimeout(hideProc);
11311         if(!e.within(el)){
11312             if(tm.hideOnClick){
11313                 hide();
11314                 tm.disable();
11315                 tm.enable.defer(100, tm);
11316             }
11317         }
11318     };
11319     
11320     var getPad = function(){
11321         return 2;//bdLeft.getPadding('l')+bdRight.getPadding('r');
11322     };
11323
11324     var show = function(o){
11325         if(disabled){
11326             return;
11327         }
11328         clearTimeout(dismissProc);
11329         ce = o;
11330         if(removeCls){ // in case manually hidden
11331             el.removeClass(removeCls);
11332             removeCls = null;
11333         }
11334         if(ce.cls){
11335             el.addClass(ce.cls);
11336             removeCls = ce.cls;
11337         }
11338         if(ce.title){
11339             tipTitle.update(ce.title);
11340             tipTitle.show();
11341         }else{
11342             tipTitle.update('');
11343             tipTitle.hide();
11344         }
11345         el.dom.style.width  = tm.maxWidth+'px';
11346         //tipBody.dom.style.width = '';
11347         tipBodyText.update(o.text);
11348         var p = getPad(), w = ce.width;
11349         if(!w){
11350             var td = tipBodyText.dom;
11351             var aw = Math.max(td.offsetWidth, td.clientWidth, td.scrollWidth);
11352             if(aw > tm.maxWidth){
11353                 w = tm.maxWidth;
11354             }else if(aw < tm.minWidth){
11355                 w = tm.minWidth;
11356             }else{
11357                 w = aw;
11358             }
11359         }
11360         //tipBody.setWidth(w);
11361         el.setWidth(parseInt(w, 10) + p);
11362         if(ce.autoHide === false){
11363             close.setDisplayed(true);
11364             if(dd){
11365                 dd.unlock();
11366             }
11367         }else{
11368             close.setDisplayed(false);
11369             if(dd){
11370                 dd.lock();
11371             }
11372         }
11373         if(xy){
11374             el.avoidY = xy[1]-18;
11375             el.setXY(xy);
11376         }
11377         if(tm.animate){
11378             el.setOpacity(.1);
11379             el.setStyle("visibility", "visible");
11380             el.fadeIn({callback: afterShow});
11381         }else{
11382             afterShow();
11383         }
11384     };
11385     
11386     var afterShow = function(){
11387         if(ce){
11388             el.show();
11389             esc.enable();
11390             if(tm.autoDismiss && ce.autoHide !== false){
11391                 dismissProc = setTimeout(hide, tm.autoDismissDelay);
11392             }
11393         }
11394     };
11395     
11396     var hide = function(noanim){
11397         clearTimeout(dismissProc);
11398         clearTimeout(hideProc);
11399         ce = null;
11400         if(el.isVisible()){
11401             esc.disable();
11402             if(noanim !== true && tm.animate){
11403                 el.fadeOut({callback: afterHide});
11404             }else{
11405                 afterHide();
11406             } 
11407         }
11408     };
11409     
11410     var afterHide = function(){
11411         el.hide();
11412         if(removeCls){
11413             el.removeClass(removeCls);
11414             removeCls = null;
11415         }
11416     };
11417     
11418     return {
11419         /**
11420         * @cfg {Number} minWidth
11421         * The minimum width of the quick tip (defaults to 40)
11422         */
11423        minWidth : 40,
11424         /**
11425         * @cfg {Number} maxWidth
11426         * The maximum width of the quick tip (defaults to 300)
11427         */
11428        maxWidth : 300,
11429         /**
11430         * @cfg {Boolean} interceptTitles
11431         * True to automatically use the element's DOM title value if available (defaults to false)
11432         */
11433        interceptTitles : false,
11434         /**
11435         * @cfg {Boolean} trackMouse
11436         * True to have the quick tip follow the mouse as it moves over the target element (defaults to false)
11437         */
11438        trackMouse : false,
11439         /**
11440         * @cfg {Boolean} hideOnClick
11441         * True to hide the quick tip if the user clicks anywhere in the document (defaults to true)
11442         */
11443        hideOnClick : true,
11444         /**
11445         * @cfg {Number} showDelay
11446         * Delay in milliseconds before the quick tip displays after the mouse enters the target element (defaults to 500)
11447         */
11448        showDelay : 500,
11449         /**
11450         * @cfg {Number} hideDelay
11451         * Delay in milliseconds before the quick tip hides when autoHide = true (defaults to 200)
11452         */
11453        hideDelay : 200,
11454         /**
11455         * @cfg {Boolean} autoHide
11456         * True to automatically hide the quick tip after the mouse exits the target element (defaults to true).
11457         * Used in conjunction with hideDelay.
11458         */
11459        autoHide : true,
11460         /**
11461         * @cfg {Boolean}
11462         * True to automatically hide the quick tip after a set period of time, regardless of the user's actions
11463         * (defaults to true).  Used in conjunction with autoDismissDelay.
11464         */
11465        autoDismiss : true,
11466         /**
11467         * @cfg {Number}
11468         * Delay in milliseconds before the quick tip hides when autoDismiss = true (defaults to 5000)
11469         */
11470        autoDismissDelay : 5000,
11471        /**
11472         * @cfg {Boolean} animate
11473         * True to turn on fade animation. Defaults to false (ClearType/scrollbar flicker issues in IE7).
11474         */
11475        animate : false,
11476
11477        /**
11478         * @cfg {String} title
11479         * Title text to display (defaults to '').  This can be any valid HTML markup.
11480         */
11481         title: '',
11482        /**
11483         * @cfg {String} text
11484         * Body text to display (defaults to '').  This can be any valid HTML markup.
11485         */
11486         text : '',
11487        /**
11488         * @cfg {String} cls
11489         * A CSS class to apply to the base quick tip element (defaults to '').
11490         */
11491         cls : '',
11492        /**
11493         * @cfg {Number} width
11494         * Width in pixels of the quick tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
11495         * minWidth or maxWidth.
11496         */
11497         width : null,
11498
11499     /**
11500      * Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access
11501      * or display QuickTips in a page.
11502      */
11503        init : function(){
11504           tm = Roo.QuickTips;
11505           cfg = tm.tagConfig;
11506           if(!inited){
11507               if(!Roo.isReady){ // allow calling of init() before onReady
11508                   Roo.onReady(Roo.QuickTips.init, Roo.QuickTips);
11509                   return;
11510               }
11511               el = new Roo.Layer({cls:"x-tip", shadow:"drop", shim: true, constrain:true, shadowOffset:4});
11512               el.fxDefaults = {stopFx: true};
11513               // maximum custom styling
11514               //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>');
11515               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>');              
11516               tipTitle = el.child('h3');
11517               tipTitle.enableDisplayMode("block");
11518               tipBody = el.child('div.x-tip-bd');
11519               tipBodyText = el.child('div.x-tip-bd-inner');
11520               //bdLeft = el.child('div.x-tip-bd-left');
11521               //bdRight = el.child('div.x-tip-bd-right');
11522               close = el.child('div.x-tip-close');
11523               close.enableDisplayMode("block");
11524               close.on("click", hide);
11525               var d = Roo.get(document);
11526               d.on("mousedown", onDown);
11527               d.on("mouseover", onOver);
11528               d.on("mouseout", onOut);
11529               d.on("mousemove", onMove);
11530               esc = d.addKeyListener(27, hide);
11531               esc.disable();
11532               if(Roo.dd.DD){
11533                   dd = el.initDD("default", null, {
11534                       onDrag : function(){
11535                           el.sync();  
11536                       }
11537                   });
11538                   dd.setHandleElId(tipTitle.id);
11539                   dd.lock();
11540               }
11541               inited = true;
11542           }
11543           this.enable(); 
11544        },
11545
11546     /**
11547      * Configures a new quick tip instance and assigns it to a target element.  The following config options
11548      * are supported:
11549      * <pre>
11550 Property    Type                   Description
11551 ----------  ---------------------  ------------------------------------------------------------------------
11552 target      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to
11553      * </ul>
11554      * @param {Object} config The config object
11555      */
11556        register : function(config){
11557            var cs = config instanceof Array ? config : arguments;
11558            for(var i = 0, len = cs.length; i < len; i++) {
11559                var c = cs[i];
11560                var target = c.target;
11561                if(target){
11562                    if(target instanceof Array){
11563                        for(var j = 0, jlen = target.length; j < jlen; j++){
11564                            tagEls[target[j]] = c;
11565                        }
11566                    }else{
11567                        tagEls[typeof target == 'string' ? target : Roo.id(target)] = c;
11568                    }
11569                }
11570            }
11571        },
11572
11573     /**
11574      * Removes this quick tip from its element and destroys it.
11575      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
11576      */
11577        unregister : function(el){
11578            delete tagEls[Roo.id(el)];
11579        },
11580
11581     /**
11582      * Enable this quick tip.
11583      */
11584        enable : function(){
11585            if(inited && disabled){
11586                locks.pop();
11587                if(locks.length < 1){
11588                    disabled = false;
11589                }
11590            }
11591        },
11592
11593     /**
11594      * Disable this quick tip.
11595      */
11596        disable : function(){
11597           disabled = true;
11598           clearTimeout(showProc);
11599           clearTimeout(hideProc);
11600           clearTimeout(dismissProc);
11601           if(ce){
11602               hide(true);
11603           }
11604           locks.push(1);
11605        },
11606
11607     /**
11608      * Returns true if the quick tip is enabled, else false.
11609      */
11610        isEnabled : function(){
11611             return !disabled;
11612        },
11613
11614         // private
11615        tagConfig : {
11616            namespace : "roo", // was ext?? this may break..
11617            alt_namespace : "ext",
11618            attribute : "qtip",
11619            width : "width",
11620            target : "target",
11621            title : "qtitle",
11622            hide : "hide",
11623            cls : "qclass"
11624        }
11625    };
11626 }();
11627
11628 // backwards compat
11629 Roo.QuickTips.tips = Roo.QuickTips.register;/*
11630  * Based on:
11631  * Ext JS Library 1.1.1
11632  * Copyright(c) 2006-2007, Ext JS, LLC.
11633  *
11634  * Originally Released Under LGPL - original licence link has changed is not relivant.
11635  *
11636  * Fork - LGPL
11637  * <script type="text/javascript">
11638  */
11639  
11640
11641 /**
11642  * @class Roo.tree.TreePanel
11643  * @extends Roo.data.Tree
11644
11645  * @cfg {Boolean} rootVisible false to hide the root node (defaults to true)
11646  * @cfg {Boolean} lines false to disable tree lines (defaults to true)
11647  * @cfg {Boolean} enableDD true to enable drag and drop
11648  * @cfg {Boolean} enableDrag true to enable just drag
11649  * @cfg {Boolean} enableDrop true to enable just drop
11650  * @cfg {Object} dragConfig Custom config to pass to the {@link Roo.tree.TreeDragZone} instance
11651  * @cfg {Object} dropConfig Custom config to pass to the {@link Roo.tree.TreeDropZone} instance
11652  * @cfg {String} ddGroup The DD group this TreePanel belongs to
11653  * @cfg {String} ddAppendOnly True if the tree should only allow append drops (use for trees which are sorted)
11654  * @cfg {Boolean} ddScroll true to enable YUI body scrolling
11655  * @cfg {Boolean} containerScroll true to register this container with ScrollManager
11656  * @cfg {Boolean} hlDrop false to disable node highlight on drop (defaults to the value of Roo.enableFx)
11657  * @cfg {String} hlColor The color of the node highlight (defaults to C3DAF9)
11658  * @cfg {Boolean} animate true to enable animated expand/collapse (defaults to the value of Roo.enableFx)
11659  * @cfg {Boolean} singleExpand true if only 1 node per branch may be expanded
11660  * @cfg {Boolean} selModel A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})
11661  * @cfg {Boolean} loader A TreeLoader for use with this TreePanel
11662  * @cfg {Object|Roo.tree.TreeEditor} editor The TreeEditor or xtype data to display when clicked.
11663  * @cfg {String} pathSeparator The token used to separate sub-paths in path strings (defaults to '/')
11664  * @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>
11665  * @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>
11666  * 
11667  * @constructor
11668  * @param {String/HTMLElement/Element} el The container element
11669  * @param {Object} config
11670  */
11671 Roo.tree.TreePanel = function(el, config){
11672     var root = false;
11673     var loader = false;
11674     if (config.root) {
11675         root = config.root;
11676         delete config.root;
11677     }
11678     if (config.loader) {
11679         loader = config.loader;
11680         delete config.loader;
11681     }
11682     
11683     Roo.apply(this, config);
11684     Roo.tree.TreePanel.superclass.constructor.call(this);
11685     this.el = Roo.get(el);
11686     this.el.addClass('x-tree');
11687     //console.log(root);
11688     if (root) {
11689         this.setRootNode( Roo.factory(root, Roo.tree));
11690     }
11691     if (loader) {
11692         this.loader = Roo.factory(loader, Roo.tree);
11693     }
11694    /**
11695     * Read-only. The id of the container element becomes this TreePanel's id.
11696     */
11697     this.id = this.el.id;
11698     this.addEvents({
11699         /**
11700         * @event beforeload
11701         * Fires before a node is loaded, return false to cancel
11702         * @param {Node} node The node being loaded
11703         */
11704         "beforeload" : true,
11705         /**
11706         * @event load
11707         * Fires when a node is loaded
11708         * @param {Node} node The node that was loaded
11709         */
11710         "load" : true,
11711         /**
11712         * @event textchange
11713         * Fires when the text for a node is changed
11714         * @param {Node} node The node
11715         * @param {String} text The new text
11716         * @param {String} oldText The old text
11717         */
11718         "textchange" : true,
11719         /**
11720         * @event beforeexpand
11721         * Fires before a node is expanded, return false to cancel.
11722         * @param {Node} node The node
11723         * @param {Boolean} deep
11724         * @param {Boolean} anim
11725         */
11726         "beforeexpand" : true,
11727         /**
11728         * @event beforecollapse
11729         * Fires before a node is collapsed, return false to cancel.
11730         * @param {Node} node The node
11731         * @param {Boolean} deep
11732         * @param {Boolean} anim
11733         */
11734         "beforecollapse" : true,
11735         /**
11736         * @event expand
11737         * Fires when a node is expanded
11738         * @param {Node} node The node
11739         */
11740         "expand" : true,
11741         /**
11742         * @event disabledchange
11743         * Fires when the disabled status of a node changes
11744         * @param {Node} node The node
11745         * @param {Boolean} disabled
11746         */
11747         "disabledchange" : true,
11748         /**
11749         * @event collapse
11750         * Fires when a node is collapsed
11751         * @param {Node} node The node
11752         */
11753         "collapse" : true,
11754         /**
11755         * @event beforeclick
11756         * Fires before click processing on a node. Return false to cancel the default action.
11757         * @param {Node} node The node
11758         * @param {Roo.EventObject} e The event object
11759         */
11760         "beforeclick":true,
11761         /**
11762         * @event checkchange
11763         * Fires when a node with a checkbox's checked property changes
11764         * @param {Node} this This node
11765         * @param {Boolean} checked
11766         */
11767         "checkchange":true,
11768         /**
11769         * @event click
11770         * Fires when a node is clicked
11771         * @param {Node} node The node
11772         * @param {Roo.EventObject} e The event object
11773         */
11774         "click":true,
11775         /**
11776         * @event dblclick
11777         * Fires when a node is double clicked
11778         * @param {Node} node The node
11779         * @param {Roo.EventObject} e The event object
11780         */
11781         "dblclick":true,
11782         /**
11783         * @event contextmenu
11784         * Fires when a node is right clicked
11785         * @param {Node} node The node
11786         * @param {Roo.EventObject} e The event object
11787         */
11788         "contextmenu":true,
11789         /**
11790         * @event beforechildrenrendered
11791         * Fires right before the child nodes for a node are rendered
11792         * @param {Node} node The node
11793         */
11794         "beforechildrenrendered":true,
11795         /**
11796         * @event startdrag
11797         * Fires when a node starts being dragged
11798         * @param {Roo.tree.TreePanel} this
11799         * @param {Roo.tree.TreeNode} node
11800         * @param {event} e The raw browser event
11801         */ 
11802        "startdrag" : true,
11803        /**
11804         * @event enddrag
11805         * Fires when a drag operation is complete
11806         * @param {Roo.tree.TreePanel} this
11807         * @param {Roo.tree.TreeNode} node
11808         * @param {event} e The raw browser event
11809         */
11810        "enddrag" : true,
11811        /**
11812         * @event dragdrop
11813         * Fires when a dragged node is dropped on a valid DD target
11814         * @param {Roo.tree.TreePanel} this
11815         * @param {Roo.tree.TreeNode} node
11816         * @param {DD} dd The dd it was dropped on
11817         * @param {event} e The raw browser event
11818         */
11819        "dragdrop" : true,
11820        /**
11821         * @event beforenodedrop
11822         * Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent
11823         * passed to handlers has the following properties:<br />
11824         * <ul style="padding:5px;padding-left:16px;">
11825         * <li>tree - The TreePanel</li>
11826         * <li>target - The node being targeted for the drop</li>
11827         * <li>data - The drag data from the drag source</li>
11828         * <li>point - The point of the drop - append, above or below</li>
11829         * <li>source - The drag source</li>
11830         * <li>rawEvent - Raw mouse event</li>
11831         * <li>dropNode - Drop node(s) provided by the source <b>OR</b> you can supply node(s)
11832         * to be inserted by setting them on this object.</li>
11833         * <li>cancel - Set this to true to cancel the drop.</li>
11834         * </ul>
11835         * @param {Object} dropEvent
11836         */
11837        "beforenodedrop" : true,
11838        /**
11839         * @event nodedrop
11840         * Fires after a DD object is dropped on a node in this tree. The dropEvent
11841         * passed to handlers has the following properties:<br />
11842         * <ul style="padding:5px;padding-left:16px;">
11843         * <li>tree - The TreePanel</li>
11844         * <li>target - The node being targeted for the drop</li>
11845         * <li>data - The drag data from the drag source</li>
11846         * <li>point - The point of the drop - append, above or below</li>
11847         * <li>source - The drag source</li>
11848         * <li>rawEvent - Raw mouse event</li>
11849         * <li>dropNode - Dropped node(s).</li>
11850         * </ul>
11851         * @param {Object} dropEvent
11852         */
11853        "nodedrop" : true,
11854         /**
11855         * @event nodedragover
11856         * Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent
11857         * passed to handlers has the following properties:<br />
11858         * <ul style="padding:5px;padding-left:16px;">
11859         * <li>tree - The TreePanel</li>
11860         * <li>target - The node being targeted for the drop</li>
11861         * <li>data - The drag data from the drag source</li>
11862         * <li>point - The point of the drop - append, above or below</li>
11863         * <li>source - The drag source</li>
11864         * <li>rawEvent - Raw mouse event</li>
11865         * <li>dropNode - Drop node(s) provided by the source.</li>
11866         * <li>cancel - Set this to true to signal drop not allowed.</li>
11867         * </ul>
11868         * @param {Object} dragOverEvent
11869         */
11870        "nodedragover" : true,
11871        /**
11872         * @event appendnode
11873         * Fires when append node to the tree
11874         * @param {Roo.tree.TreePanel} this
11875         * @param {Roo.tree.TreeNode} node
11876         * @param {Number} index The index of the newly appended node
11877         */
11878        "appendnode" : true
11879         
11880     });
11881     if(this.singleExpand){
11882        this.on("beforeexpand", this.restrictExpand, this);
11883     }
11884     if (this.editor) {
11885         this.editor.tree = this;
11886         this.editor = Roo.factory(this.editor, Roo.tree);
11887     }
11888     
11889     if (this.selModel) {
11890         this.selModel = Roo.factory(this.selModel, Roo.tree);
11891     }
11892    
11893 };
11894 Roo.extend(Roo.tree.TreePanel, Roo.data.Tree, {
11895     rootVisible : true,
11896     animate: Roo.enableFx,
11897     lines : true,
11898     enableDD : false,
11899     hlDrop : Roo.enableFx,
11900   
11901     renderer: false,
11902     
11903     rendererTip: false,
11904     // private
11905     restrictExpand : function(node){
11906         var p = node.parentNode;
11907         if(p){
11908             if(p.expandedChild && p.expandedChild.parentNode == p){
11909                 p.expandedChild.collapse();
11910             }
11911             p.expandedChild = node;
11912         }
11913     },
11914
11915     // private override
11916     setRootNode : function(node){
11917         Roo.tree.TreePanel.superclass.setRootNode.call(this, node);
11918         if(!this.rootVisible){
11919             node.ui = new Roo.tree.RootTreeNodeUI(node);
11920         }
11921         return node;
11922     },
11923
11924     /**
11925      * Returns the container element for this TreePanel
11926      */
11927     getEl : function(){
11928         return this.el;
11929     },
11930
11931     /**
11932      * Returns the default TreeLoader for this TreePanel
11933      */
11934     getLoader : function(){
11935         return this.loader;
11936     },
11937
11938     /**
11939      * Expand all nodes
11940      */
11941     expandAll : function(){
11942         this.root.expand(true);
11943     },
11944
11945     /**
11946      * Collapse all nodes
11947      */
11948     collapseAll : function(){
11949         this.root.collapse(true);
11950     },
11951
11952     /**
11953      * Returns the selection model used by this TreePanel
11954      */
11955     getSelectionModel : function(){
11956         if(!this.selModel){
11957             this.selModel = new Roo.tree.DefaultSelectionModel();
11958         }
11959         return this.selModel;
11960     },
11961
11962     /**
11963      * Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. "id")
11964      * @param {String} attribute (optional) Defaults to null (return the actual nodes)
11965      * @param {TreeNode} startNode (optional) The node to start from, defaults to the root
11966      * @return {Array}
11967      */
11968     getChecked : function(a, startNode){
11969         startNode = startNode || this.root;
11970         var r = [];
11971         var f = function(){
11972             if(this.attributes.checked){
11973                 r.push(!a ? this : (a == 'id' ? this.id : this.attributes[a]));
11974             }
11975         }
11976         startNode.cascade(f);
11977         return r;
11978     },
11979
11980     /**
11981      * Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
11982      * @param {String} path
11983      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
11984      * @param {Function} callback (optional) The callback to call when the expand is complete. The callback will be called with
11985      * (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.
11986      */
11987     expandPath : function(path, attr, callback){
11988         attr = attr || "id";
11989         var keys = path.split(this.pathSeparator);
11990         var curNode = this.root;
11991         if(curNode.attributes[attr] != keys[1]){ // invalid root
11992             if(callback){
11993                 callback(false, null);
11994             }
11995             return;
11996         }
11997         var index = 1;
11998         var f = function(){
11999             if(++index == keys.length){
12000                 if(callback){
12001                     callback(true, curNode);
12002                 }
12003                 return;
12004             }
12005             var c = curNode.findChild(attr, keys[index]);
12006             if(!c){
12007                 if(callback){
12008                     callback(false, curNode);
12009                 }
12010                 return;
12011             }
12012             curNode = c;
12013             c.expand(false, false, f);
12014         };
12015         curNode.expand(false, false, f);
12016     },
12017
12018     /**
12019      * Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
12020      * @param {String} path
12021      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
12022      * @param {Function} callback (optional) The callback to call when the selection is complete. The callback will be called with
12023      * (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.
12024      */
12025     selectPath : function(path, attr, callback){
12026         attr = attr || "id";
12027         var keys = path.split(this.pathSeparator);
12028         var v = keys.pop();
12029         if(keys.length > 0){
12030             var f = function(success, node){
12031                 if(success && node){
12032                     var n = node.findChild(attr, v);
12033                     if(n){
12034                         n.select();
12035                         if(callback){
12036                             callback(true, n);
12037                         }
12038                     }else if(callback){
12039                         callback(false, n);
12040                     }
12041                 }else{
12042                     if(callback){
12043                         callback(false, n);
12044                     }
12045                 }
12046             };
12047             this.expandPath(keys.join(this.pathSeparator), attr, f);
12048         }else{
12049             this.root.select();
12050             if(callback){
12051                 callback(true, this.root);
12052             }
12053         }
12054     },
12055
12056     getTreeEl : function(){
12057         return this.el;
12058     },
12059
12060     /**
12061      * Trigger rendering of this TreePanel
12062      */
12063     render : function(){
12064         if (this.innerCt) {
12065             return this; // stop it rendering more than once!!
12066         }
12067         
12068         this.innerCt = this.el.createChild({tag:"ul",
12069                cls:"x-tree-root-ct " +
12070                (this.lines ? "x-tree-lines" : "x-tree-no-lines")});
12071
12072         if(this.containerScroll){
12073             Roo.dd.ScrollManager.register(this.el);
12074         }
12075         if((this.enableDD || this.enableDrop) && !this.dropZone){
12076            /**
12077             * The dropZone used by this tree if drop is enabled
12078             * @type Roo.tree.TreeDropZone
12079             */
12080              this.dropZone = new Roo.tree.TreeDropZone(this, this.dropConfig || {
12081                ddGroup: this.ddGroup || "TreeDD", appendOnly: this.ddAppendOnly === true
12082            });
12083         }
12084         if((this.enableDD || this.enableDrag) && !this.dragZone){
12085            /**
12086             * The dragZone used by this tree if drag is enabled
12087             * @type Roo.tree.TreeDragZone
12088             */
12089             this.dragZone = new Roo.tree.TreeDragZone(this, this.dragConfig || {
12090                ddGroup: this.ddGroup || "TreeDD",
12091                scroll: this.ddScroll
12092            });
12093         }
12094         this.getSelectionModel().init(this);
12095         if (!this.root) {
12096             Roo.log("ROOT not set in tree");
12097             return this;
12098         }
12099         this.root.render();
12100         if(!this.rootVisible){
12101             this.root.renderChildren();
12102         }
12103         return this;
12104     }
12105 });/*
12106  * Based on:
12107  * Ext JS Library 1.1.1
12108  * Copyright(c) 2006-2007, Ext JS, LLC.
12109  *
12110  * Originally Released Under LGPL - original licence link has changed is not relivant.
12111  *
12112  * Fork - LGPL
12113  * <script type="text/javascript">
12114  */
12115  
12116
12117 /**
12118  * @class Roo.tree.DefaultSelectionModel
12119  * @extends Roo.util.Observable
12120  * The default single selection for a TreePanel.
12121  * @param {Object} cfg Configuration
12122  */
12123 Roo.tree.DefaultSelectionModel = function(cfg){
12124    this.selNode = null;
12125    
12126    
12127    
12128    this.addEvents({
12129        /**
12130         * @event selectionchange
12131         * Fires when the selected node changes
12132         * @param {DefaultSelectionModel} this
12133         * @param {TreeNode} node the new selection
12134         */
12135        "selectionchange" : true,
12136
12137        /**
12138         * @event beforeselect
12139         * Fires before the selected node changes, return false to cancel the change
12140         * @param {DefaultSelectionModel} this
12141         * @param {TreeNode} node the new selection
12142         * @param {TreeNode} node the old selection
12143         */
12144        "beforeselect" : true
12145    });
12146    
12147     Roo.tree.DefaultSelectionModel.superclass.constructor.call(this,cfg);
12148 };
12149
12150 Roo.extend(Roo.tree.DefaultSelectionModel, Roo.util.Observable, {
12151     init : function(tree){
12152         this.tree = tree;
12153         tree.getTreeEl().on("keydown", this.onKeyDown, this);
12154         tree.on("click", this.onNodeClick, this);
12155     },
12156     
12157     onNodeClick : function(node, e){
12158         if (e.ctrlKey && this.selNode == node)  {
12159             this.unselect(node);
12160             return;
12161         }
12162         this.select(node);
12163     },
12164     
12165     /**
12166      * Select a node.
12167      * @param {TreeNode} node The node to select
12168      * @return {TreeNode} The selected node
12169      */
12170     select : function(node){
12171         var last = this.selNode;
12172         if(last != node && this.fireEvent('beforeselect', this, node, last) !== false){
12173             if(last){
12174                 last.ui.onSelectedChange(false);
12175             }
12176             this.selNode = node;
12177             node.ui.onSelectedChange(true);
12178             this.fireEvent("selectionchange", this, node, last);
12179         }
12180         return node;
12181     },
12182     
12183     /**
12184      * Deselect a node.
12185      * @param {TreeNode} node The node to unselect
12186      */
12187     unselect : function(node){
12188         if(this.selNode == node){
12189             this.clearSelections();
12190         }    
12191     },
12192     
12193     /**
12194      * Clear all selections
12195      */
12196     clearSelections : function(){
12197         var n = this.selNode;
12198         if(n){
12199             n.ui.onSelectedChange(false);
12200             this.selNode = null;
12201             this.fireEvent("selectionchange", this, null);
12202         }
12203         return n;
12204     },
12205     
12206     /**
12207      * Get the selected node
12208      * @return {TreeNode} The selected node
12209      */
12210     getSelectedNode : function(){
12211         return this.selNode;    
12212     },
12213     
12214     /**
12215      * Returns true if the node is selected
12216      * @param {TreeNode} node The node to check
12217      * @return {Boolean}
12218      */
12219     isSelected : function(node){
12220         return this.selNode == node;  
12221     },
12222
12223     /**
12224      * Selects the node above the selected node in the tree, intelligently walking the nodes
12225      * @return TreeNode The new selection
12226      */
12227     selectPrevious : function(){
12228         var s = this.selNode || this.lastSelNode;
12229         if(!s){
12230             return null;
12231         }
12232         var ps = s.previousSibling;
12233         if(ps){
12234             if(!ps.isExpanded() || ps.childNodes.length < 1){
12235                 return this.select(ps);
12236             } else{
12237                 var lc = ps.lastChild;
12238                 while(lc && lc.isExpanded() && lc.childNodes.length > 0){
12239                     lc = lc.lastChild;
12240                 }
12241                 return this.select(lc);
12242             }
12243         } else if(s.parentNode && (this.tree.rootVisible || !s.parentNode.isRoot)){
12244             return this.select(s.parentNode);
12245         }
12246         return null;
12247     },
12248
12249     /**
12250      * Selects the node above the selected node in the tree, intelligently walking the nodes
12251      * @return TreeNode The new selection
12252      */
12253     selectNext : function(){
12254         var s = this.selNode || this.lastSelNode;
12255         if(!s){
12256             return null;
12257         }
12258         if(s.firstChild && s.isExpanded()){
12259              return this.select(s.firstChild);
12260          }else if(s.nextSibling){
12261              return this.select(s.nextSibling);
12262          }else if(s.parentNode){
12263             var newS = null;
12264             s.parentNode.bubble(function(){
12265                 if(this.nextSibling){
12266                     newS = this.getOwnerTree().selModel.select(this.nextSibling);
12267                     return false;
12268                 }
12269             });
12270             return newS;
12271          }
12272         return null;
12273     },
12274
12275     onKeyDown : function(e){
12276         var s = this.selNode || this.lastSelNode;
12277         // undesirable, but required
12278         var sm = this;
12279         if(!s){
12280             return;
12281         }
12282         var k = e.getKey();
12283         switch(k){
12284              case e.DOWN:
12285                  e.stopEvent();
12286                  this.selectNext();
12287              break;
12288              case e.UP:
12289                  e.stopEvent();
12290                  this.selectPrevious();
12291              break;
12292              case e.RIGHT:
12293                  e.preventDefault();
12294                  if(s.hasChildNodes()){
12295                      if(!s.isExpanded()){
12296                          s.expand();
12297                      }else if(s.firstChild){
12298                          this.select(s.firstChild, e);
12299                      }
12300                  }
12301              break;
12302              case e.LEFT:
12303                  e.preventDefault();
12304                  if(s.hasChildNodes() && s.isExpanded()){
12305                      s.collapse();
12306                  }else if(s.parentNode && (this.tree.rootVisible || s.parentNode != this.tree.getRootNode())){
12307                      this.select(s.parentNode, e);
12308                  }
12309              break;
12310         };
12311     }
12312 });
12313
12314 /**
12315  * @class Roo.tree.MultiSelectionModel
12316  * @extends Roo.util.Observable
12317  * Multi selection for a TreePanel.
12318  * @param {Object} cfg Configuration
12319  */
12320 Roo.tree.MultiSelectionModel = function(){
12321    this.selNodes = [];
12322    this.selMap = {};
12323    this.addEvents({
12324        /**
12325         * @event selectionchange
12326         * Fires when the selected nodes change
12327         * @param {MultiSelectionModel} this
12328         * @param {Array} nodes Array of the selected nodes
12329         */
12330        "selectionchange" : true
12331    });
12332    Roo.tree.MultiSelectionModel.superclass.constructor.call(this,cfg);
12333    
12334 };
12335
12336 Roo.extend(Roo.tree.MultiSelectionModel, Roo.util.Observable, {
12337     init : function(tree){
12338         this.tree = tree;
12339         tree.getTreeEl().on("keydown", this.onKeyDown, this);
12340         tree.on("click", this.onNodeClick, this);
12341     },
12342     
12343     onNodeClick : function(node, e){
12344         this.select(node, e, e.ctrlKey);
12345     },
12346     
12347     /**
12348      * Select a node.
12349      * @param {TreeNode} node The node to select
12350      * @param {EventObject} e (optional) An event associated with the selection
12351      * @param {Boolean} keepExisting True to retain existing selections
12352      * @return {TreeNode} The selected node
12353      */
12354     select : function(node, e, keepExisting){
12355         if(keepExisting !== true){
12356             this.clearSelections(true);
12357         }
12358         if(this.isSelected(node)){
12359             this.lastSelNode = node;
12360             return node;
12361         }
12362         this.selNodes.push(node);
12363         this.selMap[node.id] = node;
12364         this.lastSelNode = node;
12365         node.ui.onSelectedChange(true);
12366         this.fireEvent("selectionchange", this, this.selNodes);
12367         return node;
12368     },
12369     
12370     /**
12371      * Deselect a node.
12372      * @param {TreeNode} node The node to unselect
12373      */
12374     unselect : function(node){
12375         if(this.selMap[node.id]){
12376             node.ui.onSelectedChange(false);
12377             var sn = this.selNodes;
12378             var index = -1;
12379             if(sn.indexOf){
12380                 index = sn.indexOf(node);
12381             }else{
12382                 for(var i = 0, len = sn.length; i < len; i++){
12383                     if(sn[i] == node){
12384                         index = i;
12385                         break;
12386                     }
12387                 }
12388             }
12389             if(index != -1){
12390                 this.selNodes.splice(index, 1);
12391             }
12392             delete this.selMap[node.id];
12393             this.fireEvent("selectionchange", this, this.selNodes);
12394         }
12395     },
12396     
12397     /**
12398      * Clear all selections
12399      */
12400     clearSelections : function(suppressEvent){
12401         var sn = this.selNodes;
12402         if(sn.length > 0){
12403             for(var i = 0, len = sn.length; i < len; i++){
12404                 sn[i].ui.onSelectedChange(false);
12405             }
12406             this.selNodes = [];
12407             this.selMap = {};
12408             if(suppressEvent !== true){
12409                 this.fireEvent("selectionchange", this, this.selNodes);
12410             }
12411         }
12412     },
12413     
12414     /**
12415      * Returns true if the node is selected
12416      * @param {TreeNode} node The node to check
12417      * @return {Boolean}
12418      */
12419     isSelected : function(node){
12420         return this.selMap[node.id] ? true : false;  
12421     },
12422     
12423     /**
12424      * Returns an array of the selected nodes
12425      * @return {Array}
12426      */
12427     getSelectedNodes : function(){
12428         return this.selNodes;    
12429     },
12430
12431     onKeyDown : Roo.tree.DefaultSelectionModel.prototype.onKeyDown,
12432
12433     selectNext : Roo.tree.DefaultSelectionModel.prototype.selectNext,
12434
12435     selectPrevious : Roo.tree.DefaultSelectionModel.prototype.selectPrevious
12436 });/*
12437  * Based on:
12438  * Ext JS Library 1.1.1
12439  * Copyright(c) 2006-2007, Ext JS, LLC.
12440  *
12441  * Originally Released Under LGPL - original licence link has changed is not relivant.
12442  *
12443  * Fork - LGPL
12444  * <script type="text/javascript">
12445  */
12446  
12447 /**
12448  * @class Roo.tree.TreeNode
12449  * @extends Roo.data.Node
12450  * @cfg {String} text The text for this node
12451  * @cfg {Boolean} expanded true to start the node expanded
12452  * @cfg {Boolean} allowDrag false to make this node undraggable if DD is on (defaults to true)
12453  * @cfg {Boolean} allowDrop false if this node cannot be drop on
12454  * @cfg {Boolean} disabled true to start the node disabled
12455  * @cfg {String} icon The path to an icon for the node. The preferred way to do this
12456  *    is to use the cls or iconCls attributes and add the icon via a CSS background image.
12457  * @cfg {String} cls A css class to be added to the node
12458  * @cfg {String} iconCls A css class to be added to the nodes icon element for applying css background images
12459  * @cfg {String} href URL of the link used for the node (defaults to #)
12460  * @cfg {String} hrefTarget target frame for the link
12461  * @cfg {String} qtip An Ext QuickTip for the node
12462  * @cfg {String} qtipCfg An Ext QuickTip config for the node (used instead of qtip)
12463  * @cfg {Boolean} singleClickExpand True for single click expand on this node
12464  * @cfg {Function} uiProvider A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)
12465  * @cfg {Boolean} checked True to render a checked checkbox for this node, false to render an unchecked checkbox
12466  * (defaults to undefined with no checkbox rendered)
12467  * @constructor
12468  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node
12469  */
12470 Roo.tree.TreeNode = function(attributes){
12471     attributes = attributes || {};
12472     if(typeof attributes == "string"){
12473         attributes = {text: attributes};
12474     }
12475     this.childrenRendered = false;
12476     this.rendered = false;
12477     Roo.tree.TreeNode.superclass.constructor.call(this, attributes);
12478     this.expanded = attributes.expanded === true;
12479     this.isTarget = attributes.isTarget !== false;
12480     this.draggable = attributes.draggable !== false && attributes.allowDrag !== false;
12481     this.allowChildren = attributes.allowChildren !== false && attributes.allowDrop !== false;
12482
12483     /**
12484      * Read-only. The text for this node. To change it use setText().
12485      * @type String
12486      */
12487     this.text = attributes.text;
12488     /**
12489      * True if this node is disabled.
12490      * @type Boolean
12491      */
12492     this.disabled = attributes.disabled === true;
12493
12494     this.addEvents({
12495         /**
12496         * @event textchange
12497         * Fires when the text for this node is changed
12498         * @param {Node} this This node
12499         * @param {String} text The new text
12500         * @param {String} oldText The old text
12501         */
12502         "textchange" : true,
12503         /**
12504         * @event beforeexpand
12505         * Fires before this node is expanded, return false to cancel.
12506         * @param {Node} this This node
12507         * @param {Boolean} deep
12508         * @param {Boolean} anim
12509         */
12510         "beforeexpand" : true,
12511         /**
12512         * @event beforecollapse
12513         * Fires before this node is collapsed, return false to cancel.
12514         * @param {Node} this This node
12515         * @param {Boolean} deep
12516         * @param {Boolean} anim
12517         */
12518         "beforecollapse" : true,
12519         /**
12520         * @event expand
12521         * Fires when this node is expanded
12522         * @param {Node} this This node
12523         */
12524         "expand" : true,
12525         /**
12526         * @event disabledchange
12527         * Fires when the disabled status of this node changes
12528         * @param {Node} this This node
12529         * @param {Boolean} disabled
12530         */
12531         "disabledchange" : true,
12532         /**
12533         * @event collapse
12534         * Fires when this node is collapsed
12535         * @param {Node} this This node
12536         */
12537         "collapse" : true,
12538         /**
12539         * @event beforeclick
12540         * Fires before click processing. Return false to cancel the default action.
12541         * @param {Node} this This node
12542         * @param {Roo.EventObject} e The event object
12543         */
12544         "beforeclick":true,
12545         /**
12546         * @event checkchange
12547         * Fires when a node with a checkbox's checked property changes
12548         * @param {Node} this This node
12549         * @param {Boolean} checked
12550         */
12551         "checkchange":true,
12552         /**
12553         * @event click
12554         * Fires when this node is clicked
12555         * @param {Node} this This node
12556         * @param {Roo.EventObject} e The event object
12557         */
12558         "click":true,
12559         /**
12560         * @event dblclick
12561         * Fires when this node is double clicked
12562         * @param {Node} this This node
12563         * @param {Roo.EventObject} e The event object
12564         */
12565         "dblclick":true,
12566         /**
12567         * @event contextmenu
12568         * Fires when this node is right clicked
12569         * @param {Node} this This node
12570         * @param {Roo.EventObject} e The event object
12571         */
12572         "contextmenu":true,
12573         /**
12574         * @event beforechildrenrendered
12575         * Fires right before the child nodes for this node are rendered
12576         * @param {Node} this This node
12577         */
12578         "beforechildrenrendered":true
12579     });
12580
12581     var uiClass = this.attributes.uiProvider || Roo.tree.TreeNodeUI;
12582
12583     /**
12584      * Read-only. The UI for this node
12585      * @type TreeNodeUI
12586      */
12587     this.ui = new uiClass(this);
12588     
12589     // finally support items[]
12590     if (typeof(this.attributes.items) == 'undefined' || !this.attributes.items) {
12591         return;
12592     }
12593     
12594     
12595     Roo.each(this.attributes.items, function(c) {
12596         this.appendChild(Roo.factory(c,Roo.Tree));
12597     }, this);
12598     delete this.attributes.items;
12599     
12600     
12601     
12602 };
12603 Roo.extend(Roo.tree.TreeNode, Roo.data.Node, {
12604     preventHScroll: true,
12605     /**
12606      * Returns true if this node is expanded
12607      * @return {Boolean}
12608      */
12609     isExpanded : function(){
12610         return this.expanded;
12611     },
12612
12613     /**
12614      * Returns the UI object for this node
12615      * @return {TreeNodeUI}
12616      */
12617     getUI : function(){
12618         return this.ui;
12619     },
12620
12621     // private override
12622     setFirstChild : function(node){
12623         var of = this.firstChild;
12624         Roo.tree.TreeNode.superclass.setFirstChild.call(this, node);
12625         if(this.childrenRendered && of && node != of){
12626             of.renderIndent(true, true);
12627         }
12628         if(this.rendered){
12629             this.renderIndent(true, true);
12630         }
12631     },
12632
12633     // private override
12634     setLastChild : function(node){
12635         var ol = this.lastChild;
12636         Roo.tree.TreeNode.superclass.setLastChild.call(this, node);
12637         if(this.childrenRendered && ol && node != ol){
12638             ol.renderIndent(true, true);
12639         }
12640         if(this.rendered){
12641             this.renderIndent(true, true);
12642         }
12643     },
12644
12645     // these methods are overridden to provide lazy rendering support
12646     // private override
12647     appendChild : function()
12648     {
12649         var node = Roo.tree.TreeNode.superclass.appendChild.apply(this, arguments);
12650         if(node && this.childrenRendered){
12651             node.render();
12652         }
12653         this.ui.updateExpandIcon();
12654         return node;
12655     },
12656
12657     // private override
12658     removeChild : function(node){
12659         this.ownerTree.getSelectionModel().unselect(node);
12660         Roo.tree.TreeNode.superclass.removeChild.apply(this, arguments);
12661         // if it's been rendered remove dom node
12662         if(this.childrenRendered){
12663             node.ui.remove();
12664         }
12665         if(this.childNodes.length < 1){
12666             this.collapse(false, false);
12667         }else{
12668             this.ui.updateExpandIcon();
12669         }
12670         if(!this.firstChild) {
12671             this.childrenRendered = false;
12672         }
12673         return node;
12674     },
12675
12676     // private override
12677     insertBefore : function(node, refNode){
12678         var newNode = Roo.tree.TreeNode.superclass.insertBefore.apply(this, arguments);
12679         if(newNode && refNode && this.childrenRendered){
12680             node.render();
12681         }
12682         this.ui.updateExpandIcon();
12683         return newNode;
12684     },
12685
12686     /**
12687      * Sets the text for this node
12688      * @param {String} text
12689      */
12690     setText : function(text){
12691         var oldText = this.text;
12692         this.text = text;
12693         this.attributes.text = text;
12694         if(this.rendered){ // event without subscribing
12695             this.ui.onTextChange(this, text, oldText);
12696         }
12697         this.fireEvent("textchange", this, text, oldText);
12698     },
12699
12700     /**
12701      * Triggers selection of this node
12702      */
12703     select : function(){
12704         this.getOwnerTree().getSelectionModel().select(this);
12705     },
12706
12707     /**
12708      * Triggers deselection of this node
12709      */
12710     unselect : function(){
12711         this.getOwnerTree().getSelectionModel().unselect(this);
12712     },
12713
12714     /**
12715      * Returns true if this node is selected
12716      * @return {Boolean}
12717      */
12718     isSelected : function(){
12719         return this.getOwnerTree().getSelectionModel().isSelected(this);
12720     },
12721
12722     /**
12723      * Expand this node.
12724      * @param {Boolean} deep (optional) True to expand all children as well
12725      * @param {Boolean} anim (optional) false to cancel the default animation
12726      * @param {Function} callback (optional) A callback to be called when
12727      * expanding this node completes (does not wait for deep expand to complete).
12728      * Called with 1 parameter, this node.
12729      */
12730     expand : function(deep, anim, callback){
12731         if(!this.expanded){
12732             if(this.fireEvent("beforeexpand", this, deep, anim) === false){
12733                 return;
12734             }
12735             if(!this.childrenRendered){
12736                 this.renderChildren();
12737             }
12738             this.expanded = true;
12739             
12740             if(!this.isHiddenRoot() && (this.getOwnerTree() && this.getOwnerTree().animate && anim !== false) || anim){
12741                 this.ui.animExpand(function(){
12742                     this.fireEvent("expand", this);
12743                     if(typeof callback == "function"){
12744                         callback(this);
12745                     }
12746                     if(deep === true){
12747                         this.expandChildNodes(true);
12748                     }
12749                 }.createDelegate(this));
12750                 return;
12751             }else{
12752                 this.ui.expand();
12753                 this.fireEvent("expand", this);
12754                 if(typeof callback == "function"){
12755                     callback(this);
12756                 }
12757             }
12758         }else{
12759            if(typeof callback == "function"){
12760                callback(this);
12761            }
12762         }
12763         if(deep === true){
12764             this.expandChildNodes(true);
12765         }
12766     },
12767
12768     isHiddenRoot : function(){
12769         return this.isRoot && !this.getOwnerTree().rootVisible;
12770     },
12771
12772     /**
12773      * Collapse this node.
12774      * @param {Boolean} deep (optional) True to collapse all children as well
12775      * @param {Boolean} anim (optional) false to cancel the default animation
12776      */
12777     collapse : function(deep, anim){
12778         if(this.expanded && !this.isHiddenRoot()){
12779             if(this.fireEvent("beforecollapse", this, deep, anim) === false){
12780                 return;
12781             }
12782             this.expanded = false;
12783             if((this.getOwnerTree().animate && anim !== false) || anim){
12784                 this.ui.animCollapse(function(){
12785                     this.fireEvent("collapse", this);
12786                     if(deep === true){
12787                         this.collapseChildNodes(true);
12788                     }
12789                 }.createDelegate(this));
12790                 return;
12791             }else{
12792                 this.ui.collapse();
12793                 this.fireEvent("collapse", this);
12794             }
12795         }
12796         if(deep === true){
12797             var cs = this.childNodes;
12798             for(var i = 0, len = cs.length; i < len; i++) {
12799                 cs[i].collapse(true, false);
12800             }
12801         }
12802     },
12803
12804     // private
12805     delayedExpand : function(delay){
12806         if(!this.expandProcId){
12807             this.expandProcId = this.expand.defer(delay, this);
12808         }
12809     },
12810
12811     // private
12812     cancelExpand : function(){
12813         if(this.expandProcId){
12814             clearTimeout(this.expandProcId);
12815         }
12816         this.expandProcId = false;
12817     },
12818
12819     /**
12820      * Toggles expanded/collapsed state of the node
12821      */
12822     toggle : function(){
12823         if(this.expanded){
12824             this.collapse();
12825         }else{
12826             this.expand();
12827         }
12828     },
12829
12830     /**
12831      * Ensures all parent nodes are expanded
12832      */
12833     ensureVisible : function(callback){
12834         var tree = this.getOwnerTree();
12835         tree.expandPath(this.parentNode.getPath(), false, function(){
12836             tree.getTreeEl().scrollChildIntoView(this.ui.anchor);
12837             Roo.callback(callback);
12838         }.createDelegate(this));
12839     },
12840
12841     /**
12842      * Expand all child nodes
12843      * @param {Boolean} deep (optional) true if the child nodes should also expand their child nodes
12844      */
12845     expandChildNodes : function(deep){
12846         var cs = this.childNodes;
12847         for(var i = 0, len = cs.length; i < len; i++) {
12848                 cs[i].expand(deep);
12849         }
12850     },
12851
12852     /**
12853      * Collapse all child nodes
12854      * @param {Boolean} deep (optional) true if the child nodes should also collapse their child nodes
12855      */
12856     collapseChildNodes : function(deep){
12857         var cs = this.childNodes;
12858         for(var i = 0, len = cs.length; i < len; i++) {
12859                 cs[i].collapse(deep);
12860         }
12861     },
12862
12863     /**
12864      * Disables this node
12865      */
12866     disable : function(){
12867         this.disabled = true;
12868         this.unselect();
12869         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
12870             this.ui.onDisableChange(this, true);
12871         }
12872         this.fireEvent("disabledchange", this, true);
12873     },
12874
12875     /**
12876      * Enables this node
12877      */
12878     enable : function(){
12879         this.disabled = false;
12880         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
12881             this.ui.onDisableChange(this, false);
12882         }
12883         this.fireEvent("disabledchange", this, false);
12884     },
12885
12886     // private
12887     renderChildren : function(suppressEvent){
12888         if(suppressEvent !== false){
12889             this.fireEvent("beforechildrenrendered", this);
12890         }
12891         var cs = this.childNodes;
12892         for(var i = 0, len = cs.length; i < len; i++){
12893             cs[i].render(true);
12894         }
12895         this.childrenRendered = true;
12896     },
12897
12898     // private
12899     sort : function(fn, scope){
12900         Roo.tree.TreeNode.superclass.sort.apply(this, arguments);
12901         if(this.childrenRendered){
12902             var cs = this.childNodes;
12903             for(var i = 0, len = cs.length; i < len; i++){
12904                 cs[i].render(true);
12905             }
12906         }
12907     },
12908
12909     // private
12910     render : function(bulkRender){
12911         this.ui.render(bulkRender);
12912         if(!this.rendered){
12913             this.rendered = true;
12914             if(this.expanded){
12915                 this.expanded = false;
12916                 this.expand(false, false);
12917             }
12918         }
12919     },
12920
12921     // private
12922     renderIndent : function(deep, refresh){
12923         if(refresh){
12924             this.ui.childIndent = null;
12925         }
12926         this.ui.renderIndent();
12927         if(deep === true && this.childrenRendered){
12928             var cs = this.childNodes;
12929             for(var i = 0, len = cs.length; i < len; i++){
12930                 cs[i].renderIndent(true, refresh);
12931             }
12932         }
12933     }
12934 });/*
12935  * Based on:
12936  * Ext JS Library 1.1.1
12937  * Copyright(c) 2006-2007, Ext JS, LLC.
12938  *
12939  * Originally Released Under LGPL - original licence link has changed is not relivant.
12940  *
12941  * Fork - LGPL
12942  * <script type="text/javascript">
12943  */
12944  
12945 /**
12946  * @class Roo.tree.AsyncTreeNode
12947  * @extends Roo.tree.TreeNode
12948  * @cfg {TreeLoader} loader A TreeLoader to be used by this node (defaults to the loader defined on the tree)
12949  * @constructor
12950  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node 
12951  */
12952  Roo.tree.AsyncTreeNode = function(config){
12953     this.loaded = false;
12954     this.loading = false;
12955     Roo.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
12956     /**
12957     * @event beforeload
12958     * Fires before this node is loaded, return false to cancel
12959     * @param {Node} this This node
12960     */
12961     this.addEvents({'beforeload':true, 'load': true});
12962     /**
12963     * @event load
12964     * Fires when this node is loaded
12965     * @param {Node} this This node
12966     */
12967     /**
12968      * The loader used by this node (defaults to using the tree's defined loader)
12969      * @type TreeLoader
12970      * @property loader
12971      */
12972 };
12973 Roo.extend(Roo.tree.AsyncTreeNode, Roo.tree.TreeNode, {
12974     expand : function(deep, anim, callback){
12975         if(this.loading){ // if an async load is already running, waiting til it's done
12976             var timer;
12977             var f = function(){
12978                 if(!this.loading){ // done loading
12979                     clearInterval(timer);
12980                     this.expand(deep, anim, callback);
12981                 }
12982             }.createDelegate(this);
12983             timer = setInterval(f, 200);
12984             return;
12985         }
12986         if(!this.loaded){
12987             if(this.fireEvent("beforeload", this) === false){
12988                 return;
12989             }
12990             this.loading = true;
12991             this.ui.beforeLoad(this);
12992             var loader = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
12993             if(loader){
12994                 loader.load(this, this.loadComplete.createDelegate(this, [deep, anim, callback]));
12995                 return;
12996             }
12997         }
12998         Roo.tree.AsyncTreeNode.superclass.expand.call(this, deep, anim, callback);
12999     },
13000     
13001     /**
13002      * Returns true if this node is currently loading
13003      * @return {Boolean}
13004      */
13005     isLoading : function(){
13006         return this.loading;  
13007     },
13008     
13009     loadComplete : function(deep, anim, callback){
13010         this.loading = false;
13011         this.loaded = true;
13012         this.ui.afterLoad(this);
13013         this.fireEvent("load", this);
13014         this.expand(deep, anim, callback);
13015     },
13016     
13017     /**
13018      * Returns true if this node has been loaded
13019      * @return {Boolean}
13020      */
13021     isLoaded : function(){
13022         return this.loaded;
13023     },
13024     
13025     hasChildNodes : function(){
13026         if(!this.isLeaf() && !this.loaded){
13027             return true;
13028         }else{
13029             return Roo.tree.AsyncTreeNode.superclass.hasChildNodes.call(this);
13030         }
13031     },
13032
13033     /**
13034      * Trigger a reload for this node
13035      * @param {Function} callback
13036      */
13037     reload : function(callback){
13038         this.collapse(false, false);
13039         while(this.firstChild){
13040             this.removeChild(this.firstChild);
13041         }
13042         this.childrenRendered = false;
13043         this.loaded = false;
13044         if(this.isHiddenRoot()){
13045             this.expanded = false;
13046         }
13047         this.expand(false, false, callback);
13048     }
13049 });/*
13050  * Based on:
13051  * Ext JS Library 1.1.1
13052  * Copyright(c) 2006-2007, Ext JS, LLC.
13053  *
13054  * Originally Released Under LGPL - original licence link has changed is not relivant.
13055  *
13056  * Fork - LGPL
13057  * <script type="text/javascript">
13058  */
13059  
13060 /**
13061  * @class Roo.tree.TreeNodeUI
13062  * @constructor
13063  * @param {Object} node The node to render
13064  * The TreeNode UI implementation is separate from the
13065  * tree implementation. Unless you are customizing the tree UI,
13066  * you should never have to use this directly.
13067  */
13068 Roo.tree.TreeNodeUI = function(node){
13069     this.node = node;
13070     this.rendered = false;
13071     this.animating = false;
13072     this.emptyIcon = Roo.BLANK_IMAGE_URL;
13073 };
13074
13075 Roo.tree.TreeNodeUI.prototype = {
13076     removeChild : function(node){
13077         if(this.rendered){
13078             this.ctNode.removeChild(node.ui.getEl());
13079         }
13080     },
13081
13082     beforeLoad : function(){
13083          this.addClass("x-tree-node-loading");
13084     },
13085
13086     afterLoad : function(){
13087          this.removeClass("x-tree-node-loading");
13088     },
13089
13090     onTextChange : function(node, text, oldText){
13091         if(this.rendered){
13092             this.textNode.innerHTML = text;
13093         }
13094     },
13095
13096     onDisableChange : function(node, state){
13097         this.disabled = state;
13098         if(state){
13099             this.addClass("x-tree-node-disabled");
13100         }else{
13101             this.removeClass("x-tree-node-disabled");
13102         }
13103     },
13104
13105     onSelectedChange : function(state){
13106         if(state){
13107             this.focus();
13108             this.addClass("x-tree-selected");
13109         }else{
13110             //this.blur();
13111             this.removeClass("x-tree-selected");
13112         }
13113     },
13114
13115     onMove : function(tree, node, oldParent, newParent, index, refNode){
13116         this.childIndent = null;
13117         if(this.rendered){
13118             var targetNode = newParent.ui.getContainer();
13119             if(!targetNode){//target not rendered
13120                 this.holder = document.createElement("div");
13121                 this.holder.appendChild(this.wrap);
13122                 return;
13123             }
13124             var insertBefore = refNode ? refNode.ui.getEl() : null;
13125             if(insertBefore){
13126                 targetNode.insertBefore(this.wrap, insertBefore);
13127             }else{
13128                 targetNode.appendChild(this.wrap);
13129             }
13130             this.node.renderIndent(true);
13131         }
13132     },
13133
13134     addClass : function(cls){
13135         if(this.elNode){
13136             Roo.fly(this.elNode).addClass(cls);
13137         }
13138     },
13139
13140     removeClass : function(cls){
13141         if(this.elNode){
13142             Roo.fly(this.elNode).removeClass(cls);
13143         }
13144     },
13145
13146     remove : function(){
13147         if(this.rendered){
13148             this.holder = document.createElement("div");
13149             this.holder.appendChild(this.wrap);
13150         }
13151     },
13152
13153     fireEvent : function(){
13154         return this.node.fireEvent.apply(this.node, arguments);
13155     },
13156
13157     initEvents : function(){
13158         this.node.on("move", this.onMove, this);
13159         var E = Roo.EventManager;
13160         var a = this.anchor;
13161
13162         var el = Roo.fly(a, '_treeui');
13163
13164         if(Roo.isOpera){ // opera render bug ignores the CSS
13165             el.setStyle("text-decoration", "none");
13166         }
13167
13168         el.on("click", this.onClick, this);
13169         el.on("dblclick", this.onDblClick, this);
13170
13171         if(this.checkbox){
13172             Roo.EventManager.on(this.checkbox,
13173                     Roo.isIE ? 'click' : 'change', this.onCheckChange, this);
13174         }
13175
13176         el.on("contextmenu", this.onContextMenu, this);
13177
13178         var icon = Roo.fly(this.iconNode);
13179         icon.on("click", this.onClick, this);
13180         icon.on("dblclick", this.onDblClick, this);
13181         icon.on("contextmenu", this.onContextMenu, this);
13182         E.on(this.ecNode, "click", this.ecClick, this, true);
13183
13184         if(this.node.disabled){
13185             this.addClass("x-tree-node-disabled");
13186         }
13187         if(this.node.hidden){
13188             this.addClass("x-tree-node-disabled");
13189         }
13190         var ot = this.node.getOwnerTree();
13191         var dd = ot ? (ot.enableDD || ot.enableDrag || ot.enableDrop) : false;
13192         if(dd && (!this.node.isRoot || ot.rootVisible)){
13193             Roo.dd.Registry.register(this.elNode, {
13194                 node: this.node,
13195                 handles: this.getDDHandles(),
13196                 isHandle: false
13197             });
13198         }
13199     },
13200
13201     getDDHandles : function(){
13202         return [this.iconNode, this.textNode];
13203     },
13204
13205     hide : function(){
13206         if(this.rendered){
13207             this.wrap.style.display = "none";
13208         }
13209     },
13210
13211     show : function(){
13212         if(this.rendered){
13213             this.wrap.style.display = "";
13214         }
13215     },
13216
13217     onContextMenu : function(e){
13218         if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
13219             e.preventDefault();
13220             this.focus();
13221             this.fireEvent("contextmenu", this.node, e);
13222         }
13223     },
13224
13225     onClick : function(e){
13226         if(this.dropping){
13227             e.stopEvent();
13228             return;
13229         }
13230         if(this.fireEvent("beforeclick", this.node, e) !== false){
13231             if(!this.disabled && this.node.attributes.href){
13232                 this.fireEvent("click", this.node, e);
13233                 return;
13234             }
13235             e.preventDefault();
13236             if(this.disabled){
13237                 return;
13238             }
13239
13240             if(this.node.attributes.singleClickExpand && !this.animating && this.node.hasChildNodes()){
13241                 this.node.toggle();
13242             }
13243
13244             this.fireEvent("click", this.node, e);
13245         }else{
13246             e.stopEvent();
13247         }
13248     },
13249
13250     onDblClick : function(e){
13251         e.preventDefault();
13252         if(this.disabled){
13253             return;
13254         }
13255         if(this.checkbox){
13256             this.toggleCheck();
13257         }
13258         if(!this.animating && this.node.hasChildNodes()){
13259             this.node.toggle();
13260         }
13261         this.fireEvent("dblclick", this.node, e);
13262     },
13263
13264     onCheckChange : function(){
13265         var checked = this.checkbox.checked;
13266         this.node.attributes.checked = checked;
13267         this.fireEvent('checkchange', this.node, checked);
13268     },
13269
13270     ecClick : function(e){
13271         if(!this.animating && this.node.hasChildNodes()){
13272             this.node.toggle();
13273         }
13274     },
13275
13276     startDrop : function(){
13277         this.dropping = true;
13278     },
13279
13280     // delayed drop so the click event doesn't get fired on a drop
13281     endDrop : function(){
13282        setTimeout(function(){
13283            this.dropping = false;
13284        }.createDelegate(this), 50);
13285     },
13286
13287     expand : function(){
13288         this.updateExpandIcon();
13289         this.ctNode.style.display = "";
13290     },
13291
13292     focus : function(){
13293         if(!this.node.preventHScroll){
13294             try{this.anchor.focus();
13295             }catch(e){}
13296         }else if(!Roo.isIE){
13297             try{
13298                 var noscroll = this.node.getOwnerTree().getTreeEl().dom;
13299                 var l = noscroll.scrollLeft;
13300                 this.anchor.focus();
13301                 noscroll.scrollLeft = l;
13302             }catch(e){}
13303         }
13304     },
13305
13306     toggleCheck : function(value){
13307         var cb = this.checkbox;
13308         if(cb){
13309             cb.checked = (value === undefined ? !cb.checked : value);
13310         }
13311     },
13312
13313     blur : function(){
13314         try{
13315             this.anchor.blur();
13316         }catch(e){}
13317     },
13318
13319     animExpand : function(callback){
13320         var ct = Roo.get(this.ctNode);
13321         ct.stopFx();
13322         if(!this.node.hasChildNodes()){
13323             this.updateExpandIcon();
13324             this.ctNode.style.display = "";
13325             Roo.callback(callback);
13326             return;
13327         }
13328         this.animating = true;
13329         this.updateExpandIcon();
13330
13331         ct.slideIn('t', {
13332            callback : function(){
13333                this.animating = false;
13334                Roo.callback(callback);
13335             },
13336             scope: this,
13337             duration: this.node.ownerTree.duration || .25
13338         });
13339     },
13340
13341     highlight : function(){
13342         var tree = this.node.getOwnerTree();
13343         Roo.fly(this.wrap).highlight(
13344             tree.hlColor || "C3DAF9",
13345             {endColor: tree.hlBaseColor}
13346         );
13347     },
13348
13349     collapse : function(){
13350         this.updateExpandIcon();
13351         this.ctNode.style.display = "none";
13352     },
13353
13354     animCollapse : function(callback){
13355         var ct = Roo.get(this.ctNode);
13356         ct.enableDisplayMode('block');
13357         ct.stopFx();
13358
13359         this.animating = true;
13360         this.updateExpandIcon();
13361
13362         ct.slideOut('t', {
13363             callback : function(){
13364                this.animating = false;
13365                Roo.callback(callback);
13366             },
13367             scope: this,
13368             duration: this.node.ownerTree.duration || .25
13369         });
13370     },
13371
13372     getContainer : function(){
13373         return this.ctNode;
13374     },
13375
13376     getEl : function(){
13377         return this.wrap;
13378     },
13379
13380     appendDDGhost : function(ghostNode){
13381         ghostNode.appendChild(this.elNode.cloneNode(true));
13382     },
13383
13384     getDDRepairXY : function(){
13385         return Roo.lib.Dom.getXY(this.iconNode);
13386     },
13387
13388     onRender : function(){
13389         this.render();
13390     },
13391
13392     render : function(bulkRender){
13393         var n = this.node, a = n.attributes;
13394         var targetNode = n.parentNode ?
13395               n.parentNode.ui.getContainer() : n.ownerTree.innerCt.dom;
13396
13397         if(!this.rendered){
13398             this.rendered = true;
13399
13400             this.renderElements(n, a, targetNode, bulkRender);
13401
13402             if(a.qtip){
13403                if(this.textNode.setAttributeNS){
13404                    this.textNode.setAttributeNS("ext", "qtip", a.qtip);
13405                    if(a.qtipTitle){
13406                        this.textNode.setAttributeNS("ext", "qtitle", a.qtipTitle);
13407                    }
13408                }else{
13409                    this.textNode.setAttribute("ext:qtip", a.qtip);
13410                    if(a.qtipTitle){
13411                        this.textNode.setAttribute("ext:qtitle", a.qtipTitle);
13412                    }
13413                }
13414             }else if(a.qtipCfg){
13415                 a.qtipCfg.target = Roo.id(this.textNode);
13416                 Roo.QuickTips.register(a.qtipCfg);
13417             }
13418             this.initEvents();
13419             if(!this.node.expanded){
13420                 this.updateExpandIcon();
13421             }
13422         }else{
13423             if(bulkRender === true) {
13424                 targetNode.appendChild(this.wrap);
13425             }
13426         }
13427     },
13428
13429     renderElements : function(n, a, targetNode, bulkRender)
13430     {
13431         // add some indent caching, this helps performance when rendering a large tree
13432         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
13433         var t = n.getOwnerTree();
13434         var txt = t && t.renderer ? t.renderer(n.attributes) : Roo.util.Format.htmlEncode(n.text);
13435         if (typeof(n.attributes.html) != 'undefined') {
13436             txt = n.attributes.html;
13437         }
13438         var tip = t && t.rendererTip ? t.rendererTip(n.attributes) : txt;
13439         var cb = typeof a.checked == 'boolean';
13440         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
13441         var buf = ['<li class="x-tree-node"><div class="x-tree-node-el ', a.cls,'">',
13442             '<span class="x-tree-node-indent">',this.indentMarkup,"</span>",
13443             '<img src="', this.emptyIcon, '" class="x-tree-ec-icon" />',
13444             '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',(a.icon ? " x-tree-node-inline-icon" : ""),(a.iconCls ? " "+a.iconCls : ""),'" unselectable="on" />',
13445             cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + (a.checked ? 'checked="checked" />' : ' />')) : '',
13446             '<a hidefocus="on" href="',href,'" tabIndex="1" ',
13447              a.hrefTarget ? ' target="'+a.hrefTarget+'"' : "", 
13448                 '><span unselectable="on" qtip="' , tip ,'">',txt,"</span></a></div>",
13449             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
13450             "</li>"];
13451
13452         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
13453             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
13454                                 n.nextSibling.ui.getEl(), buf.join(""));
13455         }else{
13456             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
13457         }
13458
13459         this.elNode = this.wrap.childNodes[0];
13460         this.ctNode = this.wrap.childNodes[1];
13461         var cs = this.elNode.childNodes;
13462         this.indentNode = cs[0];
13463         this.ecNode = cs[1];
13464         this.iconNode = cs[2];
13465         var index = 3;
13466         if(cb){
13467             this.checkbox = cs[3];
13468             index++;
13469         }
13470         this.anchor = cs[index];
13471         this.textNode = cs[index].firstChild;
13472     },
13473
13474     getAnchor : function(){
13475         return this.anchor;
13476     },
13477
13478     getTextEl : function(){
13479         return this.textNode;
13480     },
13481
13482     getIconEl : function(){
13483         return this.iconNode;
13484     },
13485
13486     isChecked : function(){
13487         return this.checkbox ? this.checkbox.checked : false;
13488     },
13489
13490     updateExpandIcon : function(){
13491         if(this.rendered){
13492             var n = this.node, c1, c2;
13493             var cls = n.isLast() ? "x-tree-elbow-end" : "x-tree-elbow";
13494             var hasChild = n.hasChildNodes();
13495             if(hasChild){
13496                 if(n.expanded){
13497                     cls += "-minus";
13498                     c1 = "x-tree-node-collapsed";
13499                     c2 = "x-tree-node-expanded";
13500                 }else{
13501                     cls += "-plus";
13502                     c1 = "x-tree-node-expanded";
13503                     c2 = "x-tree-node-collapsed";
13504                 }
13505                 if(this.wasLeaf){
13506                     this.removeClass("x-tree-node-leaf");
13507                     this.wasLeaf = false;
13508                 }
13509                 if(this.c1 != c1 || this.c2 != c2){
13510                     Roo.fly(this.elNode).replaceClass(c1, c2);
13511                     this.c1 = c1; this.c2 = c2;
13512                 }
13513             }else{
13514                 // this changes non-leafs into leafs if they have no children.
13515                 // it's not very rational behaviour..
13516                 
13517                 if(!this.wasLeaf && this.node.leaf){
13518                     Roo.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-leaf");
13519                     delete this.c1;
13520                     delete this.c2;
13521                     this.wasLeaf = true;
13522                 }
13523             }
13524             var ecc = "x-tree-ec-icon "+cls;
13525             if(this.ecc != ecc){
13526                 this.ecNode.className = ecc;
13527                 this.ecc = ecc;
13528             }
13529         }
13530     },
13531
13532     getChildIndent : function(){
13533         if(!this.childIndent){
13534             var buf = [];
13535             var p = this.node;
13536             while(p){
13537                 if(!p.isRoot || (p.isRoot && p.ownerTree.rootVisible)){
13538                     if(!p.isLast()) {
13539                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-elbow-line" />');
13540                     } else {
13541                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-icon" />');
13542                     }
13543                 }
13544                 p = p.parentNode;
13545             }
13546             this.childIndent = buf.join("");
13547         }
13548         return this.childIndent;
13549     },
13550
13551     renderIndent : function(){
13552         if(this.rendered){
13553             var indent = "";
13554             var p = this.node.parentNode;
13555             if(p){
13556                 indent = p.ui.getChildIndent();
13557             }
13558             if(this.indentMarkup != indent){ // don't rerender if not required
13559                 this.indentNode.innerHTML = indent;
13560                 this.indentMarkup = indent;
13561             }
13562             this.updateExpandIcon();
13563         }
13564     }
13565 };
13566
13567 Roo.tree.RootTreeNodeUI = function(){
13568     Roo.tree.RootTreeNodeUI.superclass.constructor.apply(this, arguments);
13569 };
13570 Roo.extend(Roo.tree.RootTreeNodeUI, Roo.tree.TreeNodeUI, {
13571     render : function(){
13572         if(!this.rendered){
13573             var targetNode = this.node.ownerTree.innerCt.dom;
13574             this.node.expanded = true;
13575             targetNode.innerHTML = '<div class="x-tree-root-node"></div>';
13576             this.wrap = this.ctNode = targetNode.firstChild;
13577         }
13578     },
13579     collapse : function(){
13580     },
13581     expand : function(){
13582     }
13583 });/*
13584  * Based on:
13585  * Ext JS Library 1.1.1
13586  * Copyright(c) 2006-2007, Ext JS, LLC.
13587  *
13588  * Originally Released Under LGPL - original licence link has changed is not relivant.
13589  *
13590  * Fork - LGPL
13591  * <script type="text/javascript">
13592  */
13593 /**
13594  * @class Roo.tree.TreeLoader
13595  * @extends Roo.util.Observable
13596  * A TreeLoader provides for lazy loading of an {@link Roo.tree.TreeNode}'s child
13597  * nodes from a specified URL. The response must be a javascript Array definition
13598  * who's elements are node definition objects. eg:
13599  * <pre><code>
13600 {  success : true,
13601    data :      [
13602    
13603     { 'id': 1, 'text': 'A folder Node', 'leaf': false },
13604     { 'id': 2, 'text': 'A leaf Node', 'leaf': true }
13605     ]
13606 }
13607
13608
13609 </code></pre>
13610  * <br><br>
13611  * The old style respose with just an array is still supported, but not recommended.
13612  * <br><br>
13613  *
13614  * A server request is sent, and child nodes are loaded only when a node is expanded.
13615  * The loading node's id is passed to the server under the parameter name "node" to
13616  * enable the server to produce the correct child nodes.
13617  * <br><br>
13618  * To pass extra parameters, an event handler may be attached to the "beforeload"
13619  * event, and the parameters specified in the TreeLoader's baseParams property:
13620  * <pre><code>
13621     myTreeLoader.on("beforeload", function(treeLoader, node) {
13622         this.baseParams.category = node.attributes.category;
13623     }, this);
13624     
13625 </code></pre>
13626  *
13627  * This would pass an HTTP parameter called "category" to the server containing
13628  * the value of the Node's "category" attribute.
13629  * @constructor
13630  * Creates a new Treeloader.
13631  * @param {Object} config A config object containing config properties.
13632  */
13633 Roo.tree.TreeLoader = function(config){
13634     this.baseParams = {};
13635     this.requestMethod = "POST";
13636     Roo.apply(this, config);
13637
13638     this.addEvents({
13639     
13640         /**
13641          * @event beforeload
13642          * Fires before a network request is made to retrieve the Json text which specifies a node's children.
13643          * @param {Object} This TreeLoader object.
13644          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
13645          * @param {Object} callback The callback function specified in the {@link #load} call.
13646          */
13647         beforeload : true,
13648         /**
13649          * @event load
13650          * Fires when the node has been successfuly loaded.
13651          * @param {Object} This TreeLoader object.
13652          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
13653          * @param {Object} response The response object containing the data from the server.
13654          */
13655         load : true,
13656         /**
13657          * @event loadexception
13658          * Fires if the network request failed.
13659          * @param {Object} This TreeLoader object.
13660          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
13661          * @param {Object} response The response object containing the data from the server.
13662          */
13663         loadexception : true,
13664         /**
13665          * @event create
13666          * Fires before a node is created, enabling you to return custom Node types 
13667          * @param {Object} This TreeLoader object.
13668          * @param {Object} attr - the data returned from the AJAX call (modify it to suit)
13669          */
13670         create : true
13671     });
13672
13673     Roo.tree.TreeLoader.superclass.constructor.call(this);
13674 };
13675
13676 Roo.extend(Roo.tree.TreeLoader, Roo.util.Observable, {
13677     /**
13678     * @cfg {String} dataUrl The URL from which to request a Json string which
13679     * specifies an array of node definition object representing the child nodes
13680     * to be loaded.
13681     */
13682     /**
13683     * @cfg {String} requestMethod either GET or POST
13684     * defaults to POST (due to BC)
13685     * to be loaded.
13686     */
13687     /**
13688     * @cfg {Object} baseParams (optional) An object containing properties which
13689     * specify HTTP parameters to be passed to each request for child nodes.
13690     */
13691     /**
13692     * @cfg {Object} baseAttrs (optional) An object containing attributes to be added to all nodes
13693     * created by this loader. If the attributes sent by the server have an attribute in this object,
13694     * they take priority.
13695     */
13696     /**
13697     * @cfg {Object} uiProviders (optional) An object containing properties which
13698     * 
13699     * DEPRECATED - use 'create' event handler to modify attributes - which affect creation.
13700     * specify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional
13701     * <i>uiProvider</i> attribute of a returned child node is a string rather
13702     * than a reference to a TreeNodeUI implementation, this that string value
13703     * is used as a property name in the uiProviders object. You can define the provider named
13704     * 'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)
13705     */
13706     uiProviders : {},
13707
13708     /**
13709     * @cfg {Boolean} clearOnLoad (optional) Default to true. Remove previously existing
13710     * child nodes before loading.
13711     */
13712     clearOnLoad : true,
13713
13714     /**
13715     * @cfg {String} root (optional) Default to false. Use this to read data from an object 
13716     * property on loading, rather than expecting an array. (eg. more compatible to a standard
13717     * Grid query { data : [ .....] }
13718     */
13719     
13720     root : false,
13721      /**
13722     * @cfg {String} queryParam (optional) 
13723     * Name of the query as it will be passed on the querystring (defaults to 'node')
13724     * eg. the request will be ?node=[id]
13725     */
13726     
13727     
13728     queryParam: false,
13729     
13730     /**
13731      * Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.
13732      * This is called automatically when a node is expanded, but may be used to reload
13733      * a node (or append new children if the {@link #clearOnLoad} option is false.)
13734      * @param {Roo.tree.TreeNode} node
13735      * @param {Function} callback
13736      */
13737     load : function(node, callback){
13738         if(this.clearOnLoad){
13739             while(node.firstChild){
13740                 node.removeChild(node.firstChild);
13741             }
13742         }
13743         if(node.attributes.children){ // preloaded json children
13744             var cs = node.attributes.children;
13745             for(var i = 0, len = cs.length; i < len; i++){
13746                 node.appendChild(this.createNode(cs[i]));
13747             }
13748             if(typeof callback == "function"){
13749                 callback();
13750             }
13751         }else if(this.dataUrl){
13752             this.requestData(node, callback);
13753         }
13754     },
13755
13756     getParams: function(node){
13757         var buf = [], bp = this.baseParams;
13758         for(var key in bp){
13759             if(typeof bp[key] != "function"){
13760                 buf.push(encodeURIComponent(key), "=", encodeURIComponent(bp[key]), "&");
13761             }
13762         }
13763         var n = this.queryParam === false ? 'node' : this.queryParam;
13764         buf.push(n + "=", encodeURIComponent(node.id));
13765         return buf.join("");
13766     },
13767
13768     requestData : function(node, callback){
13769         if(this.fireEvent("beforeload", this, node, callback) !== false){
13770             this.transId = Roo.Ajax.request({
13771                 method:this.requestMethod,
13772                 url: this.dataUrl||this.url,
13773                 success: this.handleResponse,
13774                 failure: this.handleFailure,
13775                 scope: this,
13776                 argument: {callback: callback, node: node},
13777                 params: this.getParams(node)
13778             });
13779         }else{
13780             // if the load is cancelled, make sure we notify
13781             // the node that we are done
13782             if(typeof callback == "function"){
13783                 callback();
13784             }
13785         }
13786     },
13787
13788     isLoading : function(){
13789         return this.transId ? true : false;
13790     },
13791
13792     abort : function(){
13793         if(this.isLoading()){
13794             Roo.Ajax.abort(this.transId);
13795         }
13796     },
13797
13798     // private
13799     createNode : function(attr)
13800     {
13801         // apply baseAttrs, nice idea Corey!
13802         if(this.baseAttrs){
13803             Roo.applyIf(attr, this.baseAttrs);
13804         }
13805         if(this.applyLoader !== false){
13806             attr.loader = this;
13807         }
13808         // uiProvider = depreciated..
13809         
13810         if(typeof(attr.uiProvider) == 'string'){
13811            attr.uiProvider = this.uiProviders[attr.uiProvider] || 
13812                 /**  eval:var:attr */ eval(attr.uiProvider);
13813         }
13814         if(typeof(this.uiProviders['default']) != 'undefined') {
13815             attr.uiProvider = this.uiProviders['default'];
13816         }
13817         
13818         this.fireEvent('create', this, attr);
13819         
13820         attr.leaf  = typeof(attr.leaf) == 'string' ? attr.leaf * 1 : attr.leaf;
13821         return(attr.leaf ?
13822                         new Roo.tree.TreeNode(attr) :
13823                         new Roo.tree.AsyncTreeNode(attr));
13824     },
13825
13826     processResponse : function(response, node, callback)
13827     {
13828         var json = response.responseText;
13829         try {
13830             
13831             var o = Roo.decode(json);
13832             
13833             if (this.root === false && typeof(o.success) != undefined) {
13834                 this.root = 'data'; // the default behaviour for list like data..
13835                 }
13836                 
13837             if (this.root !== false &&  !o.success) {
13838                 // it's a failure condition.
13839                 var a = response.argument;
13840                 this.fireEvent("loadexception", this, a.node, response);
13841                 Roo.log("Load failed - should have a handler really");
13842                 return;
13843             }
13844             
13845             
13846             
13847             if (this.root !== false) {
13848                  o = o[this.root];
13849             }
13850             
13851             for(var i = 0, len = o.length; i < len; i++){
13852                 var n = this.createNode(o[i]);
13853                 if(n){
13854                     node.appendChild(n);
13855                 }
13856             }
13857             if(typeof callback == "function"){
13858                 callback(this, node);
13859             }
13860         }catch(e){
13861             this.handleFailure(response);
13862         }
13863     },
13864
13865     handleResponse : function(response){
13866         this.transId = false;
13867         var a = response.argument;
13868         this.processResponse(response, a.node, a.callback);
13869         this.fireEvent("load", this, a.node, response);
13870     },
13871
13872     handleFailure : function(response)
13873     {
13874         // should handle failure better..
13875         this.transId = false;
13876         var a = response.argument;
13877         this.fireEvent("loadexception", this, a.node, response);
13878         if(typeof a.callback == "function"){
13879             a.callback(this, a.node);
13880         }
13881     }
13882 });/*
13883  * Based on:
13884  * Ext JS Library 1.1.1
13885  * Copyright(c) 2006-2007, Ext JS, LLC.
13886  *
13887  * Originally Released Under LGPL - original licence link has changed is not relivant.
13888  *
13889  * Fork - LGPL
13890  * <script type="text/javascript">
13891  */
13892
13893 /**
13894 * @class Roo.tree.TreeFilter
13895 * Note this class is experimental and doesn't update the indent (lines) or expand collapse icons of the nodes
13896 * @param {TreePanel} tree
13897 * @param {Object} config (optional)
13898  */
13899 Roo.tree.TreeFilter = function(tree, config){
13900     this.tree = tree;
13901     this.filtered = {};
13902     Roo.apply(this, config);
13903 };
13904
13905 Roo.tree.TreeFilter.prototype = {
13906     clearBlank:false,
13907     reverse:false,
13908     autoClear:false,
13909     remove:false,
13910
13911      /**
13912      * Filter the data by a specific attribute.
13913      * @param {String/RegExp} value Either string that the attribute value
13914      * should start with or a RegExp to test against the attribute
13915      * @param {String} attr (optional) The attribute passed in your node's attributes collection. Defaults to "text".
13916      * @param {TreeNode} startNode (optional) The node to start the filter at.
13917      */
13918     filter : function(value, attr, startNode){
13919         attr = attr || "text";
13920         var f;
13921         if(typeof value == "string"){
13922             var vlen = value.length;
13923             // auto clear empty filter
13924             if(vlen == 0 && this.clearBlank){
13925                 this.clear();
13926                 return;
13927             }
13928             value = value.toLowerCase();
13929             f = function(n){
13930                 return n.attributes[attr].substr(0, vlen).toLowerCase() == value;
13931             };
13932         }else if(value.exec){ // regex?
13933             f = function(n){
13934                 return value.test(n.attributes[attr]);
13935             };
13936         }else{
13937             throw 'Illegal filter type, must be string or regex';
13938         }
13939         this.filterBy(f, null, startNode);
13940         },
13941
13942     /**
13943      * Filter by a function. The passed function will be called with each
13944      * node in the tree (or from the startNode). If the function returns true, the node is kept
13945      * otherwise it is filtered. If a node is filtered, its children are also filtered.
13946      * @param {Function} fn The filter function
13947      * @param {Object} scope (optional) The scope of the function (defaults to the current node)
13948      */
13949     filterBy : function(fn, scope, startNode){
13950         startNode = startNode || this.tree.root;
13951         if(this.autoClear){
13952             this.clear();
13953         }
13954         var af = this.filtered, rv = this.reverse;
13955         var f = function(n){
13956             if(n == startNode){
13957                 return true;
13958             }
13959             if(af[n.id]){
13960                 return false;
13961             }
13962             var m = fn.call(scope || n, n);
13963             if(!m || rv){
13964                 af[n.id] = n;
13965                 n.ui.hide();
13966                 return false;
13967             }
13968             return true;
13969         };
13970         startNode.cascade(f);
13971         if(this.remove){
13972            for(var id in af){
13973                if(typeof id != "function"){
13974                    var n = af[id];
13975                    if(n && n.parentNode){
13976                        n.parentNode.removeChild(n);
13977                    }
13978                }
13979            }
13980         }
13981     },
13982
13983     /**
13984      * Clears the current filter. Note: with the "remove" option
13985      * set a filter cannot be cleared.
13986      */
13987     clear : function(){
13988         var t = this.tree;
13989         var af = this.filtered;
13990         for(var id in af){
13991             if(typeof id != "function"){
13992                 var n = af[id];
13993                 if(n){
13994                     n.ui.show();
13995                 }
13996             }
13997         }
13998         this.filtered = {};
13999     }
14000 };
14001 /*
14002  * Based on:
14003  * Ext JS Library 1.1.1
14004  * Copyright(c) 2006-2007, Ext JS, LLC.
14005  *
14006  * Originally Released Under LGPL - original licence link has changed is not relivant.
14007  *
14008  * Fork - LGPL
14009  * <script type="text/javascript">
14010  */
14011  
14012
14013 /**
14014  * @class Roo.tree.TreeSorter
14015  * Provides sorting of nodes in a TreePanel
14016  * 
14017  * @cfg {Boolean} folderSort True to sort leaf nodes under non leaf nodes
14018  * @cfg {String} property The named attribute on the node to sort by (defaults to text)
14019  * @cfg {String} dir The direction to sort (asc or desc) (defaults to asc)
14020  * @cfg {String} leafAttr The attribute used to determine leaf nodes in folder sort (defaults to "leaf")
14021  * @cfg {Boolean} caseSensitive true for case sensitive sort (defaults to false)
14022  * @cfg {Function} sortType A custom "casting" function used to convert node values before sorting
14023  * @constructor
14024  * @param {TreePanel} tree
14025  * @param {Object} config
14026  */
14027 Roo.tree.TreeSorter = function(tree, config){
14028     Roo.apply(this, config);
14029     tree.on("beforechildrenrendered", this.doSort, this);
14030     tree.on("append", this.updateSort, this);
14031     tree.on("insert", this.updateSort, this);
14032     
14033     var dsc = this.dir && this.dir.toLowerCase() == "desc";
14034     var p = this.property || "text";
14035     var sortType = this.sortType;
14036     var fs = this.folderSort;
14037     var cs = this.caseSensitive === true;
14038     var leafAttr = this.leafAttr || 'leaf';
14039
14040     this.sortFn = function(n1, n2){
14041         if(fs){
14042             if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){
14043                 return 1;
14044             }
14045             if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){
14046                 return -1;
14047             }
14048         }
14049         var v1 = sortType ? sortType(n1) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());
14050         var v2 = sortType ? sortType(n2) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());
14051         if(v1 < v2){
14052                         return dsc ? +1 : -1;
14053                 }else if(v1 > v2){
14054                         return dsc ? -1 : +1;
14055         }else{
14056                 return 0;
14057         }
14058     };
14059 };
14060
14061 Roo.tree.TreeSorter.prototype = {
14062     doSort : function(node){
14063         node.sort(this.sortFn);
14064     },
14065     
14066     compareNodes : function(n1, n2){
14067         return (n1.text.toUpperCase() > n2.text.toUpperCase() ? 1 : -1);
14068     },
14069     
14070     updateSort : function(tree, node){
14071         if(node.childrenRendered){
14072             this.doSort.defer(1, this, [node]);
14073         }
14074     }
14075 };/*
14076  * Based on:
14077  * Ext JS Library 1.1.1
14078  * Copyright(c) 2006-2007, Ext JS, LLC.
14079  *
14080  * Originally Released Under LGPL - original licence link has changed is not relivant.
14081  *
14082  * Fork - LGPL
14083  * <script type="text/javascript">
14084  */
14085
14086 if(Roo.dd.DropZone){
14087     
14088 Roo.tree.TreeDropZone = function(tree, config){
14089     this.allowParentInsert = false;
14090     this.allowContainerDrop = false;
14091     this.appendOnly = false;
14092     Roo.tree.TreeDropZone.superclass.constructor.call(this, tree.innerCt, config);
14093     this.tree = tree;
14094     this.lastInsertClass = "x-tree-no-status";
14095     this.dragOverData = {};
14096 };
14097
14098 Roo.extend(Roo.tree.TreeDropZone, Roo.dd.DropZone, {
14099     ddGroup : "TreeDD",
14100     scroll:  true,
14101     
14102     expandDelay : 1000,
14103     
14104     expandNode : function(node){
14105         if(node.hasChildNodes() && !node.isExpanded()){
14106             node.expand(false, null, this.triggerCacheRefresh.createDelegate(this));
14107         }
14108     },
14109     
14110     queueExpand : function(node){
14111         this.expandProcId = this.expandNode.defer(this.expandDelay, this, [node]);
14112     },
14113     
14114     cancelExpand : function(){
14115         if(this.expandProcId){
14116             clearTimeout(this.expandProcId);
14117             this.expandProcId = false;
14118         }
14119     },
14120     
14121     isValidDropPoint : function(n, pt, dd, e, data){
14122         if(!n || !data){ return false; }
14123         var targetNode = n.node;
14124         var dropNode = data.node;
14125         // default drop rules
14126         if(!(targetNode && targetNode.isTarget && pt)){
14127             return false;
14128         }
14129         if(pt == "append" && targetNode.allowChildren === false){
14130             return false;
14131         }
14132         if((pt == "above" || pt == "below") && (targetNode.parentNode && targetNode.parentNode.allowChildren === false)){
14133             return false;
14134         }
14135         if(dropNode && (targetNode == dropNode || dropNode.contains(targetNode))){
14136             return false;
14137         }
14138         // reuse the object
14139         var overEvent = this.dragOverData;
14140         overEvent.tree = this.tree;
14141         overEvent.target = targetNode;
14142         overEvent.data = data;
14143         overEvent.point = pt;
14144         overEvent.source = dd;
14145         overEvent.rawEvent = e;
14146         overEvent.dropNode = dropNode;
14147         overEvent.cancel = false;  
14148         var result = this.tree.fireEvent("nodedragover", overEvent);
14149         return overEvent.cancel === false && result !== false;
14150     },
14151     
14152     getDropPoint : function(e, n, dd)
14153     {
14154         var tn = n.node;
14155         if(tn.isRoot){
14156             return tn.allowChildren !== false ? "append" : false; // always append for root
14157         }
14158         var dragEl = n.ddel;
14159         var t = Roo.lib.Dom.getY(dragEl), b = t + dragEl.offsetHeight;
14160         var y = Roo.lib.Event.getPageY(e);
14161         //var noAppend = tn.allowChildren === false || tn.isLeaf();
14162         
14163         // we may drop nodes anywhere, as long as allowChildren has not been set to false..
14164         var noAppend = tn.allowChildren === false;
14165         if(this.appendOnly || tn.parentNode.allowChildren === false){
14166             return noAppend ? false : "append";
14167         }
14168         var noBelow = false;
14169         if(!this.allowParentInsert){
14170             noBelow = tn.hasChildNodes() && tn.isExpanded();
14171         }
14172         var q = (b - t) / (noAppend ? 2 : 3);
14173         if(y >= t && y < (t + q)){
14174             return "above";
14175         }else if(!noBelow && (noAppend || y >= b-q && y <= b)){
14176             return "below";
14177         }else{
14178             return "append";
14179         }
14180     },
14181     
14182     onNodeEnter : function(n, dd, e, data)
14183     {
14184         this.cancelExpand();
14185     },
14186     
14187     onNodeOver : function(n, dd, e, data)
14188     {
14189        
14190         var pt = this.getDropPoint(e, n, dd);
14191         var node = n.node;
14192         
14193         // auto node expand check
14194         if(!this.expandProcId && pt == "append" && node.hasChildNodes() && !n.node.isExpanded()){
14195             this.queueExpand(node);
14196         }else if(pt != "append"){
14197             this.cancelExpand();
14198         }
14199         
14200         // set the insert point style on the target node
14201         var returnCls = this.dropNotAllowed;
14202         if(this.isValidDropPoint(n, pt, dd, e, data)){
14203            if(pt){
14204                var el = n.ddel;
14205                var cls;
14206                if(pt == "above"){
14207                    returnCls = n.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
14208                    cls = "x-tree-drag-insert-above";
14209                }else if(pt == "below"){
14210                    returnCls = n.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
14211                    cls = "x-tree-drag-insert-below";
14212                }else{
14213                    returnCls = "x-tree-drop-ok-append";
14214                    cls = "x-tree-drag-append";
14215                }
14216                if(this.lastInsertClass != cls){
14217                    Roo.fly(el).replaceClass(this.lastInsertClass, cls);
14218                    this.lastInsertClass = cls;
14219                }
14220            }
14221        }
14222        return returnCls;
14223     },
14224     
14225     onNodeOut : function(n, dd, e, data){
14226         
14227         this.cancelExpand();
14228         this.removeDropIndicators(n);
14229     },
14230     
14231     onNodeDrop : function(n, dd, e, data){
14232         var point = this.getDropPoint(e, n, dd);
14233         var targetNode = n.node;
14234         targetNode.ui.startDrop();
14235         if(!this.isValidDropPoint(n, point, dd, e, data)){
14236             targetNode.ui.endDrop();
14237             return false;
14238         }
14239         // first try to find the drop node
14240         var dropNode = data.node || (dd.getTreeNode ? dd.getTreeNode(data, targetNode, point, e) : null);
14241         var dropEvent = {
14242             tree : this.tree,
14243             target: targetNode,
14244             data: data,
14245             point: point,
14246             source: dd,
14247             rawEvent: e,
14248             dropNode: dropNode,
14249             cancel: !dropNode   
14250         };
14251         var retval = this.tree.fireEvent("beforenodedrop", dropEvent);
14252         if(retval === false || dropEvent.cancel === true || !dropEvent.dropNode){
14253             targetNode.ui.endDrop();
14254             return false;
14255         }
14256         // allow target changing
14257         targetNode = dropEvent.target;
14258         if(point == "append" && !targetNode.isExpanded()){
14259             targetNode.expand(false, null, function(){
14260                 this.completeDrop(dropEvent);
14261             }.createDelegate(this));
14262         }else{
14263             this.completeDrop(dropEvent);
14264         }
14265         return true;
14266     },
14267     
14268     completeDrop : function(de){
14269         var ns = de.dropNode, p = de.point, t = de.target;
14270         if(!(ns instanceof Array)){
14271             ns = [ns];
14272         }
14273         var n;
14274         for(var i = 0, len = ns.length; i < len; i++){
14275             n = ns[i];
14276             if(p == "above"){
14277                 t.parentNode.insertBefore(n, t);
14278             }else if(p == "below"){
14279                 t.parentNode.insertBefore(n, t.nextSibling);
14280             }else{
14281                 t.appendChild(n);
14282             }
14283         }
14284         n.ui.focus();
14285         if(this.tree.hlDrop){
14286             n.ui.highlight();
14287         }
14288         t.ui.endDrop();
14289         this.tree.fireEvent("nodedrop", de);
14290     },
14291     
14292     afterNodeMoved : function(dd, data, e, targetNode, dropNode){
14293         if(this.tree.hlDrop){
14294             dropNode.ui.focus();
14295             dropNode.ui.highlight();
14296         }
14297         this.tree.fireEvent("nodedrop", this.tree, targetNode, data, dd, e);
14298     },
14299     
14300     getTree : function(){
14301         return this.tree;
14302     },
14303     
14304     removeDropIndicators : function(n){
14305         if(n && n.ddel){
14306             var el = n.ddel;
14307             Roo.fly(el).removeClass([
14308                     "x-tree-drag-insert-above",
14309                     "x-tree-drag-insert-below",
14310                     "x-tree-drag-append"]);
14311             this.lastInsertClass = "_noclass";
14312         }
14313     },
14314     
14315     beforeDragDrop : function(target, e, id){
14316         this.cancelExpand();
14317         return true;
14318     },
14319     
14320     afterRepair : function(data){
14321         if(data && Roo.enableFx){
14322             data.node.ui.highlight();
14323         }
14324         this.hideProxy();
14325     } 
14326     
14327 });
14328
14329 }
14330 /*
14331  * Based on:
14332  * Ext JS Library 1.1.1
14333  * Copyright(c) 2006-2007, Ext JS, LLC.
14334  *
14335  * Originally Released Under LGPL - original licence link has changed is not relivant.
14336  *
14337  * Fork - LGPL
14338  * <script type="text/javascript">
14339  */
14340  
14341
14342 if(Roo.dd.DragZone){
14343 Roo.tree.TreeDragZone = function(tree, config){
14344     Roo.tree.TreeDragZone.superclass.constructor.call(this, tree.getTreeEl(), config);
14345     this.tree = tree;
14346 };
14347
14348 Roo.extend(Roo.tree.TreeDragZone, Roo.dd.DragZone, {
14349     ddGroup : "TreeDD",
14350    
14351     onBeforeDrag : function(data, e){
14352         var n = data.node;
14353         return n && n.draggable && !n.disabled;
14354     },
14355      
14356     
14357     onInitDrag : function(e){
14358         var data = this.dragData;
14359         this.tree.getSelectionModel().select(data.node);
14360         this.proxy.update("");
14361         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
14362         this.tree.fireEvent("startdrag", this.tree, data.node, e);
14363     },
14364     
14365     getRepairXY : function(e, data){
14366         return data.node.ui.getDDRepairXY();
14367     },
14368     
14369     onEndDrag : function(data, e){
14370         this.tree.fireEvent("enddrag", this.tree, data.node, e);
14371         
14372         
14373     },
14374     
14375     onValidDrop : function(dd, e, id){
14376         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
14377         this.hideProxy();
14378     },
14379     
14380     beforeInvalidDrop : function(e, id){
14381         // this scrolls the original position back into view
14382         var sm = this.tree.getSelectionModel();
14383         sm.clearSelections();
14384         sm.select(this.dragData.node);
14385     }
14386 });
14387 }/*
14388  * Based on:
14389  * Ext JS Library 1.1.1
14390  * Copyright(c) 2006-2007, Ext JS, LLC.
14391  *
14392  * Originally Released Under LGPL - original licence link has changed is not relivant.
14393  *
14394  * Fork - LGPL
14395  * <script type="text/javascript">
14396  */
14397 /**
14398  * @class Roo.tree.TreeEditor
14399  * @extends Roo.Editor
14400  * Provides editor functionality for inline tree node editing.  Any valid {@link Roo.form.Field} can be used
14401  * as the editor field.
14402  * @constructor
14403  * @param {Object} config (used to be the tree panel.)
14404  * @param {Object} oldconfig DEPRECIATED Either a prebuilt {@link Roo.form.Field} instance or a Field config object
14405  * 
14406  * @cfg {Roo.tree.TreePanel} tree The tree to bind to.
14407  * @cfg {Roo.form.TextField|Object} field The field configuration
14408  *
14409  * 
14410  */
14411 Roo.tree.TreeEditor = function(config, oldconfig) { // was -- (tree, config){
14412     var tree = config;
14413     var field;
14414     if (oldconfig) { // old style..
14415         field = oldconfig.events ? oldconfig : new Roo.form.TextField(oldconfig);
14416     } else {
14417         // new style..
14418         tree = config.tree;
14419         config.field = config.field  || {};
14420         config.field.xtype = 'TextField';
14421         field = Roo.factory(config.field, Roo.form);
14422     }
14423     config = config || {};
14424     
14425     
14426     this.addEvents({
14427         /**
14428          * @event beforenodeedit
14429          * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
14430          * false from the handler of this event.
14431          * @param {Editor} this
14432          * @param {Roo.tree.Node} node 
14433          */
14434         "beforenodeedit" : true
14435     });
14436     
14437     //Roo.log(config);
14438     Roo.tree.TreeEditor.superclass.constructor.call(this, field, config);
14439
14440     this.tree = tree;
14441
14442     tree.on('beforeclick', this.beforeNodeClick, this);
14443     tree.getTreeEl().on('mousedown', this.hide, this);
14444     this.on('complete', this.updateNode, this);
14445     this.on('beforestartedit', this.fitToTree, this);
14446     this.on('startedit', this.bindScroll, this, {delay:10});
14447     this.on('specialkey', this.onSpecialKey, this);
14448 };
14449
14450 Roo.extend(Roo.tree.TreeEditor, Roo.Editor, {
14451     /**
14452      * @cfg {String} alignment
14453      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "l-l").
14454      */
14455     alignment: "l-l",
14456     // inherit
14457     autoSize: false,
14458     /**
14459      * @cfg {Boolean} hideEl
14460      * True to hide the bound element while the editor is displayed (defaults to false)
14461      */
14462     hideEl : false,
14463     /**
14464      * @cfg {String} cls
14465      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
14466      */
14467     cls: "x-small-editor x-tree-editor",
14468     /**
14469      * @cfg {Boolean} shim
14470      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
14471      */
14472     shim:false,
14473     // inherit
14474     shadow:"frame",
14475     /**
14476      * @cfg {Number} maxWidth
14477      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
14478      * the containing tree element's size, it will be automatically limited for you to the container width, taking
14479      * scroll and client offsets into account prior to each edit.
14480      */
14481     maxWidth: 250,
14482
14483     editDelay : 350,
14484
14485     // private
14486     fitToTree : function(ed, el){
14487         var td = this.tree.getTreeEl().dom, nd = el.dom;
14488         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
14489             td.scrollLeft = nd.offsetLeft;
14490         }
14491         var w = Math.min(
14492                 this.maxWidth,
14493                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
14494         this.setSize(w, '');
14495         
14496         return this.fireEvent('beforenodeedit', this, this.editNode);
14497         
14498     },
14499
14500     // private
14501     triggerEdit : function(node){
14502         this.completeEdit();
14503         this.editNode = node;
14504         this.startEdit(node.ui.textNode, node.text);
14505     },
14506
14507     // private
14508     bindScroll : function(){
14509         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
14510     },
14511
14512     // private
14513     beforeNodeClick : function(node, e){
14514         var sinceLast = (this.lastClick ? this.lastClick.getElapsed() : 0);
14515         this.lastClick = new Date();
14516         if(sinceLast > this.editDelay && this.tree.getSelectionModel().isSelected(node)){
14517             e.stopEvent();
14518             this.triggerEdit(node);
14519             return false;
14520         }
14521         return true;
14522     },
14523
14524     // private
14525     updateNode : function(ed, value){
14526         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
14527         this.editNode.setText(value);
14528     },
14529
14530     // private
14531     onHide : function(){
14532         Roo.tree.TreeEditor.superclass.onHide.call(this);
14533         if(this.editNode){
14534             this.editNode.ui.focus();
14535         }
14536     },
14537
14538     // private
14539     onSpecialKey : function(field, e){
14540         var k = e.getKey();
14541         if(k == e.ESC){
14542             e.stopEvent();
14543             this.cancelEdit();
14544         }else if(k == e.ENTER && !e.hasModifier()){
14545             e.stopEvent();
14546             this.completeEdit();
14547         }
14548     }
14549 });//<Script type="text/javascript">
14550 /*
14551  * Based on:
14552  * Ext JS Library 1.1.1
14553  * Copyright(c) 2006-2007, Ext JS, LLC.
14554  *
14555  * Originally Released Under LGPL - original licence link has changed is not relivant.
14556  *
14557  * Fork - LGPL
14558  * <script type="text/javascript">
14559  */
14560  
14561 /**
14562  * Not documented??? - probably should be...
14563  */
14564
14565 Roo.tree.ColumnNodeUI = Roo.extend(Roo.tree.TreeNodeUI, {
14566     //focus: Roo.emptyFn, // prevent odd scrolling behavior
14567     
14568     renderElements : function(n, a, targetNode, bulkRender){
14569         //consel.log("renderElements?");
14570         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
14571
14572         var t = n.getOwnerTree();
14573         var tid = Pman.Tab.Document_TypesTree.tree.el.id;
14574         
14575         var cols = t.columns;
14576         var bw = t.borderWidth;
14577         var c = cols[0];
14578         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
14579          var cb = typeof a.checked == "boolean";
14580         var tx = String.format('{0}',n.text || (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
14581         var colcls = 'x-t-' + tid + '-c0';
14582         var buf = [
14583             '<li class="x-tree-node">',
14584             
14585                 
14586                 '<div class="x-tree-node-el ', a.cls,'">',
14587                     // extran...
14588                     '<div class="x-tree-col ', colcls, '" style="width:', c.width-bw, 'px;">',
14589                 
14590                 
14591                         '<span class="x-tree-node-indent">',this.indentMarkup,'</span>',
14592                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon  " />',
14593                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',
14594                            (a.icon ? ' x-tree-node-inline-icon' : ''),
14595                            (a.iconCls ? ' '+a.iconCls : ''),
14596                            '" unselectable="on" />',
14597                         (cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + 
14598                              (a.checked ? 'checked="checked" />' : ' />')) : ''),
14599                              
14600                         '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
14601                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>',
14602                             '<span unselectable="on" qtip="' + tx + '">',
14603                              tx,
14604                              '</span></a>' ,
14605                     '</div>',
14606                      '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
14607                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>'
14608                  ];
14609         for(var i = 1, len = cols.length; i < len; i++){
14610             c = cols[i];
14611             colcls = 'x-t-' + tid + '-c' +i;
14612             tx = String.format('{0}', (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
14613             buf.push('<div class="x-tree-col ', colcls, ' ' ,(c.cls?c.cls:''),'" style="width:',c.width-bw,'px;">',
14614                         '<div class="x-tree-col-text" qtip="' + tx +'">',tx,"</div>",
14615                       "</div>");
14616          }
14617          
14618          buf.push(
14619             '</a>',
14620             '<div class="x-clear"></div></div>',
14621             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
14622             "</li>");
14623         
14624         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
14625             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
14626                                 n.nextSibling.ui.getEl(), buf.join(""));
14627         }else{
14628             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
14629         }
14630         var el = this.wrap.firstChild;
14631         this.elRow = el;
14632         this.elNode = el.firstChild;
14633         this.ranchor = el.childNodes[1];
14634         this.ctNode = this.wrap.childNodes[1];
14635         var cs = el.firstChild.childNodes;
14636         this.indentNode = cs[0];
14637         this.ecNode = cs[1];
14638         this.iconNode = cs[2];
14639         var index = 3;
14640         if(cb){
14641             this.checkbox = cs[3];
14642             index++;
14643         }
14644         this.anchor = cs[index];
14645         
14646         this.textNode = cs[index].firstChild;
14647         
14648         //el.on("click", this.onClick, this);
14649         //el.on("dblclick", this.onDblClick, this);
14650         
14651         
14652        // console.log(this);
14653     },
14654     initEvents : function(){
14655         Roo.tree.ColumnNodeUI.superclass.initEvents.call(this);
14656         
14657             
14658         var a = this.ranchor;
14659
14660         var el = Roo.get(a);
14661
14662         if(Roo.isOpera){ // opera render bug ignores the CSS
14663             el.setStyle("text-decoration", "none");
14664         }
14665
14666         el.on("click", this.onClick, this);
14667         el.on("dblclick", this.onDblClick, this);
14668         el.on("contextmenu", this.onContextMenu, this);
14669         
14670     },
14671     
14672     /*onSelectedChange : function(state){
14673         if(state){
14674             this.focus();
14675             this.addClass("x-tree-selected");
14676         }else{
14677             //this.blur();
14678             this.removeClass("x-tree-selected");
14679         }
14680     },*/
14681     addClass : function(cls){
14682         if(this.elRow){
14683             Roo.fly(this.elRow).addClass(cls);
14684         }
14685         
14686     },
14687     
14688     
14689     removeClass : function(cls){
14690         if(this.elRow){
14691             Roo.fly(this.elRow).removeClass(cls);
14692         }
14693     }
14694
14695     
14696     
14697 });//<Script type="text/javascript">
14698
14699 /*
14700  * Based on:
14701  * Ext JS Library 1.1.1
14702  * Copyright(c) 2006-2007, Ext JS, LLC.
14703  *
14704  * Originally Released Under LGPL - original licence link has changed is not relivant.
14705  *
14706  * Fork - LGPL
14707  * <script type="text/javascript">
14708  */
14709  
14710
14711 /**
14712  * @class Roo.tree.ColumnTree
14713  * @extends Roo.data.TreePanel
14714  * @cfg {Object} columns  Including width, header, renderer, cls, dataIndex 
14715  * @cfg {int} borderWidth  compined right/left border allowance
14716  * @constructor
14717  * @param {String/HTMLElement/Element} el The container element
14718  * @param {Object} config
14719  */
14720 Roo.tree.ColumnTree =  function(el, config)
14721 {
14722    Roo.tree.ColumnTree.superclass.constructor.call(this, el , config);
14723    this.addEvents({
14724         /**
14725         * @event resize
14726         * Fire this event on a container when it resizes
14727         * @param {int} w Width
14728         * @param {int} h Height
14729         */
14730        "resize" : true
14731     });
14732     this.on('resize', this.onResize, this);
14733 };
14734
14735 Roo.extend(Roo.tree.ColumnTree, Roo.tree.TreePanel, {
14736     //lines:false,
14737     
14738     
14739     borderWidth: Roo.isBorderBox ? 0 : 2, 
14740     headEls : false,
14741     
14742     render : function(){
14743         // add the header.....
14744        
14745         Roo.tree.ColumnTree.superclass.render.apply(this);
14746         
14747         this.el.addClass('x-column-tree');
14748         
14749         this.headers = this.el.createChild(
14750             {cls:'x-tree-headers'},this.innerCt.dom);
14751    
14752         var cols = this.columns, c;
14753         var totalWidth = 0;
14754         this.headEls = [];
14755         var  len = cols.length;
14756         for(var i = 0; i < len; i++){
14757              c = cols[i];
14758              totalWidth += c.width;
14759             this.headEls.push(this.headers.createChild({
14760                  cls:'x-tree-hd ' + (c.cls?c.cls+'-hd':''),
14761                  cn: {
14762                      cls:'x-tree-hd-text',
14763                      html: c.header
14764                  },
14765                  style:'width:'+(c.width-this.borderWidth)+'px;'
14766              }));
14767         }
14768         this.headers.createChild({cls:'x-clear'});
14769         // prevent floats from wrapping when clipped
14770         this.headers.setWidth(totalWidth);
14771         //this.innerCt.setWidth(totalWidth);
14772         this.innerCt.setStyle({ overflow: 'auto' });
14773         this.onResize(this.width, this.height);
14774              
14775         
14776     },
14777     onResize : function(w,h)
14778     {
14779         this.height = h;
14780         this.width = w;
14781         // resize cols..
14782         this.innerCt.setWidth(this.width);
14783         this.innerCt.setHeight(this.height-20);
14784         
14785         // headers...
14786         var cols = this.columns, c;
14787         var totalWidth = 0;
14788         var expEl = false;
14789         var len = cols.length;
14790         for(var i = 0; i < len; i++){
14791             c = cols[i];
14792             if (this.autoExpandColumn !== false && c.dataIndex == this.autoExpandColumn) {
14793                 // it's the expander..
14794                 expEl  = this.headEls[i];
14795                 continue;
14796             }
14797             totalWidth += c.width;
14798             
14799         }
14800         if (expEl) {
14801             expEl.setWidth(  ((w - totalWidth)-this.borderWidth - 20));
14802         }
14803         this.headers.setWidth(w-20);
14804
14805         
14806         
14807         
14808     }
14809 });
14810 /*
14811  * Based on:
14812  * Ext JS Library 1.1.1
14813  * Copyright(c) 2006-2007, Ext JS, LLC.
14814  *
14815  * Originally Released Under LGPL - original licence link has changed is not relivant.
14816  *
14817  * Fork - LGPL
14818  * <script type="text/javascript">
14819  */
14820  
14821 /**
14822  * @class Roo.menu.Menu
14823  * @extends Roo.util.Observable
14824  * A menu object.  This is the container to which you add all other menu items.  Menu can also serve a as a base class
14825  * when you want a specialzed menu based off of another component (like {@link Roo.menu.DateMenu} for example).
14826  * @constructor
14827  * Creates a new Menu
14828  * @param {Object} config Configuration options
14829  */
14830 Roo.menu.Menu = function(config){
14831     
14832     Roo.menu.Menu.superclass.constructor.call(this, config);
14833     
14834     this.id = this.id || Roo.id();
14835     this.addEvents({
14836         /**
14837          * @event beforeshow
14838          * Fires before this menu is displayed
14839          * @param {Roo.menu.Menu} this
14840          */
14841         beforeshow : true,
14842         /**
14843          * @event beforehide
14844          * Fires before this menu is hidden
14845          * @param {Roo.menu.Menu} this
14846          */
14847         beforehide : true,
14848         /**
14849          * @event show
14850          * Fires after this menu is displayed
14851          * @param {Roo.menu.Menu} this
14852          */
14853         show : true,
14854         /**
14855          * @event hide
14856          * Fires after this menu is hidden
14857          * @param {Roo.menu.Menu} this
14858          */
14859         hide : true,
14860         /**
14861          * @event click
14862          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
14863          * @param {Roo.menu.Menu} this
14864          * @param {Roo.menu.Item} menuItem The menu item that was clicked
14865          * @param {Roo.EventObject} e
14866          */
14867         click : true,
14868         /**
14869          * @event mouseover
14870          * Fires when the mouse is hovering over this menu
14871          * @param {Roo.menu.Menu} this
14872          * @param {Roo.EventObject} e
14873          * @param {Roo.menu.Item} menuItem The menu item that was clicked
14874          */
14875         mouseover : true,
14876         /**
14877          * @event mouseout
14878          * Fires when the mouse exits this menu
14879          * @param {Roo.menu.Menu} this
14880          * @param {Roo.EventObject} e
14881          * @param {Roo.menu.Item} menuItem The menu item that was clicked
14882          */
14883         mouseout : true,
14884         /**
14885          * @event itemclick
14886          * Fires when a menu item contained in this menu is clicked
14887          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
14888          * @param {Roo.EventObject} e
14889          */
14890         itemclick: true
14891     });
14892     if (this.registerMenu) {
14893         Roo.menu.MenuMgr.register(this);
14894     }
14895     
14896     var mis = this.items;
14897     this.items = new Roo.util.MixedCollection();
14898     if(mis){
14899         this.add.apply(this, mis);
14900     }
14901 };
14902
14903 Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
14904     /**
14905      * @cfg {Number} minWidth The minimum width of the menu in pixels (defaults to 120)
14906      */
14907     minWidth : 120,
14908     /**
14909      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
14910      * for bottom-right shadow (defaults to "sides")
14911      */
14912     shadow : "sides",
14913     /**
14914      * @cfg {String} subMenuAlign The {@link Roo.Element#alignTo} anchor position value to use for submenus of
14915      * this menu (defaults to "tl-tr?")
14916      */
14917     subMenuAlign : "tl-tr?",
14918     /**
14919      * @cfg {String} defaultAlign The default {@link Roo.Element#alignTo) anchor position value for this menu
14920      * relative to its element of origin (defaults to "tl-bl?")
14921      */
14922     defaultAlign : "tl-bl?",
14923     /**
14924      * @cfg {Boolean} allowOtherMenus True to allow multiple menus to be displayed at the same time (defaults to false)
14925      */
14926     allowOtherMenus : false,
14927     /**
14928      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
14929      */
14930     registerMenu : true,
14931
14932     hidden:true,
14933
14934     // private
14935     render : function(){
14936         if(this.el){
14937             return;
14938         }
14939         var el = this.el = new Roo.Layer({
14940             cls: "x-menu",
14941             shadow:this.shadow,
14942             constrain: false,
14943             parentEl: this.parentEl || document.body,
14944             zindex:15000
14945         });
14946
14947         this.keyNav = new Roo.menu.MenuNav(this);
14948
14949         if(this.plain){
14950             el.addClass("x-menu-plain");
14951         }
14952         if(this.cls){
14953             el.addClass(this.cls);
14954         }
14955         // generic focus element
14956         this.focusEl = el.createChild({
14957             tag: "a", cls: "x-menu-focus", href: "#", onclick: "return false;", tabIndex:"-1"
14958         });
14959         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
14960         //disabling touch- as it's causing issues ..
14961         //ul.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
14962         ul.on('click'   , this.onClick, this);
14963         
14964         
14965         ul.on("mouseover", this.onMouseOver, this);
14966         ul.on("mouseout", this.onMouseOut, this);
14967         this.items.each(function(item){
14968             if (item.hidden) {
14969                 return;
14970             }
14971             
14972             var li = document.createElement("li");
14973             li.className = "x-menu-list-item";
14974             ul.dom.appendChild(li);
14975             item.render(li, this);
14976         }, this);
14977         this.ul = ul;
14978         this.autoWidth();
14979     },
14980
14981     // private
14982     autoWidth : function(){
14983         var el = this.el, ul = this.ul;
14984         if(!el){
14985             return;
14986         }
14987         var w = this.width;
14988         if(w){
14989             el.setWidth(w);
14990         }else if(Roo.isIE){
14991             el.setWidth(this.minWidth);
14992             var t = el.dom.offsetWidth; // force recalc
14993             el.setWidth(ul.getWidth()+el.getFrameWidth("lr"));
14994         }
14995     },
14996
14997     // private
14998     delayAutoWidth : function(){
14999         if(this.rendered){
15000             if(!this.awTask){
15001                 this.awTask = new Roo.util.DelayedTask(this.autoWidth, this);
15002             }
15003             this.awTask.delay(20);
15004         }
15005     },
15006
15007     // private
15008     findTargetItem : function(e){
15009         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
15010         if(t && t.menuItemId){
15011             return this.items.get(t.menuItemId);
15012         }
15013     },
15014
15015     // private
15016     onClick : function(e){
15017         Roo.log("menu.onClick");
15018         var t = this.findTargetItem(e);
15019         if(!t){
15020             return;
15021         }
15022         Roo.log(e);
15023         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
15024             if(t == this.activeItem && t.shouldDeactivate(e)){
15025                 this.activeItem.deactivate();
15026                 delete this.activeItem;
15027                 return;
15028             }
15029             if(t.canActivate){
15030                 this.setActiveItem(t, true);
15031             }
15032             return;
15033             
15034             
15035         }
15036         
15037         t.onClick(e);
15038         this.fireEvent("click", this, t, e);
15039     },
15040
15041     // private
15042     setActiveItem : function(item, autoExpand){
15043         if(item != this.activeItem){
15044             if(this.activeItem){
15045                 this.activeItem.deactivate();
15046             }
15047             this.activeItem = item;
15048             item.activate(autoExpand);
15049         }else if(autoExpand){
15050             item.expandMenu();
15051         }
15052     },
15053
15054     // private
15055     tryActivate : function(start, step){
15056         var items = this.items;
15057         for(var i = start, len = items.length; i >= 0 && i < len; i+= step){
15058             var item = items.get(i);
15059             if(!item.disabled && item.canActivate){
15060                 this.setActiveItem(item, false);
15061                 return item;
15062             }
15063         }
15064         return false;
15065     },
15066
15067     // private
15068     onMouseOver : function(e){
15069         var t;
15070         if(t = this.findTargetItem(e)){
15071             if(t.canActivate && !t.disabled){
15072                 this.setActiveItem(t, true);
15073             }
15074         }
15075         this.fireEvent("mouseover", this, e, t);
15076     },
15077
15078     // private
15079     onMouseOut : function(e){
15080         var t;
15081         if(t = this.findTargetItem(e)){
15082             if(t == this.activeItem && t.shouldDeactivate(e)){
15083                 this.activeItem.deactivate();
15084                 delete this.activeItem;
15085             }
15086         }
15087         this.fireEvent("mouseout", this, e, t);
15088     },
15089
15090     /**
15091      * Read-only.  Returns true if the menu is currently displayed, else false.
15092      * @type Boolean
15093      */
15094     isVisible : function(){
15095         return this.el && !this.hidden;
15096     },
15097
15098     /**
15099      * Displays this menu relative to another element
15100      * @param {String/HTMLElement/Roo.Element} element The element to align to
15101      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
15102      * the element (defaults to this.defaultAlign)
15103      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
15104      */
15105     show : function(el, pos, parentMenu){
15106         this.parentMenu = parentMenu;
15107         if(!this.el){
15108             this.render();
15109         }
15110         this.fireEvent("beforeshow", this);
15111         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
15112     },
15113
15114     /**
15115      * Displays this menu at a specific xy position
15116      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
15117      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
15118      */
15119     showAt : function(xy, parentMenu, /* private: */_e){
15120         this.parentMenu = parentMenu;
15121         if(!this.el){
15122             this.render();
15123         }
15124         if(_e !== false){
15125             this.fireEvent("beforeshow", this);
15126             xy = this.el.adjustForConstraints(xy);
15127         }
15128         this.el.setXY(xy);
15129         this.el.show();
15130         this.hidden = false;
15131         this.focus();
15132         this.fireEvent("show", this);
15133     },
15134
15135     focus : function(){
15136         if(!this.hidden){
15137             this.doFocus.defer(50, this);
15138         }
15139     },
15140
15141     doFocus : function(){
15142         if(!this.hidden){
15143             this.focusEl.focus();
15144         }
15145     },
15146
15147     /**
15148      * Hides this menu and optionally all parent menus
15149      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
15150      */
15151     hide : function(deep){
15152         if(this.el && this.isVisible()){
15153             this.fireEvent("beforehide", this);
15154             if(this.activeItem){
15155                 this.activeItem.deactivate();
15156                 this.activeItem = null;
15157             }
15158             this.el.hide();
15159             this.hidden = true;
15160             this.fireEvent("hide", this);
15161         }
15162         if(deep === true && this.parentMenu){
15163             this.parentMenu.hide(true);
15164         }
15165     },
15166
15167     /**
15168      * Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.
15169      * Any of the following are valid:
15170      * <ul>
15171      * <li>Any menu item object based on {@link Roo.menu.Item}</li>
15172      * <li>An HTMLElement object which will be converted to a menu item</li>
15173      * <li>A menu item config object that will be created as a new menu item</li>
15174      * <li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise
15175      * it will be converted into a {@link Roo.menu.TextItem} and added</li>
15176      * </ul>
15177      * Usage:
15178      * <pre><code>
15179 // Create the menu
15180 var menu = new Roo.menu.Menu();
15181
15182 // Create a menu item to add by reference
15183 var menuItem = new Roo.menu.Item({ text: 'New Item!' });
15184
15185 // Add a bunch of items at once using different methods.
15186 // Only the last item added will be returned.
15187 var item = menu.add(
15188     menuItem,                // add existing item by ref
15189     'Dynamic Item',          // new TextItem
15190     '-',                     // new separator
15191     { text: 'Config Item' }  // new item by config
15192 );
15193 </code></pre>
15194      * @param {Mixed} args One or more menu items, menu item configs or other objects that can be converted to menu items
15195      * @return {Roo.menu.Item} The menu item that was added, or the last one if multiple items were added
15196      */
15197     add : function(){
15198         var a = arguments, l = a.length, item;
15199         for(var i = 0; i < l; i++){
15200             var el = a[i];
15201             if ((typeof(el) == "object") && el.xtype && el.xns) {
15202                 el = Roo.factory(el, Roo.menu);
15203             }
15204             
15205             if(el.render){ // some kind of Item
15206                 item = this.addItem(el);
15207             }else if(typeof el == "string"){ // string
15208                 if(el == "separator" || el == "-"){
15209                     item = this.addSeparator();
15210                 }else{
15211                     item = this.addText(el);
15212                 }
15213             }else if(el.tagName || el.el){ // element
15214                 item = this.addElement(el);
15215             }else if(typeof el == "object"){ // must be menu item config?
15216                 item = this.addMenuItem(el);
15217             }
15218         }
15219         return item;
15220     },
15221
15222     /**
15223      * Returns this menu's underlying {@link Roo.Element} object
15224      * @return {Roo.Element} The element
15225      */
15226     getEl : function(){
15227         if(!this.el){
15228             this.render();
15229         }
15230         return this.el;
15231     },
15232
15233     /**
15234      * Adds a separator bar to the menu
15235      * @return {Roo.menu.Item} The menu item that was added
15236      */
15237     addSeparator : function(){
15238         return this.addItem(new Roo.menu.Separator());
15239     },
15240
15241     /**
15242      * Adds an {@link Roo.Element} object to the menu
15243      * @param {String/HTMLElement/Roo.Element} el The element or DOM node to add, or its id
15244      * @return {Roo.menu.Item} The menu item that was added
15245      */
15246     addElement : function(el){
15247         return this.addItem(new Roo.menu.BaseItem(el));
15248     },
15249
15250     /**
15251      * Adds an existing object based on {@link Roo.menu.Item} to the menu
15252      * @param {Roo.menu.Item} item The menu item to add
15253      * @return {Roo.menu.Item} The menu item that was added
15254      */
15255     addItem : function(item){
15256         this.items.add(item);
15257         if(this.ul){
15258             var li = document.createElement("li");
15259             li.className = "x-menu-list-item";
15260             this.ul.dom.appendChild(li);
15261             item.render(li, this);
15262             this.delayAutoWidth();
15263         }
15264         return item;
15265     },
15266
15267     /**
15268      * Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu
15269      * @param {Object} config A MenuItem config object
15270      * @return {Roo.menu.Item} The menu item that was added
15271      */
15272     addMenuItem : function(config){
15273         if(!(config instanceof Roo.menu.Item)){
15274             if(typeof config.checked == "boolean"){ // must be check menu item config?
15275                 config = new Roo.menu.CheckItem(config);
15276             }else{
15277                 config = new Roo.menu.Item(config);
15278             }
15279         }
15280         return this.addItem(config);
15281     },
15282
15283     /**
15284      * Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu
15285      * @param {String} text The text to display in the menu item
15286      * @return {Roo.menu.Item} The menu item that was added
15287      */
15288     addText : function(text){
15289         return this.addItem(new Roo.menu.TextItem({ text : text }));
15290     },
15291
15292     /**
15293      * Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index
15294      * @param {Number} index The index in the menu's list of current items where the new item should be inserted
15295      * @param {Roo.menu.Item} item The menu item to add
15296      * @return {Roo.menu.Item} The menu item that was added
15297      */
15298     insert : function(index, item){
15299         this.items.insert(index, item);
15300         if(this.ul){
15301             var li = document.createElement("li");
15302             li.className = "x-menu-list-item";
15303             this.ul.dom.insertBefore(li, this.ul.dom.childNodes[index]);
15304             item.render(li, this);
15305             this.delayAutoWidth();
15306         }
15307         return item;
15308     },
15309
15310     /**
15311      * Removes an {@link Roo.menu.Item} from the menu and destroys the object
15312      * @param {Roo.menu.Item} item The menu item to remove
15313      */
15314     remove : function(item){
15315         this.items.removeKey(item.id);
15316         item.destroy();
15317     },
15318
15319     /**
15320      * Removes and destroys all items in the menu
15321      */
15322     removeAll : function(){
15323         var f;
15324         while(f = this.items.first()){
15325             this.remove(f);
15326         }
15327     }
15328 });
15329
15330 // MenuNav is a private utility class used internally by the Menu
15331 Roo.menu.MenuNav = function(menu){
15332     Roo.menu.MenuNav.superclass.constructor.call(this, menu.el);
15333     this.scope = this.menu = menu;
15334 };
15335
15336 Roo.extend(Roo.menu.MenuNav, Roo.KeyNav, {
15337     doRelay : function(e, h){
15338         var k = e.getKey();
15339         if(!this.menu.activeItem && e.isNavKeyPress() && k != e.SPACE && k != e.RETURN){
15340             this.menu.tryActivate(0, 1);
15341             return false;
15342         }
15343         return h.call(this.scope || this, e, this.menu);
15344     },
15345
15346     up : function(e, m){
15347         if(!m.tryActivate(m.items.indexOf(m.activeItem)-1, -1)){
15348             m.tryActivate(m.items.length-1, -1);
15349         }
15350     },
15351
15352     down : function(e, m){
15353         if(!m.tryActivate(m.items.indexOf(m.activeItem)+1, 1)){
15354             m.tryActivate(0, 1);
15355         }
15356     },
15357
15358     right : function(e, m){
15359         if(m.activeItem){
15360             m.activeItem.expandMenu(true);
15361         }
15362     },
15363
15364     left : function(e, m){
15365         m.hide();
15366         if(m.parentMenu && m.parentMenu.activeItem){
15367             m.parentMenu.activeItem.activate();
15368         }
15369     },
15370
15371     enter : function(e, m){
15372         if(m.activeItem){
15373             e.stopPropagation();
15374             m.activeItem.onClick(e);
15375             m.fireEvent("click", this, m.activeItem);
15376             return true;
15377         }
15378     }
15379 });/*
15380  * Based on:
15381  * Ext JS Library 1.1.1
15382  * Copyright(c) 2006-2007, Ext JS, LLC.
15383  *
15384  * Originally Released Under LGPL - original licence link has changed is not relivant.
15385  *
15386  * Fork - LGPL
15387  * <script type="text/javascript">
15388  */
15389  
15390 /**
15391  * @class Roo.menu.MenuMgr
15392  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
15393  * @singleton
15394  */
15395 Roo.menu.MenuMgr = function(){
15396    var menus, active, groups = {}, attached = false, lastShow = new Date();
15397
15398    // private - called when first menu is created
15399    function init(){
15400        menus = {};
15401        active = new Roo.util.MixedCollection();
15402        Roo.get(document).addKeyListener(27, function(){
15403            if(active.length > 0){
15404                hideAll();
15405            }
15406        });
15407    }
15408
15409    // private
15410    function hideAll(){
15411        if(active && active.length > 0){
15412            var c = active.clone();
15413            c.each(function(m){
15414                m.hide();
15415            });
15416        }
15417    }
15418
15419    // private
15420    function onHide(m){
15421        active.remove(m);
15422        if(active.length < 1){
15423            Roo.get(document).un("mousedown", onMouseDown);
15424            attached = false;
15425        }
15426    }
15427
15428    // private
15429    function onShow(m){
15430        var last = active.last();
15431        lastShow = new Date();
15432        active.add(m);
15433        if(!attached){
15434            Roo.get(document).on("mousedown", onMouseDown);
15435            attached = true;
15436        }
15437        if(m.parentMenu){
15438           m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
15439           m.parentMenu.activeChild = m;
15440        }else if(last && last.isVisible()){
15441           m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
15442        }
15443    }
15444
15445    // private
15446    function onBeforeHide(m){
15447        if(m.activeChild){
15448            m.activeChild.hide();
15449        }
15450        if(m.autoHideTimer){
15451            clearTimeout(m.autoHideTimer);
15452            delete m.autoHideTimer;
15453        }
15454    }
15455
15456    // private
15457    function onBeforeShow(m){
15458        var pm = m.parentMenu;
15459        if(!pm && !m.allowOtherMenus){
15460            hideAll();
15461        }else if(pm && pm.activeChild && active != m){
15462            pm.activeChild.hide();
15463        }
15464    }
15465
15466    // private
15467    function onMouseDown(e){
15468        if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
15469            hideAll();
15470        }
15471    }
15472
15473    // private
15474    function onBeforeCheck(mi, state){
15475        if(state){
15476            var g = groups[mi.group];
15477            for(var i = 0, l = g.length; i < l; i++){
15478                if(g[i] != mi){
15479                    g[i].setChecked(false);
15480                }
15481            }
15482        }
15483    }
15484
15485    return {
15486
15487        /**
15488         * Hides all menus that are currently visible
15489         */
15490        hideAll : function(){
15491             hideAll();  
15492        },
15493
15494        // private
15495        register : function(menu){
15496            if(!menus){
15497                init();
15498            }
15499            menus[menu.id] = menu;
15500            menu.on("beforehide", onBeforeHide);
15501            menu.on("hide", onHide);
15502            menu.on("beforeshow", onBeforeShow);
15503            menu.on("show", onShow);
15504            var g = menu.group;
15505            if(g && menu.events["checkchange"]){
15506                if(!groups[g]){
15507                    groups[g] = [];
15508                }
15509                groups[g].push(menu);
15510                menu.on("checkchange", onCheck);
15511            }
15512        },
15513
15514         /**
15515          * Returns a {@link Roo.menu.Menu} object
15516          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
15517          * be used to generate and return a new Menu instance.
15518          */
15519        get : function(menu){
15520            if(typeof menu == "string"){ // menu id
15521                return menus[menu];
15522            }else if(menu.events){  // menu instance
15523                return menu;
15524            }else if(typeof menu.length == 'number'){ // array of menu items?
15525                return new Roo.menu.Menu({items:menu});
15526            }else{ // otherwise, must be a config
15527                return new Roo.menu.Menu(menu);
15528            }
15529        },
15530
15531        // private
15532        unregister : function(menu){
15533            delete menus[menu.id];
15534            menu.un("beforehide", onBeforeHide);
15535            menu.un("hide", onHide);
15536            menu.un("beforeshow", onBeforeShow);
15537            menu.un("show", onShow);
15538            var g = menu.group;
15539            if(g && menu.events["checkchange"]){
15540                groups[g].remove(menu);
15541                menu.un("checkchange", onCheck);
15542            }
15543        },
15544
15545        // private
15546        registerCheckable : function(menuItem){
15547            var g = menuItem.group;
15548            if(g){
15549                if(!groups[g]){
15550                    groups[g] = [];
15551                }
15552                groups[g].push(menuItem);
15553                menuItem.on("beforecheckchange", onBeforeCheck);
15554            }
15555        },
15556
15557        // private
15558        unregisterCheckable : function(menuItem){
15559            var g = menuItem.group;
15560            if(g){
15561                groups[g].remove(menuItem);
15562                menuItem.un("beforecheckchange", onBeforeCheck);
15563            }
15564        }
15565    };
15566 }();/*
15567  * Based on:
15568  * Ext JS Library 1.1.1
15569  * Copyright(c) 2006-2007, Ext JS, LLC.
15570  *
15571  * Originally Released Under LGPL - original licence link has changed is not relivant.
15572  *
15573  * Fork - LGPL
15574  * <script type="text/javascript">
15575  */
15576  
15577
15578 /**
15579  * @class Roo.menu.BaseItem
15580  * @extends Roo.Component
15581  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
15582  * management and base configuration options shared by all menu components.
15583  * @constructor
15584  * Creates a new BaseItem
15585  * @param {Object} config Configuration options
15586  */
15587 Roo.menu.BaseItem = function(config){
15588     Roo.menu.BaseItem.superclass.constructor.call(this, config);
15589
15590     this.addEvents({
15591         /**
15592          * @event click
15593          * Fires when this item is clicked
15594          * @param {Roo.menu.BaseItem} this
15595          * @param {Roo.EventObject} e
15596          */
15597         click: true,
15598         /**
15599          * @event activate
15600          * Fires when this item is activated
15601          * @param {Roo.menu.BaseItem} this
15602          */
15603         activate : true,
15604         /**
15605          * @event deactivate
15606          * Fires when this item is deactivated
15607          * @param {Roo.menu.BaseItem} this
15608          */
15609         deactivate : true
15610     });
15611
15612     if(this.handler){
15613         this.on("click", this.handler, this.scope, true);
15614     }
15615 };
15616
15617 Roo.extend(Roo.menu.BaseItem, Roo.Component, {
15618     /**
15619      * @cfg {Function} handler
15620      * A function that will handle the click event of this menu item (defaults to undefined)
15621      */
15622     /**
15623      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
15624      */
15625     canActivate : false,
15626     
15627      /**
15628      * @cfg {Boolean} hidden True to prevent creation of this menu item (defaults to false)
15629      */
15630     hidden: false,
15631     
15632     /**
15633      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
15634      */
15635     activeClass : "x-menu-item-active",
15636     /**
15637      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
15638      */
15639     hideOnClick : true,
15640     /**
15641      * @cfg {Number} hideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
15642      */
15643     hideDelay : 100,
15644
15645     // private
15646     ctype: "Roo.menu.BaseItem",
15647
15648     // private
15649     actionMode : "container",
15650
15651     // private
15652     render : function(container, parentMenu){
15653         this.parentMenu = parentMenu;
15654         Roo.menu.BaseItem.superclass.render.call(this, container);
15655         this.container.menuItemId = this.id;
15656     },
15657
15658     // private
15659     onRender : function(container, position){
15660         this.el = Roo.get(this.el);
15661         container.dom.appendChild(this.el.dom);
15662     },
15663
15664     // private
15665     onClick : function(e){
15666         if(!this.disabled && this.fireEvent("click", this, e) !== false
15667                 && this.parentMenu.fireEvent("itemclick", this, e) !== false){
15668             this.handleClick(e);
15669         }else{
15670             e.stopEvent();
15671         }
15672     },
15673
15674     // private
15675     activate : function(){
15676         if(this.disabled){
15677             return false;
15678         }
15679         var li = this.container;
15680         li.addClass(this.activeClass);
15681         this.region = li.getRegion().adjust(2, 2, -2, -2);
15682         this.fireEvent("activate", this);
15683         return true;
15684     },
15685
15686     // private
15687     deactivate : function(){
15688         this.container.removeClass(this.activeClass);
15689         this.fireEvent("deactivate", this);
15690     },
15691
15692     // private
15693     shouldDeactivate : function(e){
15694         return !this.region || !this.region.contains(e.getPoint());
15695     },
15696
15697     // private
15698     handleClick : function(e){
15699         if(this.hideOnClick){
15700             this.parentMenu.hide.defer(this.hideDelay, this.parentMenu, [true]);
15701         }
15702     },
15703
15704     // private
15705     expandMenu : function(autoActivate){
15706         // do nothing
15707     },
15708
15709     // private
15710     hideMenu : function(){
15711         // do nothing
15712     }
15713 });/*
15714  * Based on:
15715  * Ext JS Library 1.1.1
15716  * Copyright(c) 2006-2007, Ext JS, LLC.
15717  *
15718  * Originally Released Under LGPL - original licence link has changed is not relivant.
15719  *
15720  * Fork - LGPL
15721  * <script type="text/javascript">
15722  */
15723  
15724 /**
15725  * @class Roo.menu.Adapter
15726  * @extends Roo.menu.BaseItem
15727  * 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.
15728  * It provides basic rendering, activation management and enable/disable logic required to work in menus.
15729  * @constructor
15730  * Creates a new Adapter
15731  * @param {Object} config Configuration options
15732  */
15733 Roo.menu.Adapter = function(component, config){
15734     Roo.menu.Adapter.superclass.constructor.call(this, config);
15735     this.component = component;
15736 };
15737 Roo.extend(Roo.menu.Adapter, Roo.menu.BaseItem, {
15738     // private
15739     canActivate : true,
15740
15741     // private
15742     onRender : function(container, position){
15743         this.component.render(container);
15744         this.el = this.component.getEl();
15745     },
15746
15747     // private
15748     activate : function(){
15749         if(this.disabled){
15750             return false;
15751         }
15752         this.component.focus();
15753         this.fireEvent("activate", this);
15754         return true;
15755     },
15756
15757     // private
15758     deactivate : function(){
15759         this.fireEvent("deactivate", this);
15760     },
15761
15762     // private
15763     disable : function(){
15764         this.component.disable();
15765         Roo.menu.Adapter.superclass.disable.call(this);
15766     },
15767
15768     // private
15769     enable : function(){
15770         this.component.enable();
15771         Roo.menu.Adapter.superclass.enable.call(this);
15772     }
15773 });/*
15774  * Based on:
15775  * Ext JS Library 1.1.1
15776  * Copyright(c) 2006-2007, Ext JS, LLC.
15777  *
15778  * Originally Released Under LGPL - original licence link has changed is not relivant.
15779  *
15780  * Fork - LGPL
15781  * <script type="text/javascript">
15782  */
15783
15784 /**
15785  * @class Roo.menu.TextItem
15786  * @extends Roo.menu.BaseItem
15787  * Adds a static text string to a menu, usually used as either a heading or group separator.
15788  * Note: old style constructor with text is still supported.
15789  * 
15790  * @constructor
15791  * Creates a new TextItem
15792  * @param {Object} cfg Configuration
15793  */
15794 Roo.menu.TextItem = function(cfg){
15795     if (typeof(cfg) == 'string') {
15796         this.text = cfg;
15797     } else {
15798         Roo.apply(this,cfg);
15799     }
15800     
15801     Roo.menu.TextItem.superclass.constructor.call(this);
15802 };
15803
15804 Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, {
15805     /**
15806      * @cfg {Boolean} text Text to show on item.
15807      */
15808     text : '',
15809     
15810     /**
15811      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
15812      */
15813     hideOnClick : false,
15814     /**
15815      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
15816      */
15817     itemCls : "x-menu-text",
15818
15819     // private
15820     onRender : function(){
15821         var s = document.createElement("span");
15822         s.className = this.itemCls;
15823         s.innerHTML = this.text;
15824         this.el = s;
15825         Roo.menu.TextItem.superclass.onRender.apply(this, arguments);
15826     }
15827 });/*
15828  * Based on:
15829  * Ext JS Library 1.1.1
15830  * Copyright(c) 2006-2007, Ext JS, LLC.
15831  *
15832  * Originally Released Under LGPL - original licence link has changed is not relivant.
15833  *
15834  * Fork - LGPL
15835  * <script type="text/javascript">
15836  */
15837
15838 /**
15839  * @class Roo.menu.Separator
15840  * @extends Roo.menu.BaseItem
15841  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
15842  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
15843  * @constructor
15844  * @param {Object} config Configuration options
15845  */
15846 Roo.menu.Separator = function(config){
15847     Roo.menu.Separator.superclass.constructor.call(this, config);
15848 };
15849
15850 Roo.extend(Roo.menu.Separator, Roo.menu.BaseItem, {
15851     /**
15852      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
15853      */
15854     itemCls : "x-menu-sep",
15855     /**
15856      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
15857      */
15858     hideOnClick : false,
15859
15860     // private
15861     onRender : function(li){
15862         var s = document.createElement("span");
15863         s.className = this.itemCls;
15864         s.innerHTML = "&#160;";
15865         this.el = s;
15866         li.addClass("x-menu-sep-li");
15867         Roo.menu.Separator.superclass.onRender.apply(this, arguments);
15868     }
15869 });/*
15870  * Based on:
15871  * Ext JS Library 1.1.1
15872  * Copyright(c) 2006-2007, Ext JS, LLC.
15873  *
15874  * Originally Released Under LGPL - original licence link has changed is not relivant.
15875  *
15876  * Fork - LGPL
15877  * <script type="text/javascript">
15878  */
15879 /**
15880  * @class Roo.menu.Item
15881  * @extends Roo.menu.BaseItem
15882  * A base class for all menu items that require menu-related functionality (like sub-menus) and are not static
15883  * display items.  Item extends the base functionality of {@link Roo.menu.BaseItem} by adding menu-specific
15884  * activation and click handling.
15885  * @constructor
15886  * Creates a new Item
15887  * @param {Object} config Configuration options
15888  */
15889 Roo.menu.Item = function(config){
15890     Roo.menu.Item.superclass.constructor.call(this, config);
15891     if(this.menu){
15892         this.menu = Roo.menu.MenuMgr.get(this.menu);
15893     }
15894 };
15895 Roo.extend(Roo.menu.Item, Roo.menu.BaseItem, {
15896     
15897     /**
15898      * @cfg {String} text
15899      * The text to show on the menu item.
15900      */
15901     text: '',
15902      /**
15903      * @cfg {String} HTML to render in menu
15904      * The text to show on the menu item (HTML version).
15905      */
15906     html: '',
15907     /**
15908      * @cfg {String} icon
15909      * The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)
15910      */
15911     icon: undefined,
15912     /**
15913      * @cfg {String} itemCls The default CSS class to use for menu items (defaults to "x-menu-item")
15914      */
15915     itemCls : "x-menu-item",
15916     /**
15917      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to true)
15918      */
15919     canActivate : true,
15920     /**
15921      * @cfg {Number} showDelay Length of time in milliseconds to wait before showing this item (defaults to 200)
15922      */
15923     showDelay: 200,
15924     // doc'd in BaseItem
15925     hideDelay: 200,
15926
15927     // private
15928     ctype: "Roo.menu.Item",
15929     
15930     // private
15931     onRender : function(container, position){
15932         var el = document.createElement("a");
15933         el.hideFocus = true;
15934         el.unselectable = "on";
15935         el.href = this.href || "#";
15936         if(this.hrefTarget){
15937             el.target = this.hrefTarget;
15938         }
15939         el.className = this.itemCls + (this.menu ?  " x-menu-item-arrow" : "") + (this.cls ?  " " + this.cls : "");
15940         
15941         var html = this.html.length ? this.html  : String.format('{0}',this.text);
15942         
15943         el.innerHTML = String.format(
15944                 '<img src="{0}" class="x-menu-item-icon {1}" />' + html,
15945                 this.icon || Roo.BLANK_IMAGE_URL, this.iconCls || '');
15946         this.el = el;
15947         Roo.menu.Item.superclass.onRender.call(this, container, position);
15948     },
15949
15950     /**
15951      * Sets the text to display in this menu item
15952      * @param {String} text The text to display
15953      * @param {Boolean} isHTML true to indicate text is pure html.
15954      */
15955     setText : function(text, isHTML){
15956         if (isHTML) {
15957             this.html = text;
15958         } else {
15959             this.text = text;
15960             this.html = '';
15961         }
15962         if(this.rendered){
15963             var html = this.html.length ? this.html  : String.format('{0}',this.text);
15964      
15965             this.el.update(String.format(
15966                 '<img src="{0}" class="x-menu-item-icon {2}">' + html,
15967                 this.icon || Roo.BLANK_IMAGE_URL, this.text, this.iconCls || ''));
15968             this.parentMenu.autoWidth();
15969         }
15970     },
15971
15972     // private
15973     handleClick : function(e){
15974         if(!this.href){ // if no link defined, stop the event automatically
15975             e.stopEvent();
15976         }
15977         Roo.menu.Item.superclass.handleClick.apply(this, arguments);
15978     },
15979
15980     // private
15981     activate : function(autoExpand){
15982         if(Roo.menu.Item.superclass.activate.apply(this, arguments)){
15983             this.focus();
15984             if(autoExpand){
15985                 this.expandMenu();
15986             }
15987         }
15988         return true;
15989     },
15990
15991     // private
15992     shouldDeactivate : function(e){
15993         if(Roo.menu.Item.superclass.shouldDeactivate.call(this, e)){
15994             if(this.menu && this.menu.isVisible()){
15995                 return !this.menu.getEl().getRegion().contains(e.getPoint());
15996             }
15997             return true;
15998         }
15999         return false;
16000     },
16001
16002     // private
16003     deactivate : function(){
16004         Roo.menu.Item.superclass.deactivate.apply(this, arguments);
16005         this.hideMenu();
16006     },
16007
16008     // private
16009     expandMenu : function(autoActivate){
16010         if(!this.disabled && this.menu){
16011             clearTimeout(this.hideTimer);
16012             delete this.hideTimer;
16013             if(!this.menu.isVisible() && !this.showTimer){
16014                 this.showTimer = this.deferExpand.defer(this.showDelay, this, [autoActivate]);
16015             }else if (this.menu.isVisible() && autoActivate){
16016                 this.menu.tryActivate(0, 1);
16017             }
16018         }
16019     },
16020
16021     // private
16022     deferExpand : function(autoActivate){
16023         delete this.showTimer;
16024         this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
16025         if(autoActivate){
16026             this.menu.tryActivate(0, 1);
16027         }
16028     },
16029
16030     // private
16031     hideMenu : function(){
16032         clearTimeout(this.showTimer);
16033         delete this.showTimer;
16034         if(!this.hideTimer && this.menu && this.menu.isVisible()){
16035             this.hideTimer = this.deferHide.defer(this.hideDelay, this);
16036         }
16037     },
16038
16039     // private
16040     deferHide : function(){
16041         delete this.hideTimer;
16042         this.menu.hide();
16043     }
16044 });/*
16045  * Based on:
16046  * Ext JS Library 1.1.1
16047  * Copyright(c) 2006-2007, Ext JS, LLC.
16048  *
16049  * Originally Released Under LGPL - original licence link has changed is not relivant.
16050  *
16051  * Fork - LGPL
16052  * <script type="text/javascript">
16053  */
16054  
16055 /**
16056  * @class Roo.menu.CheckItem
16057  * @extends Roo.menu.Item
16058  * Adds a menu item that contains a checkbox by default, but can also be part of a radio group.
16059  * @constructor
16060  * Creates a new CheckItem
16061  * @param {Object} config Configuration options
16062  */
16063 Roo.menu.CheckItem = function(config){
16064     Roo.menu.CheckItem.superclass.constructor.call(this, config);
16065     this.addEvents({
16066         /**
16067          * @event beforecheckchange
16068          * Fires before the checked value is set, providing an opportunity to cancel if needed
16069          * @param {Roo.menu.CheckItem} this
16070          * @param {Boolean} checked The new checked value that will be set
16071          */
16072         "beforecheckchange" : true,
16073         /**
16074          * @event checkchange
16075          * Fires after the checked value has been set
16076          * @param {Roo.menu.CheckItem} this
16077          * @param {Boolean} checked The checked value that was set
16078          */
16079         "checkchange" : true
16080     });
16081     if(this.checkHandler){
16082         this.on('checkchange', this.checkHandler, this.scope);
16083     }
16084 };
16085 Roo.extend(Roo.menu.CheckItem, Roo.menu.Item, {
16086     /**
16087      * @cfg {String} group
16088      * All check items with the same group name will automatically be grouped into a single-select
16089      * radio button group (defaults to '')
16090      */
16091     /**
16092      * @cfg {String} itemCls The default CSS class to use for check items (defaults to "x-menu-item x-menu-check-item")
16093      */
16094     itemCls : "x-menu-item x-menu-check-item",
16095     /**
16096      * @cfg {String} groupClass The default CSS class to use for radio group check items (defaults to "x-menu-group-item")
16097      */
16098     groupClass : "x-menu-group-item",
16099
16100     /**
16101      * @cfg {Boolean} checked True to initialize this checkbox as checked (defaults to false).  Note that
16102      * if this checkbox is part of a radio group (group = true) only the last item in the group that is
16103      * initialized with checked = true will be rendered as checked.
16104      */
16105     checked: false,
16106
16107     // private
16108     ctype: "Roo.menu.CheckItem",
16109
16110     // private
16111     onRender : function(c){
16112         Roo.menu.CheckItem.superclass.onRender.apply(this, arguments);
16113         if(this.group){
16114             this.el.addClass(this.groupClass);
16115         }
16116         Roo.menu.MenuMgr.registerCheckable(this);
16117         if(this.checked){
16118             this.checked = false;
16119             this.setChecked(true, true);
16120         }
16121     },
16122
16123     // private
16124     destroy : function(){
16125         if(this.rendered){
16126             Roo.menu.MenuMgr.unregisterCheckable(this);
16127         }
16128         Roo.menu.CheckItem.superclass.destroy.apply(this, arguments);
16129     },
16130
16131     /**
16132      * Set the checked state of this item
16133      * @param {Boolean} checked The new checked value
16134      * @param {Boolean} suppressEvent (optional) True to prevent the checkchange event from firing (defaults to false)
16135      */
16136     setChecked : function(state, suppressEvent){
16137         if(this.checked != state && this.fireEvent("beforecheckchange", this, state) !== false){
16138             if(this.container){
16139                 this.container[state ? "addClass" : "removeClass"]("x-menu-item-checked");
16140             }
16141             this.checked = state;
16142             if(suppressEvent !== true){
16143                 this.fireEvent("checkchange", this, state);
16144             }
16145         }
16146     },
16147
16148     // private
16149     handleClick : function(e){
16150        if(!this.disabled && !(this.checked && this.group)){// disable unselect on radio item
16151            this.setChecked(!this.checked);
16152        }
16153        Roo.menu.CheckItem.superclass.handleClick.apply(this, arguments);
16154     }
16155 });/*
16156  * Based on:
16157  * Ext JS Library 1.1.1
16158  * Copyright(c) 2006-2007, Ext JS, LLC.
16159  *
16160  * Originally Released Under LGPL - original licence link has changed is not relivant.
16161  *
16162  * Fork - LGPL
16163  * <script type="text/javascript">
16164  */
16165  
16166 /**
16167  * @class Roo.menu.DateItem
16168  * @extends Roo.menu.Adapter
16169  * A menu item that wraps the {@link Roo.DatPicker} component.
16170  * @constructor
16171  * Creates a new DateItem
16172  * @param {Object} config Configuration options
16173  */
16174 Roo.menu.DateItem = function(config){
16175     Roo.menu.DateItem.superclass.constructor.call(this, new Roo.DatePicker(config), config);
16176     /** The Roo.DatePicker object @type Roo.DatePicker */
16177     this.picker = this.component;
16178     this.addEvents({select: true});
16179     
16180     this.picker.on("render", function(picker){
16181         picker.getEl().swallowEvent("click");
16182         picker.container.addClass("x-menu-date-item");
16183     });
16184
16185     this.picker.on("select", this.onSelect, this);
16186 };
16187
16188 Roo.extend(Roo.menu.DateItem, Roo.menu.Adapter, {
16189     // private
16190     onSelect : function(picker, date){
16191         this.fireEvent("select", this, date, picker);
16192         Roo.menu.DateItem.superclass.handleClick.call(this);
16193     }
16194 });/*
16195  * Based on:
16196  * Ext JS Library 1.1.1
16197  * Copyright(c) 2006-2007, Ext JS, LLC.
16198  *
16199  * Originally Released Under LGPL - original licence link has changed is not relivant.
16200  *
16201  * Fork - LGPL
16202  * <script type="text/javascript">
16203  */
16204  
16205 /**
16206  * @class Roo.menu.ColorItem
16207  * @extends Roo.menu.Adapter
16208  * A menu item that wraps the {@link Roo.ColorPalette} component.
16209  * @constructor
16210  * Creates a new ColorItem
16211  * @param {Object} config Configuration options
16212  */
16213 Roo.menu.ColorItem = function(config){
16214     Roo.menu.ColorItem.superclass.constructor.call(this, new Roo.ColorPalette(config), config);
16215     /** The Roo.ColorPalette object @type Roo.ColorPalette */
16216     this.palette = this.component;
16217     this.relayEvents(this.palette, ["select"]);
16218     if(this.selectHandler){
16219         this.on('select', this.selectHandler, this.scope);
16220     }
16221 };
16222 Roo.extend(Roo.menu.ColorItem, Roo.menu.Adapter);/*
16223  * Based on:
16224  * Ext JS Library 1.1.1
16225  * Copyright(c) 2006-2007, Ext JS, LLC.
16226  *
16227  * Originally Released Under LGPL - original licence link has changed is not relivant.
16228  *
16229  * Fork - LGPL
16230  * <script type="text/javascript">
16231  */
16232  
16233
16234 /**
16235  * @class Roo.menu.DateMenu
16236  * @extends Roo.menu.Menu
16237  * A menu containing a {@link Roo.menu.DateItem} component (which provides a date picker).
16238  * @constructor
16239  * Creates a new DateMenu
16240  * @param {Object} config Configuration options
16241  */
16242 Roo.menu.DateMenu = function(config){
16243     Roo.menu.DateMenu.superclass.constructor.call(this, config);
16244     this.plain = true;
16245     var di = new Roo.menu.DateItem(config);
16246     this.add(di);
16247     /**
16248      * The {@link Roo.DatePicker} instance for this DateMenu
16249      * @type DatePicker
16250      */
16251     this.picker = di.picker;
16252     /**
16253      * @event select
16254      * @param {DatePicker} picker
16255      * @param {Date} date
16256      */
16257     this.relayEvents(di, ["select"]);
16258     this.on('beforeshow', function(){
16259         if(this.picker){
16260             this.picker.hideMonthPicker(false);
16261         }
16262     }, this);
16263 };
16264 Roo.extend(Roo.menu.DateMenu, Roo.menu.Menu, {
16265     cls:'x-date-menu'
16266 });/*
16267  * Based on:
16268  * Ext JS Library 1.1.1
16269  * Copyright(c) 2006-2007, Ext JS, LLC.
16270  *
16271  * Originally Released Under LGPL - original licence link has changed is not relivant.
16272  *
16273  * Fork - LGPL
16274  * <script type="text/javascript">
16275  */
16276  
16277
16278 /**
16279  * @class Roo.menu.ColorMenu
16280  * @extends Roo.menu.Menu
16281  * A menu containing a {@link Roo.menu.ColorItem} component (which provides a basic color picker).
16282  * @constructor
16283  * Creates a new ColorMenu
16284  * @param {Object} config Configuration options
16285  */
16286 Roo.menu.ColorMenu = function(config){
16287     Roo.menu.ColorMenu.superclass.constructor.call(this, config);
16288     this.plain = true;
16289     var ci = new Roo.menu.ColorItem(config);
16290     this.add(ci);
16291     /**
16292      * The {@link Roo.ColorPalette} instance for this ColorMenu
16293      * @type ColorPalette
16294      */
16295     this.palette = ci.palette;
16296     /**
16297      * @event select
16298      * @param {ColorPalette} palette
16299      * @param {String} color
16300      */
16301     this.relayEvents(ci, ["select"]);
16302 };
16303 Roo.extend(Roo.menu.ColorMenu, Roo.menu.Menu);/*
16304  * Based on:
16305  * Ext JS Library 1.1.1
16306  * Copyright(c) 2006-2007, Ext JS, LLC.
16307  *
16308  * Originally Released Under LGPL - original licence link has changed is not relivant.
16309  *
16310  * Fork - LGPL
16311  * <script type="text/javascript">
16312  */
16313  
16314 /**
16315  * @class Roo.form.TextItem
16316  * @extends Roo.BoxComponent
16317  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
16318  * @constructor
16319  * Creates a new TextItem
16320  * @param {Object} config Configuration options
16321  */
16322 Roo.form.TextItem = function(config){
16323     Roo.form.TextItem.superclass.constructor.call(this, config);
16324 };
16325
16326 Roo.extend(Roo.form.TextItem, Roo.BoxComponent,  {
16327     
16328     /**
16329      * @cfg {String} tag the tag for this item (default div)
16330      */
16331     tag : 'div',
16332     /**
16333      * @cfg {String} html the content for this item
16334      */
16335     html : '',
16336     
16337     getAutoCreate : function()
16338     {
16339         var cfg = {
16340             id: this.id,
16341             tag: this.tag,
16342             html: this.html,
16343             cls: 'x-form-item'
16344         };
16345         
16346         return cfg;
16347         
16348     },
16349     
16350     onRender : function(ct, position)
16351     {
16352         Roo.form.TextItem.superclass.onRender.call(this, ct, position);
16353         
16354         if(!this.el){
16355             var cfg = this.getAutoCreate();
16356             if(!cfg.name){
16357                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
16358             }
16359             if (!cfg.name.length) {
16360                 delete cfg.name;
16361             }
16362             this.el = ct.createChild(cfg, position);
16363         }
16364     }
16365     
16366 });/*
16367  * Based on:
16368  * Ext JS Library 1.1.1
16369  * Copyright(c) 2006-2007, Ext JS, LLC.
16370  *
16371  * Originally Released Under LGPL - original licence link has changed is not relivant.
16372  *
16373  * Fork - LGPL
16374  * <script type="text/javascript">
16375  */
16376  
16377 /**
16378  * @class Roo.form.Field
16379  * @extends Roo.BoxComponent
16380  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
16381  * @constructor
16382  * Creates a new Field
16383  * @param {Object} config Configuration options
16384  */
16385 Roo.form.Field = function(config){
16386     Roo.form.Field.superclass.constructor.call(this, config);
16387 };
16388
16389 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
16390     /**
16391      * @cfg {String} fieldLabel Label to use when rendering a form.
16392      */
16393        /**
16394      * @cfg {String} qtip Mouse over tip
16395      */
16396      
16397     /**
16398      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
16399      */
16400     invalidClass : "x-form-invalid",
16401     /**
16402      * @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")
16403      */
16404     invalidText : "The value in this field is invalid",
16405     /**
16406      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
16407      */
16408     focusClass : "x-form-focus",
16409     /**
16410      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
16411       automatic validation (defaults to "keyup").
16412      */
16413     validationEvent : "keyup",
16414     /**
16415      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
16416      */
16417     validateOnBlur : true,
16418     /**
16419      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
16420      */
16421     validationDelay : 250,
16422     /**
16423      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
16424      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
16425      */
16426     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "new-password"},
16427     /**
16428      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
16429      */
16430     fieldClass : "x-form-field",
16431     /**
16432      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
16433      *<pre>
16434 Value         Description
16435 -----------   ----------------------------------------------------------------------
16436 qtip          Display a quick tip when the user hovers over the field
16437 title         Display a default browser title attribute popup
16438 under         Add a block div beneath the field containing the error text
16439 side          Add an error icon to the right of the field with a popup on hover
16440 [element id]  Add the error text directly to the innerHTML of the specified element
16441 </pre>
16442      */
16443     msgTarget : 'qtip',
16444     /**
16445      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
16446      */
16447     msgFx : 'normal',
16448
16449     /**
16450      * @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.
16451      */
16452     readOnly : false,
16453
16454     /**
16455      * @cfg {Boolean} disabled True to disable the field (defaults to false).
16456      */
16457     disabled : false,
16458
16459     /**
16460      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
16461      */
16462     inputType : undefined,
16463     
16464     /**
16465      * @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).
16466          */
16467         tabIndex : undefined,
16468         
16469     // private
16470     isFormField : true,
16471
16472     // private
16473     hasFocus : false,
16474     /**
16475      * @property {Roo.Element} fieldEl
16476      * Element Containing the rendered Field (with label etc.)
16477      */
16478     /**
16479      * @cfg {Mixed} value A value to initialize this field with.
16480      */
16481     value : undefined,
16482
16483     /**
16484      * @cfg {String} name The field's HTML name attribute.
16485      */
16486     /**
16487      * @cfg {String} cls A CSS class to apply to the field's underlying element.
16488      */
16489     // private
16490     loadedValue : false,
16491      
16492      
16493         // private ??
16494         initComponent : function(){
16495         Roo.form.Field.superclass.initComponent.call(this);
16496         this.addEvents({
16497             /**
16498              * @event focus
16499              * Fires when this field receives input focus.
16500              * @param {Roo.form.Field} this
16501              */
16502             focus : true,
16503             /**
16504              * @event blur
16505              * Fires when this field loses input focus.
16506              * @param {Roo.form.Field} this
16507              */
16508             blur : true,
16509             /**
16510              * @event specialkey
16511              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
16512              * {@link Roo.EventObject#getKey} to determine which key was pressed.
16513              * @param {Roo.form.Field} this
16514              * @param {Roo.EventObject} e The event object
16515              */
16516             specialkey : true,
16517             /**
16518              * @event change
16519              * Fires just before the field blurs if the field value has changed.
16520              * @param {Roo.form.Field} this
16521              * @param {Mixed} newValue The new value
16522              * @param {Mixed} oldValue The original value
16523              */
16524             change : true,
16525             /**
16526              * @event invalid
16527              * Fires after the field has been marked as invalid.
16528              * @param {Roo.form.Field} this
16529              * @param {String} msg The validation message
16530              */
16531             invalid : true,
16532             /**
16533              * @event valid
16534              * Fires after the field has been validated with no errors.
16535              * @param {Roo.form.Field} this
16536              */
16537             valid : true,
16538              /**
16539              * @event keyup
16540              * Fires after the key up
16541              * @param {Roo.form.Field} this
16542              * @param {Roo.EventObject}  e The event Object
16543              */
16544             keyup : true
16545         });
16546     },
16547
16548     /**
16549      * Returns the name attribute of the field if available
16550      * @return {String} name The field name
16551      */
16552     getName: function(){
16553          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
16554     },
16555
16556     // private
16557     onRender : function(ct, position){
16558         Roo.form.Field.superclass.onRender.call(this, ct, position);
16559         if(!this.el){
16560             var cfg = this.getAutoCreate();
16561             if(!cfg.name){
16562                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
16563             }
16564             if (!cfg.name.length) {
16565                 delete cfg.name;
16566             }
16567             if(this.inputType){
16568                 cfg.type = this.inputType;
16569             }
16570             this.el = ct.createChild(cfg, position);
16571         }
16572         var type = this.el.dom.type;
16573         if(type){
16574             if(type == 'password'){
16575                 type = 'text';
16576             }
16577             this.el.addClass('x-form-'+type);
16578         }
16579         if(this.readOnly){
16580             this.el.dom.readOnly = true;
16581         }
16582         if(this.tabIndex !== undefined){
16583             this.el.dom.setAttribute('tabIndex', this.tabIndex);
16584         }
16585
16586         this.el.addClass([this.fieldClass, this.cls]);
16587         this.initValue();
16588     },
16589
16590     /**
16591      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
16592      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
16593      * @return {Roo.form.Field} this
16594      */
16595     applyTo : function(target){
16596         this.allowDomMove = false;
16597         this.el = Roo.get(target);
16598         this.render(this.el.dom.parentNode);
16599         return this;
16600     },
16601
16602     // private
16603     initValue : function(){
16604         if(this.value !== undefined){
16605             this.setValue(this.value);
16606         }else if(this.el.dom.value.length > 0){
16607             this.setValue(this.el.dom.value);
16608         }
16609     },
16610
16611     /**
16612      * Returns true if this field has been changed since it was originally loaded and is not disabled.
16613      * DEPRICATED  - it never worked well - use hasChanged/resetHasChanged.
16614      */
16615     isDirty : function() {
16616         if(this.disabled) {
16617             return false;
16618         }
16619         return String(this.getValue()) !== String(this.originalValue);
16620     },
16621
16622     /**
16623      * stores the current value in loadedValue
16624      */
16625     resetHasChanged : function()
16626     {
16627         this.loadedValue = String(this.getValue());
16628     },
16629     /**
16630      * checks the current value against the 'loaded' value.
16631      * Note - will return false if 'resetHasChanged' has not been called first.
16632      */
16633     hasChanged : function()
16634     {
16635         if(this.disabled || this.readOnly) {
16636             return false;
16637         }
16638         return this.loadedValue !== false && String(this.getValue()) !== this.loadedValue;
16639     },
16640     
16641     
16642     
16643     // private
16644     afterRender : function(){
16645         Roo.form.Field.superclass.afterRender.call(this);
16646         this.initEvents();
16647     },
16648
16649     // private
16650     fireKey : function(e){
16651         //Roo.log('field ' + e.getKey());
16652         if(e.isNavKeyPress()){
16653             this.fireEvent("specialkey", this, e);
16654         }
16655     },
16656
16657     /**
16658      * Resets the current field value to the originally loaded value and clears any validation messages
16659      */
16660     reset : function(){
16661         this.setValue(this.resetValue);
16662         this.originalValue = this.getValue();
16663         this.clearInvalid();
16664     },
16665
16666     // private
16667     initEvents : function(){
16668         // safari killled keypress - so keydown is now used..
16669         this.el.on("keydown" , this.fireKey,  this);
16670         this.el.on("focus", this.onFocus,  this);
16671         this.el.on("blur", this.onBlur,  this);
16672         this.el.relayEvent('keyup', this);
16673
16674         // reference to original value for reset
16675         this.originalValue = this.getValue();
16676         this.resetValue =  this.getValue();
16677     },
16678
16679     // private
16680     onFocus : function(){
16681         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
16682             this.el.addClass(this.focusClass);
16683         }
16684         if(!this.hasFocus){
16685             this.hasFocus = true;
16686             this.startValue = this.getValue();
16687             this.fireEvent("focus", this);
16688         }
16689     },
16690
16691     beforeBlur : Roo.emptyFn,
16692
16693     // private
16694     onBlur : function(){
16695         this.beforeBlur();
16696         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
16697             this.el.removeClass(this.focusClass);
16698         }
16699         this.hasFocus = false;
16700         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
16701             this.validate();
16702         }
16703         var v = this.getValue();
16704         if(String(v) !== String(this.startValue)){
16705             this.fireEvent('change', this, v, this.startValue);
16706         }
16707         this.fireEvent("blur", this);
16708     },
16709
16710     /**
16711      * Returns whether or not the field value is currently valid
16712      * @param {Boolean} preventMark True to disable marking the field invalid
16713      * @return {Boolean} True if the value is valid, else false
16714      */
16715     isValid : function(preventMark){
16716         if(this.disabled){
16717             return true;
16718         }
16719         var restore = this.preventMark;
16720         this.preventMark = preventMark === true;
16721         var v = this.validateValue(this.processValue(this.getRawValue()));
16722         this.preventMark = restore;
16723         return v;
16724     },
16725
16726     /**
16727      * Validates the field value
16728      * @return {Boolean} True if the value is valid, else false
16729      */
16730     validate : function(){
16731         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
16732             this.clearInvalid();
16733             return true;
16734         }
16735         return false;
16736     },
16737
16738     processValue : function(value){
16739         return value;
16740     },
16741
16742     // private
16743     // Subclasses should provide the validation implementation by overriding this
16744     validateValue : function(value){
16745         return true;
16746     },
16747
16748     /**
16749      * Mark this field as invalid
16750      * @param {String} msg The validation message
16751      */
16752     markInvalid : function(msg){
16753         if(!this.rendered || this.preventMark){ // not rendered
16754             return;
16755         }
16756         
16757         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
16758         
16759         obj.el.addClass(this.invalidClass);
16760         msg = msg || this.invalidText;
16761         switch(this.msgTarget){
16762             case 'qtip':
16763                 obj.el.dom.qtip = msg;
16764                 obj.el.dom.qclass = 'x-form-invalid-tip';
16765                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
16766                     Roo.QuickTips.enable();
16767                 }
16768                 break;
16769             case 'title':
16770                 this.el.dom.title = msg;
16771                 break;
16772             case 'under':
16773                 if(!this.errorEl){
16774                     var elp = this.el.findParent('.x-form-element', 5, true);
16775                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
16776                     this.errorEl.setWidth(elp.getWidth(true)-20);
16777                 }
16778                 this.errorEl.update(msg);
16779                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
16780                 break;
16781             case 'side':
16782                 if(!this.errorIcon){
16783                     var elp = this.el.findParent('.x-form-element', 5, true);
16784                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
16785                 }
16786                 this.alignErrorIcon();
16787                 this.errorIcon.dom.qtip = msg;
16788                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
16789                 this.errorIcon.show();
16790                 this.on('resize', this.alignErrorIcon, this);
16791                 break;
16792             default:
16793                 var t = Roo.getDom(this.msgTarget);
16794                 t.innerHTML = msg;
16795                 t.style.display = this.msgDisplay;
16796                 break;
16797         }
16798         this.fireEvent('invalid', this, msg);
16799     },
16800
16801     // private
16802     alignErrorIcon : function(){
16803         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
16804     },
16805
16806     /**
16807      * Clear any invalid styles/messages for this field
16808      */
16809     clearInvalid : function(){
16810         if(!this.rendered || this.preventMark){ // not rendered
16811             return;
16812         }
16813         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
16814         
16815         obj.el.removeClass(this.invalidClass);
16816         switch(this.msgTarget){
16817             case 'qtip':
16818                 obj.el.dom.qtip = '';
16819                 break;
16820             case 'title':
16821                 this.el.dom.title = '';
16822                 break;
16823             case 'under':
16824                 if(this.errorEl){
16825                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
16826                 }
16827                 break;
16828             case 'side':
16829                 if(this.errorIcon){
16830                     this.errorIcon.dom.qtip = '';
16831                     this.errorIcon.hide();
16832                     this.un('resize', this.alignErrorIcon, this);
16833                 }
16834                 break;
16835             default:
16836                 var t = Roo.getDom(this.msgTarget);
16837                 t.innerHTML = '';
16838                 t.style.display = 'none';
16839                 break;
16840         }
16841         this.fireEvent('valid', this);
16842     },
16843
16844     /**
16845      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
16846      * @return {Mixed} value The field value
16847      */
16848     getRawValue : function(){
16849         var v = this.el.getValue();
16850         
16851         return v;
16852     },
16853
16854     /**
16855      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
16856      * @return {Mixed} value The field value
16857      */
16858     getValue : function(){
16859         var v = this.el.getValue();
16860          
16861         return v;
16862     },
16863
16864     /**
16865      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
16866      * @param {Mixed} value The value to set
16867      */
16868     setRawValue : function(v){
16869         return this.el.dom.value = (v === null || v === undefined ? '' : v);
16870     },
16871
16872     /**
16873      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
16874      * @param {Mixed} value The value to set
16875      */
16876     setValue : function(v){
16877         this.value = v;
16878         if(this.rendered){
16879             this.el.dom.value = (v === null || v === undefined ? '' : v);
16880              this.validate();
16881         }
16882     },
16883
16884     adjustSize : function(w, h){
16885         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
16886         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
16887         return s;
16888     },
16889
16890     adjustWidth : function(tag, w){
16891         tag = tag.toLowerCase();
16892         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
16893             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
16894                 if(tag == 'input'){
16895                     return w + 2;
16896                 }
16897                 if(tag == 'textarea'){
16898                     return w-2;
16899                 }
16900             }else if(Roo.isOpera){
16901                 if(tag == 'input'){
16902                     return w + 2;
16903                 }
16904                 if(tag == 'textarea'){
16905                     return w-2;
16906                 }
16907             }
16908         }
16909         return w;
16910     }
16911 });
16912
16913
16914 // anything other than normal should be considered experimental
16915 Roo.form.Field.msgFx = {
16916     normal : {
16917         show: function(msgEl, f){
16918             msgEl.setDisplayed('block');
16919         },
16920
16921         hide : function(msgEl, f){
16922             msgEl.setDisplayed(false).update('');
16923         }
16924     },
16925
16926     slide : {
16927         show: function(msgEl, f){
16928             msgEl.slideIn('t', {stopFx:true});
16929         },
16930
16931         hide : function(msgEl, f){
16932             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
16933         }
16934     },
16935
16936     slideRight : {
16937         show: function(msgEl, f){
16938             msgEl.fixDisplay();
16939             msgEl.alignTo(f.el, 'tl-tr');
16940             msgEl.slideIn('l', {stopFx:true});
16941         },
16942
16943         hide : function(msgEl, f){
16944             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
16945         }
16946     }
16947 };/*
16948  * Based on:
16949  * Ext JS Library 1.1.1
16950  * Copyright(c) 2006-2007, Ext JS, LLC.
16951  *
16952  * Originally Released Under LGPL - original licence link has changed is not relivant.
16953  *
16954  * Fork - LGPL
16955  * <script type="text/javascript">
16956  */
16957  
16958
16959 /**
16960  * @class Roo.form.TextField
16961  * @extends Roo.form.Field
16962  * Basic text field.  Can be used as a direct replacement for traditional text inputs, or as the base
16963  * class for more sophisticated input controls (like {@link Roo.form.TextArea} and {@link Roo.form.ComboBox}).
16964  * @constructor
16965  * Creates a new TextField
16966  * @param {Object} config Configuration options
16967  */
16968 Roo.form.TextField = function(config){
16969     Roo.form.TextField.superclass.constructor.call(this, config);
16970     this.addEvents({
16971         /**
16972          * @event autosize
16973          * Fires when the autosize function is triggered.  The field may or may not have actually changed size
16974          * according to the default logic, but this event provides a hook for the developer to apply additional
16975          * logic at runtime to resize the field if needed.
16976              * @param {Roo.form.Field} this This text field
16977              * @param {Number} width The new field width
16978              */
16979         autosize : true
16980     });
16981 };
16982
16983 Roo.extend(Roo.form.TextField, Roo.form.Field,  {
16984     /**
16985      * @cfg {Boolean} grow True if this field should automatically grow and shrink to its content
16986      */
16987     grow : false,
16988     /**
16989      * @cfg {Number} growMin The minimum width to allow when grow = true (defaults to 30)
16990      */
16991     growMin : 30,
16992     /**
16993      * @cfg {Number} growMax The maximum width to allow when grow = true (defaults to 800)
16994      */
16995     growMax : 800,
16996     /**
16997      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
16998      */
16999     vtype : null,
17000     /**
17001      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
17002      */
17003     maskRe : null,
17004     /**
17005      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
17006      */
17007     disableKeyFilter : false,
17008     /**
17009      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
17010      */
17011     allowBlank : true,
17012     /**
17013      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
17014      */
17015     minLength : 0,
17016     /**
17017      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
17018      */
17019     maxLength : Number.MAX_VALUE,
17020     /**
17021      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
17022      */
17023     minLengthText : "The minimum length for this field is {0}",
17024     /**
17025      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
17026      */
17027     maxLengthText : "The maximum length for this field is {0}",
17028     /**
17029      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
17030      */
17031     selectOnFocus : false,
17032     /**
17033      * @cfg {Boolean} allowLeadingSpace True to prevent the stripping of leading white space 
17034      */    
17035     allowLeadingSpace : false,
17036     /**
17037      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
17038      */
17039     blankText : "This field is required",
17040     /**
17041      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
17042      * If available, this function will be called only after the basic validators all return true, and will be passed the
17043      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
17044      */
17045     validator : null,
17046     /**
17047      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
17048      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
17049      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
17050      */
17051     regex : null,
17052     /**
17053      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
17054      */
17055     regexText : "",
17056     /**
17057      * @cfg {String} emptyText The default text to display in an empty field - placeholder... (defaults to null).
17058      */
17059     emptyText : null,
17060    
17061
17062     // private
17063     initEvents : function()
17064     {
17065         if (this.emptyText) {
17066             this.el.attr('placeholder', this.emptyText);
17067         }
17068         
17069         Roo.form.TextField.superclass.initEvents.call(this);
17070         if(this.validationEvent == 'keyup'){
17071             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
17072             this.el.on('keyup', this.filterValidation, this);
17073         }
17074         else if(this.validationEvent !== false){
17075             this.el.on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
17076         }
17077         
17078         if(this.selectOnFocus){
17079             this.on("focus", this.preFocus, this);
17080         }
17081         if (!this.allowLeadingSpace) {
17082             this.on('blur', this.cleanLeadingSpace, this);
17083         }
17084         
17085         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
17086             this.el.on("keypress", this.filterKeys, this);
17087         }
17088         if(this.grow){
17089             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
17090             this.el.on("click", this.autoSize,  this);
17091         }
17092         if(this.el.is('input[type=password]') && Roo.isSafari){
17093             this.el.on('keydown', this.SafariOnKeyDown, this);
17094         }
17095     },
17096
17097     processValue : function(value){
17098         if(this.stripCharsRe){
17099             var newValue = value.replace(this.stripCharsRe, '');
17100             if(newValue !== value){
17101                 this.setRawValue(newValue);
17102                 return newValue;
17103             }
17104         }
17105         return value;
17106     },
17107
17108     filterValidation : function(e){
17109         if(!e.isNavKeyPress()){
17110             this.validationTask.delay(this.validationDelay);
17111         }
17112     },
17113
17114     // private
17115     onKeyUp : function(e){
17116         if(!e.isNavKeyPress()){
17117             this.autoSize();
17118         }
17119     },
17120     // private - clean the leading white space
17121     cleanLeadingSpace : function(e)
17122     {
17123         if ( this.inputType == 'file') {
17124             return;
17125         }
17126         
17127         this.setValue((this.getValue() + '').replace(/^\s+/,''));
17128     },
17129     /**
17130      * Resets the current field value to the originally-loaded value and clears any validation messages.
17131      *  
17132      */
17133     reset : function(){
17134         Roo.form.TextField.superclass.reset.call(this);
17135        
17136     }, 
17137     // private
17138     preFocus : function(){
17139         
17140         if(this.selectOnFocus){
17141             this.el.dom.select();
17142         }
17143     },
17144
17145     
17146     // private
17147     filterKeys : function(e){
17148         var k = e.getKey();
17149         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
17150             return;
17151         }
17152         var c = e.getCharCode(), cc = String.fromCharCode(c);
17153         if(Roo.isIE && (e.isSpecialKey() || !cc)){
17154             return;
17155         }
17156         if(!this.maskRe.test(cc)){
17157             e.stopEvent();
17158         }
17159     },
17160
17161     setValue : function(v){
17162         
17163         Roo.form.TextField.superclass.setValue.apply(this, arguments);
17164         
17165         this.autoSize();
17166     },
17167
17168     /**
17169      * Validates a value according to the field's validation rules and marks the field as invalid
17170      * if the validation fails
17171      * @param {Mixed} value The value to validate
17172      * @return {Boolean} True if the value is valid, else false
17173      */
17174     validateValue : function(value){
17175         if(value.length < 1)  { // if it's blank
17176              if(this.allowBlank){
17177                 this.clearInvalid();
17178                 return true;
17179              }else{
17180                 this.markInvalid(this.blankText);
17181                 return false;
17182              }
17183         }
17184         if(value.length < this.minLength){
17185             this.markInvalid(String.format(this.minLengthText, this.minLength));
17186             return false;
17187         }
17188         if(value.length > this.maxLength){
17189             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
17190             return false;
17191         }
17192         if(this.vtype){
17193             var vt = Roo.form.VTypes;
17194             if(!vt[this.vtype](value, this)){
17195                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
17196                 return false;
17197             }
17198         }
17199         if(typeof this.validator == "function"){
17200             var msg = this.validator(value);
17201             if(msg !== true){
17202                 this.markInvalid(msg);
17203                 return false;
17204             }
17205         }
17206         if(this.regex && !this.regex.test(value)){
17207             this.markInvalid(this.regexText);
17208             return false;
17209         }
17210         return true;
17211     },
17212
17213     /**
17214      * Selects text in this field
17215      * @param {Number} start (optional) The index where the selection should start (defaults to 0)
17216      * @param {Number} end (optional) The index where the selection should end (defaults to the text length)
17217      */
17218     selectText : function(start, end){
17219         var v = this.getRawValue();
17220         if(v.length > 0){
17221             start = start === undefined ? 0 : start;
17222             end = end === undefined ? v.length : end;
17223             var d = this.el.dom;
17224             if(d.setSelectionRange){
17225                 d.setSelectionRange(start, end);
17226             }else if(d.createTextRange){
17227                 var range = d.createTextRange();
17228                 range.moveStart("character", start);
17229                 range.moveEnd("character", v.length-end);
17230                 range.select();
17231             }
17232         }
17233     },
17234
17235     /**
17236      * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.
17237      * This only takes effect if grow = true, and fires the autosize event.
17238      */
17239     autoSize : function(){
17240         if(!this.grow || !this.rendered){
17241             return;
17242         }
17243         if(!this.metrics){
17244             this.metrics = Roo.util.TextMetrics.createInstance(this.el);
17245         }
17246         var el = this.el;
17247         var v = el.dom.value;
17248         var d = document.createElement('div');
17249         d.appendChild(document.createTextNode(v));
17250         v = d.innerHTML;
17251         d = null;
17252         v += "&#160;";
17253         var w = Math.min(this.growMax, Math.max(this.metrics.getWidth(v) + /* add extra padding */ 10, this.growMin));
17254         this.el.setWidth(w);
17255         this.fireEvent("autosize", this, w);
17256     },
17257     
17258     // private
17259     SafariOnKeyDown : function(event)
17260     {
17261         // this is a workaround for a password hang bug on chrome/ webkit.
17262         
17263         var isSelectAll = false;
17264         
17265         if(this.el.dom.selectionEnd > 0){
17266             isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
17267         }
17268         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
17269             event.preventDefault();
17270             this.setValue('');
17271             return;
17272         }
17273         
17274         if(isSelectAll && event.getCharCode() > 31){ // backspace and delete key
17275             
17276             event.preventDefault();
17277             // this is very hacky as keydown always get's upper case.
17278             
17279             var cc = String.fromCharCode(event.getCharCode());
17280             
17281             
17282             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
17283             
17284         }
17285         
17286         
17287     }
17288 });/*
17289  * Based on:
17290  * Ext JS Library 1.1.1
17291  * Copyright(c) 2006-2007, Ext JS, LLC.
17292  *
17293  * Originally Released Under LGPL - original licence link has changed is not relivant.
17294  *
17295  * Fork - LGPL
17296  * <script type="text/javascript">
17297  */
17298  
17299 /**
17300  * @class Roo.form.Hidden
17301  * @extends Roo.form.TextField
17302  * Simple Hidden element used on forms 
17303  * 
17304  * usage: form.add(new Roo.form.HiddenField({ 'name' : 'test1' }));
17305  * 
17306  * @constructor
17307  * Creates a new Hidden form element.
17308  * @param {Object} config Configuration options
17309  */
17310
17311
17312
17313 // easy hidden field...
17314 Roo.form.Hidden = function(config){
17315     Roo.form.Hidden.superclass.constructor.call(this, config);
17316 };
17317   
17318 Roo.extend(Roo.form.Hidden, Roo.form.TextField, {
17319     fieldLabel:      '',
17320     inputType:      'hidden',
17321     width:          50,
17322     allowBlank:     true,
17323     labelSeparator: '',
17324     hidden:         true,
17325     itemCls :       'x-form-item-display-none'
17326
17327
17328 });
17329
17330
17331 /*
17332  * Based on:
17333  * Ext JS Library 1.1.1
17334  * Copyright(c) 2006-2007, Ext JS, LLC.
17335  *
17336  * Originally Released Under LGPL - original licence link has changed is not relivant.
17337  *
17338  * Fork - LGPL
17339  * <script type="text/javascript">
17340  */
17341  
17342 /**
17343  * @class Roo.form.TriggerField
17344  * @extends Roo.form.TextField
17345  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
17346  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
17347  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
17348  * for which you can provide a custom implementation.  For example:
17349  * <pre><code>
17350 var trigger = new Roo.form.TriggerField();
17351 trigger.onTriggerClick = myTriggerFn;
17352 trigger.applyTo('my-field');
17353 </code></pre>
17354  *
17355  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
17356  * {@link Roo.form.DateField} and {@link Roo.form.ComboBox} are perfect examples of this.
17357  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
17358  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
17359  * @constructor
17360  * Create a new TriggerField.
17361  * @param {Object} config Configuration options (valid {@Roo.form.TextField} config options will also be applied
17362  * to the base TextField)
17363  */
17364 Roo.form.TriggerField = function(config){
17365     this.mimicing = false;
17366     Roo.form.TriggerField.superclass.constructor.call(this, config);
17367 };
17368
17369 Roo.extend(Roo.form.TriggerField, Roo.form.TextField,  {
17370     /**
17371      * @cfg {String} triggerClass A CSS class to apply to the trigger
17372      */
17373     /**
17374      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
17375      * {tag: "input", type: "text", size: "16", autocomplete: "off"})
17376      */
17377     defaultAutoCreate : {tag: "input", type: "text", size: "16", autocomplete: "new-password"},
17378     /**
17379      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
17380      */
17381     hideTrigger:false,
17382
17383     /** @cfg {Boolean} grow @hide */
17384     /** @cfg {Number} growMin @hide */
17385     /** @cfg {Number} growMax @hide */
17386
17387     /**
17388      * @hide 
17389      * @method
17390      */
17391     autoSize: Roo.emptyFn,
17392     // private
17393     monitorTab : true,
17394     // private
17395     deferHeight : true,
17396
17397     
17398     actionMode : 'wrap',
17399     // private
17400     onResize : function(w, h){
17401         Roo.form.TriggerField.superclass.onResize.apply(this, arguments);
17402         if(typeof w == 'number'){
17403             var x = w - this.trigger.getWidth();
17404             this.el.setWidth(this.adjustWidth('input', x));
17405             this.trigger.setStyle('left', x+'px');
17406         }
17407     },
17408
17409     // private
17410     adjustSize : Roo.BoxComponent.prototype.adjustSize,
17411
17412     // private
17413     getResizeEl : function(){
17414         return this.wrap;
17415     },
17416
17417     // private
17418     getPositionEl : function(){
17419         return this.wrap;
17420     },
17421
17422     // private
17423     alignErrorIcon : function(){
17424         this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
17425     },
17426
17427     // private
17428     onRender : function(ct, position){
17429         Roo.form.TriggerField.superclass.onRender.call(this, ct, position);
17430         this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
17431         this.trigger = this.wrap.createChild(this.triggerConfig ||
17432                 {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass});
17433         if(this.hideTrigger){
17434             this.trigger.setDisplayed(false);
17435         }
17436         this.initTrigger();
17437         if(!this.width){
17438             this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
17439         }
17440     },
17441
17442     // private
17443     initTrigger : function(){
17444         this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
17445         this.trigger.addClassOnOver('x-form-trigger-over');
17446         this.trigger.addClassOnClick('x-form-trigger-click');
17447     },
17448
17449     // private
17450     onDestroy : function(){
17451         if(this.trigger){
17452             this.trigger.removeAllListeners();
17453             this.trigger.remove();
17454         }
17455         if(this.wrap){
17456             this.wrap.remove();
17457         }
17458         Roo.form.TriggerField.superclass.onDestroy.call(this);
17459     },
17460
17461     // private
17462     onFocus : function(){
17463         Roo.form.TriggerField.superclass.onFocus.call(this);
17464         if(!this.mimicing){
17465             this.wrap.addClass('x-trigger-wrap-focus');
17466             this.mimicing = true;
17467             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
17468             if(this.monitorTab){
17469                 this.el.on("keydown", this.checkTab, this);
17470             }
17471         }
17472     },
17473
17474     // private
17475     checkTab : function(e){
17476         if(e.getKey() == e.TAB){
17477             this.triggerBlur();
17478         }
17479     },
17480
17481     // private
17482     onBlur : function(){
17483         // do nothing
17484     },
17485
17486     // private
17487     mimicBlur : function(e, t){
17488         if(!this.wrap.contains(t) && this.validateBlur()){
17489             this.triggerBlur();
17490         }
17491     },
17492
17493     // private
17494     triggerBlur : function(){
17495         this.mimicing = false;
17496         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
17497         if(this.monitorTab){
17498             this.el.un("keydown", this.checkTab, this);
17499         }
17500         this.wrap.removeClass('x-trigger-wrap-focus');
17501         Roo.form.TriggerField.superclass.onBlur.call(this);
17502     },
17503
17504     // private
17505     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
17506     validateBlur : function(e, t){
17507         return true;
17508     },
17509
17510     // private
17511     onDisable : function(){
17512         Roo.form.TriggerField.superclass.onDisable.call(this);
17513         if(this.wrap){
17514             this.wrap.addClass('x-item-disabled');
17515         }
17516     },
17517
17518     // private
17519     onEnable : function(){
17520         Roo.form.TriggerField.superclass.onEnable.call(this);
17521         if(this.wrap){
17522             this.wrap.removeClass('x-item-disabled');
17523         }
17524     },
17525
17526     // private
17527     onShow : function(){
17528         var ae = this.getActionEl();
17529         
17530         if(ae){
17531             ae.dom.style.display = '';
17532             ae.dom.style.visibility = 'visible';
17533         }
17534     },
17535
17536     // private
17537     
17538     onHide : function(){
17539         var ae = this.getActionEl();
17540         ae.dom.style.display = 'none';
17541     },
17542
17543     /**
17544      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
17545      * by an implementing function.
17546      * @method
17547      * @param {EventObject} e
17548      */
17549     onTriggerClick : Roo.emptyFn
17550 });
17551
17552 // TwinTriggerField is not a public class to be used directly.  It is meant as an abstract base class
17553 // to be extended by an implementing class.  For an example of implementing this class, see the custom
17554 // SearchField implementation here: http://extjs.com/deploy/ext/examples/form/custom.html
17555 Roo.form.TwinTriggerField = Roo.extend(Roo.form.TriggerField, {
17556     initComponent : function(){
17557         Roo.form.TwinTriggerField.superclass.initComponent.call(this);
17558
17559         this.triggerConfig = {
17560             tag:'span', cls:'x-form-twin-triggers', cn:[
17561             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger1Class},
17562             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger2Class}
17563         ]};
17564     },
17565
17566     getTrigger : function(index){
17567         return this.triggers[index];
17568     },
17569
17570     initTrigger : function(){
17571         var ts = this.trigger.select('.x-form-trigger', true);
17572         this.wrap.setStyle('overflow', 'hidden');
17573         var triggerField = this;
17574         ts.each(function(t, all, index){
17575             t.hide = function(){
17576                 var w = triggerField.wrap.getWidth();
17577                 this.dom.style.display = 'none';
17578                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
17579             };
17580             t.show = function(){
17581                 var w = triggerField.wrap.getWidth();
17582                 this.dom.style.display = '';
17583                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
17584             };
17585             var triggerIndex = 'Trigger'+(index+1);
17586
17587             if(this['hide'+triggerIndex]){
17588                 t.dom.style.display = 'none';
17589             }
17590             t.on("click", this['on'+triggerIndex+'Click'], this, {preventDefault:true});
17591             t.addClassOnOver('x-form-trigger-over');
17592             t.addClassOnClick('x-form-trigger-click');
17593         }, this);
17594         this.triggers = ts.elements;
17595     },
17596
17597     onTrigger1Click : Roo.emptyFn,
17598     onTrigger2Click : Roo.emptyFn
17599 });/*
17600  * Based on:
17601  * Ext JS Library 1.1.1
17602  * Copyright(c) 2006-2007, Ext JS, LLC.
17603  *
17604  * Originally Released Under LGPL - original licence link has changed is not relivant.
17605  *
17606  * Fork - LGPL
17607  * <script type="text/javascript">
17608  */
17609  
17610 /**
17611  * @class Roo.form.TextArea
17612  * @extends Roo.form.TextField
17613  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
17614  * support for auto-sizing.
17615  * @constructor
17616  * Creates a new TextArea
17617  * @param {Object} config Configuration options
17618  */
17619 Roo.form.TextArea = function(config){
17620     Roo.form.TextArea.superclass.constructor.call(this, config);
17621     // these are provided exchanges for backwards compat
17622     // minHeight/maxHeight were replaced by growMin/growMax to be
17623     // compatible with TextField growing config values
17624     if(this.minHeight !== undefined){
17625         this.growMin = this.minHeight;
17626     }
17627     if(this.maxHeight !== undefined){
17628         this.growMax = this.maxHeight;
17629     }
17630 };
17631
17632 Roo.extend(Roo.form.TextArea, Roo.form.TextField,  {
17633     /**
17634      * @cfg {Number} growMin The minimum height to allow when grow = true (defaults to 60)
17635      */
17636     growMin : 60,
17637     /**
17638      * @cfg {Number} growMax The maximum height to allow when grow = true (defaults to 1000)
17639      */
17640     growMax: 1000,
17641     /**
17642      * @cfg {Boolean} preventScrollbars True to prevent scrollbars from appearing regardless of how much text is
17643      * in the field (equivalent to setting overflow: hidden, defaults to false)
17644      */
17645     preventScrollbars: false,
17646     /**
17647      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
17648      * {tag: "textarea", style: "width:300px;height:60px;", autocomplete: "off"})
17649      */
17650
17651     // private
17652     onRender : function(ct, position){
17653         if(!this.el){
17654             this.defaultAutoCreate = {
17655                 tag: "textarea",
17656                 style:"width:300px;height:60px;",
17657                 autocomplete: "new-password"
17658             };
17659         }
17660         Roo.form.TextArea.superclass.onRender.call(this, ct, position);
17661         if(this.grow){
17662             this.textSizeEl = Roo.DomHelper.append(document.body, {
17663                 tag: "pre", cls: "x-form-grow-sizer"
17664             });
17665             if(this.preventScrollbars){
17666                 this.el.setStyle("overflow", "hidden");
17667             }
17668             this.el.setHeight(this.growMin);
17669         }
17670     },
17671
17672     onDestroy : function(){
17673         if(this.textSizeEl){
17674             this.textSizeEl.parentNode.removeChild(this.textSizeEl);
17675         }
17676         Roo.form.TextArea.superclass.onDestroy.call(this);
17677     },
17678
17679     // private
17680     onKeyUp : function(e){
17681         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
17682             this.autoSize();
17683         }
17684     },
17685
17686     /**
17687      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
17688      * This only takes effect if grow = true, and fires the autosize event if the height changes.
17689      */
17690     autoSize : function(){
17691         if(!this.grow || !this.textSizeEl){
17692             return;
17693         }
17694         var el = this.el;
17695         var v = el.dom.value;
17696         var ts = this.textSizeEl;
17697
17698         ts.innerHTML = '';
17699         ts.appendChild(document.createTextNode(v));
17700         v = ts.innerHTML;
17701
17702         Roo.fly(ts).setWidth(this.el.getWidth());
17703         if(v.length < 1){
17704             v = "&#160;&#160;";
17705         }else{
17706             if(Roo.isIE){
17707                 v = v.replace(/\n/g, '<p>&#160;</p>');
17708             }
17709             v += "&#160;\n&#160;";
17710         }
17711         ts.innerHTML = v;
17712         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
17713         if(h != this.lastHeight){
17714             this.lastHeight = h;
17715             this.el.setHeight(h);
17716             this.fireEvent("autosize", this, h);
17717         }
17718     }
17719 });/*
17720  * Based on:
17721  * Ext JS Library 1.1.1
17722  * Copyright(c) 2006-2007, Ext JS, LLC.
17723  *
17724  * Originally Released Under LGPL - original licence link has changed is not relivant.
17725  *
17726  * Fork - LGPL
17727  * <script type="text/javascript">
17728  */
17729  
17730
17731 /**
17732  * @class Roo.form.NumberField
17733  * @extends Roo.form.TextField
17734  * Numeric text field that provides automatic keystroke filtering and numeric validation.
17735  * @constructor
17736  * Creates a new NumberField
17737  * @param {Object} config Configuration options
17738  */
17739 Roo.form.NumberField = function(config){
17740     Roo.form.NumberField.superclass.constructor.call(this, config);
17741 };
17742
17743 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
17744     /**
17745      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
17746      */
17747     fieldClass: "x-form-field x-form-num-field",
17748     /**
17749      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
17750      */
17751     allowDecimals : true,
17752     /**
17753      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
17754      */
17755     decimalSeparator : ".",
17756     /**
17757      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
17758      */
17759     decimalPrecision : 2,
17760     /**
17761      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
17762      */
17763     allowNegative : true,
17764     /**
17765      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
17766      */
17767     minValue : Number.NEGATIVE_INFINITY,
17768     /**
17769      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
17770      */
17771     maxValue : Number.MAX_VALUE,
17772     /**
17773      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
17774      */
17775     minText : "The minimum value for this field is {0}",
17776     /**
17777      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
17778      */
17779     maxText : "The maximum value for this field is {0}",
17780     /**
17781      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
17782      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
17783      */
17784     nanText : "{0} is not a valid number",
17785
17786     // private
17787     initEvents : function(){
17788         Roo.form.NumberField.superclass.initEvents.call(this);
17789         var allowed = "0123456789";
17790         if(this.allowDecimals){
17791             allowed += this.decimalSeparator;
17792         }
17793         if(this.allowNegative){
17794             allowed += "-";
17795         }
17796         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
17797         var keyPress = function(e){
17798             var k = e.getKey();
17799             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
17800                 return;
17801             }
17802             var c = e.getCharCode();
17803             if(allowed.indexOf(String.fromCharCode(c)) === -1){
17804                 e.stopEvent();
17805             }
17806         };
17807         this.el.on("keypress", keyPress, this);
17808     },
17809
17810     // private
17811     validateValue : function(value){
17812         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
17813             return false;
17814         }
17815         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
17816              return true;
17817         }
17818         var num = this.parseValue(value);
17819         if(isNaN(num)){
17820             this.markInvalid(String.format(this.nanText, value));
17821             return false;
17822         }
17823         if(num < this.minValue){
17824             this.markInvalid(String.format(this.minText, this.minValue));
17825             return false;
17826         }
17827         if(num > this.maxValue){
17828             this.markInvalid(String.format(this.maxText, this.maxValue));
17829             return false;
17830         }
17831         return true;
17832     },
17833
17834     getValue : function(){
17835         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
17836     },
17837
17838     // private
17839     parseValue : function(value){
17840         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
17841         return isNaN(value) ? '' : value;
17842     },
17843
17844     // private
17845     fixPrecision : function(value){
17846         var nan = isNaN(value);
17847         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
17848             return nan ? '' : value;
17849         }
17850         return parseFloat(value).toFixed(this.decimalPrecision);
17851     },
17852
17853     setValue : function(v){
17854         v = this.fixPrecision(v);
17855         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
17856     },
17857
17858     // private
17859     decimalPrecisionFcn : function(v){
17860         return Math.floor(v);
17861     },
17862
17863     beforeBlur : function(){
17864         var v = this.parseValue(this.getRawValue());
17865         if(v){
17866             this.setValue(v);
17867         }
17868     }
17869 });/*
17870  * Based on:
17871  * Ext JS Library 1.1.1
17872  * Copyright(c) 2006-2007, Ext JS, LLC.
17873  *
17874  * Originally Released Under LGPL - original licence link has changed is not relivant.
17875  *
17876  * Fork - LGPL
17877  * <script type="text/javascript">
17878  */
17879  
17880 /**
17881  * @class Roo.form.DateField
17882  * @extends Roo.form.TriggerField
17883  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
17884 * @constructor
17885 * Create a new DateField
17886 * @param {Object} config
17887  */
17888 Roo.form.DateField = function(config)
17889 {
17890     Roo.form.DateField.superclass.constructor.call(this, config);
17891     
17892       this.addEvents({
17893          
17894         /**
17895          * @event select
17896          * Fires when a date is selected
17897              * @param {Roo.form.DateField} combo This combo box
17898              * @param {Date} date The date selected
17899              */
17900         'select' : true
17901          
17902     });
17903     
17904     
17905     if(typeof this.minValue == "string") {
17906         this.minValue = this.parseDate(this.minValue);
17907     }
17908     if(typeof this.maxValue == "string") {
17909         this.maxValue = this.parseDate(this.maxValue);
17910     }
17911     this.ddMatch = null;
17912     if(this.disabledDates){
17913         var dd = this.disabledDates;
17914         var re = "(?:";
17915         for(var i = 0; i < dd.length; i++){
17916             re += dd[i];
17917             if(i != dd.length-1) {
17918                 re += "|";
17919             }
17920         }
17921         this.ddMatch = new RegExp(re + ")");
17922     }
17923 };
17924
17925 Roo.extend(Roo.form.DateField, Roo.form.TriggerField,  {
17926     /**
17927      * @cfg {String} format
17928      * The default date format string which can be overriden for localization support.  The format must be
17929      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
17930      */
17931     format : "m/d/y",
17932     /**
17933      * @cfg {String} altFormats
17934      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
17935      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
17936      */
17937     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
17938     /**
17939      * @cfg {Array} disabledDays
17940      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
17941      */
17942     disabledDays : null,
17943     /**
17944      * @cfg {String} disabledDaysText
17945      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
17946      */
17947     disabledDaysText : "Disabled",
17948     /**
17949      * @cfg {Array} disabledDates
17950      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
17951      * expression so they are very powerful. Some examples:
17952      * <ul>
17953      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
17954      * <li>["03/08", "09/16"] would disable those days for every year</li>
17955      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
17956      * <li>["03/../2006"] would disable every day in March 2006</li>
17957      * <li>["^03"] would disable every day in every March</li>
17958      * </ul>
17959      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
17960      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
17961      */
17962     disabledDates : null,
17963     /**
17964      * @cfg {String} disabledDatesText
17965      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
17966      */
17967     disabledDatesText : "Disabled",
17968     /**
17969      * @cfg {Date/String} minValue
17970      * The minimum allowed date. Can be either a Javascript date object or a string date in a
17971      * valid format (defaults to null).
17972      */
17973     minValue : null,
17974     /**
17975      * @cfg {Date/String} maxValue
17976      * The maximum allowed date. Can be either a Javascript date object or a string date in a
17977      * valid format (defaults to null).
17978      */
17979     maxValue : null,
17980     /**
17981      * @cfg {String} minText
17982      * The error text to display when the date in the cell is before minValue (defaults to
17983      * 'The date in this field must be after {minValue}').
17984      */
17985     minText : "The date in this field must be equal to or after {0}",
17986     /**
17987      * @cfg {String} maxText
17988      * The error text to display when the date in the cell is after maxValue (defaults to
17989      * 'The date in this field must be before {maxValue}').
17990      */
17991     maxText : "The date in this field must be equal to or before {0}",
17992     /**
17993      * @cfg {String} invalidText
17994      * The error text to display when the date in the field is invalid (defaults to
17995      * '{value} is not a valid date - it must be in the format {format}').
17996      */
17997     invalidText : "{0} is not a valid date - it must be in the format {1}",
17998     /**
17999      * @cfg {String} triggerClass
18000      * An additional CSS class used to style the trigger button.  The trigger will always get the
18001      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
18002      * which displays a calendar icon).
18003      */
18004     triggerClass : 'x-form-date-trigger',
18005     
18006
18007     /**
18008      * @cfg {Boolean} useIso
18009      * if enabled, then the date field will use a hidden field to store the 
18010      * real value as iso formated date. default (false)
18011      */ 
18012     useIso : false,
18013     /**
18014      * @cfg {String/Object} autoCreate
18015      * A DomHelper element spec, or true for a default element spec (defaults to
18016      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
18017      */ 
18018     // private
18019     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
18020     
18021     // private
18022     hiddenField: false,
18023     
18024     onRender : function(ct, position)
18025     {
18026         Roo.form.DateField.superclass.onRender.call(this, ct, position);
18027         if (this.useIso) {
18028             //this.el.dom.removeAttribute('name'); 
18029             Roo.log("Changing name?");
18030             this.el.dom.setAttribute('name', this.name + '____hidden___' ); 
18031             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
18032                     'before', true);
18033             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
18034             // prevent input submission
18035             this.hiddenName = this.name;
18036         }
18037             
18038             
18039     },
18040     
18041     // private
18042     validateValue : function(value)
18043     {
18044         value = this.formatDate(value);
18045         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
18046             Roo.log('super failed');
18047             return false;
18048         }
18049         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
18050              return true;
18051         }
18052         var svalue = value;
18053         value = this.parseDate(value);
18054         if(!value){
18055             Roo.log('parse date failed' + svalue);
18056             this.markInvalid(String.format(this.invalidText, svalue, this.format));
18057             return false;
18058         }
18059         var time = value.getTime();
18060         if(this.minValue && time < this.minValue.getTime()){
18061             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
18062             return false;
18063         }
18064         if(this.maxValue && time > this.maxValue.getTime()){
18065             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
18066             return false;
18067         }
18068         if(this.disabledDays){
18069             var day = value.getDay();
18070             for(var i = 0; i < this.disabledDays.length; i++) {
18071                 if(day === this.disabledDays[i]){
18072                     this.markInvalid(this.disabledDaysText);
18073                     return false;
18074                 }
18075             }
18076         }
18077         var fvalue = this.formatDate(value);
18078         if(this.ddMatch && this.ddMatch.test(fvalue)){
18079             this.markInvalid(String.format(this.disabledDatesText, fvalue));
18080             return false;
18081         }
18082         return true;
18083     },
18084
18085     // private
18086     // Provides logic to override the default TriggerField.validateBlur which just returns true
18087     validateBlur : function(){
18088         return !this.menu || !this.menu.isVisible();
18089     },
18090     
18091     getName: function()
18092     {
18093         // returns hidden if it's set..
18094         if (!this.rendered) {return ''};
18095         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
18096         
18097     },
18098
18099     /**
18100      * Returns the current date value of the date field.
18101      * @return {Date} The date value
18102      */
18103     getValue : function(){
18104         
18105         return  this.hiddenField ?
18106                 this.hiddenField.value :
18107                 this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
18108     },
18109
18110     /**
18111      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
18112      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
18113      * (the default format used is "m/d/y").
18114      * <br />Usage:
18115      * <pre><code>
18116 //All of these calls set the same date value (May 4, 2006)
18117
18118 //Pass a date object:
18119 var dt = new Date('5/4/06');
18120 dateField.setValue(dt);
18121
18122 //Pass a date string (default format):
18123 dateField.setValue('5/4/06');
18124
18125 //Pass a date string (custom format):
18126 dateField.format = 'Y-m-d';
18127 dateField.setValue('2006-5-4');
18128 </code></pre>
18129      * @param {String/Date} date The date or valid date string
18130      */
18131     setValue : function(date){
18132         if (this.hiddenField) {
18133             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
18134         }
18135         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
18136         // make sure the value field is always stored as a date..
18137         this.value = this.parseDate(date);
18138         
18139         
18140     },
18141
18142     // private
18143     parseDate : function(value){
18144         if(!value || value instanceof Date){
18145             return value;
18146         }
18147         var v = Date.parseDate(value, this.format);
18148          if (!v && this.useIso) {
18149             v = Date.parseDate(value, 'Y-m-d');
18150         }
18151         if(!v && this.altFormats){
18152             if(!this.altFormatsArray){
18153                 this.altFormatsArray = this.altFormats.split("|");
18154             }
18155             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
18156                 v = Date.parseDate(value, this.altFormatsArray[i]);
18157             }
18158         }
18159         return v;
18160     },
18161
18162     // private
18163     formatDate : function(date, fmt){
18164         return (!date || !(date instanceof Date)) ?
18165                date : date.dateFormat(fmt || this.format);
18166     },
18167
18168     // private
18169     menuListeners : {
18170         select: function(m, d){
18171             
18172             this.setValue(d);
18173             this.fireEvent('select', this, d);
18174         },
18175         show : function(){ // retain focus styling
18176             this.onFocus();
18177         },
18178         hide : function(){
18179             this.focus.defer(10, this);
18180             var ml = this.menuListeners;
18181             this.menu.un("select", ml.select,  this);
18182             this.menu.un("show", ml.show,  this);
18183             this.menu.un("hide", ml.hide,  this);
18184         }
18185     },
18186
18187     // private
18188     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
18189     onTriggerClick : function(){
18190         if(this.disabled){
18191             return;
18192         }
18193         if(this.menu == null){
18194             this.menu = new Roo.menu.DateMenu();
18195         }
18196         Roo.apply(this.menu.picker,  {
18197             showClear: this.allowBlank,
18198             minDate : this.minValue,
18199             maxDate : this.maxValue,
18200             disabledDatesRE : this.ddMatch,
18201             disabledDatesText : this.disabledDatesText,
18202             disabledDays : this.disabledDays,
18203             disabledDaysText : this.disabledDaysText,
18204             format : this.useIso ? 'Y-m-d' : this.format,
18205             minText : String.format(this.minText, this.formatDate(this.minValue)),
18206             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
18207         });
18208         this.menu.on(Roo.apply({}, this.menuListeners, {
18209             scope:this
18210         }));
18211         this.menu.picker.setValue(this.getValue() || new Date());
18212         this.menu.show(this.el, "tl-bl?");
18213     },
18214
18215     beforeBlur : function(){
18216         var v = this.parseDate(this.getRawValue());
18217         if(v){
18218             this.setValue(v);
18219         }
18220     },
18221
18222     /*@
18223      * overide
18224      * 
18225      */
18226     isDirty : function() {
18227         if(this.disabled) {
18228             return false;
18229         }
18230         
18231         if(typeof(this.startValue) === 'undefined'){
18232             return false;
18233         }
18234         
18235         return String(this.getValue()) !== String(this.startValue);
18236         
18237     },
18238     // @overide
18239     cleanLeadingSpace : function(e)
18240     {
18241        return;
18242     }
18243     
18244 });/*
18245  * Based on:
18246  * Ext JS Library 1.1.1
18247  * Copyright(c) 2006-2007, Ext JS, LLC.
18248  *
18249  * Originally Released Under LGPL - original licence link has changed is not relivant.
18250  *
18251  * Fork - LGPL
18252  * <script type="text/javascript">
18253  */
18254  
18255 /**
18256  * @class Roo.form.MonthField
18257  * @extends Roo.form.TriggerField
18258  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
18259 * @constructor
18260 * Create a new MonthField
18261 * @param {Object} config
18262  */
18263 Roo.form.MonthField = function(config){
18264     
18265     Roo.form.MonthField.superclass.constructor.call(this, config);
18266     
18267       this.addEvents({
18268          
18269         /**
18270          * @event select
18271          * Fires when a date is selected
18272              * @param {Roo.form.MonthFieeld} combo This combo box
18273              * @param {Date} date The date selected
18274              */
18275         'select' : true
18276          
18277     });
18278     
18279     
18280     if(typeof this.minValue == "string") {
18281         this.minValue = this.parseDate(this.minValue);
18282     }
18283     if(typeof this.maxValue == "string") {
18284         this.maxValue = this.parseDate(this.maxValue);
18285     }
18286     this.ddMatch = null;
18287     if(this.disabledDates){
18288         var dd = this.disabledDates;
18289         var re = "(?:";
18290         for(var i = 0; i < dd.length; i++){
18291             re += dd[i];
18292             if(i != dd.length-1) {
18293                 re += "|";
18294             }
18295         }
18296         this.ddMatch = new RegExp(re + ")");
18297     }
18298 };
18299
18300 Roo.extend(Roo.form.MonthField, Roo.form.TriggerField,  {
18301     /**
18302      * @cfg {String} format
18303      * The default date format string which can be overriden for localization support.  The format must be
18304      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
18305      */
18306     format : "M Y",
18307     /**
18308      * @cfg {String} altFormats
18309      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
18310      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
18311      */
18312     altFormats : "M Y|m/Y|m-y|m-Y|my|mY",
18313     /**
18314      * @cfg {Array} disabledDays
18315      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
18316      */
18317     disabledDays : [0,1,2,3,4,5,6],
18318     /**
18319      * @cfg {String} disabledDaysText
18320      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
18321      */
18322     disabledDaysText : "Disabled",
18323     /**
18324      * @cfg {Array} disabledDates
18325      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
18326      * expression so they are very powerful. Some examples:
18327      * <ul>
18328      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
18329      * <li>["03/08", "09/16"] would disable those days for every year</li>
18330      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
18331      * <li>["03/../2006"] would disable every day in March 2006</li>
18332      * <li>["^03"] would disable every day in every March</li>
18333      * </ul>
18334      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
18335      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
18336      */
18337     disabledDates : null,
18338     /**
18339      * @cfg {String} disabledDatesText
18340      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
18341      */
18342     disabledDatesText : "Disabled",
18343     /**
18344      * @cfg {Date/String} minValue
18345      * The minimum allowed date. Can be either a Javascript date object or a string date in a
18346      * valid format (defaults to null).
18347      */
18348     minValue : null,
18349     /**
18350      * @cfg {Date/String} maxValue
18351      * The maximum allowed date. Can be either a Javascript date object or a string date in a
18352      * valid format (defaults to null).
18353      */
18354     maxValue : null,
18355     /**
18356      * @cfg {String} minText
18357      * The error text to display when the date in the cell is before minValue (defaults to
18358      * 'The date in this field must be after {minValue}').
18359      */
18360     minText : "The date in this field must be equal to or after {0}",
18361     /**
18362      * @cfg {String} maxTextf
18363      * The error text to display when the date in the cell is after maxValue (defaults to
18364      * 'The date in this field must be before {maxValue}').
18365      */
18366     maxText : "The date in this field must be equal to or before {0}",
18367     /**
18368      * @cfg {String} invalidText
18369      * The error text to display when the date in the field is invalid (defaults to
18370      * '{value} is not a valid date - it must be in the format {format}').
18371      */
18372     invalidText : "{0} is not a valid date - it must be in the format {1}",
18373     /**
18374      * @cfg {String} triggerClass
18375      * An additional CSS class used to style the trigger button.  The trigger will always get the
18376      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
18377      * which displays a calendar icon).
18378      */
18379     triggerClass : 'x-form-date-trigger',
18380     
18381
18382     /**
18383      * @cfg {Boolean} useIso
18384      * if enabled, then the date field will use a hidden field to store the 
18385      * real value as iso formated date. default (true)
18386      */ 
18387     useIso : true,
18388     /**
18389      * @cfg {String/Object} autoCreate
18390      * A DomHelper element spec, or true for a default element spec (defaults to
18391      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
18392      */ 
18393     // private
18394     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "new-password"},
18395     
18396     // private
18397     hiddenField: false,
18398     
18399     hideMonthPicker : false,
18400     
18401     onRender : function(ct, position)
18402     {
18403         Roo.form.MonthField.superclass.onRender.call(this, ct, position);
18404         if (this.useIso) {
18405             this.el.dom.removeAttribute('name'); 
18406             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
18407                     'before', true);
18408             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
18409             // prevent input submission
18410             this.hiddenName = this.name;
18411         }
18412             
18413             
18414     },
18415     
18416     // private
18417     validateValue : function(value)
18418     {
18419         value = this.formatDate(value);
18420         if(!Roo.form.MonthField.superclass.validateValue.call(this, value)){
18421             return false;
18422         }
18423         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
18424              return true;
18425         }
18426         var svalue = value;
18427         value = this.parseDate(value);
18428         if(!value){
18429             this.markInvalid(String.format(this.invalidText, svalue, this.format));
18430             return false;
18431         }
18432         var time = value.getTime();
18433         if(this.minValue && time < this.minValue.getTime()){
18434             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
18435             return false;
18436         }
18437         if(this.maxValue && time > this.maxValue.getTime()){
18438             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
18439             return false;
18440         }
18441         /*if(this.disabledDays){
18442             var day = value.getDay();
18443             for(var i = 0; i < this.disabledDays.length; i++) {
18444                 if(day === this.disabledDays[i]){
18445                     this.markInvalid(this.disabledDaysText);
18446                     return false;
18447                 }
18448             }
18449         }
18450         */
18451         var fvalue = this.formatDate(value);
18452         /*if(this.ddMatch && this.ddMatch.test(fvalue)){
18453             this.markInvalid(String.format(this.disabledDatesText, fvalue));
18454             return false;
18455         }
18456         */
18457         return true;
18458     },
18459
18460     // private
18461     // Provides logic to override the default TriggerField.validateBlur which just returns true
18462     validateBlur : function(){
18463         return !this.menu || !this.menu.isVisible();
18464     },
18465
18466     /**
18467      * Returns the current date value of the date field.
18468      * @return {Date} The date value
18469      */
18470     getValue : function(){
18471         
18472         
18473         
18474         return  this.hiddenField ?
18475                 this.hiddenField.value :
18476                 this.parseDate(Roo.form.MonthField.superclass.getValue.call(this)) || "";
18477     },
18478
18479     /**
18480      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
18481      * date, using MonthField.format as the date format, according to the same rules as {@link Date#parseDate}
18482      * (the default format used is "m/d/y").
18483      * <br />Usage:
18484      * <pre><code>
18485 //All of these calls set the same date value (May 4, 2006)
18486
18487 //Pass a date object:
18488 var dt = new Date('5/4/06');
18489 monthField.setValue(dt);
18490
18491 //Pass a date string (default format):
18492 monthField.setValue('5/4/06');
18493
18494 //Pass a date string (custom format):
18495 monthField.format = 'Y-m-d';
18496 monthField.setValue('2006-5-4');
18497 </code></pre>
18498      * @param {String/Date} date The date or valid date string
18499      */
18500     setValue : function(date){
18501         Roo.log('month setValue' + date);
18502         // can only be first of month..
18503         
18504         var val = this.parseDate(date);
18505         
18506         if (this.hiddenField) {
18507             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
18508         }
18509         Roo.form.MonthField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
18510         this.value = this.parseDate(date);
18511     },
18512
18513     // private
18514     parseDate : function(value){
18515         if(!value || value instanceof Date){
18516             value = value ? Date.parseDate(value.format('Y-m') + '-01', 'Y-m-d') : null;
18517             return value;
18518         }
18519         var v = Date.parseDate(value, this.format);
18520         if (!v && this.useIso) {
18521             v = Date.parseDate(value, 'Y-m-d');
18522         }
18523         if (v) {
18524             // 
18525             v = Date.parseDate(v.format('Y-m') +'-01', 'Y-m-d');
18526         }
18527         
18528         
18529         if(!v && this.altFormats){
18530             if(!this.altFormatsArray){
18531                 this.altFormatsArray = this.altFormats.split("|");
18532             }
18533             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
18534                 v = Date.parseDate(value, this.altFormatsArray[i]);
18535             }
18536         }
18537         return v;
18538     },
18539
18540     // private
18541     formatDate : function(date, fmt){
18542         return (!date || !(date instanceof Date)) ?
18543                date : date.dateFormat(fmt || this.format);
18544     },
18545
18546     // private
18547     menuListeners : {
18548         select: function(m, d){
18549             this.setValue(d);
18550             this.fireEvent('select', this, d);
18551         },
18552         show : function(){ // retain focus styling
18553             this.onFocus();
18554         },
18555         hide : function(){
18556             this.focus.defer(10, this);
18557             var ml = this.menuListeners;
18558             this.menu.un("select", ml.select,  this);
18559             this.menu.un("show", ml.show,  this);
18560             this.menu.un("hide", ml.hide,  this);
18561         }
18562     },
18563     // private
18564     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
18565     onTriggerClick : function(){
18566         if(this.disabled){
18567             return;
18568         }
18569         if(this.menu == null){
18570             this.menu = new Roo.menu.DateMenu();
18571            
18572         }
18573         
18574         Roo.apply(this.menu.picker,  {
18575             
18576             showClear: this.allowBlank,
18577             minDate : this.minValue,
18578             maxDate : this.maxValue,
18579             disabledDatesRE : this.ddMatch,
18580             disabledDatesText : this.disabledDatesText,
18581             
18582             format : this.useIso ? 'Y-m-d' : this.format,
18583             minText : String.format(this.minText, this.formatDate(this.minValue)),
18584             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
18585             
18586         });
18587          this.menu.on(Roo.apply({}, this.menuListeners, {
18588             scope:this
18589         }));
18590        
18591         
18592         var m = this.menu;
18593         var p = m.picker;
18594         
18595         // hide month picker get's called when we called by 'before hide';
18596         
18597         var ignorehide = true;
18598         p.hideMonthPicker  = function(disableAnim){
18599             if (ignorehide) {
18600                 return;
18601             }
18602              if(this.monthPicker){
18603                 Roo.log("hideMonthPicker called");
18604                 if(disableAnim === true){
18605                     this.monthPicker.hide();
18606                 }else{
18607                     this.monthPicker.slideOut('t', {duration:.2});
18608                     p.setValue(new Date(m.picker.mpSelYear, m.picker.mpSelMonth, 1));
18609                     p.fireEvent("select", this, this.value);
18610                     m.hide();
18611                 }
18612             }
18613         }
18614         
18615         Roo.log('picker set value');
18616         Roo.log(this.getValue());
18617         p.setValue(this.getValue() ? this.parseDate(this.getValue()) : new Date());
18618         m.show(this.el, 'tl-bl?');
18619         ignorehide  = false;
18620         // this will trigger hideMonthPicker..
18621         
18622         
18623         // hidden the day picker
18624         Roo.select('.x-date-picker table', true).first().dom.style.visibility = "hidden";
18625         
18626         
18627         
18628       
18629         
18630         p.showMonthPicker.defer(100, p);
18631     
18632         
18633        
18634     },
18635
18636     beforeBlur : function(){
18637         var v = this.parseDate(this.getRawValue());
18638         if(v){
18639             this.setValue(v);
18640         }
18641     }
18642
18643     /** @cfg {Boolean} grow @hide */
18644     /** @cfg {Number} growMin @hide */
18645     /** @cfg {Number} growMax @hide */
18646     /**
18647      * @hide
18648      * @method autoSize
18649      */
18650 });/*
18651  * Based on:
18652  * Ext JS Library 1.1.1
18653  * Copyright(c) 2006-2007, Ext JS, LLC.
18654  *
18655  * Originally Released Under LGPL - original licence link has changed is not relivant.
18656  *
18657  * Fork - LGPL
18658  * <script type="text/javascript">
18659  */
18660  
18661
18662 /**
18663  * @class Roo.form.ComboBox
18664  * @extends Roo.form.TriggerField
18665  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
18666  * @constructor
18667  * Create a new ComboBox.
18668  * @param {Object} config Configuration options
18669  */
18670 Roo.form.ComboBox = function(config){
18671     Roo.form.ComboBox.superclass.constructor.call(this, config);
18672     this.addEvents({
18673         /**
18674          * @event expand
18675          * Fires when the dropdown list is expanded
18676              * @param {Roo.form.ComboBox} combo This combo box
18677              */
18678         'expand' : true,
18679         /**
18680          * @event collapse
18681          * Fires when the dropdown list is collapsed
18682              * @param {Roo.form.ComboBox} combo This combo box
18683              */
18684         'collapse' : true,
18685         /**
18686          * @event beforeselect
18687          * Fires before a list item is selected. Return false to cancel the selection.
18688              * @param {Roo.form.ComboBox} combo This combo box
18689              * @param {Roo.data.Record} record The data record returned from the underlying store
18690              * @param {Number} index The index of the selected item in the dropdown list
18691              */
18692         'beforeselect' : true,
18693         /**
18694          * @event select
18695          * Fires when a list item is selected
18696              * @param {Roo.form.ComboBox} combo This combo box
18697              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
18698              * @param {Number} index The index of the selected item in the dropdown list
18699              */
18700         'select' : true,
18701         /**
18702          * @event beforequery
18703          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
18704          * The event object passed has these properties:
18705              * @param {Roo.form.ComboBox} combo This combo box
18706              * @param {String} query The query
18707              * @param {Boolean} forceAll true to force "all" query
18708              * @param {Boolean} cancel true to cancel the query
18709              * @param {Object} e The query event object
18710              */
18711         'beforequery': true,
18712          /**
18713          * @event add
18714          * Fires when the 'add' icon is pressed (add a listener to enable add button)
18715              * @param {Roo.form.ComboBox} combo This combo box
18716              */
18717         'add' : true,
18718         /**
18719          * @event edit
18720          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
18721              * @param {Roo.form.ComboBox} combo This combo box
18722              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
18723              */
18724         'edit' : true
18725         
18726         
18727     });
18728     if(this.transform){
18729         this.allowDomMove = false;
18730         var s = Roo.getDom(this.transform);
18731         if(!this.hiddenName){
18732             this.hiddenName = s.name;
18733         }
18734         if(!this.store){
18735             this.mode = 'local';
18736             var d = [], opts = s.options;
18737             for(var i = 0, len = opts.length;i < len; i++){
18738                 var o = opts[i];
18739                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
18740                 if(o.selected) {
18741                     this.value = value;
18742                 }
18743                 d.push([value, o.text]);
18744             }
18745             this.store = new Roo.data.SimpleStore({
18746                 'id': 0,
18747                 fields: ['value', 'text'],
18748                 data : d
18749             });
18750             this.valueField = 'value';
18751             this.displayField = 'text';
18752         }
18753         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
18754         if(!this.lazyRender){
18755             this.target = true;
18756             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
18757             s.parentNode.removeChild(s); // remove it
18758             this.render(this.el.parentNode);
18759         }else{
18760             s.parentNode.removeChild(s); // remove it
18761         }
18762
18763     }
18764     if (this.store) {
18765         this.store = Roo.factory(this.store, Roo.data);
18766     }
18767     
18768     this.selectedIndex = -1;
18769     if(this.mode == 'local'){
18770         if(config.queryDelay === undefined){
18771             this.queryDelay = 10;
18772         }
18773         if(config.minChars === undefined){
18774             this.minChars = 0;
18775         }
18776     }
18777 };
18778
18779 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
18780     /**
18781      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
18782      */
18783     /**
18784      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
18785      * rendering into an Roo.Editor, defaults to false)
18786      */
18787     /**
18788      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
18789      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
18790      */
18791     /**
18792      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
18793      */
18794     /**
18795      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
18796      * the dropdown list (defaults to undefined, with no header element)
18797      */
18798
18799      /**
18800      * @cfg {String/Roo.Template} tpl The template to use to render the output
18801      */
18802      
18803     // private
18804     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
18805     /**
18806      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
18807      */
18808     listWidth: undefined,
18809     /**
18810      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
18811      * mode = 'remote' or 'text' if mode = 'local')
18812      */
18813     displayField: undefined,
18814     /**
18815      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
18816      * mode = 'remote' or 'value' if mode = 'local'). 
18817      * Note: use of a valueField requires the user make a selection
18818      * in order for a value to be mapped.
18819      */
18820     valueField: undefined,
18821     
18822     
18823     /**
18824      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
18825      * field's data value (defaults to the underlying DOM element's name)
18826      */
18827     hiddenName: undefined,
18828     /**
18829      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
18830      */
18831     listClass: '',
18832     /**
18833      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
18834      */
18835     selectedClass: 'x-combo-selected',
18836     /**
18837      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
18838      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
18839      * which displays a downward arrow icon).
18840      */
18841     triggerClass : 'x-form-arrow-trigger',
18842     /**
18843      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
18844      */
18845     shadow:'sides',
18846     /**
18847      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
18848      * anchor positions (defaults to 'tl-bl')
18849      */
18850     listAlign: 'tl-bl?',
18851     /**
18852      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
18853      */
18854     maxHeight: 300,
18855     /**
18856      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
18857      * query specified by the allQuery config option (defaults to 'query')
18858      */
18859     triggerAction: 'query',
18860     /**
18861      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
18862      * (defaults to 4, does not apply if editable = false)
18863      */
18864     minChars : 4,
18865     /**
18866      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
18867      * delay (typeAheadDelay) if it matches a known value (defaults to false)
18868      */
18869     typeAhead: false,
18870     /**
18871      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
18872      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
18873      */
18874     queryDelay: 500,
18875     /**
18876      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
18877      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
18878      */
18879     pageSize: 0,
18880     /**
18881      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
18882      * when editable = true (defaults to false)
18883      */
18884     selectOnFocus:false,
18885     /**
18886      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
18887      */
18888     queryParam: 'query',
18889     /**
18890      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
18891      * when mode = 'remote' (defaults to 'Loading...')
18892      */
18893     loadingText: 'Loading...',
18894     /**
18895      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
18896      */
18897     resizable: false,
18898     /**
18899      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
18900      */
18901     handleHeight : 8,
18902     /**
18903      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
18904      * traditional select (defaults to true)
18905      */
18906     editable: true,
18907     /**
18908      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
18909      */
18910     allQuery: '',
18911     /**
18912      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
18913      */
18914     mode: 'remote',
18915     /**
18916      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
18917      * listWidth has a higher value)
18918      */
18919     minListWidth : 70,
18920     /**
18921      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
18922      * allow the user to set arbitrary text into the field (defaults to false)
18923      */
18924     forceSelection:false,
18925     /**
18926      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
18927      * if typeAhead = true (defaults to 250)
18928      */
18929     typeAheadDelay : 250,
18930     /**
18931      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
18932      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
18933      */
18934     valueNotFoundText : undefined,
18935     /**
18936      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
18937      */
18938     blockFocus : false,
18939     
18940     /**
18941      * @cfg {Boolean} disableClear Disable showing of clear button.
18942      */
18943     disableClear : false,
18944     /**
18945      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
18946      */
18947     alwaysQuery : false,
18948     
18949     //private
18950     addicon : false,
18951     editicon: false,
18952     
18953     // element that contains real text value.. (when hidden is used..)
18954      
18955     // private
18956     onRender : function(ct, position)
18957     {
18958         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
18959         
18960         if(this.hiddenName){
18961             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
18962                     'before', true);
18963             this.hiddenField.value =
18964                 this.hiddenValue !== undefined ? this.hiddenValue :
18965                 this.value !== undefined ? this.value : '';
18966
18967             // prevent input submission
18968             this.el.dom.removeAttribute('name');
18969              
18970              
18971         }
18972         
18973         if(Roo.isGecko){
18974             this.el.dom.setAttribute('autocomplete', 'off');
18975         }
18976
18977         var cls = 'x-combo-list';
18978
18979         this.list = new Roo.Layer({
18980             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
18981         });
18982
18983         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
18984         this.list.setWidth(lw);
18985         this.list.swallowEvent('mousewheel');
18986         this.assetHeight = 0;
18987
18988         if(this.title){
18989             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
18990             this.assetHeight += this.header.getHeight();
18991         }
18992
18993         this.innerList = this.list.createChild({cls:cls+'-inner'});
18994         this.innerList.on('mouseover', this.onViewOver, this);
18995         this.innerList.on('mousemove', this.onViewMove, this);
18996         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
18997         
18998         if(this.allowBlank && !this.pageSize && !this.disableClear){
18999             this.footer = this.list.createChild({cls:cls+'-ft'});
19000             this.pageTb = new Roo.Toolbar(this.footer);
19001            
19002         }
19003         if(this.pageSize){
19004             this.footer = this.list.createChild({cls:cls+'-ft'});
19005             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
19006                     {pageSize: this.pageSize});
19007             
19008         }
19009         
19010         if (this.pageTb && this.allowBlank && !this.disableClear) {
19011             var _this = this;
19012             this.pageTb.add(new Roo.Toolbar.Fill(), {
19013                 cls: 'x-btn-icon x-btn-clear',
19014                 text: '&#160;',
19015                 handler: function()
19016                 {
19017                     _this.collapse();
19018                     _this.clearValue();
19019                     _this.onSelect(false, -1);
19020                 }
19021             });
19022         }
19023         if (this.footer) {
19024             this.assetHeight += this.footer.getHeight();
19025         }
19026         
19027
19028         if(!this.tpl){
19029             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
19030         }
19031
19032         this.view = new Roo.View(this.innerList, this.tpl, {
19033             singleSelect:true,
19034             store: this.store,
19035             selectedClass: this.selectedClass
19036         });
19037
19038         this.view.on('click', this.onViewClick, this);
19039
19040         this.store.on('beforeload', this.onBeforeLoad, this);
19041         this.store.on('load', this.onLoad, this);
19042         this.store.on('loadexception', this.onLoadException, this);
19043
19044         if(this.resizable){
19045             this.resizer = new Roo.Resizable(this.list,  {
19046                pinned:true, handles:'se'
19047             });
19048             this.resizer.on('resize', function(r, w, h){
19049                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
19050                 this.listWidth = w;
19051                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
19052                 this.restrictHeight();
19053             }, this);
19054             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
19055         }
19056         if(!this.editable){
19057             this.editable = true;
19058             this.setEditable(false);
19059         }  
19060         
19061         
19062         if (typeof(this.events.add.listeners) != 'undefined') {
19063             
19064             this.addicon = this.wrap.createChild(
19065                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
19066        
19067             this.addicon.on('click', function(e) {
19068                 this.fireEvent('add', this);
19069             }, this);
19070         }
19071         if (typeof(this.events.edit.listeners) != 'undefined') {
19072             
19073             this.editicon = this.wrap.createChild(
19074                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
19075             if (this.addicon) {
19076                 this.editicon.setStyle('margin-left', '40px');
19077             }
19078             this.editicon.on('click', function(e) {
19079                 
19080                 // we fire even  if inothing is selected..
19081                 this.fireEvent('edit', this, this.lastData );
19082                 
19083             }, this);
19084         }
19085         
19086         
19087         
19088     },
19089
19090     // private
19091     initEvents : function(){
19092         Roo.form.ComboBox.superclass.initEvents.call(this);
19093
19094         this.keyNav = new Roo.KeyNav(this.el, {
19095             "up" : function(e){
19096                 this.inKeyMode = true;
19097                 this.selectPrev();
19098             },
19099
19100             "down" : function(e){
19101                 if(!this.isExpanded()){
19102                     this.onTriggerClick();
19103                 }else{
19104                     this.inKeyMode = true;
19105                     this.selectNext();
19106                 }
19107             },
19108
19109             "enter" : function(e){
19110                 this.onViewClick();
19111                 //return true;
19112             },
19113
19114             "esc" : function(e){
19115                 this.collapse();
19116             },
19117
19118             "tab" : function(e){
19119                 this.onViewClick(false);
19120                 this.fireEvent("specialkey", this, e);
19121                 return true;
19122             },
19123
19124             scope : this,
19125
19126             doRelay : function(foo, bar, hname){
19127                 if(hname == 'down' || this.scope.isExpanded()){
19128                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
19129                 }
19130                 return true;
19131             },
19132
19133             forceKeyDown: true
19134         });
19135         this.queryDelay = Math.max(this.queryDelay || 10,
19136                 this.mode == 'local' ? 10 : 250);
19137         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
19138         if(this.typeAhead){
19139             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
19140         }
19141         if(this.editable !== false){
19142             this.el.on("keyup", this.onKeyUp, this);
19143         }
19144         if(this.forceSelection){
19145             this.on('blur', this.doForce, this);
19146         }
19147     },
19148
19149     onDestroy : function(){
19150         if(this.view){
19151             this.view.setStore(null);
19152             this.view.el.removeAllListeners();
19153             this.view.el.remove();
19154             this.view.purgeListeners();
19155         }
19156         if(this.list){
19157             this.list.destroy();
19158         }
19159         if(this.store){
19160             this.store.un('beforeload', this.onBeforeLoad, this);
19161             this.store.un('load', this.onLoad, this);
19162             this.store.un('loadexception', this.onLoadException, this);
19163         }
19164         Roo.form.ComboBox.superclass.onDestroy.call(this);
19165     },
19166
19167     // private
19168     fireKey : function(e){
19169         if(e.isNavKeyPress() && !this.list.isVisible()){
19170             this.fireEvent("specialkey", this, e);
19171         }
19172     },
19173
19174     // private
19175     onResize: function(w, h){
19176         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
19177         
19178         if(typeof w != 'number'){
19179             // we do not handle it!?!?
19180             return;
19181         }
19182         var tw = this.trigger.getWidth();
19183         tw += this.addicon ? this.addicon.getWidth() : 0;
19184         tw += this.editicon ? this.editicon.getWidth() : 0;
19185         var x = w - tw;
19186         this.el.setWidth( this.adjustWidth('input', x));
19187             
19188         this.trigger.setStyle('left', x+'px');
19189         
19190         if(this.list && this.listWidth === undefined){
19191             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
19192             this.list.setWidth(lw);
19193             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
19194         }
19195         
19196     
19197         
19198     },
19199
19200     /**
19201      * Allow or prevent the user from directly editing the field text.  If false is passed,
19202      * the user will only be able to select from the items defined in the dropdown list.  This method
19203      * is the runtime equivalent of setting the 'editable' config option at config time.
19204      * @param {Boolean} value True to allow the user to directly edit the field text
19205      */
19206     setEditable : function(value){
19207         if(value == this.editable){
19208             return;
19209         }
19210         this.editable = value;
19211         if(!value){
19212             this.el.dom.setAttribute('readOnly', true);
19213             this.el.on('mousedown', this.onTriggerClick,  this);
19214             this.el.addClass('x-combo-noedit');
19215         }else{
19216             this.el.dom.setAttribute('readOnly', false);
19217             this.el.un('mousedown', this.onTriggerClick,  this);
19218             this.el.removeClass('x-combo-noedit');
19219         }
19220     },
19221
19222     // private
19223     onBeforeLoad : function(){
19224         if(!this.hasFocus){
19225             return;
19226         }
19227         this.innerList.update(this.loadingText ?
19228                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
19229         this.restrictHeight();
19230         this.selectedIndex = -1;
19231     },
19232
19233     // private
19234     onLoad : function(){
19235         if(!this.hasFocus){
19236             return;
19237         }
19238         if(this.store.getCount() > 0){
19239             this.expand();
19240             this.restrictHeight();
19241             if(this.lastQuery == this.allQuery){
19242                 if(this.editable){
19243                     this.el.dom.select();
19244                 }
19245                 if(!this.selectByValue(this.value, true)){
19246                     this.select(0, true);
19247                 }
19248             }else{
19249                 this.selectNext();
19250                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
19251                     this.taTask.delay(this.typeAheadDelay);
19252                 }
19253             }
19254         }else{
19255             this.onEmptyResults();
19256         }
19257         //this.el.focus();
19258     },
19259     // private
19260     onLoadException : function()
19261     {
19262         this.collapse();
19263         Roo.log(this.store.reader.jsonData);
19264         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
19265             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
19266         }
19267         
19268         
19269     },
19270     // private
19271     onTypeAhead : function(){
19272         if(this.store.getCount() > 0){
19273             var r = this.store.getAt(0);
19274             var newValue = r.data[this.displayField];
19275             var len = newValue.length;
19276             var selStart = this.getRawValue().length;
19277             if(selStart != len){
19278                 this.setRawValue(newValue);
19279                 this.selectText(selStart, newValue.length);
19280             }
19281         }
19282     },
19283
19284     // private
19285     onSelect : function(record, index){
19286         if(this.fireEvent('beforeselect', this, record, index) !== false){
19287             this.setFromData(index > -1 ? record.data : false);
19288             this.collapse();
19289             this.fireEvent('select', this, record, index);
19290         }
19291     },
19292
19293     /**
19294      * Returns the currently selected field value or empty string if no value is set.
19295      * @return {String} value The selected value
19296      */
19297     getValue : function(){
19298         if(this.valueField){
19299             return typeof this.value != 'undefined' ? this.value : '';
19300         }
19301         return Roo.form.ComboBox.superclass.getValue.call(this);
19302     },
19303
19304     /**
19305      * Clears any text/value currently set in the field
19306      */
19307     clearValue : function(){
19308         if(this.hiddenField){
19309             this.hiddenField.value = '';
19310         }
19311         this.value = '';
19312         this.setRawValue('');
19313         this.lastSelectionText = '';
19314         
19315     },
19316
19317     /**
19318      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
19319      * will be displayed in the field.  If the value does not match the data value of an existing item,
19320      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
19321      * Otherwise the field will be blank (although the value will still be set).
19322      * @param {String} value The value to match
19323      */
19324     setValue : function(v){
19325         var text = v;
19326         if(this.valueField){
19327             var r = this.findRecord(this.valueField, v);
19328             if(r){
19329                 text = r.data[this.displayField];
19330             }else if(this.valueNotFoundText !== undefined){
19331                 text = this.valueNotFoundText;
19332             }
19333         }
19334         this.lastSelectionText = text;
19335         if(this.hiddenField){
19336             this.hiddenField.value = v;
19337         }
19338         Roo.form.ComboBox.superclass.setValue.call(this, text);
19339         this.value = v;
19340     },
19341     /**
19342      * @property {Object} the last set data for the element
19343      */
19344     
19345     lastData : false,
19346     /**
19347      * Sets the value of the field based on a object which is related to the record format for the store.
19348      * @param {Object} value the value to set as. or false on reset?
19349      */
19350     setFromData : function(o){
19351         var dv = ''; // display value
19352         var vv = ''; // value value..
19353         this.lastData = o;
19354         if (this.displayField) {
19355             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
19356         } else {
19357             // this is an error condition!!!
19358             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
19359         }
19360         
19361         if(this.valueField){
19362             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
19363         }
19364         if(this.hiddenField){
19365             this.hiddenField.value = vv;
19366             
19367             this.lastSelectionText = dv;
19368             Roo.form.ComboBox.superclass.setValue.call(this, dv);
19369             this.value = vv;
19370             return;
19371         }
19372         // no hidden field.. - we store the value in 'value', but still display
19373         // display field!!!!
19374         this.lastSelectionText = dv;
19375         Roo.form.ComboBox.superclass.setValue.call(this, dv);
19376         this.value = vv;
19377         
19378         
19379     },
19380     // private
19381     reset : function(){
19382         // overridden so that last data is reset..
19383         this.setValue(this.resetValue);
19384         this.originalValue = this.getValue();
19385         this.clearInvalid();
19386         this.lastData = false;
19387         if (this.view) {
19388             this.view.clearSelections();
19389         }
19390     },
19391     // private
19392     findRecord : function(prop, value){
19393         var record;
19394         if(this.store.getCount() > 0){
19395             this.store.each(function(r){
19396                 if(r.data[prop] == value){
19397                     record = r;
19398                     return false;
19399                 }
19400                 return true;
19401             });
19402         }
19403         return record;
19404     },
19405     
19406     getName: function()
19407     {
19408         // returns hidden if it's set..
19409         if (!this.rendered) {return ''};
19410         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
19411         
19412     },
19413     // private
19414     onViewMove : function(e, t){
19415         this.inKeyMode = false;
19416     },
19417
19418     // private
19419     onViewOver : function(e, t){
19420         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
19421             return;
19422         }
19423         var item = this.view.findItemFromChild(t);
19424         if(item){
19425             var index = this.view.indexOf(item);
19426             this.select(index, false);
19427         }
19428     },
19429
19430     // private
19431     onViewClick : function(doFocus)
19432     {
19433         var index = this.view.getSelectedIndexes()[0];
19434         var r = this.store.getAt(index);
19435         if(r){
19436             this.onSelect(r, index);
19437         }
19438         if(doFocus !== false && !this.blockFocus){
19439             this.el.focus();
19440         }
19441     },
19442
19443     // private
19444     restrictHeight : function(){
19445         this.innerList.dom.style.height = '';
19446         var inner = this.innerList.dom;
19447         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
19448         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
19449         this.list.beginUpdate();
19450         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
19451         this.list.alignTo(this.el, this.listAlign);
19452         this.list.endUpdate();
19453     },
19454
19455     // private
19456     onEmptyResults : function(){
19457         this.collapse();
19458     },
19459
19460     /**
19461      * Returns true if the dropdown list is expanded, else false.
19462      */
19463     isExpanded : function(){
19464         return this.list.isVisible();
19465     },
19466
19467     /**
19468      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
19469      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
19470      * @param {String} value The data value of the item to select
19471      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
19472      * selected item if it is not currently in view (defaults to true)
19473      * @return {Boolean} True if the value matched an item in the list, else false
19474      */
19475     selectByValue : function(v, scrollIntoView){
19476         if(v !== undefined && v !== null){
19477             var r = this.findRecord(this.valueField || this.displayField, v);
19478             if(r){
19479                 this.select(this.store.indexOf(r), scrollIntoView);
19480                 return true;
19481             }
19482         }
19483         return false;
19484     },
19485
19486     /**
19487      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
19488      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
19489      * @param {Number} index The zero-based index of the list item to select
19490      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
19491      * selected item if it is not currently in view (defaults to true)
19492      */
19493     select : function(index, scrollIntoView){
19494         this.selectedIndex = index;
19495         this.view.select(index);
19496         if(scrollIntoView !== false){
19497             var el = this.view.getNode(index);
19498             if(el){
19499                 this.innerList.scrollChildIntoView(el, false);
19500             }
19501         }
19502     },
19503
19504     // private
19505     selectNext : function(){
19506         var ct = this.store.getCount();
19507         if(ct > 0){
19508             if(this.selectedIndex == -1){
19509                 this.select(0);
19510             }else if(this.selectedIndex < ct-1){
19511                 this.select(this.selectedIndex+1);
19512             }
19513         }
19514     },
19515
19516     // private
19517     selectPrev : function(){
19518         var ct = this.store.getCount();
19519         if(ct > 0){
19520             if(this.selectedIndex == -1){
19521                 this.select(0);
19522             }else if(this.selectedIndex != 0){
19523                 this.select(this.selectedIndex-1);
19524             }
19525         }
19526     },
19527
19528     // private
19529     onKeyUp : function(e){
19530         if(this.editable !== false && !e.isSpecialKey()){
19531             this.lastKey = e.getKey();
19532             this.dqTask.delay(this.queryDelay);
19533         }
19534     },
19535
19536     // private
19537     validateBlur : function(){
19538         return !this.list || !this.list.isVisible();   
19539     },
19540
19541     // private
19542     initQuery : function(){
19543         this.doQuery(this.getRawValue());
19544     },
19545
19546     // private
19547     doForce : function(){
19548         if(this.el.dom.value.length > 0){
19549             this.el.dom.value =
19550                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
19551              
19552         }
19553     },
19554
19555     /**
19556      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
19557      * query allowing the query action to be canceled if needed.
19558      * @param {String} query The SQL query to execute
19559      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
19560      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
19561      * saved in the current store (defaults to false)
19562      */
19563     doQuery : function(q, forceAll){
19564         if(q === undefined || q === null){
19565             q = '';
19566         }
19567         var qe = {
19568             query: q,
19569             forceAll: forceAll,
19570             combo: this,
19571             cancel:false
19572         };
19573         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
19574             return false;
19575         }
19576         q = qe.query;
19577         forceAll = qe.forceAll;
19578         if(forceAll === true || (q.length >= this.minChars)){
19579             if(this.lastQuery != q || this.alwaysQuery){
19580                 this.lastQuery = q;
19581                 if(this.mode == 'local'){
19582                     this.selectedIndex = -1;
19583                     if(forceAll){
19584                         this.store.clearFilter();
19585                     }else{
19586                         this.store.filter(this.displayField, q);
19587                     }
19588                     this.onLoad();
19589                 }else{
19590                     this.store.baseParams[this.queryParam] = q;
19591                     this.store.load({
19592                         params: this.getParams(q)
19593                     });
19594                     this.expand();
19595                 }
19596             }else{
19597                 this.selectedIndex = -1;
19598                 this.onLoad();   
19599             }
19600         }
19601     },
19602
19603     // private
19604     getParams : function(q){
19605         var p = {};
19606         //p[this.queryParam] = q;
19607         if(this.pageSize){
19608             p.start = 0;
19609             p.limit = this.pageSize;
19610         }
19611         return p;
19612     },
19613
19614     /**
19615      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
19616      */
19617     collapse : function(){
19618         if(!this.isExpanded()){
19619             return;
19620         }
19621         this.list.hide();
19622         Roo.get(document).un('mousedown', this.collapseIf, this);
19623         Roo.get(document).un('mousewheel', this.collapseIf, this);
19624         if (!this.editable) {
19625             Roo.get(document).un('keydown', this.listKeyPress, this);
19626         }
19627         this.fireEvent('collapse', this);
19628     },
19629
19630     // private
19631     collapseIf : function(e){
19632         if(!e.within(this.wrap) && !e.within(this.list)){
19633             this.collapse();
19634         }
19635     },
19636
19637     /**
19638      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
19639      */
19640     expand : function(){
19641         if(this.isExpanded() || !this.hasFocus){
19642             return;
19643         }
19644         this.list.alignTo(this.el, this.listAlign);
19645         this.list.show();
19646         Roo.get(document).on('mousedown', this.collapseIf, this);
19647         Roo.get(document).on('mousewheel', this.collapseIf, this);
19648         if (!this.editable) {
19649             Roo.get(document).on('keydown', this.listKeyPress, this);
19650         }
19651         
19652         this.fireEvent('expand', this);
19653     },
19654
19655     // private
19656     // Implements the default empty TriggerField.onTriggerClick function
19657     onTriggerClick : function(){
19658         if(this.disabled){
19659             return;
19660         }
19661         if(this.isExpanded()){
19662             this.collapse();
19663             if (!this.blockFocus) {
19664                 this.el.focus();
19665             }
19666             
19667         }else {
19668             this.hasFocus = true;
19669             if(this.triggerAction == 'all') {
19670                 this.doQuery(this.allQuery, true);
19671             } else {
19672                 this.doQuery(this.getRawValue());
19673             }
19674             if (!this.blockFocus) {
19675                 this.el.focus();
19676             }
19677         }
19678     },
19679     listKeyPress : function(e)
19680     {
19681         //Roo.log('listkeypress');
19682         // scroll to first matching element based on key pres..
19683         if (e.isSpecialKey()) {
19684             return false;
19685         }
19686         var k = String.fromCharCode(e.getKey()).toUpperCase();
19687         //Roo.log(k);
19688         var match  = false;
19689         var csel = this.view.getSelectedNodes();
19690         var cselitem = false;
19691         if (csel.length) {
19692             var ix = this.view.indexOf(csel[0]);
19693             cselitem  = this.store.getAt(ix);
19694             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
19695                 cselitem = false;
19696             }
19697             
19698         }
19699         
19700         this.store.each(function(v) { 
19701             if (cselitem) {
19702                 // start at existing selection.
19703                 if (cselitem.id == v.id) {
19704                     cselitem = false;
19705                 }
19706                 return;
19707             }
19708                 
19709             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
19710                 match = this.store.indexOf(v);
19711                 return false;
19712             }
19713         }, this);
19714         
19715         if (match === false) {
19716             return true; // no more action?
19717         }
19718         // scroll to?
19719         this.view.select(match);
19720         var sn = Roo.get(this.view.getSelectedNodes()[0]);
19721         sn.scrollIntoView(sn.dom.parentNode, false);
19722     } 
19723
19724     /** 
19725     * @cfg {Boolean} grow 
19726     * @hide 
19727     */
19728     /** 
19729     * @cfg {Number} growMin 
19730     * @hide 
19731     */
19732     /** 
19733     * @cfg {Number} growMax 
19734     * @hide 
19735     */
19736     /**
19737      * @hide
19738      * @method autoSize
19739      */
19740 });/*
19741  * Copyright(c) 2010-2012, Roo J Solutions Limited
19742  *
19743  * Licence LGPL
19744  *
19745  */
19746
19747 /**
19748  * @class Roo.form.ComboBoxArray
19749  * @extends Roo.form.TextField
19750  * A facebook style adder... for lists of email / people / countries  etc...
19751  * pick multiple items from a combo box, and shows each one.
19752  *
19753  *  Fred [x]  Brian [x]  [Pick another |v]
19754  *
19755  *
19756  *  For this to work: it needs various extra information
19757  *    - normal combo problay has
19758  *      name, hiddenName
19759  *    + displayField, valueField
19760  *
19761  *    For our purpose...
19762  *
19763  *
19764  *   If we change from 'extends' to wrapping...
19765  *   
19766  *  
19767  *
19768  
19769  
19770  * @constructor
19771  * Create a new ComboBoxArray.
19772  * @param {Object} config Configuration options
19773  */
19774  
19775
19776 Roo.form.ComboBoxArray = function(config)
19777 {
19778     this.addEvents({
19779         /**
19780          * @event beforeremove
19781          * Fires before remove the value from the list
19782              * @param {Roo.form.ComboBoxArray} _self This combo box array
19783              * @param {Roo.form.ComboBoxArray.Item} item removed item
19784              */
19785         'beforeremove' : true,
19786         /**
19787          * @event remove
19788          * Fires when remove the value from the list
19789              * @param {Roo.form.ComboBoxArray} _self This combo box array
19790              * @param {Roo.form.ComboBoxArray.Item} item removed item
19791              */
19792         'remove' : true
19793         
19794         
19795     });
19796     
19797     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
19798     
19799     this.items = new Roo.util.MixedCollection(false);
19800     
19801     // construct the child combo...
19802     
19803     
19804     
19805     
19806    
19807     
19808 }
19809
19810  
19811 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
19812
19813     /**
19814      * @cfg {Roo.form.Combo} combo The combo box that is wrapped
19815      */
19816     
19817     lastData : false,
19818     
19819     // behavies liek a hiddne field
19820     inputType:      'hidden',
19821     /**
19822      * @cfg {Number} width The width of the box that displays the selected element
19823      */ 
19824     width:          300,
19825
19826     
19827     
19828     /**
19829      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
19830      */
19831     name : false,
19832     /**
19833      * @cfg {String} hiddenName    The hidden name of the field, often contains an comma seperated list of names
19834      */
19835     hiddenName : false,
19836       /**
19837      * @cfg {String} seperator    The value seperator normally ',' 
19838      */
19839     seperator : ',',
19840     
19841     // private the array of items that are displayed..
19842     items  : false,
19843     // private - the hidden field el.
19844     hiddenEl : false,
19845     // private - the filed el..
19846     el : false,
19847     
19848     //validateValue : function() { return true; }, // all values are ok!
19849     //onAddClick: function() { },
19850     
19851     onRender : function(ct, position) 
19852     {
19853         
19854         // create the standard hidden element
19855         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
19856         
19857         
19858         // give fake names to child combo;
19859         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
19860         this.combo.name = this.name ? (this.name+'-subcombo') : this.name;
19861         
19862         this.combo = Roo.factory(this.combo, Roo.form);
19863         this.combo.onRender(ct, position);
19864         if (typeof(this.combo.width) != 'undefined') {
19865             this.combo.onResize(this.combo.width,0);
19866         }
19867         
19868         this.combo.initEvents();
19869         
19870         // assigned so form know we need to do this..
19871         this.store          = this.combo.store;
19872         this.valueField     = this.combo.valueField;
19873         this.displayField   = this.combo.displayField ;
19874         
19875         
19876         this.combo.wrap.addClass('x-cbarray-grp');
19877         
19878         var cbwrap = this.combo.wrap.createChild(
19879             {tag: 'div', cls: 'x-cbarray-cb'},
19880             this.combo.el.dom
19881         );
19882         
19883              
19884         this.hiddenEl = this.combo.wrap.createChild({
19885             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
19886         });
19887         this.el = this.combo.wrap.createChild({
19888             tag: 'input',  type:'hidden' , name: this.name, value : ''
19889         });
19890          //   this.el.dom.removeAttribute("name");
19891         
19892         
19893         this.outerWrap = this.combo.wrap;
19894         this.wrap = cbwrap;
19895         
19896         this.outerWrap.setWidth(this.width);
19897         this.outerWrap.dom.removeChild(this.el.dom);
19898         
19899         this.wrap.dom.appendChild(this.el.dom);
19900         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
19901         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
19902         
19903         this.combo.trigger.setStyle('position','relative');
19904         this.combo.trigger.setStyle('left', '0px');
19905         this.combo.trigger.setStyle('top', '2px');
19906         
19907         this.combo.el.setStyle('vertical-align', 'text-bottom');
19908         
19909         //this.trigger.setStyle('vertical-align', 'top');
19910         
19911         // this should use the code from combo really... on('add' ....)
19912         if (this.adder) {
19913             
19914         
19915             this.adder = this.outerWrap.createChild(
19916                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
19917             var _t = this;
19918             this.adder.on('click', function(e) {
19919                 _t.fireEvent('adderclick', this, e);
19920             }, _t);
19921         }
19922         //var _t = this;
19923         //this.adder.on('click', this.onAddClick, _t);
19924         
19925         
19926         this.combo.on('select', function(cb, rec, ix) {
19927             this.addItem(rec.data);
19928             
19929             cb.setValue('');
19930             cb.el.dom.value = '';
19931             //cb.lastData = rec.data;
19932             // add to list
19933             
19934         }, this);
19935         
19936         
19937     },
19938     
19939     
19940     getName: function()
19941     {
19942         // returns hidden if it's set..
19943         if (!this.rendered) {return ''};
19944         return  this.hiddenName ? this.hiddenName : this.name;
19945         
19946     },
19947     
19948     
19949     onResize: function(w, h){
19950         
19951         return;
19952         // not sure if this is needed..
19953         //this.combo.onResize(w,h);
19954         
19955         if(typeof w != 'number'){
19956             // we do not handle it!?!?
19957             return;
19958         }
19959         var tw = this.combo.trigger.getWidth();
19960         tw += this.addicon ? this.addicon.getWidth() : 0;
19961         tw += this.editicon ? this.editicon.getWidth() : 0;
19962         var x = w - tw;
19963         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
19964             
19965         this.combo.trigger.setStyle('left', '0px');
19966         
19967         if(this.list && this.listWidth === undefined){
19968             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
19969             this.list.setWidth(lw);
19970             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
19971         }
19972         
19973     
19974         
19975     },
19976     
19977     addItem: function(rec)
19978     {
19979         var valueField = this.combo.valueField;
19980         var displayField = this.combo.displayField;
19981         
19982         if (this.items.indexOfKey(rec[valueField]) > -1) {
19983             //console.log("GOT " + rec.data.id);
19984             return;
19985         }
19986         
19987         var x = new Roo.form.ComboBoxArray.Item({
19988             //id : rec[this.idField],
19989             data : rec,
19990             displayField : displayField ,
19991             tipField : displayField ,
19992             cb : this
19993         });
19994         // use the 
19995         this.items.add(rec[valueField],x);
19996         // add it before the element..
19997         this.updateHiddenEl();
19998         x.render(this.outerWrap, this.wrap.dom);
19999         // add the image handler..
20000     },
20001     
20002     updateHiddenEl : function()
20003     {
20004         this.validate();
20005         if (!this.hiddenEl) {
20006             return;
20007         }
20008         var ar = [];
20009         var idField = this.combo.valueField;
20010         
20011         this.items.each(function(f) {
20012             ar.push(f.data[idField]);
20013         });
20014         this.hiddenEl.dom.value = ar.join(this.seperator);
20015         this.validate();
20016     },
20017     
20018     reset : function()
20019     {
20020         this.items.clear();
20021         
20022         Roo.each(this.outerWrap.select('.x-cbarray-item', true).elements, function(el){
20023            el.remove();
20024         });
20025         
20026         this.el.dom.value = '';
20027         if (this.hiddenEl) {
20028             this.hiddenEl.dom.value = '';
20029         }
20030         
20031     },
20032     getValue: function()
20033     {
20034         return this.hiddenEl ? this.hiddenEl.dom.value : '';
20035     },
20036     setValue: function(v) // not a valid action - must use addItems..
20037     {
20038         
20039         this.reset();
20040          
20041         if (this.store.isLocal && (typeof(v) == 'string')) {
20042             // then we can use the store to find the values..
20043             // comma seperated at present.. this needs to allow JSON based encoding..
20044             this.hiddenEl.value  = v;
20045             var v_ar = [];
20046             Roo.each(v.split(this.seperator), function(k) {
20047                 Roo.log("CHECK " + this.valueField + ',' + k);
20048                 var li = this.store.query(this.valueField, k);
20049                 if (!li.length) {
20050                     return;
20051                 }
20052                 var add = {};
20053                 add[this.valueField] = k;
20054                 add[this.displayField] = li.item(0).data[this.displayField];
20055                 
20056                 this.addItem(add);
20057             }, this) 
20058              
20059         }
20060         if (typeof(v) == 'object' ) {
20061             // then let's assume it's an array of objects..
20062             Roo.each(v, function(l) {
20063                 var add = l;
20064                 if (typeof(l) == 'string') {
20065                     add = {};
20066                     add[this.valueField] = k;
20067                     add[this.displayField] = k
20068                 }
20069                 this.addItem(add);
20070             }, this);
20071              
20072         }
20073         
20074         
20075     },
20076     setFromData: function(v)
20077     {
20078         // this recieves an object, if setValues is called.
20079         this.reset();
20080         this.el.dom.value = v[this.displayField];
20081         this.hiddenEl.dom.value = v[this.valueField];
20082         if (typeof(v[this.valueField]) != 'string' || !v[this.valueField].length) {
20083             return;
20084         }
20085         var kv = v[this.valueField];
20086         var dv = v[this.displayField];
20087         kv = typeof(kv) != 'string' ? '' : kv;
20088         dv = typeof(dv) != 'string' ? '' : dv;
20089         
20090         
20091         var keys = kv.split(this.seperator);
20092         var display = dv.split(this.seperator);
20093         for (var i = 0 ; i < keys.length; i++) {
20094             add = {};
20095             add[this.valueField] = keys[i];
20096             add[this.displayField] = display[i];
20097             this.addItem(add);
20098         }
20099       
20100         
20101     },
20102     
20103     /**
20104      * Validates the combox array value
20105      * @return {Boolean} True if the value is valid, else false
20106      */
20107     validate : function(){
20108         if(this.disabled || this.validateValue(this.processValue(this.getValue()))){
20109             this.clearInvalid();
20110             return true;
20111         }
20112         return false;
20113     },
20114     
20115     validateValue : function(value){
20116         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
20117         
20118     },
20119     
20120     /*@
20121      * overide
20122      * 
20123      */
20124     isDirty : function() {
20125         if(this.disabled) {
20126             return false;
20127         }
20128         
20129         try {
20130             var d = Roo.decode(String(this.originalValue));
20131         } catch (e) {
20132             return String(this.getValue()) !== String(this.originalValue);
20133         }
20134         
20135         var originalValue = [];
20136         
20137         for (var i = 0; i < d.length; i++){
20138             originalValue.push(d[i][this.valueField]);
20139         }
20140         
20141         return String(this.getValue()) !== String(originalValue.join(this.seperator));
20142         
20143     }
20144     
20145 });
20146
20147
20148
20149 /**
20150  * @class Roo.form.ComboBoxArray.Item
20151  * @extends Roo.BoxComponent
20152  * A selected item in the list
20153  *  Fred [x]  Brian [x]  [Pick another |v]
20154  * 
20155  * @constructor
20156  * Create a new item.
20157  * @param {Object} config Configuration options
20158  */
20159  
20160 Roo.form.ComboBoxArray.Item = function(config) {
20161     config.id = Roo.id();
20162     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
20163 }
20164
20165 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
20166     data : {},
20167     cb: false,
20168     displayField : false,
20169     tipField : false,
20170     
20171     
20172     defaultAutoCreate : {
20173         tag: 'div',
20174         cls: 'x-cbarray-item',
20175         cn : [ 
20176             { tag: 'div' },
20177             {
20178                 tag: 'img',
20179                 width:16,
20180                 height : 16,
20181                 src : Roo.BLANK_IMAGE_URL ,
20182                 align: 'center'
20183             }
20184         ]
20185         
20186     },
20187     
20188  
20189     onRender : function(ct, position)
20190     {
20191         Roo.form.Field.superclass.onRender.call(this, ct, position);
20192         
20193         if(!this.el){
20194             var cfg = this.getAutoCreate();
20195             this.el = ct.createChild(cfg, position);
20196         }
20197         
20198         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
20199         
20200         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
20201             this.cb.renderer(this.data) :
20202             String.format('{0}',this.data[this.displayField]);
20203         
20204             
20205         this.el.child('div').dom.setAttribute('qtip',
20206                         String.format('{0}',this.data[this.tipField])
20207         );
20208         
20209         this.el.child('img').on('click', this.remove, this);
20210         
20211     },
20212    
20213     remove : function()
20214     {
20215         if(this.cb.disabled){
20216             return;
20217         }
20218         
20219         if(false !== this.cb.fireEvent('beforeremove', this.cb, this)){
20220             this.cb.items.remove(this);
20221             this.el.child('img').un('click', this.remove, this);
20222             this.el.remove();
20223             this.cb.updateHiddenEl();
20224
20225             this.cb.fireEvent('remove', this.cb, this);
20226         }
20227         
20228     }
20229 });/*
20230  * RooJS Library 1.1.1
20231  * Copyright(c) 2008-2011  Alan Knowles
20232  *
20233  * License - LGPL
20234  */
20235  
20236
20237 /**
20238  * @class Roo.form.ComboNested
20239  * @extends Roo.form.ComboBox
20240  * A combobox for that allows selection of nested items in a list,
20241  * eg.
20242  *
20243  *  Book
20244  *    -> red
20245  *    -> green
20246  *  Table
20247  *    -> square
20248  *      ->red
20249  *      ->green
20250  *    -> rectangle
20251  *      ->green
20252  *      
20253  * 
20254  * @constructor
20255  * Create a new ComboNested
20256  * @param {Object} config Configuration options
20257  */
20258 Roo.form.ComboNested = function(config){
20259     Roo.form.ComboCheck.superclass.constructor.call(this, config);
20260     // should verify some data...
20261     // like
20262     // hiddenName = required..
20263     // displayField = required
20264     // valudField == required
20265     var req= [ 'hiddenName', 'displayField', 'valueField' ];
20266     var _t = this;
20267     Roo.each(req, function(e) {
20268         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
20269             throw "Roo.form.ComboNested : missing value for: " + e;
20270         }
20271     });
20272      
20273     
20274 };
20275
20276 Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
20277    
20278     /*
20279      * @config {Number} max Number of columns to show
20280      */
20281     
20282     maxColumns : 3,
20283    
20284     list : null, // the outermost div..
20285     innerLists : null, // the
20286     views : null,
20287     stores : null,
20288     // private
20289     loadingChildren : false,
20290     
20291     onRender : function(ct, position)
20292     {
20293         Roo.form.ComboBox.superclass.onRender.call(this, ct, position); // skip parent call - got to above..
20294         
20295         if(this.hiddenName){
20296             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
20297                     'before', true);
20298             this.hiddenField.value =
20299                 this.hiddenValue !== undefined ? this.hiddenValue :
20300                 this.value !== undefined ? this.value : '';
20301
20302             // prevent input submission
20303             this.el.dom.removeAttribute('name');
20304              
20305              
20306         }
20307         
20308         if(Roo.isGecko){
20309             this.el.dom.setAttribute('autocomplete', 'off');
20310         }
20311
20312         var cls = 'x-combo-list';
20313
20314         this.list = new Roo.Layer({
20315             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
20316         });
20317
20318         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
20319         this.list.setWidth(lw);
20320         this.list.swallowEvent('mousewheel');
20321         this.assetHeight = 0;
20322
20323         if(this.title){
20324             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
20325             this.assetHeight += this.header.getHeight();
20326         }
20327         this.innerLists = [];
20328         this.views = [];
20329         this.stores = [];
20330         for (var i =0 ; i < this.maxColumns; i++) {
20331             this.onRenderList( cls, i);
20332         }
20333         
20334         // always needs footer, as we are going to have an 'OK' button.
20335         this.footer = this.list.createChild({cls:cls+'-ft'});
20336         this.pageTb = new Roo.Toolbar(this.footer);  
20337         var _this = this;
20338         this.pageTb.add(  {
20339             
20340             text: 'Done',
20341             handler: function()
20342             {
20343                 _this.collapse();
20344             }
20345         });
20346         
20347         if ( this.allowBlank && !this.disableClear) {
20348             
20349             this.pageTb.add(new Roo.Toolbar.Fill(), {
20350                 cls: 'x-btn-icon x-btn-clear',
20351                 text: '&#160;',
20352                 handler: function()
20353                 {
20354                     _this.collapse();
20355                     _this.clearValue();
20356                     _this.onSelect(false, -1);
20357                 }
20358             });
20359         }
20360         if (this.footer) {
20361             this.assetHeight += this.footer.getHeight();
20362         }
20363         
20364     },
20365     onRenderList : function (  cls, i)
20366     {
20367         
20368         var lw = Math.floor(
20369                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
20370         );
20371         
20372         this.list.setWidth(lw); // default to '1'
20373
20374         var il = this.innerLists[i] = this.list.createChild({cls:cls+'-inner'});
20375         //il.on('mouseover', this.onViewOver, this, { list:  i });
20376         //il.on('mousemove', this.onViewMove, this, { list:  i });
20377         il.setWidth(lw);
20378         il.setStyle({ 'overflow-x' : 'hidden'});
20379
20380         if(!this.tpl){
20381             this.tpl = new Roo.Template({
20382                 html :  '<div class="'+cls+'-item '+cls+'-item-{cn:this.isEmpty}">{' + this.displayField + '}</div>',
20383                 isEmpty: function (value, allValues) {
20384                     //Roo.log(value);
20385                     var dl = typeof(value.data) != 'undefined' ? value.data.length : value.length; ///json is a nested response..
20386                     return dl ? 'has-children' : 'no-children'
20387                 }
20388             });
20389         }
20390         
20391         var store  = this.store;
20392         if (i > 0) {
20393             store  = new Roo.data.SimpleStore({
20394                 //fields : this.store.reader.meta.fields,
20395                 reader : this.store.reader,
20396                 data : [ ]
20397             });
20398         }
20399         this.stores[i]  = store;
20400                   
20401         var view = this.views[i] = new Roo.View(
20402             il,
20403             this.tpl,
20404             {
20405                 singleSelect:true,
20406                 store: store,
20407                 selectedClass: this.selectedClass
20408             }
20409         );
20410         view.getEl().setWidth(lw);
20411         view.getEl().setStyle({
20412             position: i < 1 ? 'relative' : 'absolute',
20413             top: 0,
20414             left: (i * lw ) + 'px',
20415             display : i > 0 ? 'none' : 'block'
20416         });
20417         view.on('selectionchange', this.onSelectChange.createDelegate(this, {list : i }, true));
20418         view.on('dblclick', this.onDoubleClick.createDelegate(this, {list : i }, true));
20419         //view.on('click', this.onViewClick, this, { list : i });
20420
20421         store.on('beforeload', this.onBeforeLoad, this);
20422         store.on('load',  this.onLoad, this, { list  : i});
20423         store.on('loadexception', this.onLoadException, this);
20424
20425         // hide the other vies..
20426         
20427         
20428         
20429     },
20430       
20431     restrictHeight : function()
20432     {
20433         var mh = 0;
20434         Roo.each(this.innerLists, function(il,i) {
20435             var el = this.views[i].getEl();
20436             el.dom.style.height = '';
20437             var inner = el.dom;
20438             var h = Math.max(il.clientHeight, il.offsetHeight, il.scrollHeight);
20439             // only adjust heights on other ones..
20440             mh = Math.max(h, mh);
20441             if (i < 1) {
20442                 
20443                 el.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
20444                 il.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
20445                
20446             }
20447             
20448             
20449         }, this);
20450         
20451         this.list.beginUpdate();
20452         this.list.setHeight(mh+this.list.getFrameWidth('tb')+this.assetHeight);
20453         this.list.alignTo(this.el, this.listAlign);
20454         this.list.endUpdate();
20455         
20456     },
20457      
20458     
20459     // -- store handlers..
20460     // private
20461     onBeforeLoad : function()
20462     {
20463         if(!this.hasFocus){
20464             return;
20465         }
20466         this.innerLists[0].update(this.loadingText ?
20467                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
20468         this.restrictHeight();
20469         this.selectedIndex = -1;
20470     },
20471     // private
20472     onLoad : function(a,b,c,d)
20473     {
20474         if (!this.loadingChildren) {
20475             // then we are loading the top level. - hide the children
20476             for (var i = 1;i < this.views.length; i++) {
20477                 this.views[i].getEl().setStyle({ display : 'none' });
20478             }
20479             var lw = Math.floor(
20480                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
20481             );
20482         
20483              this.list.setWidth(lw); // default to '1'
20484
20485             
20486         }
20487         if(!this.hasFocus){
20488             return;
20489         }
20490         
20491         if(this.store.getCount() > 0) {
20492             this.expand();
20493             this.restrictHeight();   
20494         } else {
20495             this.onEmptyResults();
20496         }
20497         
20498         if (!this.loadingChildren) {
20499             this.selectActive();
20500         }
20501         /*
20502         this.stores[1].loadData([]);
20503         this.stores[2].loadData([]);
20504         this.views
20505         */    
20506     
20507         //this.el.focus();
20508     },
20509     
20510     
20511     // private
20512     onLoadException : function()
20513     {
20514         this.collapse();
20515         Roo.log(this.store.reader.jsonData);
20516         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
20517             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
20518         }
20519         
20520         
20521     },
20522     // no cleaning of leading spaces on blur here.
20523     cleanLeadingSpace : function(e) { },
20524     
20525
20526     onSelectChange : function (view, sels, opts )
20527     {
20528         var ix = view.getSelectedIndexes();
20529          
20530         if (opts.list > this.maxColumns - 2) {
20531             if (view.store.getCount()<  1) {
20532                 this.views[opts.list ].getEl().setStyle({ display :   'none' });
20533
20534             } else  {
20535                 if (ix.length) {
20536                     // used to clear ?? but if we are loading unselected 
20537                     this.setFromData(view.store.getAt(ix[0]).data);
20538                 }
20539                 
20540             }
20541             
20542             return;
20543         }
20544         
20545         if (!ix.length) {
20546             // this get's fired when trigger opens..
20547            // this.setFromData({});
20548             var str = this.stores[opts.list+1];
20549             str.data.clear(); // removeall wihtout the fire events..
20550             return;
20551         }
20552         
20553         var rec = view.store.getAt(ix[0]);
20554          
20555         this.setFromData(rec.data);
20556         this.fireEvent('select', this, rec, ix[0]);
20557         
20558         var lw = Math.floor(
20559              (
20560                 (this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')
20561              ) / this.maxColumns
20562         );
20563         this.loadingChildren = true;
20564         this.stores[opts.list+1].loadDataFromChildren( rec );
20565         this.loadingChildren = false;
20566         var dl = this.stores[opts.list+1]. getTotalCount();
20567         
20568         this.views[opts.list+1].getEl().setHeight( this.innerLists[0].getHeight());
20569         
20570         this.views[opts.list+1].getEl().setStyle({ display : dl ? 'block' : 'none' });
20571         for (var i = opts.list+2; i < this.views.length;i++) {
20572             this.views[i].getEl().setStyle({ display : 'none' });
20573         }
20574         
20575         this.innerLists[opts.list+1].setHeight( this.innerLists[0].getHeight());
20576         this.list.setWidth(lw * (opts.list + (dl ? 2 : 1)));
20577         
20578         if (this.isLoading) {
20579            // this.selectActive(opts.list);
20580         }
20581          
20582     },
20583     
20584     
20585     
20586     
20587     onDoubleClick : function()
20588     {
20589         this.collapse(); //??
20590     },
20591     
20592      
20593     
20594     
20595     
20596     // private
20597     recordToStack : function(store, prop, value, stack)
20598     {
20599         var cstore = new Roo.data.SimpleStore({
20600             //fields : this.store.reader.meta.fields, // we need array reader.. for
20601             reader : this.store.reader,
20602             data : [ ]
20603         });
20604         var _this = this;
20605         var record  = false;
20606         var srec = false;
20607         if(store.getCount() < 1){
20608             return false;
20609         }
20610         store.each(function(r){
20611             if(r.data[prop] == value){
20612                 record = r;
20613             srec = r;
20614                 return false;
20615             }
20616             if (r.data.cn && r.data.cn.length) {
20617                 cstore.loadDataFromChildren( r);
20618                 var cret = _this.recordToStack(cstore, prop, value, stack);
20619                 if (cret !== false) {
20620                     record = cret;
20621                     srec = r;
20622                     return false;
20623                 }
20624             }
20625              
20626             return true;
20627         });
20628         if (record == false) {
20629             return false
20630         }
20631         stack.unshift(srec);
20632         return record;
20633     },
20634     
20635     /*
20636      * find the stack of stores that match our value.
20637      *
20638      * 
20639      */
20640     
20641     selectActive : function ()
20642     {
20643         // if store is not loaded, then we will need to wait for that to happen first.
20644         var stack = [];
20645         this.recordToStack(this.store, this.valueField, this.getValue(), stack);
20646         for (var i = 0; i < stack.length; i++ ) {
20647             this.views[i].select(stack[i].store.indexOf(stack[i]), false, false );
20648         }
20649         
20650     }
20651         
20652          
20653     
20654     
20655     
20656     
20657 });/*
20658  * Based on:
20659  * Ext JS Library 1.1.1
20660  * Copyright(c) 2006-2007, Ext JS, LLC.
20661  *
20662  * Originally Released Under LGPL - original licence link has changed is not relivant.
20663  *
20664  * Fork - LGPL
20665  * <script type="text/javascript">
20666  */
20667 /**
20668  * @class Roo.form.Checkbox
20669  * @extends Roo.form.Field
20670  * Single checkbox field.  Can be used as a direct replacement for traditional checkbox fields.
20671  * @constructor
20672  * Creates a new Checkbox
20673  * @param {Object} config Configuration options
20674  */
20675 Roo.form.Checkbox = function(config){
20676     Roo.form.Checkbox.superclass.constructor.call(this, config);
20677     this.addEvents({
20678         /**
20679          * @event check
20680          * Fires when the checkbox is checked or unchecked.
20681              * @param {Roo.form.Checkbox} this This checkbox
20682              * @param {Boolean} checked The new checked value
20683              */
20684         check : true
20685     });
20686 };
20687
20688 Roo.extend(Roo.form.Checkbox, Roo.form.Field,  {
20689     /**
20690      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
20691      */
20692     focusClass : undefined,
20693     /**
20694      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
20695      */
20696     fieldClass: "x-form-field",
20697     /**
20698      * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
20699      */
20700     checked: false,
20701     /**
20702      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
20703      * {tag: "input", type: "checkbox", autocomplete: "off"})
20704      */
20705     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
20706     /**
20707      * @cfg {String} boxLabel The text that appears beside the checkbox
20708      */
20709     boxLabel : "",
20710     /**
20711      * @cfg {String} inputValue The value that should go into the generated input element's value attribute
20712      */  
20713     inputValue : '1',
20714     /**
20715      * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
20716      */
20717      valueOff: '0', // value when not checked..
20718
20719     actionMode : 'viewEl', 
20720     //
20721     // private
20722     itemCls : 'x-menu-check-item x-form-item',
20723     groupClass : 'x-menu-group-item',
20724     inputType : 'hidden',
20725     
20726     
20727     inSetChecked: false, // check that we are not calling self...
20728     
20729     inputElement: false, // real input element?
20730     basedOn: false, // ????
20731     
20732     isFormField: true, // not sure where this is needed!!!!
20733
20734     onResize : function(){
20735         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
20736         if(!this.boxLabel){
20737             this.el.alignTo(this.wrap, 'c-c');
20738         }
20739     },
20740
20741     initEvents : function(){
20742         Roo.form.Checkbox.superclass.initEvents.call(this);
20743         this.el.on("click", this.onClick,  this);
20744         this.el.on("change", this.onClick,  this);
20745     },
20746
20747
20748     getResizeEl : function(){
20749         return this.wrap;
20750     },
20751
20752     getPositionEl : function(){
20753         return this.wrap;
20754     },
20755
20756     // private
20757     onRender : function(ct, position){
20758         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
20759         /*
20760         if(this.inputValue !== undefined){
20761             this.el.dom.value = this.inputValue;
20762         }
20763         */
20764         //this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
20765         this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
20766         var viewEl = this.wrap.createChild({ 
20767             tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
20768         this.viewEl = viewEl;   
20769         this.wrap.on('click', this.onClick,  this); 
20770         
20771         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
20772         this.el.on('propertychange', this.setFromHidden,  this);  //ie
20773         
20774         
20775         
20776         if(this.boxLabel){
20777             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
20778         //    viewEl.on('click', this.onClick,  this); 
20779         }
20780         //if(this.checked){
20781             this.setChecked(this.checked);
20782         //}else{
20783             //this.checked = this.el.dom;
20784         //}
20785
20786     },
20787
20788     // private
20789     initValue : Roo.emptyFn,
20790
20791     /**
20792      * Returns the checked state of the checkbox.
20793      * @return {Boolean} True if checked, else false
20794      */
20795     getValue : function(){
20796         if(this.el){
20797             return String(this.el.dom.value) == String(this.inputValue ) ? this.inputValue : this.valueOff;
20798         }
20799         return this.valueOff;
20800         
20801     },
20802
20803         // private
20804     onClick : function(){ 
20805         if (this.disabled) {
20806             return;
20807         }
20808         this.setChecked(!this.checked);
20809
20810         //if(this.el.dom.checked != this.checked){
20811         //    this.setValue(this.el.dom.checked);
20812        // }
20813     },
20814
20815     /**
20816      * Sets the checked state of the checkbox.
20817      * On is always based on a string comparison between inputValue and the param.
20818      * @param {Boolean/String} value - the value to set 
20819      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
20820      */
20821     setValue : function(v,suppressEvent){
20822         
20823         
20824         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
20825         //if(this.el && this.el.dom){
20826         //    this.el.dom.checked = this.checked;
20827         //    this.el.dom.defaultChecked = this.checked;
20828         //}
20829         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
20830         //this.fireEvent("check", this, this.checked);
20831     },
20832     // private..
20833     setChecked : function(state,suppressEvent)
20834     {
20835         if (this.inSetChecked) {
20836             this.checked = state;
20837             return;
20838         }
20839         
20840     
20841         if(this.wrap){
20842             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
20843         }
20844         this.checked = state;
20845         if(suppressEvent !== true){
20846             this.fireEvent('check', this, state);
20847         }
20848         this.inSetChecked = true;
20849         this.el.dom.value = state ? this.inputValue : this.valueOff;
20850         this.inSetChecked = false;
20851         
20852     },
20853     // handle setting of hidden value by some other method!!?!?
20854     setFromHidden: function()
20855     {
20856         if(!this.el){
20857             return;
20858         }
20859         //console.log("SET FROM HIDDEN");
20860         //alert('setFrom hidden');
20861         this.setValue(this.el.dom.value);
20862     },
20863     
20864     onDestroy : function()
20865     {
20866         if(this.viewEl){
20867             Roo.get(this.viewEl).remove();
20868         }
20869          
20870         Roo.form.Checkbox.superclass.onDestroy.call(this);
20871     },
20872     
20873     setBoxLabel : function(str)
20874     {
20875         this.wrap.select('.x-form-cb-label', true).first().dom.innerHTML = str;
20876     }
20877
20878 });/*
20879  * Based on:
20880  * Ext JS Library 1.1.1
20881  * Copyright(c) 2006-2007, Ext JS, LLC.
20882  *
20883  * Originally Released Under LGPL - original licence link has changed is not relivant.
20884  *
20885  * Fork - LGPL
20886  * <script type="text/javascript">
20887  */
20888  
20889 /**
20890  * @class Roo.form.Radio
20891  * @extends Roo.form.Checkbox
20892  * Single radio field.  Same as Checkbox, but provided as a convenience for automatically setting the input type.
20893  * Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
20894  * @constructor
20895  * Creates a new Radio
20896  * @param {Object} config Configuration options
20897  */
20898 Roo.form.Radio = function(){
20899     Roo.form.Radio.superclass.constructor.apply(this, arguments);
20900 };
20901 Roo.extend(Roo.form.Radio, Roo.form.Checkbox, {
20902     inputType: 'radio',
20903
20904     /**
20905      * If this radio is part of a group, it will return the selected value
20906      * @return {String}
20907      */
20908     getGroupValue : function(){
20909         return this.el.up('form').child('input[name='+this.el.dom.name+']:checked', true).value;
20910     },
20911     
20912     
20913     onRender : function(ct, position){
20914         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
20915         
20916         if(this.inputValue !== undefined){
20917             this.el.dom.value = this.inputValue;
20918         }
20919          
20920         this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
20921         //this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
20922         //var viewEl = this.wrap.createChild({ 
20923         //    tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
20924         //this.viewEl = viewEl;   
20925         //this.wrap.on('click', this.onClick,  this); 
20926         
20927         //this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
20928         //this.el.on('propertychange', this.setFromHidden,  this);  //ie
20929         
20930         
20931         
20932         if(this.boxLabel){
20933             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
20934         //    viewEl.on('click', this.onClick,  this); 
20935         }
20936          if(this.checked){
20937             this.el.dom.checked =   'checked' ;
20938         }
20939          
20940     } 
20941     
20942     
20943 });//<script type="text/javascript">
20944
20945 /*
20946  * Based  Ext JS Library 1.1.1
20947  * Copyright(c) 2006-2007, Ext JS, LLC.
20948  * LGPL
20949  *
20950  */
20951  
20952 /**
20953  * @class Roo.HtmlEditorCore
20954  * @extends Roo.Component
20955  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
20956  *
20957  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
20958  */
20959
20960 Roo.HtmlEditorCore = function(config){
20961     
20962     
20963     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
20964     
20965     
20966     this.addEvents({
20967         /**
20968          * @event initialize
20969          * Fires when the editor is fully initialized (including the iframe)
20970          * @param {Roo.HtmlEditorCore} this
20971          */
20972         initialize: true,
20973         /**
20974          * @event activate
20975          * Fires when the editor is first receives the focus. Any insertion must wait
20976          * until after this event.
20977          * @param {Roo.HtmlEditorCore} this
20978          */
20979         activate: true,
20980          /**
20981          * @event beforesync
20982          * Fires before the textarea is updated with content from the editor iframe. Return false
20983          * to cancel the sync.
20984          * @param {Roo.HtmlEditorCore} this
20985          * @param {String} html
20986          */
20987         beforesync: true,
20988          /**
20989          * @event beforepush
20990          * Fires before the iframe editor is updated with content from the textarea. Return false
20991          * to cancel the push.
20992          * @param {Roo.HtmlEditorCore} this
20993          * @param {String} html
20994          */
20995         beforepush: true,
20996          /**
20997          * @event sync
20998          * Fires when the textarea is updated with content from the editor iframe.
20999          * @param {Roo.HtmlEditorCore} this
21000          * @param {String} html
21001          */
21002         sync: true,
21003          /**
21004          * @event push
21005          * Fires when the iframe editor is updated with content from the textarea.
21006          * @param {Roo.HtmlEditorCore} this
21007          * @param {String} html
21008          */
21009         push: true,
21010         
21011         /**
21012          * @event editorevent
21013          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
21014          * @param {Roo.HtmlEditorCore} this
21015          */
21016         editorevent: true
21017         
21018     });
21019     
21020     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
21021     
21022     // defaults : white / black...
21023     this.applyBlacklists();
21024     
21025     
21026     
21027 };
21028
21029
21030 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
21031
21032
21033      /**
21034      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
21035      */
21036     
21037     owner : false,
21038     
21039      /**
21040      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
21041      *                        Roo.resizable.
21042      */
21043     resizable : false,
21044      /**
21045      * @cfg {Number} height (in pixels)
21046      */   
21047     height: 300,
21048    /**
21049      * @cfg {Number} width (in pixels)
21050      */   
21051     width: 500,
21052     
21053     /**
21054      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
21055      * 
21056      */
21057     stylesheets: false,
21058     
21059     // id of frame..
21060     frameId: false,
21061     
21062     // private properties
21063     validationEvent : false,
21064     deferHeight: true,
21065     initialized : false,
21066     activated : false,
21067     sourceEditMode : false,
21068     onFocus : Roo.emptyFn,
21069     iframePad:3,
21070     hideMode:'offsets',
21071     
21072     clearUp: true,
21073     
21074     // blacklist + whitelisted elements..
21075     black: false,
21076     white: false,
21077      
21078     bodyCls : '',
21079
21080     /**
21081      * Protected method that will not generally be called directly. It
21082      * is called when the editor initializes the iframe with HTML contents. Override this method if you
21083      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
21084      */
21085     getDocMarkup : function(){
21086         // body styles..
21087         var st = '';
21088         
21089         // inherit styels from page...?? 
21090         if (this.stylesheets === false) {
21091             
21092             Roo.get(document.head).select('style').each(function(node) {
21093                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
21094             });
21095             
21096             Roo.get(document.head).select('link').each(function(node) { 
21097                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
21098             });
21099             
21100         } else if (!this.stylesheets.length) {
21101                 // simple..
21102                 st = '<style type="text/css">' +
21103                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
21104                    '</style>';
21105         } else { 
21106             st = '<style type="text/css">' +
21107                     this.stylesheets +
21108                 '</style>';
21109         }
21110         
21111         st +=  '<style type="text/css">' +
21112             'IMG { cursor: pointer } ' +
21113         '</style>';
21114
21115         var cls = 'roo-htmleditor-body';
21116         
21117         if(this.bodyCls.length){
21118             cls += ' ' + this.bodyCls;
21119         }
21120         
21121         return '<html><head>' + st  +
21122             //<style type="text/css">' +
21123             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
21124             //'</style>' +
21125             ' </head><body class="' +  cls + '"></body></html>';
21126     },
21127
21128     // private
21129     onRender : function(ct, position)
21130     {
21131         var _t = this;
21132         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
21133         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
21134         
21135         
21136         this.el.dom.style.border = '0 none';
21137         this.el.dom.setAttribute('tabIndex', -1);
21138         this.el.addClass('x-hidden hide');
21139         
21140         
21141         
21142         if(Roo.isIE){ // fix IE 1px bogus margin
21143             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
21144         }
21145        
21146         
21147         this.frameId = Roo.id();
21148         
21149          
21150         
21151         var iframe = this.owner.wrap.createChild({
21152             tag: 'iframe',
21153             cls: 'form-control', // bootstrap..
21154             id: this.frameId,
21155             name: this.frameId,
21156             frameBorder : 'no',
21157             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
21158         }, this.el
21159         );
21160         
21161         
21162         this.iframe = iframe.dom;
21163
21164          this.assignDocWin();
21165         
21166         this.doc.designMode = 'on';
21167        
21168         this.doc.open();
21169         this.doc.write(this.getDocMarkup());
21170         this.doc.close();
21171
21172         
21173         var task = { // must defer to wait for browser to be ready
21174             run : function(){
21175                 //console.log("run task?" + this.doc.readyState);
21176                 this.assignDocWin();
21177                 if(this.doc.body || this.doc.readyState == 'complete'){
21178                     try {
21179                         this.doc.designMode="on";
21180                     } catch (e) {
21181                         return;
21182                     }
21183                     Roo.TaskMgr.stop(task);
21184                     this.initEditor.defer(10, this);
21185                 }
21186             },
21187             interval : 10,
21188             duration: 10000,
21189             scope: this
21190         };
21191         Roo.TaskMgr.start(task);
21192
21193     },
21194
21195     // private
21196     onResize : function(w, h)
21197     {
21198          Roo.log('resize: ' +w + ',' + h );
21199         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
21200         if(!this.iframe){
21201             return;
21202         }
21203         if(typeof w == 'number'){
21204             
21205             this.iframe.style.width = w + 'px';
21206         }
21207         if(typeof h == 'number'){
21208             
21209             this.iframe.style.height = h + 'px';
21210             if(this.doc){
21211                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
21212             }
21213         }
21214         
21215     },
21216
21217     /**
21218      * Toggles the editor between standard and source edit mode.
21219      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
21220      */
21221     toggleSourceEdit : function(sourceEditMode){
21222         
21223         this.sourceEditMode = sourceEditMode === true;
21224         
21225         if(this.sourceEditMode){
21226  
21227             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
21228             
21229         }else{
21230             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
21231             //this.iframe.className = '';
21232             this.deferFocus();
21233         }
21234         //this.setSize(this.owner.wrap.getSize());
21235         //this.fireEvent('editmodechange', this, this.sourceEditMode);
21236     },
21237
21238     
21239   
21240
21241     /**
21242      * Protected method that will not generally be called directly. If you need/want
21243      * custom HTML cleanup, this is the method you should override.
21244      * @param {String} html The HTML to be cleaned
21245      * return {String} The cleaned HTML
21246      */
21247     cleanHtml : function(html){
21248         html = String(html);
21249         if(html.length > 5){
21250             if(Roo.isSafari){ // strip safari nonsense
21251                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
21252             }
21253         }
21254         if(html == '&nbsp;'){
21255             html = '';
21256         }
21257         return html;
21258     },
21259
21260     /**
21261      * HTML Editor -> Textarea
21262      * Protected method that will not generally be called directly. Syncs the contents
21263      * of the editor iframe with the textarea.
21264      */
21265     syncValue : function(){
21266         if(this.initialized){
21267             var bd = (this.doc.body || this.doc.documentElement);
21268             //this.cleanUpPaste(); -- this is done else where and causes havoc..
21269             var html = bd.innerHTML;
21270             if(Roo.isSafari){
21271                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
21272                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
21273                 if(m && m[1]){
21274                     html = '<div style="'+m[0]+'">' + html + '</div>';
21275                 }
21276             }
21277             html = this.cleanHtml(html);
21278             // fix up the special chars.. normaly like back quotes in word...
21279             // however we do not want to do this with chinese..
21280             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
21281                 
21282                 var cc = match.charCodeAt();
21283
21284                 // Get the character value, handling surrogate pairs
21285                 if (match.length == 2) {
21286                     // It's a surrogate pair, calculate the Unicode code point
21287                     var high = match.charCodeAt(0) - 0xD800;
21288                     var low  = match.charCodeAt(1) - 0xDC00;
21289                     cc = (high * 0x400) + low + 0x10000;
21290                 }  else if (
21291                     (cc >= 0x4E00 && cc < 0xA000 ) ||
21292                     (cc >= 0x3400 && cc < 0x4E00 ) ||
21293                     (cc >= 0xf900 && cc < 0xfb00 )
21294                 ) {
21295                         return match;
21296                 }  
21297          
21298                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
21299                 return "&#" + cc + ";";
21300                 
21301                 
21302             });
21303             
21304             
21305              
21306             if(this.owner.fireEvent('beforesync', this, html) !== false){
21307                 this.el.dom.value = html;
21308                 this.owner.fireEvent('sync', this, html);
21309             }
21310         }
21311     },
21312
21313     /**
21314      * Protected method that will not generally be called directly. Pushes the value of the textarea
21315      * into the iframe editor.
21316      */
21317     pushValue : function(){
21318         if(this.initialized){
21319             var v = this.el.dom.value.trim();
21320             
21321 //            if(v.length < 1){
21322 //                v = '&#160;';
21323 //            }
21324             
21325             if(this.owner.fireEvent('beforepush', this, v) !== false){
21326                 var d = (this.doc.body || this.doc.documentElement);
21327                 d.innerHTML = v;
21328                 this.cleanUpPaste();
21329                 this.el.dom.value = d.innerHTML;
21330                 this.owner.fireEvent('push', this, v);
21331             }
21332         }
21333     },
21334
21335     // private
21336     deferFocus : function(){
21337         this.focus.defer(10, this);
21338     },
21339
21340     // doc'ed in Field
21341     focus : function(){
21342         if(this.win && !this.sourceEditMode){
21343             this.win.focus();
21344         }else{
21345             this.el.focus();
21346         }
21347     },
21348     
21349     assignDocWin: function()
21350     {
21351         var iframe = this.iframe;
21352         
21353          if(Roo.isIE){
21354             this.doc = iframe.contentWindow.document;
21355             this.win = iframe.contentWindow;
21356         } else {
21357 //            if (!Roo.get(this.frameId)) {
21358 //                return;
21359 //            }
21360 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
21361 //            this.win = Roo.get(this.frameId).dom.contentWindow;
21362             
21363             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
21364                 return;
21365             }
21366             
21367             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
21368             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
21369         }
21370     },
21371     
21372     // private
21373     initEditor : function(){
21374         //console.log("INIT EDITOR");
21375         this.assignDocWin();
21376         
21377         
21378         
21379         this.doc.designMode="on";
21380         this.doc.open();
21381         this.doc.write(this.getDocMarkup());
21382         this.doc.close();
21383         
21384         var dbody = (this.doc.body || this.doc.documentElement);
21385         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
21386         // this copies styles from the containing element into thsi one..
21387         // not sure why we need all of this..
21388         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
21389         
21390         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
21391         //ss['background-attachment'] = 'fixed'; // w3c
21392         dbody.bgProperties = 'fixed'; // ie
21393         //Roo.DomHelper.applyStyles(dbody, ss);
21394         Roo.EventManager.on(this.doc, {
21395             //'mousedown': this.onEditorEvent,
21396             'mouseup': this.onEditorEvent,
21397             'dblclick': this.onEditorEvent,
21398             'click': this.onEditorEvent,
21399             'keyup': this.onEditorEvent,
21400             buffer:100,
21401             scope: this
21402         });
21403         if(Roo.isGecko){
21404             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
21405         }
21406         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
21407             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
21408         }
21409         this.initialized = true;
21410
21411         this.owner.fireEvent('initialize', this);
21412         this.pushValue();
21413     },
21414
21415     // private
21416     onDestroy : function(){
21417         
21418         
21419         
21420         if(this.rendered){
21421             
21422             //for (var i =0; i < this.toolbars.length;i++) {
21423             //    // fixme - ask toolbars for heights?
21424             //    this.toolbars[i].onDestroy();
21425            // }
21426             
21427             //this.wrap.dom.innerHTML = '';
21428             //this.wrap.remove();
21429         }
21430     },
21431
21432     // private
21433     onFirstFocus : function(){
21434         
21435         this.assignDocWin();
21436         
21437         
21438         this.activated = true;
21439          
21440     
21441         if(Roo.isGecko){ // prevent silly gecko errors
21442             this.win.focus();
21443             var s = this.win.getSelection();
21444             if(!s.focusNode || s.focusNode.nodeType != 3){
21445                 var r = s.getRangeAt(0);
21446                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
21447                 r.collapse(true);
21448                 this.deferFocus();
21449             }
21450             try{
21451                 this.execCmd('useCSS', true);
21452                 this.execCmd('styleWithCSS', false);
21453             }catch(e){}
21454         }
21455         this.owner.fireEvent('activate', this);
21456     },
21457
21458     // private
21459     adjustFont: function(btn){
21460         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
21461         //if(Roo.isSafari){ // safari
21462         //    adjust *= 2;
21463        // }
21464         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
21465         if(Roo.isSafari){ // safari
21466             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
21467             v =  (v < 10) ? 10 : v;
21468             v =  (v > 48) ? 48 : v;
21469             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
21470             
21471         }
21472         
21473         
21474         v = Math.max(1, v+adjust);
21475         
21476         this.execCmd('FontSize', v  );
21477     },
21478
21479     onEditorEvent : function(e)
21480     {
21481         this.owner.fireEvent('editorevent', this, e);
21482       //  this.updateToolbar();
21483         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
21484     },
21485
21486     insertTag : function(tg)
21487     {
21488         // could be a bit smarter... -> wrap the current selected tRoo..
21489         if (tg.toLowerCase() == 'span' ||
21490             tg.toLowerCase() == 'code' ||
21491             tg.toLowerCase() == 'sup' ||
21492             tg.toLowerCase() == 'sub' 
21493             ) {
21494             
21495             range = this.createRange(this.getSelection());
21496             var wrappingNode = this.doc.createElement(tg.toLowerCase());
21497             wrappingNode.appendChild(range.extractContents());
21498             range.insertNode(wrappingNode);
21499
21500             return;
21501             
21502             
21503             
21504         }
21505         this.execCmd("formatblock",   tg);
21506         
21507     },
21508     
21509     insertText : function(txt)
21510     {
21511         
21512         
21513         var range = this.createRange();
21514         range.deleteContents();
21515                //alert(Sender.getAttribute('label'));
21516                
21517         range.insertNode(this.doc.createTextNode(txt));
21518     } ,
21519     
21520      
21521
21522     /**
21523      * Executes a Midas editor command on the editor document and performs necessary focus and
21524      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
21525      * @param {String} cmd The Midas command
21526      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
21527      */
21528     relayCmd : function(cmd, value){
21529         this.win.focus();
21530         this.execCmd(cmd, value);
21531         this.owner.fireEvent('editorevent', this);
21532         //this.updateToolbar();
21533         this.owner.deferFocus();
21534     },
21535
21536     /**
21537      * Executes a Midas editor command directly on the editor document.
21538      * For visual commands, you should use {@link #relayCmd} instead.
21539      * <b>This should only be called after the editor is initialized.</b>
21540      * @param {String} cmd The Midas command
21541      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
21542      */
21543     execCmd : function(cmd, value){
21544         this.doc.execCommand(cmd, false, value === undefined ? null : value);
21545         this.syncValue();
21546     },
21547  
21548  
21549    
21550     /**
21551      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
21552      * to insert tRoo.
21553      * @param {String} text | dom node.. 
21554      */
21555     insertAtCursor : function(text)
21556     {
21557         
21558         if(!this.activated){
21559             return;
21560         }
21561         /*
21562         if(Roo.isIE){
21563             this.win.focus();
21564             var r = this.doc.selection.createRange();
21565             if(r){
21566                 r.collapse(true);
21567                 r.pasteHTML(text);
21568                 this.syncValue();
21569                 this.deferFocus();
21570             
21571             }
21572             return;
21573         }
21574         */
21575         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
21576             this.win.focus();
21577             
21578             
21579             // from jquery ui (MIT licenced)
21580             var range, node;
21581             var win = this.win;
21582             
21583             if (win.getSelection && win.getSelection().getRangeAt) {
21584                 range = win.getSelection().getRangeAt(0);
21585                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
21586                 range.insertNode(node);
21587             } else if (win.document.selection && win.document.selection.createRange) {
21588                 // no firefox support
21589                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
21590                 win.document.selection.createRange().pasteHTML(txt);
21591             } else {
21592                 // no firefox support
21593                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
21594                 this.execCmd('InsertHTML', txt);
21595             } 
21596             
21597             this.syncValue();
21598             
21599             this.deferFocus();
21600         }
21601     },
21602  // private
21603     mozKeyPress : function(e){
21604         if(e.ctrlKey){
21605             var c = e.getCharCode(), cmd;
21606           
21607             if(c > 0){
21608                 c = String.fromCharCode(c).toLowerCase();
21609                 switch(c){
21610                     case 'b':
21611                         cmd = 'bold';
21612                         break;
21613                     case 'i':
21614                         cmd = 'italic';
21615                         break;
21616                     
21617                     case 'u':
21618                         cmd = 'underline';
21619                         break;
21620                     
21621                     case 'v':
21622                         this.cleanUpPaste.defer(100, this);
21623                         return;
21624                         
21625                 }
21626                 if(cmd){
21627                     this.win.focus();
21628                     this.execCmd(cmd);
21629                     this.deferFocus();
21630                     e.preventDefault();
21631                 }
21632                 
21633             }
21634         }
21635     },
21636
21637     // private
21638     fixKeys : function(){ // load time branching for fastest keydown performance
21639         if(Roo.isIE){
21640             return function(e){
21641                 var k = e.getKey(), r;
21642                 if(k == e.TAB){
21643                     e.stopEvent();
21644                     r = this.doc.selection.createRange();
21645                     if(r){
21646                         r.collapse(true);
21647                         r.pasteHTML('&#160;&#160;&#160;&#160;');
21648                         this.deferFocus();
21649                     }
21650                     return;
21651                 }
21652                 
21653                 if(k == e.ENTER){
21654                     r = this.doc.selection.createRange();
21655                     if(r){
21656                         var target = r.parentElement();
21657                         if(!target || target.tagName.toLowerCase() != 'li'){
21658                             e.stopEvent();
21659                             r.pasteHTML('<br />');
21660                             r.collapse(false);
21661                             r.select();
21662                         }
21663                     }
21664                 }
21665                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
21666                     this.cleanUpPaste.defer(100, this);
21667                     return;
21668                 }
21669                 
21670                 
21671             };
21672         }else if(Roo.isOpera){
21673             return function(e){
21674                 var k = e.getKey();
21675                 if(k == e.TAB){
21676                     e.stopEvent();
21677                     this.win.focus();
21678                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
21679                     this.deferFocus();
21680                 }
21681                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
21682                     this.cleanUpPaste.defer(100, this);
21683                     return;
21684                 }
21685                 
21686             };
21687         }else if(Roo.isSafari){
21688             return function(e){
21689                 var k = e.getKey();
21690                 
21691                 if(k == e.TAB){
21692                     e.stopEvent();
21693                     this.execCmd('InsertText','\t');
21694                     this.deferFocus();
21695                     return;
21696                 }
21697                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
21698                     this.cleanUpPaste.defer(100, this);
21699                     return;
21700                 }
21701                 
21702              };
21703         }
21704     }(),
21705     
21706     getAllAncestors: function()
21707     {
21708         var p = this.getSelectedNode();
21709         var a = [];
21710         if (!p) {
21711             a.push(p); // push blank onto stack..
21712             p = this.getParentElement();
21713         }
21714         
21715         
21716         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
21717             a.push(p);
21718             p = p.parentNode;
21719         }
21720         a.push(this.doc.body);
21721         return a;
21722     },
21723     lastSel : false,
21724     lastSelNode : false,
21725     
21726     
21727     getSelection : function() 
21728     {
21729         this.assignDocWin();
21730         return Roo.isIE ? this.doc.selection : this.win.getSelection();
21731     },
21732     
21733     getSelectedNode: function() 
21734     {
21735         // this may only work on Gecko!!!
21736         
21737         // should we cache this!!!!
21738         
21739         
21740         
21741          
21742         var range = this.createRange(this.getSelection()).cloneRange();
21743         
21744         if (Roo.isIE) {
21745             var parent = range.parentElement();
21746             while (true) {
21747                 var testRange = range.duplicate();
21748                 testRange.moveToElementText(parent);
21749                 if (testRange.inRange(range)) {
21750                     break;
21751                 }
21752                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
21753                     break;
21754                 }
21755                 parent = parent.parentElement;
21756             }
21757             return parent;
21758         }
21759         
21760         // is ancestor a text element.
21761         var ac =  range.commonAncestorContainer;
21762         if (ac.nodeType == 3) {
21763             ac = ac.parentNode;
21764         }
21765         
21766         var ar = ac.childNodes;
21767          
21768         var nodes = [];
21769         var other_nodes = [];
21770         var has_other_nodes = false;
21771         for (var i=0;i<ar.length;i++) {
21772             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
21773                 continue;
21774             }
21775             // fullly contained node.
21776             
21777             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
21778                 nodes.push(ar[i]);
21779                 continue;
21780             }
21781             
21782             // probably selected..
21783             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
21784                 other_nodes.push(ar[i]);
21785                 continue;
21786             }
21787             // outer..
21788             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
21789                 continue;
21790             }
21791             
21792             
21793             has_other_nodes = true;
21794         }
21795         if (!nodes.length && other_nodes.length) {
21796             nodes= other_nodes;
21797         }
21798         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
21799             return false;
21800         }
21801         
21802         return nodes[0];
21803     },
21804     createRange: function(sel)
21805     {
21806         // this has strange effects when using with 
21807         // top toolbar - not sure if it's a great idea.
21808         //this.editor.contentWindow.focus();
21809         if (typeof sel != "undefined") {
21810             try {
21811                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
21812             } catch(e) {
21813                 return this.doc.createRange();
21814             }
21815         } else {
21816             return this.doc.createRange();
21817         }
21818     },
21819     getParentElement: function()
21820     {
21821         
21822         this.assignDocWin();
21823         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
21824         
21825         var range = this.createRange(sel);
21826          
21827         try {
21828             var p = range.commonAncestorContainer;
21829             while (p.nodeType == 3) { // text node
21830                 p = p.parentNode;
21831             }
21832             return p;
21833         } catch (e) {
21834             return null;
21835         }
21836     
21837     },
21838     /***
21839      *
21840      * Range intersection.. the hard stuff...
21841      *  '-1' = before
21842      *  '0' = hits..
21843      *  '1' = after.
21844      *         [ -- selected range --- ]
21845      *   [fail]                        [fail]
21846      *
21847      *    basically..
21848      *      if end is before start or  hits it. fail.
21849      *      if start is after end or hits it fail.
21850      *
21851      *   if either hits (but other is outside. - then it's not 
21852      *   
21853      *    
21854      **/
21855     
21856     
21857     // @see http://www.thismuchiknow.co.uk/?p=64.
21858     rangeIntersectsNode : function(range, node)
21859     {
21860         var nodeRange = node.ownerDocument.createRange();
21861         try {
21862             nodeRange.selectNode(node);
21863         } catch (e) {
21864             nodeRange.selectNodeContents(node);
21865         }
21866     
21867         var rangeStartRange = range.cloneRange();
21868         rangeStartRange.collapse(true);
21869     
21870         var rangeEndRange = range.cloneRange();
21871         rangeEndRange.collapse(false);
21872     
21873         var nodeStartRange = nodeRange.cloneRange();
21874         nodeStartRange.collapse(true);
21875     
21876         var nodeEndRange = nodeRange.cloneRange();
21877         nodeEndRange.collapse(false);
21878     
21879         return rangeStartRange.compareBoundaryPoints(
21880                  Range.START_TO_START, nodeEndRange) == -1 &&
21881                rangeEndRange.compareBoundaryPoints(
21882                  Range.START_TO_START, nodeStartRange) == 1;
21883         
21884          
21885     },
21886     rangeCompareNode : function(range, node)
21887     {
21888         var nodeRange = node.ownerDocument.createRange();
21889         try {
21890             nodeRange.selectNode(node);
21891         } catch (e) {
21892             nodeRange.selectNodeContents(node);
21893         }
21894         
21895         
21896         range.collapse(true);
21897     
21898         nodeRange.collapse(true);
21899      
21900         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
21901         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
21902          
21903         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
21904         
21905         var nodeIsBefore   =  ss == 1;
21906         var nodeIsAfter    = ee == -1;
21907         
21908         if (nodeIsBefore && nodeIsAfter) {
21909             return 0; // outer
21910         }
21911         if (!nodeIsBefore && nodeIsAfter) {
21912             return 1; //right trailed.
21913         }
21914         
21915         if (nodeIsBefore && !nodeIsAfter) {
21916             return 2;  // left trailed.
21917         }
21918         // fully contined.
21919         return 3;
21920     },
21921
21922     // private? - in a new class?
21923     cleanUpPaste :  function()
21924     {
21925         // cleans up the whole document..
21926         Roo.log('cleanuppaste');
21927         
21928         this.cleanUpChildren(this.doc.body);
21929         var clean = this.cleanWordChars(this.doc.body.innerHTML);
21930         if (clean != this.doc.body.innerHTML) {
21931             this.doc.body.innerHTML = clean;
21932         }
21933         
21934     },
21935     
21936     cleanWordChars : function(input) {// change the chars to hex code
21937         var he = Roo.HtmlEditorCore;
21938         
21939         var output = input;
21940         Roo.each(he.swapCodes, function(sw) { 
21941             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
21942             
21943             output = output.replace(swapper, sw[1]);
21944         });
21945         
21946         return output;
21947     },
21948     
21949     
21950     cleanUpChildren : function (n)
21951     {
21952         if (!n.childNodes.length) {
21953             return;
21954         }
21955         for (var i = n.childNodes.length-1; i > -1 ; i--) {
21956            this.cleanUpChild(n.childNodes[i]);
21957         }
21958     },
21959     
21960     
21961         
21962     
21963     cleanUpChild : function (node)
21964     {
21965         var ed = this;
21966         //console.log(node);
21967         if (node.nodeName == "#text") {
21968             // clean up silly Windows -- stuff?
21969             return; 
21970         }
21971         if (node.nodeName == "#comment") {
21972             node.parentNode.removeChild(node);
21973             // clean up silly Windows -- stuff?
21974             return; 
21975         }
21976         var lcname = node.tagName.toLowerCase();
21977         // we ignore whitelists... ?? = not really the way to go, but we probably have not got a full
21978         // whitelist of tags..
21979         
21980         if (this.black.indexOf(lcname) > -1 && this.clearUp ) {
21981             // remove node.
21982             node.parentNode.removeChild(node);
21983             return;
21984             
21985         }
21986         
21987         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
21988         
21989         // spans with no attributes - just remove them..
21990         if ((!node.attributes || !node.attributes.length) && lcname == 'span') { 
21991             remove_keep_children = true;
21992         }
21993         
21994         // remove <a name=....> as rendering on yahoo mailer is borked with this.
21995         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
21996         
21997         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
21998         //    remove_keep_children = true;
21999         //}
22000         
22001         if (remove_keep_children) {
22002             this.cleanUpChildren(node);
22003             // inserts everything just before this node...
22004             while (node.childNodes.length) {
22005                 var cn = node.childNodes[0];
22006                 node.removeChild(cn);
22007                 node.parentNode.insertBefore(cn, node);
22008             }
22009             node.parentNode.removeChild(node);
22010             return;
22011         }
22012         
22013         if (!node.attributes || !node.attributes.length) {
22014             
22015           
22016             
22017             
22018             this.cleanUpChildren(node);
22019             return;
22020         }
22021         
22022         function cleanAttr(n,v)
22023         {
22024             
22025             if (v.match(/^\./) || v.match(/^\//)) {
22026                 return;
22027             }
22028             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/) || v.match(/^ftp:/)) {
22029                 return;
22030             }
22031             if (v.match(/^#/)) {
22032                 return;
22033             }
22034 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
22035             node.removeAttribute(n);
22036             
22037         }
22038         
22039         var cwhite = this.cwhite;
22040         var cblack = this.cblack;
22041             
22042         function cleanStyle(n,v)
22043         {
22044             if (v.match(/expression/)) { //XSS?? should we even bother..
22045                 node.removeAttribute(n);
22046                 return;
22047             }
22048             
22049             var parts = v.split(/;/);
22050             var clean = [];
22051             
22052             Roo.each(parts, function(p) {
22053                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
22054                 if (!p.length) {
22055                     return true;
22056                 }
22057                 var l = p.split(':').shift().replace(/\s+/g,'');
22058                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
22059                 
22060                 if ( cwhite.length && cblack.indexOf(l) > -1) {
22061 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
22062                     //node.removeAttribute(n);
22063                     return true;
22064                 }
22065                 //Roo.log()
22066                 // only allow 'c whitelisted system attributes'
22067                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
22068 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
22069                     //node.removeAttribute(n);
22070                     return true;
22071                 }
22072                 
22073                 
22074                  
22075                 
22076                 clean.push(p);
22077                 return true;
22078             });
22079             if (clean.length) { 
22080                 node.setAttribute(n, clean.join(';'));
22081             } else {
22082                 node.removeAttribute(n);
22083             }
22084             
22085         }
22086         
22087         
22088         for (var i = node.attributes.length-1; i > -1 ; i--) {
22089             var a = node.attributes[i];
22090             //console.log(a);
22091             
22092             if (a.name.toLowerCase().substr(0,2)=='on')  {
22093                 node.removeAttribute(a.name);
22094                 continue;
22095             }
22096             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
22097                 node.removeAttribute(a.name);
22098                 continue;
22099             }
22100             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
22101                 cleanAttr(a.name,a.value); // fixme..
22102                 continue;
22103             }
22104             if (a.name == 'style') {
22105                 cleanStyle(a.name,a.value);
22106                 continue;
22107             }
22108             /// clean up MS crap..
22109             // tecnically this should be a list of valid class'es..
22110             
22111             
22112             if (a.name == 'class') {
22113                 if (a.value.match(/^Mso/)) {
22114                     node.removeAttribute('class');
22115                 }
22116                 
22117                 if (a.value.match(/^body$/)) {
22118                     node.removeAttribute('class');
22119                 }
22120                 continue;
22121             }
22122             
22123             // style cleanup!?
22124             // class cleanup?
22125             
22126         }
22127         
22128         
22129         this.cleanUpChildren(node);
22130         
22131         
22132     },
22133     
22134     /**
22135      * Clean up MS wordisms...
22136      */
22137     cleanWord : function(node)
22138     {
22139         if (!node) {
22140             this.cleanWord(this.doc.body);
22141             return;
22142         }
22143         
22144         if(
22145                 node.nodeName == 'SPAN' &&
22146                 !node.hasAttributes() &&
22147                 node.childNodes.length == 1 &&
22148                 node.firstChild.nodeName == "#text"  
22149         ) {
22150             var textNode = node.firstChild;
22151             node.removeChild(textNode);
22152             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
22153                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
22154             }
22155             node.parentNode.insertBefore(textNode, node);
22156             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
22157                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
22158             }
22159             node.parentNode.removeChild(node);
22160         }
22161         
22162         if (node.nodeName == "#text") {
22163             // clean up silly Windows -- stuff?
22164             return; 
22165         }
22166         if (node.nodeName == "#comment") {
22167             node.parentNode.removeChild(node);
22168             // clean up silly Windows -- stuff?
22169             return; 
22170         }
22171         
22172         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
22173             node.parentNode.removeChild(node);
22174             return;
22175         }
22176         //Roo.log(node.tagName);
22177         // remove - but keep children..
22178         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
22179             //Roo.log('-- removed');
22180             while (node.childNodes.length) {
22181                 var cn = node.childNodes[0];
22182                 node.removeChild(cn);
22183                 node.parentNode.insertBefore(cn, node);
22184                 // move node to parent - and clean it..
22185                 this.cleanWord(cn);
22186             }
22187             node.parentNode.removeChild(node);
22188             /// no need to iterate chidlren = it's got none..
22189             //this.iterateChildren(node, this.cleanWord);
22190             return;
22191         }
22192         // clean styles
22193         if (node.className.length) {
22194             
22195             var cn = node.className.split(/\W+/);
22196             var cna = [];
22197             Roo.each(cn, function(cls) {
22198                 if (cls.match(/Mso[a-zA-Z]+/)) {
22199                     return;
22200                 }
22201                 cna.push(cls);
22202             });
22203             node.className = cna.length ? cna.join(' ') : '';
22204             if (!cna.length) {
22205                 node.removeAttribute("class");
22206             }
22207         }
22208         
22209         if (node.hasAttribute("lang")) {
22210             node.removeAttribute("lang");
22211         }
22212         
22213         if (node.hasAttribute("style")) {
22214             
22215             var styles = node.getAttribute("style").split(";");
22216             var nstyle = [];
22217             Roo.each(styles, function(s) {
22218                 if (!s.match(/:/)) {
22219                     return;
22220                 }
22221                 var kv = s.split(":");
22222                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
22223                     return;
22224                 }
22225                 // what ever is left... we allow.
22226                 nstyle.push(s);
22227             });
22228             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
22229             if (!nstyle.length) {
22230                 node.removeAttribute('style');
22231             }
22232         }
22233         this.iterateChildren(node, this.cleanWord);
22234         
22235         
22236         
22237     },
22238     /**
22239      * iterateChildren of a Node, calling fn each time, using this as the scole..
22240      * @param {DomNode} node node to iterate children of.
22241      * @param {Function} fn method of this class to call on each item.
22242      */
22243     iterateChildren : function(node, fn)
22244     {
22245         if (!node.childNodes.length) {
22246                 return;
22247         }
22248         for (var i = node.childNodes.length-1; i > -1 ; i--) {
22249            fn.call(this, node.childNodes[i])
22250         }
22251     },
22252     
22253     
22254     /**
22255      * cleanTableWidths.
22256      *
22257      * Quite often pasting from word etc.. results in tables with column and widths.
22258      * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
22259      *
22260      */
22261     cleanTableWidths : function(node)
22262     {
22263          
22264          
22265         if (!node) {
22266             this.cleanTableWidths(this.doc.body);
22267             return;
22268         }
22269         
22270         // ignore list...
22271         if (node.nodeName == "#text" || node.nodeName == "#comment") {
22272             return; 
22273         }
22274         Roo.log(node.tagName);
22275         if (!node.tagName.toLowerCase().match(/^(table|td|tr)$/)) {
22276             this.iterateChildren(node, this.cleanTableWidths);
22277             return;
22278         }
22279         if (node.hasAttribute('width')) {
22280             node.removeAttribute('width');
22281         }
22282         
22283          
22284         if (node.hasAttribute("style")) {
22285             // pretty basic...
22286             
22287             var styles = node.getAttribute("style").split(";");
22288             var nstyle = [];
22289             Roo.each(styles, function(s) {
22290                 if (!s.match(/:/)) {
22291                     return;
22292                 }
22293                 var kv = s.split(":");
22294                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
22295                     return;
22296                 }
22297                 // what ever is left... we allow.
22298                 nstyle.push(s);
22299             });
22300             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
22301             if (!nstyle.length) {
22302                 node.removeAttribute('style');
22303             }
22304         }
22305         
22306         this.iterateChildren(node, this.cleanTableWidths);
22307         
22308         
22309     },
22310     
22311     
22312     
22313     
22314     domToHTML : function(currentElement, depth, nopadtext) {
22315         
22316         depth = depth || 0;
22317         nopadtext = nopadtext || false;
22318     
22319         if (!currentElement) {
22320             return this.domToHTML(this.doc.body);
22321         }
22322         
22323         //Roo.log(currentElement);
22324         var j;
22325         var allText = false;
22326         var nodeName = currentElement.nodeName;
22327         var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
22328         
22329         if  (nodeName == '#text') {
22330             
22331             return nopadtext ? currentElement.nodeValue : currentElement.nodeValue.trim();
22332         }
22333         
22334         
22335         var ret = '';
22336         if (nodeName != 'BODY') {
22337              
22338             var i = 0;
22339             // Prints the node tagName, such as <A>, <IMG>, etc
22340             if (tagName) {
22341                 var attr = [];
22342                 for(i = 0; i < currentElement.attributes.length;i++) {
22343                     // quoting?
22344                     var aname = currentElement.attributes.item(i).name;
22345                     if (!currentElement.attributes.item(i).value.length) {
22346                         continue;
22347                     }
22348                     attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
22349                 }
22350                 
22351                 ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
22352             } 
22353             else {
22354                 
22355                 // eack
22356             }
22357         } else {
22358             tagName = false;
22359         }
22360         if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
22361             return ret;
22362         }
22363         if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
22364             nopadtext = true;
22365         }
22366         
22367         
22368         // Traverse the tree
22369         i = 0;
22370         var currentElementChild = currentElement.childNodes.item(i);
22371         var allText = true;
22372         var innerHTML  = '';
22373         lastnode = '';
22374         while (currentElementChild) {
22375             // Formatting code (indent the tree so it looks nice on the screen)
22376             var nopad = nopadtext;
22377             if (lastnode == 'SPAN') {
22378                 nopad  = true;
22379             }
22380             // text
22381             if  (currentElementChild.nodeName == '#text') {
22382                 var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
22383                 toadd = nopadtext ? toadd : toadd.trim();
22384                 if (!nopad && toadd.length > 80) {
22385                     innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
22386                 }
22387                 innerHTML  += toadd;
22388                 
22389                 i++;
22390                 currentElementChild = currentElement.childNodes.item(i);
22391                 lastNode = '';
22392                 continue;
22393             }
22394             allText = false;
22395             
22396             innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
22397                 
22398             // Recursively traverse the tree structure of the child node
22399             innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
22400             lastnode = currentElementChild.nodeName;
22401             i++;
22402             currentElementChild=currentElement.childNodes.item(i);
22403         }
22404         
22405         ret += innerHTML;
22406         
22407         if (!allText) {
22408                 // The remaining code is mostly for formatting the tree
22409             ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
22410         }
22411         
22412         
22413         if (tagName) {
22414             ret+= "</"+tagName+">";
22415         }
22416         return ret;
22417         
22418     },
22419         
22420     applyBlacklists : function()
22421     {
22422         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
22423         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
22424         
22425         this.white = [];
22426         this.black = [];
22427         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
22428             if (b.indexOf(tag) > -1) {
22429                 return;
22430             }
22431             this.white.push(tag);
22432             
22433         }, this);
22434         
22435         Roo.each(w, function(tag) {
22436             if (b.indexOf(tag) > -1) {
22437                 return;
22438             }
22439             if (this.white.indexOf(tag) > -1) {
22440                 return;
22441             }
22442             this.white.push(tag);
22443             
22444         }, this);
22445         
22446         
22447         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
22448             if (w.indexOf(tag) > -1) {
22449                 return;
22450             }
22451             this.black.push(tag);
22452             
22453         }, this);
22454         
22455         Roo.each(b, function(tag) {
22456             if (w.indexOf(tag) > -1) {
22457                 return;
22458             }
22459             if (this.black.indexOf(tag) > -1) {
22460                 return;
22461             }
22462             this.black.push(tag);
22463             
22464         }, this);
22465         
22466         
22467         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
22468         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
22469         
22470         this.cwhite = [];
22471         this.cblack = [];
22472         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
22473             if (b.indexOf(tag) > -1) {
22474                 return;
22475             }
22476             this.cwhite.push(tag);
22477             
22478         }, this);
22479         
22480         Roo.each(w, function(tag) {
22481             if (b.indexOf(tag) > -1) {
22482                 return;
22483             }
22484             if (this.cwhite.indexOf(tag) > -1) {
22485                 return;
22486             }
22487             this.cwhite.push(tag);
22488             
22489         }, this);
22490         
22491         
22492         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
22493             if (w.indexOf(tag) > -1) {
22494                 return;
22495             }
22496             this.cblack.push(tag);
22497             
22498         }, this);
22499         
22500         Roo.each(b, function(tag) {
22501             if (w.indexOf(tag) > -1) {
22502                 return;
22503             }
22504             if (this.cblack.indexOf(tag) > -1) {
22505                 return;
22506             }
22507             this.cblack.push(tag);
22508             
22509         }, this);
22510     },
22511     
22512     setStylesheets : function(stylesheets)
22513     {
22514         if(typeof(stylesheets) == 'string'){
22515             Roo.get(this.iframe.contentDocument.head).createChild({
22516                 tag : 'link',
22517                 rel : 'stylesheet',
22518                 type : 'text/css',
22519                 href : stylesheets
22520             });
22521             
22522             return;
22523         }
22524         var _this = this;
22525      
22526         Roo.each(stylesheets, function(s) {
22527             if(!s.length){
22528                 return;
22529             }
22530             
22531             Roo.get(_this.iframe.contentDocument.head).createChild({
22532                 tag : 'link',
22533                 rel : 'stylesheet',
22534                 type : 'text/css',
22535                 href : s
22536             });
22537         });
22538
22539         
22540     },
22541     
22542     removeStylesheets : function()
22543     {
22544         var _this = this;
22545         
22546         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
22547             s.remove();
22548         });
22549     },
22550     
22551     setStyle : function(style)
22552     {
22553         Roo.get(this.iframe.contentDocument.head).createChild({
22554             tag : 'style',
22555             type : 'text/css',
22556             html : style
22557         });
22558
22559         return;
22560     }
22561     
22562     // hide stuff that is not compatible
22563     /**
22564      * @event blur
22565      * @hide
22566      */
22567     /**
22568      * @event change
22569      * @hide
22570      */
22571     /**
22572      * @event focus
22573      * @hide
22574      */
22575     /**
22576      * @event specialkey
22577      * @hide
22578      */
22579     /**
22580      * @cfg {String} fieldClass @hide
22581      */
22582     /**
22583      * @cfg {String} focusClass @hide
22584      */
22585     /**
22586      * @cfg {String} autoCreate @hide
22587      */
22588     /**
22589      * @cfg {String} inputType @hide
22590      */
22591     /**
22592      * @cfg {String} invalidClass @hide
22593      */
22594     /**
22595      * @cfg {String} invalidText @hide
22596      */
22597     /**
22598      * @cfg {String} msgFx @hide
22599      */
22600     /**
22601      * @cfg {String} validateOnBlur @hide
22602      */
22603 });
22604
22605 Roo.HtmlEditorCore.white = [
22606         'area', 'br', 'img', 'input', 'hr', 'wbr',
22607         
22608        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
22609        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
22610        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
22611        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
22612        'table',   'ul',         'xmp', 
22613        
22614        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
22615       'thead',   'tr', 
22616      
22617       'dir', 'menu', 'ol', 'ul', 'dl',
22618        
22619       'embed',  'object'
22620 ];
22621
22622
22623 Roo.HtmlEditorCore.black = [
22624     //    'embed',  'object', // enable - backend responsiblity to clean thiese
22625         'applet', // 
22626         'base',   'basefont', 'bgsound', 'blink',  'body', 
22627         'frame',  'frameset', 'head',    'html',   'ilayer', 
22628         'iframe', 'layer',  'link',     'meta',    'object',   
22629         'script', 'style' ,'title',  'xml' // clean later..
22630 ];
22631 Roo.HtmlEditorCore.clean = [
22632     'script', 'style', 'title', 'xml'
22633 ];
22634 Roo.HtmlEditorCore.remove = [
22635     'font'
22636 ];
22637 // attributes..
22638
22639 Roo.HtmlEditorCore.ablack = [
22640     'on'
22641 ];
22642     
22643 Roo.HtmlEditorCore.aclean = [ 
22644     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
22645 ];
22646
22647 // protocols..
22648 Roo.HtmlEditorCore.pwhite= [
22649         'http',  'https',  'mailto'
22650 ];
22651
22652 // white listed style attributes.
22653 Roo.HtmlEditorCore.cwhite= [
22654       //  'text-align', /// default is to allow most things..
22655       
22656          
22657 //        'font-size'//??
22658 ];
22659
22660 // black listed style attributes.
22661 Roo.HtmlEditorCore.cblack= [
22662       //  'font-size' -- this can be set by the project 
22663 ];
22664
22665
22666 Roo.HtmlEditorCore.swapCodes   =[ 
22667     [    8211, "--" ], 
22668     [    8212, "--" ], 
22669     [    8216,  "'" ],  
22670     [    8217, "'" ],  
22671     [    8220, '"' ],  
22672     [    8221, '"' ],  
22673     [    8226, "*" ],  
22674     [    8230, "..." ]
22675 ]; 
22676
22677     //<script type="text/javascript">
22678
22679 /*
22680  * Ext JS Library 1.1.1
22681  * Copyright(c) 2006-2007, Ext JS, LLC.
22682  * Licence LGPL
22683  * 
22684  */
22685  
22686  
22687 Roo.form.HtmlEditor = function(config){
22688     
22689     
22690     
22691     Roo.form.HtmlEditor.superclass.constructor.call(this, config);
22692     
22693     if (!this.toolbars) {
22694         this.toolbars = [];
22695     }
22696     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
22697     
22698     
22699 };
22700
22701 /**
22702  * @class Roo.form.HtmlEditor
22703  * @extends Roo.form.Field
22704  * Provides a lightweight HTML Editor component.
22705  *
22706  * This has been tested on Fireforx / Chrome.. IE may not be so great..
22707  * 
22708  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
22709  * supported by this editor.</b><br/><br/>
22710  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
22711  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
22712  */
22713 Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
22714     /**
22715      * @cfg {Boolean} clearUp
22716      */
22717     clearUp : true,
22718       /**
22719      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
22720      */
22721     toolbars : false,
22722    
22723      /**
22724      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
22725      *                        Roo.resizable.
22726      */
22727     resizable : false,
22728      /**
22729      * @cfg {Number} height (in pixels)
22730      */   
22731     height: 300,
22732    /**
22733      * @cfg {Number} width (in pixels)
22734      */   
22735     width: 500,
22736     
22737     /**
22738      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
22739      * 
22740      */
22741     stylesheets: false,
22742     
22743     
22744      /**
22745      * @cfg {Array} blacklist of css styles style attributes (blacklist overrides whitelist)
22746      * 
22747      */
22748     cblack: false,
22749     /**
22750      * @cfg {Array} whitelist of css styles style attributes (blacklist overrides whitelist)
22751      * 
22752      */
22753     cwhite: false,
22754     
22755      /**
22756      * @cfg {Array} blacklist of html tags - in addition to standard blacklist.
22757      * 
22758      */
22759     black: false,
22760     /**
22761      * @cfg {Array} whitelist of html tags - in addition to statndard whitelist
22762      * 
22763      */
22764     white: false,
22765     
22766     // id of frame..
22767     frameId: false,
22768     
22769     // private properties
22770     validationEvent : false,
22771     deferHeight: true,
22772     initialized : false,
22773     activated : false,
22774     
22775     onFocus : Roo.emptyFn,
22776     iframePad:3,
22777     hideMode:'offsets',
22778     
22779     actionMode : 'container', // defaults to hiding it...
22780     
22781     defaultAutoCreate : { // modified by initCompnoent..
22782         tag: "textarea",
22783         style:"width:500px;height:300px;",
22784         autocomplete: "new-password"
22785     },
22786
22787     // private
22788     initComponent : function(){
22789         this.addEvents({
22790             /**
22791              * @event initialize
22792              * Fires when the editor is fully initialized (including the iframe)
22793              * @param {HtmlEditor} this
22794              */
22795             initialize: true,
22796             /**
22797              * @event activate
22798              * Fires when the editor is first receives the focus. Any insertion must wait
22799              * until after this event.
22800              * @param {HtmlEditor} this
22801              */
22802             activate: true,
22803              /**
22804              * @event beforesync
22805              * Fires before the textarea is updated with content from the editor iframe. Return false
22806              * to cancel the sync.
22807              * @param {HtmlEditor} this
22808              * @param {String} html
22809              */
22810             beforesync: true,
22811              /**
22812              * @event beforepush
22813              * Fires before the iframe editor is updated with content from the textarea. Return false
22814              * to cancel the push.
22815              * @param {HtmlEditor} this
22816              * @param {String} html
22817              */
22818             beforepush: true,
22819              /**
22820              * @event sync
22821              * Fires when the textarea is updated with content from the editor iframe.
22822              * @param {HtmlEditor} this
22823              * @param {String} html
22824              */
22825             sync: true,
22826              /**
22827              * @event push
22828              * Fires when the iframe editor is updated with content from the textarea.
22829              * @param {HtmlEditor} this
22830              * @param {String} html
22831              */
22832             push: true,
22833              /**
22834              * @event editmodechange
22835              * Fires when the editor switches edit modes
22836              * @param {HtmlEditor} this
22837              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
22838              */
22839             editmodechange: true,
22840             /**
22841              * @event editorevent
22842              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
22843              * @param {HtmlEditor} this
22844              */
22845             editorevent: true,
22846             /**
22847              * @event firstfocus
22848              * Fires when on first focus - needed by toolbars..
22849              * @param {HtmlEditor} this
22850              */
22851             firstfocus: true,
22852             /**
22853              * @event autosave
22854              * Auto save the htmlEditor value as a file into Events
22855              * @param {HtmlEditor} this
22856              */
22857             autosave: true,
22858             /**
22859              * @event savedpreview
22860              * preview the saved version of htmlEditor
22861              * @param {HtmlEditor} this
22862              */
22863             savedpreview: true,
22864             
22865             /**
22866             * @event stylesheetsclick
22867             * Fires when press the Sytlesheets button
22868             * @param {Roo.HtmlEditorCore} this
22869             */
22870             stylesheetsclick: true
22871         });
22872         this.defaultAutoCreate =  {
22873             tag: "textarea",
22874             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
22875             autocomplete: "new-password"
22876         };
22877     },
22878
22879     /**
22880      * Protected method that will not generally be called directly. It
22881      * is called when the editor creates its toolbar. Override this method if you need to
22882      * add custom toolbar buttons.
22883      * @param {HtmlEditor} editor
22884      */
22885     createToolbar : function(editor){
22886         Roo.log("create toolbars");
22887         if (!editor.toolbars || !editor.toolbars.length) {
22888             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
22889         }
22890         
22891         for (var i =0 ; i < editor.toolbars.length;i++) {
22892             editor.toolbars[i] = Roo.factory(
22893                     typeof(editor.toolbars[i]) == 'string' ?
22894                         { xtype: editor.toolbars[i]} : editor.toolbars[i],
22895                 Roo.form.HtmlEditor);
22896             editor.toolbars[i].init(editor);
22897         }
22898          
22899         
22900     },
22901
22902      
22903     // private
22904     onRender : function(ct, position)
22905     {
22906         var _t = this;
22907         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
22908         
22909         this.wrap = this.el.wrap({
22910             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
22911         });
22912         
22913         this.editorcore.onRender(ct, position);
22914          
22915         if (this.resizable) {
22916             this.resizeEl = new Roo.Resizable(this.wrap, {
22917                 pinned : true,
22918                 wrap: true,
22919                 dynamic : true,
22920                 minHeight : this.height,
22921                 height: this.height,
22922                 handles : this.resizable,
22923                 width: this.width,
22924                 listeners : {
22925                     resize : function(r, w, h) {
22926                         _t.onResize(w,h); // -something
22927                     }
22928                 }
22929             });
22930             
22931         }
22932         this.createToolbar(this);
22933        
22934         
22935         if(!this.width){
22936             this.setSize(this.wrap.getSize());
22937         }
22938         if (this.resizeEl) {
22939             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
22940             // should trigger onReize..
22941         }
22942         
22943         this.keyNav = new Roo.KeyNav(this.el, {
22944             
22945             "tab" : function(e){
22946                 e.preventDefault();
22947                 
22948                 var value = this.getValue();
22949                 
22950                 var start = this.el.dom.selectionStart;
22951                 var end = this.el.dom.selectionEnd;
22952                 
22953                 if(!e.shiftKey){
22954                     
22955                     this.setValue(value.substring(0, start) + "\t" + value.substring(end));
22956                     this.el.dom.setSelectionRange(end + 1, end + 1);
22957                     return;
22958                 }
22959                 
22960                 var f = value.substring(0, start).split("\t");
22961                 
22962                 if(f.pop().length != 0){
22963                     return;
22964                 }
22965                 
22966                 this.setValue(f.join("\t") + value.substring(end));
22967                 this.el.dom.setSelectionRange(start - 1, start - 1);
22968                 
22969             },
22970             
22971             "home" : function(e){
22972                 e.preventDefault();
22973                 
22974                 var curr = this.el.dom.selectionStart;
22975                 var lines = this.getValue().split("\n");
22976                 
22977                 if(!lines.length){
22978                     return;
22979                 }
22980                 
22981                 if(e.ctrlKey){
22982                     this.el.dom.setSelectionRange(0, 0);
22983                     return;
22984                 }
22985                 
22986                 var pos = 0;
22987                 
22988                 for (var i = 0; i < lines.length;i++) {
22989                     pos += lines[i].length;
22990                     
22991                     if(i != 0){
22992                         pos += 1;
22993                     }
22994                     
22995                     if(pos < curr){
22996                         continue;
22997                     }
22998                     
22999                     pos -= lines[i].length;
23000                     
23001                     break;
23002                 }
23003                 
23004                 if(!e.shiftKey){
23005                     this.el.dom.setSelectionRange(pos, pos);
23006                     return;
23007                 }
23008                 
23009                 this.el.dom.selectionStart = pos;
23010                 this.el.dom.selectionEnd = curr;
23011             },
23012             
23013             "end" : function(e){
23014                 e.preventDefault();
23015                 
23016                 var curr = this.el.dom.selectionStart;
23017                 var lines = this.getValue().split("\n");
23018                 
23019                 if(!lines.length){
23020                     return;
23021                 }
23022                 
23023                 if(e.ctrlKey){
23024                     this.el.dom.setSelectionRange(this.getValue().length, this.getValue().length);
23025                     return;
23026                 }
23027                 
23028                 var pos = 0;
23029                 
23030                 for (var i = 0; i < lines.length;i++) {
23031                     
23032                     pos += lines[i].length;
23033                     
23034                     if(i != 0){
23035                         pos += 1;
23036                     }
23037                     
23038                     if(pos < curr){
23039                         continue;
23040                     }
23041                     
23042                     break;
23043                 }
23044                 
23045                 if(!e.shiftKey){
23046                     this.el.dom.setSelectionRange(pos, pos);
23047                     return;
23048                 }
23049                 
23050                 this.el.dom.selectionStart = curr;
23051                 this.el.dom.selectionEnd = pos;
23052             },
23053
23054             scope : this,
23055
23056             doRelay : function(foo, bar, hname){
23057                 return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
23058             },
23059
23060             forceKeyDown: true
23061         });
23062         
23063 //        if(this.autosave && this.w){
23064 //            this.autoSaveFn = setInterval(this.autosave, 1000);
23065 //        }
23066     },
23067
23068     // private
23069     onResize : function(w, h)
23070     {
23071         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
23072         var ew = false;
23073         var eh = false;
23074         
23075         if(this.el ){
23076             if(typeof w == 'number'){
23077                 var aw = w - this.wrap.getFrameWidth('lr');
23078                 this.el.setWidth(this.adjustWidth('textarea', aw));
23079                 ew = aw;
23080             }
23081             if(typeof h == 'number'){
23082                 var tbh = 0;
23083                 for (var i =0; i < this.toolbars.length;i++) {
23084                     // fixme - ask toolbars for heights?
23085                     tbh += this.toolbars[i].tb.el.getHeight();
23086                     if (this.toolbars[i].footer) {
23087                         tbh += this.toolbars[i].footer.el.getHeight();
23088                     }
23089                 }
23090                 
23091                 
23092                 
23093                 
23094                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
23095                 ah -= 5; // knock a few pixes off for look..
23096 //                Roo.log(ah);
23097                 this.el.setHeight(this.adjustWidth('textarea', ah));
23098                 var eh = ah;
23099             }
23100         }
23101         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
23102         this.editorcore.onResize(ew,eh);
23103         
23104     },
23105
23106     /**
23107      * Toggles the editor between standard and source edit mode.
23108      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
23109      */
23110     toggleSourceEdit : function(sourceEditMode)
23111     {
23112         this.editorcore.toggleSourceEdit(sourceEditMode);
23113         
23114         if(this.editorcore.sourceEditMode){
23115             Roo.log('editor - showing textarea');
23116             
23117 //            Roo.log('in');
23118 //            Roo.log(this.syncValue());
23119             this.editorcore.syncValue();
23120             this.el.removeClass('x-hidden');
23121             this.el.dom.removeAttribute('tabIndex');
23122             this.el.focus();
23123             
23124             for (var i = 0; i < this.toolbars.length; i++) {
23125                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
23126                     this.toolbars[i].tb.hide();
23127                     this.toolbars[i].footer.hide();
23128                 }
23129             }
23130             
23131         }else{
23132             Roo.log('editor - hiding textarea');
23133 //            Roo.log('out')
23134 //            Roo.log(this.pushValue()); 
23135             this.editorcore.pushValue();
23136             
23137             this.el.addClass('x-hidden');
23138             this.el.dom.setAttribute('tabIndex', -1);
23139             
23140             for (var i = 0; i < this.toolbars.length; i++) {
23141                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
23142                     this.toolbars[i].tb.show();
23143                     this.toolbars[i].footer.show();
23144                 }
23145             }
23146             
23147             //this.deferFocus();
23148         }
23149         
23150         this.setSize(this.wrap.getSize());
23151         this.onResize(this.wrap.getSize().width, this.wrap.getSize().height);
23152         
23153         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
23154     },
23155  
23156     // private (for BoxComponent)
23157     adjustSize : Roo.BoxComponent.prototype.adjustSize,
23158
23159     // private (for BoxComponent)
23160     getResizeEl : function(){
23161         return this.wrap;
23162     },
23163
23164     // private (for BoxComponent)
23165     getPositionEl : function(){
23166         return this.wrap;
23167     },
23168
23169     // private
23170     initEvents : function(){
23171         this.originalValue = this.getValue();
23172     },
23173
23174     /**
23175      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
23176      * @method
23177      */
23178     markInvalid : Roo.emptyFn,
23179     /**
23180      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
23181      * @method
23182      */
23183     clearInvalid : Roo.emptyFn,
23184
23185     setValue : function(v){
23186         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
23187         this.editorcore.pushValue();
23188     },
23189
23190      
23191     // private
23192     deferFocus : function(){
23193         this.focus.defer(10, this);
23194     },
23195
23196     // doc'ed in Field
23197     focus : function(){
23198         this.editorcore.focus();
23199         
23200     },
23201       
23202
23203     // private
23204     onDestroy : function(){
23205         
23206         
23207         
23208         if(this.rendered){
23209             
23210             for (var i =0; i < this.toolbars.length;i++) {
23211                 // fixme - ask toolbars for heights?
23212                 this.toolbars[i].onDestroy();
23213             }
23214             
23215             this.wrap.dom.innerHTML = '';
23216             this.wrap.remove();
23217         }
23218     },
23219
23220     // private
23221     onFirstFocus : function(){
23222         //Roo.log("onFirstFocus");
23223         this.editorcore.onFirstFocus();
23224          for (var i =0; i < this.toolbars.length;i++) {
23225             this.toolbars[i].onFirstFocus();
23226         }
23227         
23228     },
23229     
23230     // private
23231     syncValue : function()
23232     {
23233         this.editorcore.syncValue();
23234     },
23235     
23236     pushValue : function()
23237     {
23238         this.editorcore.pushValue();
23239     },
23240     
23241     setStylesheets : function(stylesheets)
23242     {
23243         this.editorcore.setStylesheets(stylesheets);
23244     },
23245     
23246     removeStylesheets : function()
23247     {
23248         this.editorcore.removeStylesheets();
23249     }
23250      
23251     
23252     // hide stuff that is not compatible
23253     /**
23254      * @event blur
23255      * @hide
23256      */
23257     /**
23258      * @event change
23259      * @hide
23260      */
23261     /**
23262      * @event focus
23263      * @hide
23264      */
23265     /**
23266      * @event specialkey
23267      * @hide
23268      */
23269     /**
23270      * @cfg {String} fieldClass @hide
23271      */
23272     /**
23273      * @cfg {String} focusClass @hide
23274      */
23275     /**
23276      * @cfg {String} autoCreate @hide
23277      */
23278     /**
23279      * @cfg {String} inputType @hide
23280      */
23281     /**
23282      * @cfg {String} invalidClass @hide
23283      */
23284     /**
23285      * @cfg {String} invalidText @hide
23286      */
23287     /**
23288      * @cfg {String} msgFx @hide
23289      */
23290     /**
23291      * @cfg {String} validateOnBlur @hide
23292      */
23293 });
23294  
23295     // <script type="text/javascript">
23296 /*
23297  * Based on
23298  * Ext JS Library 1.1.1
23299  * Copyright(c) 2006-2007, Ext JS, LLC.
23300  *  
23301  
23302  */
23303
23304 /**
23305  * @class Roo.form.HtmlEditorToolbar1
23306  * Basic Toolbar
23307  * 
23308  * Usage:
23309  *
23310  new Roo.form.HtmlEditor({
23311     ....
23312     toolbars : [
23313         new Roo.form.HtmlEditorToolbar1({
23314             disable : { fonts: 1 , format: 1, ..., ... , ...],
23315             btns : [ .... ]
23316         })
23317     }
23318      
23319  * 
23320  * @cfg {Object} disable List of elements to disable..
23321  * @cfg {Array} btns List of additional buttons.
23322  * 
23323  * 
23324  * NEEDS Extra CSS? 
23325  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
23326  */
23327  
23328 Roo.form.HtmlEditor.ToolbarStandard = function(config)
23329 {
23330     
23331     Roo.apply(this, config);
23332     
23333     // default disabled, based on 'good practice'..
23334     this.disable = this.disable || {};
23335     Roo.applyIf(this.disable, {
23336         fontSize : true,
23337         colors : true,
23338         specialElements : true
23339     });
23340     
23341     
23342     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
23343     // dont call parent... till later.
23344 }
23345
23346 Roo.apply(Roo.form.HtmlEditor.ToolbarStandard.prototype,  {
23347     
23348     tb: false,
23349     
23350     rendered: false,
23351     
23352     editor : false,
23353     editorcore : false,
23354     /**
23355      * @cfg {Object} disable  List of toolbar elements to disable
23356          
23357      */
23358     disable : false,
23359     
23360     
23361      /**
23362      * @cfg {String} createLinkText The default text for the create link prompt
23363      */
23364     createLinkText : 'Please enter the URL for the link:',
23365     /**
23366      * @cfg {String} defaultLinkValue The default value for the create link prompt (defaults to http:/ /)
23367      */
23368     defaultLinkValue : 'http:/'+'/',
23369    
23370     
23371       /**
23372      * @cfg {Array} fontFamilies An array of available font families
23373      */
23374     fontFamilies : [
23375         'Arial',
23376         'Courier New',
23377         'Tahoma',
23378         'Times New Roman',
23379         'Verdana'
23380     ],
23381     
23382     specialChars : [
23383            "&#169;",
23384           "&#174;",     
23385           "&#8482;",    
23386           "&#163;" ,    
23387          // "&#8212;",    
23388           "&#8230;",    
23389           "&#247;" ,    
23390         //  "&#225;" ,     ?? a acute?
23391            "&#8364;"    , //Euro
23392        //   "&#8220;"    ,
23393         //  "&#8221;"    ,
23394         //  "&#8226;"    ,
23395           "&#176;"  //   , // degrees
23396
23397          // "&#233;"     , // e ecute
23398          // "&#250;"     , // u ecute?
23399     ],
23400     
23401     specialElements : [
23402         {
23403             text: "Insert Table",
23404             xtype: 'MenuItem',
23405             xns : Roo.Menu,
23406             ihtml :  '<table><tr><td>Cell</td></tr></table>' 
23407                 
23408         },
23409         {    
23410             text: "Insert Image",
23411             xtype: 'MenuItem',
23412             xns : Roo.Menu,
23413             ihtml : '<img src="about:blank"/>'
23414             
23415         }
23416         
23417          
23418     ],
23419     
23420     
23421     inputElements : [ 
23422             "form", "input:text", "input:hidden", "input:checkbox", "input:radio", "input:password", 
23423             "input:submit", "input:button", "select", "textarea", "label" ],
23424     formats : [
23425         ["p"] ,  
23426         ["h1"],["h2"],["h3"],["h4"],["h5"],["h6"], 
23427         ["pre"],[ "code"], 
23428         ["abbr"],[ "acronym"],[ "address"],[ "cite"],[ "samp"],[ "var"],
23429         ['div'],['span'],
23430         ['sup'],['sub']
23431     ],
23432     
23433     cleanStyles : [
23434         "font-size"
23435     ],
23436      /**
23437      * @cfg {String} defaultFont default font to use.
23438      */
23439     defaultFont: 'tahoma',
23440    
23441     fontSelect : false,
23442     
23443     
23444     formatCombo : false,
23445     
23446     init : function(editor)
23447     {
23448         this.editor = editor;
23449         this.editorcore = editor.editorcore ? editor.editorcore : editor;
23450         var editorcore = this.editorcore;
23451         
23452         var _t = this;
23453         
23454         var fid = editorcore.frameId;
23455         var etb = this;
23456         function btn(id, toggle, handler){
23457             var xid = fid + '-'+ id ;
23458             return {
23459                 id : xid,
23460                 cmd : id,
23461                 cls : 'x-btn-icon x-edit-'+id,
23462                 enableToggle:toggle !== false,
23463                 scope: _t, // was editor...
23464                 handler:handler||_t.relayBtnCmd,
23465                 clickEvent:'mousedown',
23466                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
23467                 tabIndex:-1
23468             };
23469         }
23470         
23471         
23472         
23473         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
23474         this.tb = tb;
23475          // stop form submits
23476         tb.el.on('click', function(e){
23477             e.preventDefault(); // what does this do?
23478         });
23479
23480         if(!this.disable.font) { // && !Roo.isSafari){
23481             /* why no safari for fonts 
23482             editor.fontSelect = tb.el.createChild({
23483                 tag:'select',
23484                 tabIndex: -1,
23485                 cls:'x-font-select',
23486                 html: this.createFontOptions()
23487             });
23488             
23489             editor.fontSelect.on('change', function(){
23490                 var font = editor.fontSelect.dom.value;
23491                 editor.relayCmd('fontname', font);
23492                 editor.deferFocus();
23493             }, editor);
23494             
23495             tb.add(
23496                 editor.fontSelect.dom,
23497                 '-'
23498             );
23499             */
23500             
23501         };
23502         if(!this.disable.formats){
23503             this.formatCombo = new Roo.form.ComboBox({
23504                 store: new Roo.data.SimpleStore({
23505                     id : 'tag',
23506                     fields: ['tag'],
23507                     data : this.formats // from states.js
23508                 }),
23509                 blockFocus : true,
23510                 name : '',
23511                 //autoCreate : {tag: "div",  size: "20"},
23512                 displayField:'tag',
23513                 typeAhead: false,
23514                 mode: 'local',
23515                 editable : false,
23516                 triggerAction: 'all',
23517                 emptyText:'Add tag',
23518                 selectOnFocus:true,
23519                 width:135,
23520                 listeners : {
23521                     'select': function(c, r, i) {
23522                         editorcore.insertTag(r.get('tag'));
23523                         editor.focus();
23524                     }
23525                 }
23526
23527             });
23528             tb.addField(this.formatCombo);
23529             
23530         }
23531         
23532         if(!this.disable.format){
23533             tb.add(
23534                 btn('bold'),
23535                 btn('italic'),
23536                 btn('underline'),
23537                 btn('strikethrough')
23538             );
23539         };
23540         if(!this.disable.fontSize){
23541             tb.add(
23542                 '-',
23543                 
23544                 
23545                 btn('increasefontsize', false, editorcore.adjustFont),
23546                 btn('decreasefontsize', false, editorcore.adjustFont)
23547             );
23548         };
23549         
23550         
23551         if(!this.disable.colors){
23552             tb.add(
23553                 '-', {
23554                     id:editorcore.frameId +'-forecolor',
23555                     cls:'x-btn-icon x-edit-forecolor',
23556                     clickEvent:'mousedown',
23557                     tooltip: this.buttonTips['forecolor'] || undefined,
23558                     tabIndex:-1,
23559                     menu : new Roo.menu.ColorMenu({
23560                         allowReselect: true,
23561                         focus: Roo.emptyFn,
23562                         value:'000000',
23563                         plain:true,
23564                         selectHandler: function(cp, color){
23565                             editorcore.execCmd('forecolor', Roo.isSafari || Roo.isIE ? '#'+color : color);
23566                             editor.deferFocus();
23567                         },
23568                         scope: editorcore,
23569                         clickEvent:'mousedown'
23570                     })
23571                 }, {
23572                     id:editorcore.frameId +'backcolor',
23573                     cls:'x-btn-icon x-edit-backcolor',
23574                     clickEvent:'mousedown',
23575                     tooltip: this.buttonTips['backcolor'] || undefined,
23576                     tabIndex:-1,
23577                     menu : new Roo.menu.ColorMenu({
23578                         focus: Roo.emptyFn,
23579                         value:'FFFFFF',
23580                         plain:true,
23581                         allowReselect: true,
23582                         selectHandler: function(cp, color){
23583                             if(Roo.isGecko){
23584                                 editorcore.execCmd('useCSS', false);
23585                                 editorcore.execCmd('hilitecolor', color);
23586                                 editorcore.execCmd('useCSS', true);
23587                                 editor.deferFocus();
23588                             }else{
23589                                 editorcore.execCmd(Roo.isOpera ? 'hilitecolor' : 'backcolor', 
23590                                     Roo.isSafari || Roo.isIE ? '#'+color : color);
23591                                 editor.deferFocus();
23592                             }
23593                         },
23594                         scope:editorcore,
23595                         clickEvent:'mousedown'
23596                     })
23597                 }
23598             );
23599         };
23600         // now add all the items...
23601         
23602
23603         if(!this.disable.alignments){
23604             tb.add(
23605                 '-',
23606                 btn('justifyleft'),
23607                 btn('justifycenter'),
23608                 btn('justifyright')
23609             );
23610         };
23611
23612         //if(!Roo.isSafari){
23613             if(!this.disable.links){
23614                 tb.add(
23615                     '-',
23616                     btn('createlink', false, this.createLink)    /// MOVE TO HERE?!!?!?!?!
23617                 );
23618             };
23619
23620             if(!this.disable.lists){
23621                 tb.add(
23622                     '-',
23623                     btn('insertorderedlist'),
23624                     btn('insertunorderedlist')
23625                 );
23626             }
23627             if(!this.disable.sourceEdit){
23628                 tb.add(
23629                     '-',
23630                     btn('sourceedit', true, function(btn){
23631                         this.toggleSourceEdit(btn.pressed);
23632                     })
23633                 );
23634             }
23635         //}
23636         
23637         var smenu = { };
23638         // special menu.. - needs to be tidied up..
23639         if (!this.disable.special) {
23640             smenu = {
23641                 text: "&#169;",
23642                 cls: 'x-edit-none',
23643                 
23644                 menu : {
23645                     items : []
23646                 }
23647             };
23648             for (var i =0; i < this.specialChars.length; i++) {
23649                 smenu.menu.items.push({
23650                     
23651                     html: this.specialChars[i],
23652                     handler: function(a,b) {
23653                         editorcore.insertAtCursor(String.fromCharCode(a.html.replace('&#','').replace(';', '')));
23654                         //editor.insertAtCursor(a.html);
23655                         
23656                     },
23657                     tabIndex:-1
23658                 });
23659             }
23660             
23661             
23662             tb.add(smenu);
23663             
23664             
23665         }
23666         
23667         var cmenu = { };
23668         if (!this.disable.cleanStyles) {
23669             cmenu = {
23670                 cls: 'x-btn-icon x-btn-clear',
23671                 
23672                 menu : {
23673                     items : []
23674                 }
23675             };
23676             for (var i =0; i < this.cleanStyles.length; i++) {
23677                 cmenu.menu.items.push({
23678                     actiontype : this.cleanStyles[i],
23679                     html: 'Remove ' + this.cleanStyles[i],
23680                     handler: function(a,b) {
23681 //                        Roo.log(a);
23682 //                        Roo.log(b);
23683                         var c = Roo.get(editorcore.doc.body);
23684                         c.select('[style]').each(function(s) {
23685                             s.dom.style.removeProperty(a.actiontype);
23686                         });
23687                         editorcore.syncValue();
23688                     },
23689                     tabIndex:-1
23690                 });
23691             }
23692              cmenu.menu.items.push({
23693                 actiontype : 'tablewidths',
23694                 html: 'Remove Table Widths',
23695                 handler: function(a,b) {
23696                     editorcore.cleanTableWidths();
23697                     editorcore.syncValue();
23698                 },
23699                 tabIndex:-1
23700             });
23701             cmenu.menu.items.push({
23702                 actiontype : 'word',
23703                 html: 'Remove MS Word Formating',
23704                 handler: function(a,b) {
23705                     editorcore.cleanWord();
23706                     editorcore.syncValue();
23707                 },
23708                 tabIndex:-1
23709             });
23710             
23711             cmenu.menu.items.push({
23712                 actiontype : 'all',
23713                 html: 'Remove All Styles',
23714                 handler: function(a,b) {
23715                     
23716                     var c = Roo.get(editorcore.doc.body);
23717                     c.select('[style]').each(function(s) {
23718                         s.dom.removeAttribute('style');
23719                     });
23720                     editorcore.syncValue();
23721                 },
23722                 tabIndex:-1
23723             });
23724             
23725             cmenu.menu.items.push({
23726                 actiontype : 'all',
23727                 html: 'Remove All CSS Classes',
23728                 handler: function(a,b) {
23729                     
23730                     var c = Roo.get(editorcore.doc.body);
23731                     c.select('[class]').each(function(s) {
23732                         s.dom.removeAttribute('class');
23733                     });
23734                     editorcore.cleanWord();
23735                     editorcore.syncValue();
23736                 },
23737                 tabIndex:-1
23738             });
23739             
23740              cmenu.menu.items.push({
23741                 actiontype : 'tidy',
23742                 html: 'Tidy HTML Source',
23743                 handler: function(a,b) {
23744                     editorcore.doc.body.innerHTML = editorcore.domToHTML();
23745                     editorcore.syncValue();
23746                 },
23747                 tabIndex:-1
23748             });
23749             
23750             
23751             tb.add(cmenu);
23752         }
23753          
23754         if (!this.disable.specialElements) {
23755             var semenu = {
23756                 text: "Other;",
23757                 cls: 'x-edit-none',
23758                 menu : {
23759                     items : []
23760                 }
23761             };
23762             for (var i =0; i < this.specialElements.length; i++) {
23763                 semenu.menu.items.push(
23764                     Roo.apply({ 
23765                         handler: function(a,b) {
23766                             editor.insertAtCursor(this.ihtml);
23767                         }
23768                     }, this.specialElements[i])
23769                 );
23770                     
23771             }
23772             
23773             tb.add(semenu);
23774             
23775             
23776         }
23777          
23778         
23779         if (this.btns) {
23780             for(var i =0; i< this.btns.length;i++) {
23781                 var b = Roo.factory(this.btns[i],Roo.form);
23782                 b.cls =  'x-edit-none';
23783                 
23784                 if(typeof(this.btns[i].cls) != 'undefined' && this.btns[i].cls.indexOf('x-init-enable') !== -1){
23785                     b.cls += ' x-init-enable';
23786                 }
23787                 
23788                 b.scope = editorcore;
23789                 tb.add(b);
23790             }
23791         
23792         }
23793         
23794         
23795         
23796         // disable everything...
23797         
23798         this.tb.items.each(function(item){
23799             
23800            if(
23801                 item.id != editorcore.frameId+ '-sourceedit' && 
23802                 (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)
23803             ){
23804                 
23805                 item.disable();
23806             }
23807         });
23808         this.rendered = true;
23809         
23810         // the all the btns;
23811         editor.on('editorevent', this.updateToolbar, this);
23812         // other toolbars need to implement this..
23813         //editor.on('editmodechange', this.updateToolbar, this);
23814     },
23815     
23816     
23817     relayBtnCmd : function(btn) {
23818         this.editorcore.relayCmd(btn.cmd);
23819     },
23820     // private used internally
23821     createLink : function(){
23822         Roo.log("create link?");
23823         var url = prompt(this.createLinkText, this.defaultLinkValue);
23824         if(url && url != 'http:/'+'/'){
23825             this.editorcore.relayCmd('createlink', url);
23826         }
23827     },
23828
23829     
23830     /**
23831      * Protected method that will not generally be called directly. It triggers
23832      * a toolbar update by reading the markup state of the current selection in the editor.
23833      */
23834     updateToolbar: function(){
23835
23836         if(!this.editorcore.activated){
23837             this.editor.onFirstFocus();
23838             return;
23839         }
23840
23841         var btns = this.tb.items.map, 
23842             doc = this.editorcore.doc,
23843             frameId = this.editorcore.frameId;
23844
23845         if(!this.disable.font && !Roo.isSafari){
23846             /*
23847             var name = (doc.queryCommandValue('FontName')||this.editor.defaultFont).toLowerCase();
23848             if(name != this.fontSelect.dom.value){
23849                 this.fontSelect.dom.value = name;
23850             }
23851             */
23852         }
23853         if(!this.disable.format){
23854             btns[frameId + '-bold'].toggle(doc.queryCommandState('bold'));
23855             btns[frameId + '-italic'].toggle(doc.queryCommandState('italic'));
23856             btns[frameId + '-underline'].toggle(doc.queryCommandState('underline'));
23857             btns[frameId + '-strikethrough'].toggle(doc.queryCommandState('strikethrough'));
23858         }
23859         if(!this.disable.alignments){
23860             btns[frameId + '-justifyleft'].toggle(doc.queryCommandState('justifyleft'));
23861             btns[frameId + '-justifycenter'].toggle(doc.queryCommandState('justifycenter'));
23862             btns[frameId + '-justifyright'].toggle(doc.queryCommandState('justifyright'));
23863         }
23864         if(!Roo.isSafari && !this.disable.lists){
23865             btns[frameId + '-insertorderedlist'].toggle(doc.queryCommandState('insertorderedlist'));
23866             btns[frameId + '-insertunorderedlist'].toggle(doc.queryCommandState('insertunorderedlist'));
23867         }
23868         
23869         var ans = this.editorcore.getAllAncestors();
23870         if (this.formatCombo) {
23871             
23872             
23873             var store = this.formatCombo.store;
23874             this.formatCombo.setValue("");
23875             for (var i =0; i < ans.length;i++) {
23876                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
23877                     // select it..
23878                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
23879                     break;
23880                 }
23881             }
23882         }
23883         
23884         
23885         
23886         // hides menus... - so this cant be on a menu...
23887         Roo.menu.MenuMgr.hideAll();
23888
23889         //this.editorsyncValue();
23890     },
23891    
23892     
23893     createFontOptions : function(){
23894         var buf = [], fs = this.fontFamilies, ff, lc;
23895         
23896         
23897         
23898         for(var i = 0, len = fs.length; i< len; i++){
23899             ff = fs[i];
23900             lc = ff.toLowerCase();
23901             buf.push(
23902                 '<option value="',lc,'" style="font-family:',ff,';"',
23903                     (this.defaultFont == lc ? ' selected="true">' : '>'),
23904                     ff,
23905                 '</option>'
23906             );
23907         }
23908         return buf.join('');
23909     },
23910     
23911     toggleSourceEdit : function(sourceEditMode){
23912         
23913         Roo.log("toolbar toogle");
23914         if(sourceEditMode === undefined){
23915             sourceEditMode = !this.sourceEditMode;
23916         }
23917         this.sourceEditMode = sourceEditMode === true;
23918         var btn = this.tb.items.get(this.editorcore.frameId +'-sourceedit');
23919         // just toggle the button?
23920         if(btn.pressed !== this.sourceEditMode){
23921             btn.toggle(this.sourceEditMode);
23922             return;
23923         }
23924         
23925         if(sourceEditMode){
23926             Roo.log("disabling buttons");
23927             this.tb.items.each(function(item){
23928                 if(item.cmd != 'sourceedit' && (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)){
23929                     item.disable();
23930                 }
23931             });
23932           
23933         }else{
23934             Roo.log("enabling buttons");
23935             if(this.editorcore.initialized){
23936                 this.tb.items.each(function(item){
23937                     item.enable();
23938                 });
23939             }
23940             
23941         }
23942         Roo.log("calling toggole on editor");
23943         // tell the editor that it's been pressed..
23944         this.editor.toggleSourceEdit(sourceEditMode);
23945        
23946     },
23947      /**
23948      * Object collection of toolbar tooltips for the buttons in the editor. The key
23949      * is the command id associated with that button and the value is a valid QuickTips object.
23950      * For example:
23951 <pre><code>
23952 {
23953     bold : {
23954         title: 'Bold (Ctrl+B)',
23955         text: 'Make the selected text bold.',
23956         cls: 'x-html-editor-tip'
23957     },
23958     italic : {
23959         title: 'Italic (Ctrl+I)',
23960         text: 'Make the selected text italic.',
23961         cls: 'x-html-editor-tip'
23962     },
23963     ...
23964 </code></pre>
23965     * @type Object
23966      */
23967     buttonTips : {
23968         bold : {
23969             title: 'Bold (Ctrl+B)',
23970             text: 'Make the selected text bold.',
23971             cls: 'x-html-editor-tip'
23972         },
23973         italic : {
23974             title: 'Italic (Ctrl+I)',
23975             text: 'Make the selected text italic.',
23976             cls: 'x-html-editor-tip'
23977         },
23978         underline : {
23979             title: 'Underline (Ctrl+U)',
23980             text: 'Underline the selected text.',
23981             cls: 'x-html-editor-tip'
23982         },
23983         strikethrough : {
23984             title: 'Strikethrough',
23985             text: 'Strikethrough the selected text.',
23986             cls: 'x-html-editor-tip'
23987         },
23988         increasefontsize : {
23989             title: 'Grow Text',
23990             text: 'Increase the font size.',
23991             cls: 'x-html-editor-tip'
23992         },
23993         decreasefontsize : {
23994             title: 'Shrink Text',
23995             text: 'Decrease the font size.',
23996             cls: 'x-html-editor-tip'
23997         },
23998         backcolor : {
23999             title: 'Text Highlight Color',
24000             text: 'Change the background color of the selected text.',
24001             cls: 'x-html-editor-tip'
24002         },
24003         forecolor : {
24004             title: 'Font Color',
24005             text: 'Change the color of the selected text.',
24006             cls: 'x-html-editor-tip'
24007         },
24008         justifyleft : {
24009             title: 'Align Text Left',
24010             text: 'Align text to the left.',
24011             cls: 'x-html-editor-tip'
24012         },
24013         justifycenter : {
24014             title: 'Center Text',
24015             text: 'Center text in the editor.',
24016             cls: 'x-html-editor-tip'
24017         },
24018         justifyright : {
24019             title: 'Align Text Right',
24020             text: 'Align text to the right.',
24021             cls: 'x-html-editor-tip'
24022         },
24023         insertunorderedlist : {
24024             title: 'Bullet List',
24025             text: 'Start a bulleted list.',
24026             cls: 'x-html-editor-tip'
24027         },
24028         insertorderedlist : {
24029             title: 'Numbered List',
24030             text: 'Start a numbered list.',
24031             cls: 'x-html-editor-tip'
24032         },
24033         createlink : {
24034             title: 'Hyperlink',
24035             text: 'Make the selected text a hyperlink.',
24036             cls: 'x-html-editor-tip'
24037         },
24038         sourceedit : {
24039             title: 'Source Edit',
24040             text: 'Switch to source editing mode.',
24041             cls: 'x-html-editor-tip'
24042         }
24043     },
24044     // private
24045     onDestroy : function(){
24046         if(this.rendered){
24047             
24048             this.tb.items.each(function(item){
24049                 if(item.menu){
24050                     item.menu.removeAll();
24051                     if(item.menu.el){
24052                         item.menu.el.destroy();
24053                     }
24054                 }
24055                 item.destroy();
24056             });
24057              
24058         }
24059     },
24060     onFirstFocus: function() {
24061         this.tb.items.each(function(item){
24062            item.enable();
24063         });
24064     }
24065 });
24066
24067
24068
24069
24070 // <script type="text/javascript">
24071 /*
24072  * Based on
24073  * Ext JS Library 1.1.1
24074  * Copyright(c) 2006-2007, Ext JS, LLC.
24075  *  
24076  
24077  */
24078
24079  
24080 /**
24081  * @class Roo.form.HtmlEditor.ToolbarContext
24082  * Context Toolbar
24083  * 
24084  * Usage:
24085  *
24086  new Roo.form.HtmlEditor({
24087     ....
24088     toolbars : [
24089         { xtype: 'ToolbarStandard', styles : {} }
24090         { xtype: 'ToolbarContext', disable : {} }
24091     ]
24092 })
24093
24094      
24095  * 
24096  * @config : {Object} disable List of elements to disable.. (not done yet.)
24097  * @config : {Object} styles  Map of styles available.
24098  * 
24099  */
24100
24101 Roo.form.HtmlEditor.ToolbarContext = function(config)
24102 {
24103     
24104     Roo.apply(this, config);
24105     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
24106     // dont call parent... till later.
24107     this.styles = this.styles || {};
24108 }
24109
24110  
24111
24112 Roo.form.HtmlEditor.ToolbarContext.types = {
24113     'IMG' : {
24114         width : {
24115             title: "Width",
24116             width: 40
24117         },
24118         height:  {
24119             title: "Height",
24120             width: 40
24121         },
24122         align: {
24123             title: "Align",
24124             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
24125             width : 80
24126             
24127         },
24128         border: {
24129             title: "Border",
24130             width: 40
24131         },
24132         alt: {
24133             title: "Alt",
24134             width: 120
24135         },
24136         src : {
24137             title: "Src",
24138             width: 220
24139         }
24140         
24141     },
24142     'A' : {
24143         name : {
24144             title: "Name",
24145             width: 50
24146         },
24147         target:  {
24148             title: "Target",
24149             width: 120
24150         },
24151         href:  {
24152             title: "Href",
24153             width: 220
24154         } // border?
24155         
24156     },
24157     'TABLE' : {
24158         rows : {
24159             title: "Rows",
24160             width: 20
24161         },
24162         cols : {
24163             title: "Cols",
24164             width: 20
24165         },
24166         width : {
24167             title: "Width",
24168             width: 40
24169         },
24170         height : {
24171             title: "Height",
24172             width: 40
24173         },
24174         border : {
24175             title: "Border",
24176             width: 20
24177         }
24178     },
24179     'TD' : {
24180         width : {
24181             title: "Width",
24182             width: 40
24183         },
24184         height : {
24185             title: "Height",
24186             width: 40
24187         },   
24188         align: {
24189             title: "Align",
24190             opts : [[""],[ "left"],[ "center"],[ "right"],[ "justify"],[ "char"]],
24191             width: 80
24192         },
24193         valign: {
24194             title: "Valign",
24195             opts : [[""],[ "top"],[ "middle"],[ "bottom"],[ "baseline"]],
24196             width: 80
24197         },
24198         colspan: {
24199             title: "Colspan",
24200             width: 20
24201             
24202         },
24203          'font-family'  : {
24204             title : "Font",
24205             style : 'fontFamily',
24206             displayField: 'display',
24207             optname : 'font-family',
24208             width: 140
24209         }
24210     },
24211     'INPUT' : {
24212         name : {
24213             title: "name",
24214             width: 120
24215         },
24216         value : {
24217             title: "Value",
24218             width: 120
24219         },
24220         width : {
24221             title: "Width",
24222             width: 40
24223         }
24224     },
24225     'LABEL' : {
24226         'for' : {
24227             title: "For",
24228             width: 120
24229         }
24230     },
24231     'TEXTAREA' : {
24232           name : {
24233             title: "name",
24234             width: 120
24235         },
24236         rows : {
24237             title: "Rows",
24238             width: 20
24239         },
24240         cols : {
24241             title: "Cols",
24242             width: 20
24243         }
24244     },
24245     'SELECT' : {
24246         name : {
24247             title: "name",
24248             width: 120
24249         },
24250         selectoptions : {
24251             title: "Options",
24252             width: 200
24253         }
24254     },
24255     
24256     // should we really allow this??
24257     // should this just be 
24258     'BODY' : {
24259         title : {
24260             title: "Title",
24261             width: 200,
24262             disabled : true
24263         }
24264     },
24265     'SPAN' : {
24266         'font-family'  : {
24267             title : "Font",
24268             style : 'fontFamily',
24269             displayField: 'display',
24270             optname : 'font-family',
24271             width: 140
24272         }
24273     },
24274     'DIV' : {
24275         'font-family'  : {
24276             title : "Font",
24277             style : 'fontFamily',
24278             displayField: 'display',
24279             optname : 'font-family',
24280             width: 140
24281         }
24282     },
24283      'P' : {
24284         'font-family'  : {
24285             title : "Font",
24286             style : 'fontFamily',
24287             displayField: 'display',
24288             optname : 'font-family',
24289             width: 140
24290         }
24291     },
24292     
24293     '*' : {
24294         // empty..
24295     }
24296
24297 };
24298
24299 // this should be configurable.. - you can either set it up using stores, or modify options somehwere..
24300 Roo.form.HtmlEditor.ToolbarContext.stores = false;
24301
24302 Roo.form.HtmlEditor.ToolbarContext.options = {
24303         'font-family'  : [ 
24304                 [ 'Helvetica,Arial,sans-serif', 'Helvetica'],
24305                 [ 'Courier New', 'Courier New'],
24306                 [ 'Tahoma', 'Tahoma'],
24307                 [ 'Times New Roman,serif', 'Times'],
24308                 [ 'Verdana','Verdana' ]
24309         ]
24310 };
24311
24312 // fixme - these need to be configurable..
24313  
24314
24315 //Roo.form.HtmlEditor.ToolbarContext.types
24316
24317
24318 Roo.apply(Roo.form.HtmlEditor.ToolbarContext.prototype,  {
24319     
24320     tb: false,
24321     
24322     rendered: false,
24323     
24324     editor : false,
24325     editorcore : false,
24326     /**
24327      * @cfg {Object} disable  List of toolbar elements to disable
24328          
24329      */
24330     disable : false,
24331     /**
24332      * @cfg {Object} styles List of styles 
24333      *    eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } 
24334      *
24335      * These must be defined in the page, so they get rendered correctly..
24336      * .headline { }
24337      * TD.underline { }
24338      * 
24339      */
24340     styles : false,
24341     
24342     options: false,
24343     
24344     toolbars : false,
24345     
24346     init : function(editor)
24347     {
24348         this.editor = editor;
24349         this.editorcore = editor.editorcore ? editor.editorcore : editor;
24350         var editorcore = this.editorcore;
24351         
24352         var fid = editorcore.frameId;
24353         var etb = this;
24354         function btn(id, toggle, handler){
24355             var xid = fid + '-'+ id ;
24356             return {
24357                 id : xid,
24358                 cmd : id,
24359                 cls : 'x-btn-icon x-edit-'+id,
24360                 enableToggle:toggle !== false,
24361                 scope: editorcore, // was editor...
24362                 handler:handler||editorcore.relayBtnCmd,
24363                 clickEvent:'mousedown',
24364                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
24365                 tabIndex:-1
24366             };
24367         }
24368         // create a new element.
24369         var wdiv = editor.wrap.createChild({
24370                 tag: 'div'
24371             }, editor.wrap.dom.firstChild.nextSibling, true);
24372         
24373         // can we do this more than once??
24374         
24375          // stop form submits
24376       
24377  
24378         // disable everything...
24379         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
24380         this.toolbars = {};
24381            
24382         for (var i in  ty) {
24383           
24384             this.toolbars[i] = this.buildToolbar(ty[i],i);
24385         }
24386         this.tb = this.toolbars.BODY;
24387         this.tb.el.show();
24388         this.buildFooter();
24389         this.footer.show();
24390         editor.on('hide', function( ) { this.footer.hide() }, this);
24391         editor.on('show', function( ) { this.footer.show() }, this);
24392         
24393          
24394         this.rendered = true;
24395         
24396         // the all the btns;
24397         editor.on('editorevent', this.updateToolbar, this);
24398         // other toolbars need to implement this..
24399         //editor.on('editmodechange', this.updateToolbar, this);
24400     },
24401     
24402     
24403     
24404     /**
24405      * Protected method that will not generally be called directly. It triggers
24406      * a toolbar update by reading the markup state of the current selection in the editor.
24407      *
24408      * Note you can force an update by calling on('editorevent', scope, false)
24409      */
24410     updateToolbar: function(editor,ev,sel){
24411
24412         //Roo.log(ev);
24413         // capture mouse up - this is handy for selecting images..
24414         // perhaps should go somewhere else...
24415         if(!this.editorcore.activated){
24416              this.editor.onFirstFocus();
24417             return;
24418         }
24419         
24420         
24421         
24422         // http://developer.yahoo.com/yui/docs/simple-editor.js.html
24423         // selectNode - might want to handle IE?
24424         if (ev &&
24425             (ev.type == 'mouseup' || ev.type == 'click' ) &&
24426             ev.target && ev.target.tagName == 'IMG') {
24427             // they have click on an image...
24428             // let's see if we can change the selection...
24429             sel = ev.target;
24430          
24431               var nodeRange = sel.ownerDocument.createRange();
24432             try {
24433                 nodeRange.selectNode(sel);
24434             } catch (e) {
24435                 nodeRange.selectNodeContents(sel);
24436             }
24437             //nodeRange.collapse(true);
24438             var s = this.editorcore.win.getSelection();
24439             s.removeAllRanges();
24440             s.addRange(nodeRange);
24441         }  
24442         
24443       
24444         var updateFooter = sel ? false : true;
24445         
24446         
24447         var ans = this.editorcore.getAllAncestors();
24448         
24449         // pick
24450         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
24451         
24452         if (!sel) { 
24453             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editorcore.doc.body;
24454             sel = sel ? sel : this.editorcore.doc.body;
24455             sel = sel.tagName.length ? sel : this.editorcore.doc.body;
24456             
24457         }
24458         // pick a menu that exists..
24459         var tn = sel.tagName.toUpperCase();
24460         //sel = typeof(ty[tn]) != 'undefined' ? sel : this.editor.doc.body;
24461         
24462         tn = sel.tagName.toUpperCase();
24463         
24464         var lastSel = this.tb.selectedNode;
24465         
24466         this.tb.selectedNode = sel;
24467         
24468         // if current menu does not match..
24469         
24470         if ((this.tb.name != tn) || (lastSel != this.tb.selectedNode) || ev === false) {
24471                 
24472             this.tb.el.hide();
24473             ///console.log("show: " + tn);
24474             this.tb =  typeof(ty[tn]) != 'undefined' ? this.toolbars[tn] : this.toolbars['*'];
24475             this.tb.el.show();
24476             // update name
24477             this.tb.items.first().el.innerHTML = tn + ':&nbsp;';
24478             
24479             
24480             // update attributes
24481             if (this.tb.fields) {
24482                 this.tb.fields.each(function(e) {
24483                     if (e.stylename) {
24484                         e.setValue(sel.style[e.stylename]);
24485                         return;
24486                     } 
24487                    e.setValue(sel.getAttribute(e.attrname));
24488                 });
24489             }
24490             
24491             var hasStyles = false;
24492             for(var i in this.styles) {
24493                 hasStyles = true;
24494                 break;
24495             }
24496             
24497             // update styles
24498             if (hasStyles) { 
24499                 var st = this.tb.fields.item(0);
24500                 
24501                 st.store.removeAll();
24502                
24503                 
24504                 var cn = sel.className.split(/\s+/);
24505                 
24506                 var avs = [];
24507                 if (this.styles['*']) {
24508                     
24509                     Roo.each(this.styles['*'], function(v) {
24510                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
24511                     });
24512                 }
24513                 if (this.styles[tn]) { 
24514                     Roo.each(this.styles[tn], function(v) {
24515                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
24516                     });
24517                 }
24518                 
24519                 st.store.loadData(avs);
24520                 st.collapse();
24521                 st.setValue(cn);
24522             }
24523             // flag our selected Node.
24524             this.tb.selectedNode = sel;
24525            
24526            
24527             Roo.menu.MenuMgr.hideAll();
24528
24529         }
24530         
24531         if (!updateFooter) {
24532             //this.footDisp.dom.innerHTML = ''; 
24533             return;
24534         }
24535         // update the footer
24536         //
24537         var html = '';
24538         
24539         this.footerEls = ans.reverse();
24540         Roo.each(this.footerEls, function(a,i) {
24541             if (!a) { return; }
24542             html += html.length ? ' &gt; '  :  '';
24543             
24544             html += '<span class="x-ed-loc-' + i + '">' + a.tagName + '</span>';
24545             
24546         });
24547        
24548         // 
24549         var sz = this.footDisp.up('td').getSize();
24550         this.footDisp.dom.style.width = (sz.width -10) + 'px';
24551         this.footDisp.dom.style.marginLeft = '5px';
24552         
24553         this.footDisp.dom.style.overflow = 'hidden';
24554         
24555         this.footDisp.dom.innerHTML = html;
24556             
24557         //this.editorsyncValue();
24558     },
24559      
24560     
24561    
24562        
24563     // private
24564     onDestroy : function(){
24565         if(this.rendered){
24566             
24567             this.tb.items.each(function(item){
24568                 if(item.menu){
24569                     item.menu.removeAll();
24570                     if(item.menu.el){
24571                         item.menu.el.destroy();
24572                     }
24573                 }
24574                 item.destroy();
24575             });
24576              
24577         }
24578     },
24579     onFirstFocus: function() {
24580         // need to do this for all the toolbars..
24581         this.tb.items.each(function(item){
24582            item.enable();
24583         });
24584     },
24585     buildToolbar: function(tlist, nm)
24586     {
24587         var editor = this.editor;
24588         var editorcore = this.editorcore;
24589          // create a new element.
24590         var wdiv = editor.wrap.createChild({
24591                 tag: 'div'
24592             }, editor.wrap.dom.firstChild.nextSibling, true);
24593         
24594        
24595         var tb = new Roo.Toolbar(wdiv);
24596         // add the name..
24597         
24598         tb.add(nm+ ":&nbsp;");
24599         
24600         var styles = [];
24601         for(var i in this.styles) {
24602             styles.push(i);
24603         }
24604         
24605         // styles...
24606         if (styles && styles.length) {
24607             
24608             // this needs a multi-select checkbox...
24609             tb.addField( new Roo.form.ComboBox({
24610                 store: new Roo.data.SimpleStore({
24611                     id : 'val',
24612                     fields: ['val', 'selected'],
24613                     data : [] 
24614                 }),
24615                 name : '-roo-edit-className',
24616                 attrname : 'className',
24617                 displayField: 'val',
24618                 typeAhead: false,
24619                 mode: 'local',
24620                 editable : false,
24621                 triggerAction: 'all',
24622                 emptyText:'Select Style',
24623                 selectOnFocus:true,
24624                 width: 130,
24625                 listeners : {
24626                     'select': function(c, r, i) {
24627                         // initial support only for on class per el..
24628                         tb.selectedNode.className =  r ? r.get('val') : '';
24629                         editorcore.syncValue();
24630                     }
24631                 }
24632     
24633             }));
24634         }
24635         
24636         var tbc = Roo.form.HtmlEditor.ToolbarContext;
24637         var tbops = tbc.options;
24638         
24639         for (var i in tlist) {
24640             
24641             var item = tlist[i];
24642             tb.add(item.title + ":&nbsp;");
24643             
24644             
24645             //optname == used so you can configure the options available..
24646             var opts = item.opts ? item.opts : false;
24647             if (item.optname) {
24648                 opts = tbops[item.optname];
24649            
24650             }
24651             
24652             if (opts) {
24653                 // opts == pulldown..
24654                 tb.addField( new Roo.form.ComboBox({
24655                     store:   typeof(tbc.stores[i]) != 'undefined' ?  Roo.factory(tbc.stores[i],Roo.data) : new Roo.data.SimpleStore({
24656                         id : 'val',
24657                         fields: ['val', 'display'],
24658                         data : opts  
24659                     }),
24660                     name : '-roo-edit-' + i,
24661                     attrname : i,
24662                     stylename : item.style ? item.style : false,
24663                     displayField: item.displayField ? item.displayField : 'val',
24664                     valueField :  'val',
24665                     typeAhead: false,
24666                     mode: typeof(tbc.stores[i]) != 'undefined'  ? 'remote' : 'local',
24667                     editable : false,
24668                     triggerAction: 'all',
24669                     emptyText:'Select',
24670                     selectOnFocus:true,
24671                     width: item.width ? item.width  : 130,
24672                     listeners : {
24673                         'select': function(c, r, i) {
24674                             if (c.stylename) {
24675                                 tb.selectedNode.style[c.stylename] =  r.get('val');
24676                                 return;
24677                             }
24678                             tb.selectedNode.setAttribute(c.attrname, r.get('val'));
24679                         }
24680                     }
24681
24682                 }));
24683                 continue;
24684                     
24685                  
24686                 
24687                 tb.addField( new Roo.form.TextField({
24688                     name: i,
24689                     width: 100,
24690                     //allowBlank:false,
24691                     value: ''
24692                 }));
24693                 continue;
24694             }
24695             tb.addField( new Roo.form.TextField({
24696                 name: '-roo-edit-' + i,
24697                 attrname : i,
24698                 
24699                 width: item.width,
24700                 //allowBlank:true,
24701                 value: '',
24702                 listeners: {
24703                     'change' : function(f, nv, ov) {
24704                         tb.selectedNode.setAttribute(f.attrname, nv);
24705                         editorcore.syncValue();
24706                     }
24707                 }
24708             }));
24709              
24710         }
24711         
24712         var _this = this;
24713         
24714         if(nm == 'BODY'){
24715             tb.addSeparator();
24716         
24717             tb.addButton( {
24718                 text: 'Stylesheets',
24719
24720                 listeners : {
24721                     click : function ()
24722                     {
24723                         _this.editor.fireEvent('stylesheetsclick', _this.editor);
24724                     }
24725                 }
24726             });
24727         }
24728         
24729         tb.addFill();
24730         tb.addButton( {
24731             text: 'Remove Tag',
24732     
24733             listeners : {
24734                 click : function ()
24735                 {
24736                     // remove
24737                     // undo does not work.
24738                      
24739                     var sn = tb.selectedNode;
24740                     
24741                     var pn = sn.parentNode;
24742                     
24743                     var stn =  sn.childNodes[0];
24744                     var en = sn.childNodes[sn.childNodes.length - 1 ];
24745                     while (sn.childNodes.length) {
24746                         var node = sn.childNodes[0];
24747                         sn.removeChild(node);
24748                         //Roo.log(node);
24749                         pn.insertBefore(node, sn);
24750                         
24751                     }
24752                     pn.removeChild(sn);
24753                     var range = editorcore.createRange();
24754         
24755                     range.setStart(stn,0);
24756                     range.setEnd(en,0); //????
24757                     //range.selectNode(sel);
24758                     
24759                     
24760                     var selection = editorcore.getSelection();
24761                     selection.removeAllRanges();
24762                     selection.addRange(range);
24763                     
24764                     
24765                     
24766                     //_this.updateToolbar(null, null, pn);
24767                     _this.updateToolbar(null, null, null);
24768                     _this.footDisp.dom.innerHTML = ''; 
24769                 }
24770             }
24771             
24772                     
24773                 
24774             
24775         });
24776         
24777         
24778         tb.el.on('click', function(e){
24779             e.preventDefault(); // what does this do?
24780         });
24781         tb.el.setVisibilityMode( Roo.Element.DISPLAY);
24782         tb.el.hide();
24783         tb.name = nm;
24784         // dont need to disable them... as they will get hidden
24785         return tb;
24786          
24787         
24788     },
24789     buildFooter : function()
24790     {
24791         
24792         var fel = this.editor.wrap.createChild();
24793         this.footer = new Roo.Toolbar(fel);
24794         // toolbar has scrolly on left / right?
24795         var footDisp= new Roo.Toolbar.Fill();
24796         var _t = this;
24797         this.footer.add(
24798             {
24799                 text : '&lt;',
24800                 xtype: 'Button',
24801                 handler : function() {
24802                     _t.footDisp.scrollTo('left',0,true)
24803                 }
24804             }
24805         );
24806         this.footer.add( footDisp );
24807         this.footer.add( 
24808             {
24809                 text : '&gt;',
24810                 xtype: 'Button',
24811                 handler : function() {
24812                     // no animation..
24813                     _t.footDisp.select('span').last().scrollIntoView(_t.footDisp,true);
24814                 }
24815             }
24816         );
24817         var fel = Roo.get(footDisp.el);
24818         fel.addClass('x-editor-context');
24819         this.footDispWrap = fel; 
24820         this.footDispWrap.overflow  = 'hidden';
24821         
24822         this.footDisp = fel.createChild();
24823         this.footDispWrap.on('click', this.onContextClick, this)
24824         
24825         
24826     },
24827     onContextClick : function (ev,dom)
24828     {
24829         ev.preventDefault();
24830         var  cn = dom.className;
24831         //Roo.log(cn);
24832         if (!cn.match(/x-ed-loc-/)) {
24833             return;
24834         }
24835         var n = cn.split('-').pop();
24836         var ans = this.footerEls;
24837         var sel = ans[n];
24838         
24839          // pick
24840         var range = this.editorcore.createRange();
24841         
24842         range.selectNodeContents(sel);
24843         //range.selectNode(sel);
24844         
24845         
24846         var selection = this.editorcore.getSelection();
24847         selection.removeAllRanges();
24848         selection.addRange(range);
24849         
24850         
24851         
24852         this.updateToolbar(null, null, sel);
24853         
24854         
24855     }
24856     
24857     
24858     
24859     
24860     
24861 });
24862
24863
24864
24865
24866
24867 /*
24868  * Based on:
24869  * Ext JS Library 1.1.1
24870  * Copyright(c) 2006-2007, Ext JS, LLC.
24871  *
24872  * Originally Released Under LGPL - original licence link has changed is not relivant.
24873  *
24874  * Fork - LGPL
24875  * <script type="text/javascript">
24876  */
24877  
24878 /**
24879  * @class Roo.form.BasicForm
24880  * @extends Roo.util.Observable
24881  * Supplies the functionality to do "actions" on forms and initialize Roo.form.Field types on existing markup.
24882  * @constructor
24883  * @param {String/HTMLElement/Roo.Element} el The form element or its id
24884  * @param {Object} config Configuration options
24885  */
24886 Roo.form.BasicForm = function(el, config){
24887     this.allItems = [];
24888     this.childForms = [];
24889     Roo.apply(this, config);
24890     /*
24891      * The Roo.form.Field items in this form.
24892      * @type MixedCollection
24893      */
24894      
24895      
24896     this.items = new Roo.util.MixedCollection(false, function(o){
24897         return o.id || (o.id = Roo.id());
24898     });
24899     this.addEvents({
24900         /**
24901          * @event beforeaction
24902          * Fires before any action is performed. Return false to cancel the action.
24903          * @param {Form} this
24904          * @param {Action} action The action to be performed
24905          */
24906         beforeaction: true,
24907         /**
24908          * @event actionfailed
24909          * Fires when an action fails.
24910          * @param {Form} this
24911          * @param {Action} action The action that failed
24912          */
24913         actionfailed : true,
24914         /**
24915          * @event actioncomplete
24916          * Fires when an action is completed.
24917          * @param {Form} this
24918          * @param {Action} action The action that completed
24919          */
24920         actioncomplete : true
24921     });
24922     if(el){
24923         this.initEl(el);
24924     }
24925     Roo.form.BasicForm.superclass.constructor.call(this);
24926     
24927     Roo.form.BasicForm.popover.apply();
24928 };
24929
24930 Roo.extend(Roo.form.BasicForm, Roo.util.Observable, {
24931     /**
24932      * @cfg {String} method
24933      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
24934      */
24935     /**
24936      * @cfg {DataReader} reader
24937      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing "load" actions.
24938      * This is optional as there is built-in support for processing JSON.
24939      */
24940     /**
24941      * @cfg {DataReader} errorReader
24942      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on "submit" actions.
24943      * This is completely optional as there is built-in support for processing JSON.
24944      */
24945     /**
24946      * @cfg {String} url
24947      * The URL to use for form actions if one isn't supplied in the action options.
24948      */
24949     /**
24950      * @cfg {Boolean} fileUpload
24951      * Set to true if this form is a file upload.
24952      */
24953      
24954     /**
24955      * @cfg {Object} baseParams
24956      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
24957      */
24958      /**
24959      
24960     /**
24961      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
24962      */
24963     timeout: 30,
24964
24965     // private
24966     activeAction : null,
24967
24968     /**
24969      * @cfg {Boolean} trackResetOnLoad If set to true, form.reset() resets to the last loaded
24970      * or setValues() data instead of when the form was first created.
24971      */
24972     trackResetOnLoad : false,
24973     
24974     
24975     /**
24976      * childForms - used for multi-tab forms
24977      * @type {Array}
24978      */
24979     childForms : false,
24980     
24981     /**
24982      * allItems - full list of fields.
24983      * @type {Array}
24984      */
24985     allItems : false,
24986     
24987     /**
24988      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
24989      * element by passing it or its id or mask the form itself by passing in true.
24990      * @type Mixed
24991      */
24992     waitMsgTarget : false,
24993     
24994     /**
24995      * @type Boolean
24996      */
24997     disableMask : false,
24998     
24999     /**
25000      * @cfg {Boolean} errorMask (true|false) default false
25001      */
25002     errorMask : false,
25003     
25004     /**
25005      * @cfg {Number} maskOffset Default 100
25006      */
25007     maskOffset : 100,
25008
25009     // private
25010     initEl : function(el){
25011         this.el = Roo.get(el);
25012         this.id = this.el.id || Roo.id();
25013         this.el.on('submit', this.onSubmit, this);
25014         this.el.addClass('x-form');
25015     },
25016
25017     // private
25018     onSubmit : function(e){
25019         e.stopEvent();
25020     },
25021
25022     /**
25023      * Returns true if client-side validation on the form is successful.
25024      * @return Boolean
25025      */
25026     isValid : function(){
25027         var valid = true;
25028         var target = false;
25029         this.items.each(function(f){
25030             if(f.validate()){
25031                 return;
25032             }
25033             
25034             valid = false;
25035                 
25036             if(!target && f.el.isVisible(true)){
25037                 target = f;
25038             }
25039         });
25040         
25041         if(this.errorMask && !valid){
25042             Roo.form.BasicForm.popover.mask(this, target);
25043         }
25044         
25045         return valid;
25046     },
25047
25048     /**
25049      * DEPRICATED Returns true if any fields in this form have changed since their original load. 
25050      * @return Boolean
25051      */
25052     isDirty : function(){
25053         var dirty = false;
25054         this.items.each(function(f){
25055            if(f.isDirty()){
25056                dirty = true;
25057                return false;
25058            }
25059         });
25060         return dirty;
25061     },
25062     
25063     /**
25064      * Returns true if any fields in this form have changed since their original load. (New version)
25065      * @return Boolean
25066      */
25067     
25068     hasChanged : function()
25069     {
25070         var dirty = false;
25071         this.items.each(function(f){
25072            if(f.hasChanged()){
25073                dirty = true;
25074                return false;
25075            }
25076         });
25077         return dirty;
25078         
25079     },
25080     /**
25081      * Resets all hasChanged to 'false' -
25082      * The old 'isDirty' used 'original value..' however this breaks reset() and a few other things.
25083      * So hasChanged storage is only to be used for this purpose
25084      * @return Boolean
25085      */
25086     resetHasChanged : function()
25087     {
25088         this.items.each(function(f){
25089            f.resetHasChanged();
25090         });
25091         
25092     },
25093     
25094     
25095     /**
25096      * Performs a predefined action (submit or load) or custom actions you define on this form.
25097      * @param {String} actionName The name of the action type
25098      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
25099      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
25100      * accept other config options):
25101      * <pre>
25102 Property          Type             Description
25103 ----------------  ---------------  ----------------------------------------------------------------------------------
25104 url               String           The url for the action (defaults to the form's url)
25105 method            String           The form method to use (defaults to the form's method, or POST if not defined)
25106 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
25107 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
25108                                    validate the form on the client (defaults to false)
25109      * </pre>
25110      * @return {BasicForm} this
25111      */
25112     doAction : function(action, options){
25113         if(typeof action == 'string'){
25114             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
25115         }
25116         if(this.fireEvent('beforeaction', this, action) !== false){
25117             this.beforeAction(action);
25118             action.run.defer(100, action);
25119         }
25120         return this;
25121     },
25122
25123     /**
25124      * Shortcut to do a submit action.
25125      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
25126      * @return {BasicForm} this
25127      */
25128     submit : function(options){
25129         this.doAction('submit', options);
25130         return this;
25131     },
25132
25133     /**
25134      * Shortcut to do a load action.
25135      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
25136      * @return {BasicForm} this
25137      */
25138     load : function(options){
25139         this.doAction('load', options);
25140         return this;
25141     },
25142
25143     /**
25144      * Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block.
25145      * @param {Record} record The record to edit
25146      * @return {BasicForm} this
25147      */
25148     updateRecord : function(record){
25149         record.beginEdit();
25150         var fs = record.fields;
25151         fs.each(function(f){
25152             var field = this.findField(f.name);
25153             if(field){
25154                 record.set(f.name, field.getValue());
25155             }
25156         }, this);
25157         record.endEdit();
25158         return this;
25159     },
25160
25161     /**
25162      * Loads an Roo.data.Record into this form.
25163      * @param {Record} record The record to load
25164      * @return {BasicForm} this
25165      */
25166     loadRecord : function(record){
25167         this.setValues(record.data);
25168         return this;
25169     },
25170
25171     // private
25172     beforeAction : function(action){
25173         var o = action.options;
25174         
25175         if(!this.disableMask) {
25176             if(this.waitMsgTarget === true){
25177                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
25178             }else if(this.waitMsgTarget){
25179                 this.waitMsgTarget = Roo.get(this.waitMsgTarget);
25180                 this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
25181             }else {
25182                 Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
25183             }
25184         }
25185         
25186          
25187     },
25188
25189     // private
25190     afterAction : function(action, success){
25191         this.activeAction = null;
25192         var o = action.options;
25193         
25194         if(!this.disableMask) {
25195             if(this.waitMsgTarget === true){
25196                 this.el.unmask();
25197             }else if(this.waitMsgTarget){
25198                 this.waitMsgTarget.unmask();
25199             }else{
25200                 Roo.MessageBox.updateProgress(1);
25201                 Roo.MessageBox.hide();
25202             }
25203         }
25204         
25205         if(success){
25206             if(o.reset){
25207                 this.reset();
25208             }
25209             Roo.callback(o.success, o.scope, [this, action]);
25210             this.fireEvent('actioncomplete', this, action);
25211             
25212         }else{
25213             
25214             // failure condition..
25215             // we have a scenario where updates need confirming.
25216             // eg. if a locking scenario exists..
25217             // we look for { errors : { needs_confirm : true }} in the response.
25218             if (
25219                 (typeof(action.result) != 'undefined')  &&
25220                 (typeof(action.result.errors) != 'undefined')  &&
25221                 (typeof(action.result.errors.needs_confirm) != 'undefined')
25222            ){
25223                 var _t = this;
25224                 Roo.MessageBox.confirm(
25225                     "Change requires confirmation",
25226                     action.result.errorMsg,
25227                     function(r) {
25228                         if (r != 'yes') {
25229                             return;
25230                         }
25231                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
25232                     }
25233                     
25234                 );
25235                 
25236                 
25237                 
25238                 return;
25239             }
25240             
25241             Roo.callback(o.failure, o.scope, [this, action]);
25242             // show an error message if no failed handler is set..
25243             if (!this.hasListener('actionfailed')) {
25244                 Roo.MessageBox.alert("Error",
25245                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
25246                         action.result.errorMsg :
25247                         "Saving Failed, please check your entries or try again"
25248                 );
25249             }
25250             
25251             this.fireEvent('actionfailed', this, action);
25252         }
25253         
25254     },
25255
25256     /**
25257      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
25258      * @param {String} id The value to search for
25259      * @return Field
25260      */
25261     findField : function(id){
25262         var field = this.items.get(id);
25263         if(!field){
25264             this.items.each(function(f){
25265                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
25266                     field = f;
25267                     return false;
25268                 }
25269             });
25270         }
25271         return field || null;
25272     },
25273
25274     /**
25275      * Add a secondary form to this one, 
25276      * Used to provide tabbed forms. One form is primary, with hidden values 
25277      * which mirror the elements from the other forms.
25278      * 
25279      * @param {Roo.form.Form} form to add.
25280      * 
25281      */
25282     addForm : function(form)
25283     {
25284        
25285         if (this.childForms.indexOf(form) > -1) {
25286             // already added..
25287             return;
25288         }
25289         this.childForms.push(form);
25290         var n = '';
25291         Roo.each(form.allItems, function (fe) {
25292             
25293             n = typeof(fe.getName) == 'undefined' ? fe.name : fe.getName();
25294             if (this.findField(n)) { // already added..
25295                 return;
25296             }
25297             var add = new Roo.form.Hidden({
25298                 name : n
25299             });
25300             add.render(this.el);
25301             
25302             this.add( add );
25303         }, this);
25304         
25305     },
25306     /**
25307      * Mark fields in this form invalid in bulk.
25308      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
25309      * @return {BasicForm} this
25310      */
25311     markInvalid : function(errors){
25312         if(errors instanceof Array){
25313             for(var i = 0, len = errors.length; i < len; i++){
25314                 var fieldError = errors[i];
25315                 var f = this.findField(fieldError.id);
25316                 if(f){
25317                     f.markInvalid(fieldError.msg);
25318                 }
25319             }
25320         }else{
25321             var field, id;
25322             for(id in errors){
25323                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
25324                     field.markInvalid(errors[id]);
25325                 }
25326             }
25327         }
25328         Roo.each(this.childForms || [], function (f) {
25329             f.markInvalid(errors);
25330         });
25331         
25332         return this;
25333     },
25334
25335     /**
25336      * Set values for fields in this form in bulk.
25337      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
25338      * @return {BasicForm} this
25339      */
25340     setValues : function(values){
25341         if(values instanceof Array){ // array of objects
25342             for(var i = 0, len = values.length; i < len; i++){
25343                 var v = values[i];
25344                 var f = this.findField(v.id);
25345                 if(f){
25346                     f.setValue(v.value);
25347                     if(this.trackResetOnLoad){
25348                         f.originalValue = f.getValue();
25349                     }
25350                 }
25351             }
25352         }else{ // object hash
25353             var field, id;
25354             for(id in values){
25355                 if(typeof values[id] != 'function' && (field = this.findField(id))){
25356                     
25357                     if (field.setFromData && 
25358                         field.valueField && 
25359                         field.displayField &&
25360                         // combos' with local stores can 
25361                         // be queried via setValue()
25362                         // to set their value..
25363                         (field.store && !field.store.isLocal)
25364                         ) {
25365                         // it's a combo
25366                         var sd = { };
25367                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
25368                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
25369                         field.setFromData(sd);
25370                         
25371                     } else {
25372                         field.setValue(values[id]);
25373                     }
25374                     
25375                     
25376                     if(this.trackResetOnLoad){
25377                         field.originalValue = field.getValue();
25378                     }
25379                 }
25380             }
25381         }
25382         this.resetHasChanged();
25383         
25384         
25385         Roo.each(this.childForms || [], function (f) {
25386             f.setValues(values);
25387             f.resetHasChanged();
25388         });
25389                 
25390         return this;
25391     },
25392  
25393     /**
25394      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
25395      * they are returned as an array.
25396      * @param {Boolean} asString
25397      * @return {Object}
25398      */
25399     getValues : function(asString){
25400         if (this.childForms) {
25401             // copy values from the child forms
25402             Roo.each(this.childForms, function (f) {
25403                 this.setValues(f.getValues());
25404             }, this);
25405         }
25406         
25407         // use formdata
25408         if (typeof(FormData) != 'undefined' && asString !== true) {
25409             // this relies on a 'recent' version of chrome apparently...
25410             try {
25411                 var fd = (new FormData(this.el.dom)).entries();
25412                 var ret = {};
25413                 var ent = fd.next();
25414                 while (!ent.done) {
25415                     ret[ent.value[0]] = ent.value[1]; // not sure how this will handle duplicates..
25416                     ent = fd.next();
25417                 };
25418                 return ret;
25419             } catch(e) {
25420                 
25421             }
25422             
25423         }
25424         
25425         
25426         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
25427         if(asString === true){
25428             return fs;
25429         }
25430         return Roo.urlDecode(fs);
25431     },
25432     
25433     /**
25434      * Returns the fields in this form as an object with key/value pairs. 
25435      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
25436      * @return {Object}
25437      */
25438     getFieldValues : function(with_hidden)
25439     {
25440         if (this.childForms) {
25441             // copy values from the child forms
25442             // should this call getFieldValues - probably not as we do not currently copy
25443             // hidden fields when we generate..
25444             Roo.each(this.childForms, function (f) {
25445                 this.setValues(f.getValues());
25446             }, this);
25447         }
25448         
25449         var ret = {};
25450         this.items.each(function(f){
25451             if (!f.getName()) {
25452                 return;
25453             }
25454             var v = f.getValue();
25455             if (f.inputType =='radio') {
25456                 if (typeof(ret[f.getName()]) == 'undefined') {
25457                     ret[f.getName()] = ''; // empty..
25458                 }
25459                 
25460                 if (!f.el.dom.checked) {
25461                     return;
25462                     
25463                 }
25464                 v = f.el.dom.value;
25465                 
25466             }
25467             
25468             // not sure if this supported any more..
25469             if ((typeof(v) == 'object') && f.getRawValue) {
25470                 v = f.getRawValue() ; // dates..
25471             }
25472             // combo boxes where name != hiddenName...
25473             if (f.name != f.getName()) {
25474                 ret[f.name] = f.getRawValue();
25475             }
25476             ret[f.getName()] = v;
25477         });
25478         
25479         return ret;
25480     },
25481
25482     /**
25483      * Clears all invalid messages in this form.
25484      * @return {BasicForm} this
25485      */
25486     clearInvalid : function(){
25487         this.items.each(function(f){
25488            f.clearInvalid();
25489         });
25490         
25491         Roo.each(this.childForms || [], function (f) {
25492             f.clearInvalid();
25493         });
25494         
25495         
25496         return this;
25497     },
25498
25499     /**
25500      * Resets this form.
25501      * @return {BasicForm} this
25502      */
25503     reset : function(){
25504         this.items.each(function(f){
25505             f.reset();
25506         });
25507         
25508         Roo.each(this.childForms || [], function (f) {
25509             f.reset();
25510         });
25511         this.resetHasChanged();
25512         
25513         return this;
25514     },
25515
25516     /**
25517      * Add Roo.form components to this form.
25518      * @param {Field} field1
25519      * @param {Field} field2 (optional)
25520      * @param {Field} etc (optional)
25521      * @return {BasicForm} this
25522      */
25523     add : function(){
25524         this.items.addAll(Array.prototype.slice.call(arguments, 0));
25525         return this;
25526     },
25527
25528
25529     /**
25530      * Removes a field from the items collection (does NOT remove its markup).
25531      * @param {Field} field
25532      * @return {BasicForm} this
25533      */
25534     remove : function(field){
25535         this.items.remove(field);
25536         return this;
25537     },
25538
25539     /**
25540      * Looks at the fields in this form, checks them for an id attribute,
25541      * and calls applyTo on the existing dom element with that id.
25542      * @return {BasicForm} this
25543      */
25544     render : function(){
25545         this.items.each(function(f){
25546             if(f.isFormField && !f.rendered && document.getElementById(f.id)){ // if the element exists
25547                 f.applyTo(f.id);
25548             }
25549         });
25550         return this;
25551     },
25552
25553     /**
25554      * Calls {@link Ext#apply} for all fields in this form with the passed object.
25555      * @param {Object} values
25556      * @return {BasicForm} this
25557      */
25558     applyToFields : function(o){
25559         this.items.each(function(f){
25560            Roo.apply(f, o);
25561         });
25562         return this;
25563     },
25564
25565     /**
25566      * Calls {@link Ext#applyIf} for all field in this form with the passed object.
25567      * @param {Object} values
25568      * @return {BasicForm} this
25569      */
25570     applyIfToFields : function(o){
25571         this.items.each(function(f){
25572            Roo.applyIf(f, o);
25573         });
25574         return this;
25575     }
25576 });
25577
25578 // back compat
25579 Roo.BasicForm = Roo.form.BasicForm;
25580
25581 Roo.apply(Roo.form.BasicForm, {
25582     
25583     popover : {
25584         
25585         padding : 5,
25586         
25587         isApplied : false,
25588         
25589         isMasked : false,
25590         
25591         form : false,
25592         
25593         target : false,
25594         
25595         intervalID : false,
25596         
25597         maskEl : false,
25598         
25599         apply : function()
25600         {
25601             if(this.isApplied){
25602                 return;
25603             }
25604             
25605             this.maskEl = {
25606                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
25607                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
25608                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
25609                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
25610             };
25611             
25612             this.maskEl.top.enableDisplayMode("block");
25613             this.maskEl.left.enableDisplayMode("block");
25614             this.maskEl.bottom.enableDisplayMode("block");
25615             this.maskEl.right.enableDisplayMode("block");
25616             
25617             Roo.get(document.body).on('click', function(){
25618                 this.unmask();
25619             }, this);
25620             
25621             Roo.get(document.body).on('touchstart', function(){
25622                 this.unmask();
25623             }, this);
25624             
25625             this.isApplied = true
25626         },
25627         
25628         mask : function(form, target)
25629         {
25630             this.form = form;
25631             
25632             this.target = target;
25633             
25634             if(!this.form.errorMask || !target.el){
25635                 return;
25636             }
25637             
25638             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.x-layout-active-content', 100, true) || Roo.get(document.body);
25639             
25640             var ot = this.target.el.calcOffsetsTo(scrollable);
25641             
25642             var scrollTo = ot[1] - this.form.maskOffset;
25643             
25644             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
25645             
25646             scrollable.scrollTo('top', scrollTo);
25647             
25648             var el = this.target.wrap || this.target.el;
25649             
25650             var box = el.getBox();
25651             
25652             this.maskEl.top.setStyle('position', 'absolute');
25653             this.maskEl.top.setStyle('z-index', 10000);
25654             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
25655             this.maskEl.top.setLeft(0);
25656             this.maskEl.top.setTop(0);
25657             this.maskEl.top.show();
25658             
25659             this.maskEl.left.setStyle('position', 'absolute');
25660             this.maskEl.left.setStyle('z-index', 10000);
25661             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
25662             this.maskEl.left.setLeft(0);
25663             this.maskEl.left.setTop(box.y - this.padding);
25664             this.maskEl.left.show();
25665
25666             this.maskEl.bottom.setStyle('position', 'absolute');
25667             this.maskEl.bottom.setStyle('z-index', 10000);
25668             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
25669             this.maskEl.bottom.setLeft(0);
25670             this.maskEl.bottom.setTop(box.bottom + this.padding);
25671             this.maskEl.bottom.show();
25672
25673             this.maskEl.right.setStyle('position', 'absolute');
25674             this.maskEl.right.setStyle('z-index', 10000);
25675             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
25676             this.maskEl.right.setLeft(box.right + this.padding);
25677             this.maskEl.right.setTop(box.y - this.padding);
25678             this.maskEl.right.show();
25679
25680             this.intervalID = window.setInterval(function() {
25681                 Roo.form.BasicForm.popover.unmask();
25682             }, 10000);
25683
25684             window.onwheel = function(){ return false;};
25685             
25686             (function(){ this.isMasked = true; }).defer(500, this);
25687             
25688         },
25689         
25690         unmask : function()
25691         {
25692             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
25693                 return;
25694             }
25695             
25696             this.maskEl.top.setStyle('position', 'absolute');
25697             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
25698             this.maskEl.top.hide();
25699
25700             this.maskEl.left.setStyle('position', 'absolute');
25701             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
25702             this.maskEl.left.hide();
25703
25704             this.maskEl.bottom.setStyle('position', 'absolute');
25705             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
25706             this.maskEl.bottom.hide();
25707
25708             this.maskEl.right.setStyle('position', 'absolute');
25709             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
25710             this.maskEl.right.hide();
25711             
25712             window.onwheel = function(){ return true;};
25713             
25714             if(this.intervalID){
25715                 window.clearInterval(this.intervalID);
25716                 this.intervalID = false;
25717             }
25718             
25719             this.isMasked = false;
25720             
25721         }
25722         
25723     }
25724     
25725 });/*
25726  * Based on:
25727  * Ext JS Library 1.1.1
25728  * Copyright(c) 2006-2007, Ext JS, LLC.
25729  *
25730  * Originally Released Under LGPL - original licence link has changed is not relivant.
25731  *
25732  * Fork - LGPL
25733  * <script type="text/javascript">
25734  */
25735
25736 /**
25737  * @class Roo.form.Form
25738  * @extends Roo.form.BasicForm
25739  * Adds the ability to dynamically render forms with JavaScript to {@link Roo.form.BasicForm}.
25740  * @constructor
25741  * @param {Object} config Configuration options
25742  */
25743 Roo.form.Form = function(config){
25744     var xitems =  [];
25745     if (config.items) {
25746         xitems = config.items;
25747         delete config.items;
25748     }
25749    
25750     
25751     Roo.form.Form.superclass.constructor.call(this, null, config);
25752     this.url = this.url || this.action;
25753     if(!this.root){
25754         this.root = new Roo.form.Layout(Roo.applyIf({
25755             id: Roo.id()
25756         }, config));
25757     }
25758     this.active = this.root;
25759     /**
25760      * Array of all the buttons that have been added to this form via {@link addButton}
25761      * @type Array
25762      */
25763     this.buttons = [];
25764     this.allItems = [];
25765     this.addEvents({
25766         /**
25767          * @event clientvalidation
25768          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
25769          * @param {Form} this
25770          * @param {Boolean} valid true if the form has passed client-side validation
25771          */
25772         clientvalidation: true,
25773         /**
25774          * @event rendered
25775          * Fires when the form is rendered
25776          * @param {Roo.form.Form} form
25777          */
25778         rendered : true
25779     });
25780     
25781     if (this.progressUrl) {
25782             // push a hidden field onto the list of fields..
25783             this.addxtype( {
25784                     xns: Roo.form, 
25785                     xtype : 'Hidden', 
25786                     name : 'UPLOAD_IDENTIFIER' 
25787             });
25788         }
25789         
25790     
25791     Roo.each(xitems, this.addxtype, this);
25792     
25793 };
25794
25795 Roo.extend(Roo.form.Form, Roo.form.BasicForm, {
25796     /**
25797      * @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
25798      */
25799     /**
25800      * @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
25801      */
25802     /**
25803      * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "center")
25804      */
25805     buttonAlign:'center',
25806
25807     /**
25808      * @cfg {Number} minButtonWidth Minimum width of all buttons in pixels (defaults to 75)
25809      */
25810     minButtonWidth:75,
25811
25812     /**
25813      * @cfg {String} labelAlign Valid values are "left," "top" and "right" (defaults to "left").
25814      * This property cascades to child containers if not set.
25815      */
25816     labelAlign:'left',
25817
25818     /**
25819      * @cfg {Boolean} monitorValid If true the form monitors its valid state <b>client-side</b> and
25820      * fires a looping event with that state. This is required to bind buttons to the valid
25821      * state using the config value formBind:true on the button.
25822      */
25823     monitorValid : false,
25824
25825     /**
25826      * @cfg {Number} monitorPoll The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)
25827      */
25828     monitorPoll : 200,
25829     
25830     /**
25831      * @cfg {String} progressUrl - Url to return progress data 
25832      */
25833     
25834     progressUrl : false,
25835     /**
25836      * @cfg {boolean|FormData} formData - true to use new 'FormData' post, or set to a new FormData({dom form}) Object, if
25837      * sending a formdata with extra parameters - eg uploaded elements.
25838      */
25839     
25840     formData : false,
25841     
25842     /**
25843      * Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the
25844      * fields are added and the column is closed. If no fields are passed the column remains open
25845      * until end() is called.
25846      * @param {Object} config The config to pass to the column
25847      * @param {Field} field1 (optional)
25848      * @param {Field} field2 (optional)
25849      * @param {Field} etc (optional)
25850      * @return Column The column container object
25851      */
25852     column : function(c){
25853         var col = new Roo.form.Column(c);
25854         this.start(col);
25855         if(arguments.length > 1){ // duplicate code required because of Opera
25856             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
25857             this.end();
25858         }
25859         return col;
25860     },
25861
25862     /**
25863      * Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the
25864      * fields are added and the fieldset is closed. If no fields are passed the fieldset remains open
25865      * until end() is called.
25866      * @param {Object} config The config to pass to the fieldset
25867      * @param {Field} field1 (optional)
25868      * @param {Field} field2 (optional)
25869      * @param {Field} etc (optional)
25870      * @return FieldSet The fieldset container object
25871      */
25872     fieldset : function(c){
25873         var fs = new Roo.form.FieldSet(c);
25874         this.start(fs);
25875         if(arguments.length > 1){ // duplicate code required because of Opera
25876             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
25877             this.end();
25878         }
25879         return fs;
25880     },
25881
25882     /**
25883      * Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the
25884      * fields are added and the container is closed. If no fields are passed the container remains open
25885      * until end() is called.
25886      * @param {Object} config The config to pass to the Layout
25887      * @param {Field} field1 (optional)
25888      * @param {Field} field2 (optional)
25889      * @param {Field} etc (optional)
25890      * @return Layout The container object
25891      */
25892     container : function(c){
25893         var l = new Roo.form.Layout(c);
25894         this.start(l);
25895         if(arguments.length > 1){ // duplicate code required because of Opera
25896             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
25897             this.end();
25898         }
25899         return l;
25900     },
25901
25902     /**
25903      * Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass.
25904      * @param {Object} container A Roo.form.Layout or subclass of Layout
25905      * @return {Form} this
25906      */
25907     start : function(c){
25908         // cascade label info
25909         Roo.applyIf(c, {'labelAlign': this.active.labelAlign, 'labelWidth': this.active.labelWidth, 'itemCls': this.active.itemCls});
25910         this.active.stack.push(c);
25911         c.ownerCt = this.active;
25912         this.active = c;
25913         return this;
25914     },
25915
25916     /**
25917      * Closes the current open container
25918      * @return {Form} this
25919      */
25920     end : function(){
25921         if(this.active == this.root){
25922             return this;
25923         }
25924         this.active = this.active.ownerCt;
25925         return this;
25926     },
25927
25928     /**
25929      * Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method
25930      * can also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display
25931      * as the label of the field.
25932      * @param {Field} field1
25933      * @param {Field} field2 (optional)
25934      * @param {Field} etc. (optional)
25935      * @return {Form} this
25936      */
25937     add : function(){
25938         this.active.stack.push.apply(this.active.stack, arguments);
25939         this.allItems.push.apply(this.allItems,arguments);
25940         var r = [];
25941         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
25942             if(a[i].isFormField){
25943                 r.push(a[i]);
25944             }
25945         }
25946         if(r.length > 0){
25947             Roo.form.Form.superclass.add.apply(this, r);
25948         }
25949         return this;
25950     },
25951     
25952
25953     
25954     
25955     
25956      /**
25957      * Find any element that has been added to a form, using it's ID or name
25958      * This can include framesets, columns etc. along with regular fields..
25959      * @param {String} id - id or name to find.
25960      
25961      * @return {Element} e - or false if nothing found.
25962      */
25963     findbyId : function(id)
25964     {
25965         var ret = false;
25966         if (!id) {
25967             return ret;
25968         }
25969         Roo.each(this.allItems, function(f){
25970             if (f.id == id || f.name == id ){
25971                 ret = f;
25972                 return false;
25973             }
25974         });
25975         return ret;
25976     },
25977
25978     
25979     
25980     /**
25981      * Render this form into the passed container. This should only be called once!
25982      * @param {String/HTMLElement/Element} container The element this component should be rendered into
25983      * @return {Form} this
25984      */
25985     render : function(ct)
25986     {
25987         
25988         
25989         
25990         ct = Roo.get(ct);
25991         var o = this.autoCreate || {
25992             tag: 'form',
25993             method : this.method || 'POST',
25994             id : this.id || Roo.id()
25995         };
25996         this.initEl(ct.createChild(o));
25997
25998         this.root.render(this.el);
25999         
26000        
26001              
26002         this.items.each(function(f){
26003             f.render('x-form-el-'+f.id);
26004         });
26005
26006         if(this.buttons.length > 0){
26007             // tables are required to maintain order and for correct IE layout
26008             var tb = this.el.createChild({cls:'x-form-btns-ct', cn: {
26009                 cls:"x-form-btns x-form-btns-"+this.buttonAlign,
26010                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
26011             }}, null, true);
26012             var tr = tb.getElementsByTagName('tr')[0];
26013             for(var i = 0, len = this.buttons.length; i < len; i++) {
26014                 var b = this.buttons[i];
26015                 var td = document.createElement('td');
26016                 td.className = 'x-form-btn-td';
26017                 b.render(tr.appendChild(td));
26018             }
26019         }
26020         if(this.monitorValid){ // initialize after render
26021             this.startMonitoring();
26022         }
26023         this.fireEvent('rendered', this);
26024         return this;
26025     },
26026
26027     /**
26028      * Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered.
26029      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
26030      * object or a valid Roo.DomHelper element config
26031      * @param {Function} handler The function called when the button is clicked
26032      * @param {Object} scope (optional) The scope of the handler function
26033      * @return {Roo.Button}
26034      */
26035     addButton : function(config, handler, scope){
26036         var bc = {
26037             handler: handler,
26038             scope: scope,
26039             minWidth: this.minButtonWidth,
26040             hideParent:true
26041         };
26042         if(typeof config == "string"){
26043             bc.text = config;
26044         }else{
26045             Roo.apply(bc, config);
26046         }
26047         var btn = new Roo.Button(null, bc);
26048         this.buttons.push(btn);
26049         return btn;
26050     },
26051
26052      /**
26053      * Adds a series of form elements (using the xtype property as the factory method.
26054      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)
26055      * @param {Object} config 
26056      */
26057     
26058     addxtype : function()
26059     {
26060         var ar = Array.prototype.slice.call(arguments, 0);
26061         var ret = false;
26062         for(var i = 0; i < ar.length; i++) {
26063             if (!ar[i]) {
26064                 continue; // skip -- if this happends something invalid got sent, we 
26065                 // should ignore it, as basically that interface element will not show up
26066                 // and that should be pretty obvious!!
26067             }
26068             
26069             if (Roo.form[ar[i].xtype]) {
26070                 ar[i].form = this;
26071                 var fe = Roo.factory(ar[i], Roo.form);
26072                 if (!ret) {
26073                     ret = fe;
26074                 }
26075                 fe.form = this;
26076                 if (fe.store) {
26077                     fe.store.form = this;
26078                 }
26079                 if (fe.isLayout) {  
26080                          
26081                     this.start(fe);
26082                     this.allItems.push(fe);
26083                     if (fe.items && fe.addxtype) {
26084                         fe.addxtype.apply(fe, fe.items);
26085                         delete fe.items;
26086                     }
26087                      this.end();
26088                     continue;
26089                 }
26090                 
26091                 
26092                  
26093                 this.add(fe);
26094               //  console.log('adding ' + ar[i].xtype);
26095             }
26096             if (ar[i].xtype == 'Button') {  
26097                 //console.log('adding button');
26098                 //console.log(ar[i]);
26099                 this.addButton(ar[i]);
26100                 this.allItems.push(fe);
26101                 continue;
26102             }
26103             
26104             if (ar[i].xtype == 'end') { // so we can add fieldsets... / layout etc.
26105                 alert('end is not supported on xtype any more, use items');
26106             //    this.end();
26107             //    //console.log('adding end');
26108             }
26109             
26110         }
26111         return ret;
26112     },
26113     
26114     /**
26115      * Starts monitoring of the valid state of this form. Usually this is done by passing the config
26116      * option "monitorValid"
26117      */
26118     startMonitoring : function(){
26119         if(!this.bound){
26120             this.bound = true;
26121             Roo.TaskMgr.start({
26122                 run : this.bindHandler,
26123                 interval : this.monitorPoll || 200,
26124                 scope: this
26125             });
26126         }
26127     },
26128
26129     /**
26130      * Stops monitoring of the valid state of this form
26131      */
26132     stopMonitoring : function(){
26133         this.bound = false;
26134     },
26135
26136     // private
26137     bindHandler : function(){
26138         if(!this.bound){
26139             return false; // stops binding
26140         }
26141         var valid = true;
26142         this.items.each(function(f){
26143             if(!f.isValid(true)){
26144                 valid = false;
26145                 return false;
26146             }
26147         });
26148         for(var i = 0, len = this.buttons.length; i < len; i++){
26149             var btn = this.buttons[i];
26150             if(btn.formBind === true && btn.disabled === valid){
26151                 btn.setDisabled(!valid);
26152             }
26153         }
26154         this.fireEvent('clientvalidation', this, valid);
26155     }
26156     
26157     
26158     
26159     
26160     
26161     
26162     
26163     
26164 });
26165
26166
26167 // back compat
26168 Roo.Form = Roo.form.Form;
26169 /*
26170  * Based on:
26171  * Ext JS Library 1.1.1
26172  * Copyright(c) 2006-2007, Ext JS, LLC.
26173  *
26174  * Originally Released Under LGPL - original licence link has changed is not relivant.
26175  *
26176  * Fork - LGPL
26177  * <script type="text/javascript">
26178  */
26179
26180 // as we use this in bootstrap.
26181 Roo.namespace('Roo.form');
26182  /**
26183  * @class Roo.form.Action
26184  * Internal Class used to handle form actions
26185  * @constructor
26186  * @param {Roo.form.BasicForm} el The form element or its id
26187  * @param {Object} config Configuration options
26188  */
26189
26190  
26191  
26192 // define the action interface
26193 Roo.form.Action = function(form, options){
26194     this.form = form;
26195     this.options = options || {};
26196 };
26197 /**
26198  * Client Validation Failed
26199  * @const 
26200  */
26201 Roo.form.Action.CLIENT_INVALID = 'client';
26202 /**
26203  * Server Validation Failed
26204  * @const 
26205  */
26206 Roo.form.Action.SERVER_INVALID = 'server';
26207  /**
26208  * Connect to Server Failed
26209  * @const 
26210  */
26211 Roo.form.Action.CONNECT_FAILURE = 'connect';
26212 /**
26213  * Reading Data from Server Failed
26214  * @const 
26215  */
26216 Roo.form.Action.LOAD_FAILURE = 'load';
26217
26218 Roo.form.Action.prototype = {
26219     type : 'default',
26220     failureType : undefined,
26221     response : undefined,
26222     result : undefined,
26223
26224     // interface method
26225     run : function(options){
26226
26227     },
26228
26229     // interface method
26230     success : function(response){
26231
26232     },
26233
26234     // interface method
26235     handleResponse : function(response){
26236
26237     },
26238
26239     // default connection failure
26240     failure : function(response){
26241         
26242         this.response = response;
26243         this.failureType = Roo.form.Action.CONNECT_FAILURE;
26244         this.form.afterAction(this, false);
26245     },
26246
26247     processResponse : function(response){
26248         this.response = response;
26249         if(!response.responseText){
26250             return true;
26251         }
26252         this.result = this.handleResponse(response);
26253         return this.result;
26254     },
26255
26256     // utility functions used internally
26257     getUrl : function(appendParams){
26258         var url = this.options.url || this.form.url || this.form.el.dom.action;
26259         if(appendParams){
26260             var p = this.getParams();
26261             if(p){
26262                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
26263             }
26264         }
26265         return url;
26266     },
26267
26268     getMethod : function(){
26269         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
26270     },
26271
26272     getParams : function(){
26273         var bp = this.form.baseParams;
26274         var p = this.options.params;
26275         if(p){
26276             if(typeof p == "object"){
26277                 p = Roo.urlEncode(Roo.applyIf(p, bp));
26278             }else if(typeof p == 'string' && bp){
26279                 p += '&' + Roo.urlEncode(bp);
26280             }
26281         }else if(bp){
26282             p = Roo.urlEncode(bp);
26283         }
26284         return p;
26285     },
26286
26287     createCallback : function(){
26288         return {
26289             success: this.success,
26290             failure: this.failure,
26291             scope: this,
26292             timeout: (this.form.timeout*1000),
26293             upload: this.form.fileUpload ? this.success : undefined
26294         };
26295     }
26296 };
26297
26298 Roo.form.Action.Submit = function(form, options){
26299     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
26300 };
26301
26302 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
26303     type : 'submit',
26304
26305     haveProgress : false,
26306     uploadComplete : false,
26307     
26308     // uploadProgress indicator.
26309     uploadProgress : function()
26310     {
26311         if (!this.form.progressUrl) {
26312             return;
26313         }
26314         
26315         if (!this.haveProgress) {
26316             Roo.MessageBox.progress("Uploading", "Uploading");
26317         }
26318         if (this.uploadComplete) {
26319            Roo.MessageBox.hide();
26320            return;
26321         }
26322         
26323         this.haveProgress = true;
26324    
26325         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
26326         
26327         var c = new Roo.data.Connection();
26328         c.request({
26329             url : this.form.progressUrl,
26330             params: {
26331                 id : uid
26332             },
26333             method: 'GET',
26334             success : function(req){
26335                //console.log(data);
26336                 var rdata = false;
26337                 var edata;
26338                 try  {
26339                    rdata = Roo.decode(req.responseText)
26340                 } catch (e) {
26341                     Roo.log("Invalid data from server..");
26342                     Roo.log(edata);
26343                     return;
26344                 }
26345                 if (!rdata || !rdata.success) {
26346                     Roo.log(rdata);
26347                     Roo.MessageBox.alert(Roo.encode(rdata));
26348                     return;
26349                 }
26350                 var data = rdata.data;
26351                 
26352                 if (this.uploadComplete) {
26353                    Roo.MessageBox.hide();
26354                    return;
26355                 }
26356                    
26357                 if (data){
26358                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
26359                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
26360                     );
26361                 }
26362                 this.uploadProgress.defer(2000,this);
26363             },
26364        
26365             failure: function(data) {
26366                 Roo.log('progress url failed ');
26367                 Roo.log(data);
26368             },
26369             scope : this
26370         });
26371            
26372     },
26373     
26374     
26375     run : function()
26376     {
26377         // run get Values on the form, so it syncs any secondary forms.
26378         this.form.getValues();
26379         
26380         var o = this.options;
26381         var method = this.getMethod();
26382         var isPost = method == 'POST';
26383         if(o.clientValidation === false || this.form.isValid()){
26384             
26385             if (this.form.progressUrl) {
26386                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
26387                     (new Date() * 1) + '' + Math.random());
26388                     
26389             } 
26390             
26391             
26392             Roo.Ajax.request(Roo.apply(this.createCallback(), {
26393                 form:this.form.el.dom,
26394                 url:this.getUrl(!isPost),
26395                 method: method,
26396                 params:isPost ? this.getParams() : null,
26397                 isUpload: this.form.fileUpload,
26398                 formData : this.form.formData
26399             }));
26400             
26401             this.uploadProgress();
26402
26403         }else if (o.clientValidation !== false){ // client validation failed
26404             this.failureType = Roo.form.Action.CLIENT_INVALID;
26405             this.form.afterAction(this, false);
26406         }
26407     },
26408
26409     success : function(response)
26410     {
26411         this.uploadComplete= true;
26412         if (this.haveProgress) {
26413             Roo.MessageBox.hide();
26414         }
26415         
26416         
26417         var result = this.processResponse(response);
26418         if(result === true || result.success){
26419             this.form.afterAction(this, true);
26420             return;
26421         }
26422         if(result.errors){
26423             this.form.markInvalid(result.errors);
26424             this.failureType = Roo.form.Action.SERVER_INVALID;
26425         }
26426         this.form.afterAction(this, false);
26427     },
26428     failure : function(response)
26429     {
26430         this.uploadComplete= true;
26431         if (this.haveProgress) {
26432             Roo.MessageBox.hide();
26433         }
26434         
26435         this.response = response;
26436         this.failureType = Roo.form.Action.CONNECT_FAILURE;
26437         this.form.afterAction(this, false);
26438     },
26439     
26440     handleResponse : function(response){
26441         if(this.form.errorReader){
26442             var rs = this.form.errorReader.read(response);
26443             var errors = [];
26444             if(rs.records){
26445                 for(var i = 0, len = rs.records.length; i < len; i++) {
26446                     var r = rs.records[i];
26447                     errors[i] = r.data;
26448                 }
26449             }
26450             if(errors.length < 1){
26451                 errors = null;
26452             }
26453             return {
26454                 success : rs.success,
26455                 errors : errors
26456             };
26457         }
26458         var ret = false;
26459         try {
26460             ret = Roo.decode(response.responseText);
26461         } catch (e) {
26462             ret = {
26463                 success: false,
26464                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
26465                 errors : []
26466             };
26467         }
26468         return ret;
26469         
26470     }
26471 });
26472
26473
26474 Roo.form.Action.Load = function(form, options){
26475     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
26476     this.reader = this.form.reader;
26477 };
26478
26479 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
26480     type : 'load',
26481
26482     run : function(){
26483         
26484         Roo.Ajax.request(Roo.apply(
26485                 this.createCallback(), {
26486                     method:this.getMethod(),
26487                     url:this.getUrl(false),
26488                     params:this.getParams()
26489         }));
26490     },
26491
26492     success : function(response){
26493         
26494         var result = this.processResponse(response);
26495         if(result === true || !result.success || !result.data){
26496             this.failureType = Roo.form.Action.LOAD_FAILURE;
26497             this.form.afterAction(this, false);
26498             return;
26499         }
26500         this.form.clearInvalid();
26501         this.form.setValues(result.data);
26502         this.form.afterAction(this, true);
26503     },
26504
26505     handleResponse : function(response){
26506         if(this.form.reader){
26507             var rs = this.form.reader.read(response);
26508             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
26509             return {
26510                 success : rs.success,
26511                 data : data
26512             };
26513         }
26514         return Roo.decode(response.responseText);
26515     }
26516 });
26517
26518 Roo.form.Action.ACTION_TYPES = {
26519     'load' : Roo.form.Action.Load,
26520     'submit' : Roo.form.Action.Submit
26521 };/*
26522  * Based on:
26523  * Ext JS Library 1.1.1
26524  * Copyright(c) 2006-2007, Ext JS, LLC.
26525  *
26526  * Originally Released Under LGPL - original licence link has changed is not relivant.
26527  *
26528  * Fork - LGPL
26529  * <script type="text/javascript">
26530  */
26531  
26532 /**
26533  * @class Roo.form.Layout
26534  * @extends Roo.Component
26535  * Creates a container for layout and rendering of fields in an {@link Roo.form.Form}.
26536  * @constructor
26537  * @param {Object} config Configuration options
26538  */
26539 Roo.form.Layout = function(config){
26540     var xitems = [];
26541     if (config.items) {
26542         xitems = config.items;
26543         delete config.items;
26544     }
26545     Roo.form.Layout.superclass.constructor.call(this, config);
26546     this.stack = [];
26547     Roo.each(xitems, this.addxtype, this);
26548      
26549 };
26550
26551 Roo.extend(Roo.form.Layout, Roo.Component, {
26552     /**
26553      * @cfg {String/Object} autoCreate
26554      * A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})
26555      */
26556     /**
26557      * @cfg {String/Object/Function} style
26558      * A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
26559      * a function which returns such a specification.
26560      */
26561     /**
26562      * @cfg {String} labelAlign
26563      * Valid values are "left," "top" and "right" (defaults to "left")
26564      */
26565     /**
26566      * @cfg {Number} labelWidth
26567      * Fixed width in pixels of all field labels (defaults to undefined)
26568      */
26569     /**
26570      * @cfg {Boolean} clear
26571      * True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)
26572      */
26573     clear : true,
26574     /**
26575      * @cfg {String} labelSeparator
26576      * The separator to use after field labels (defaults to ':')
26577      */
26578     labelSeparator : ':',
26579     /**
26580      * @cfg {Boolean} hideLabels
26581      * True to suppress the display of field labels in this layout (defaults to false)
26582      */
26583     hideLabels : false,
26584
26585     // private
26586     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct'},
26587     
26588     isLayout : true,
26589     
26590     // private
26591     onRender : function(ct, position){
26592         if(this.el){ // from markup
26593             this.el = Roo.get(this.el);
26594         }else {  // generate
26595             var cfg = this.getAutoCreate();
26596             this.el = ct.createChild(cfg, position);
26597         }
26598         if(this.style){
26599             this.el.applyStyles(this.style);
26600         }
26601         if(this.labelAlign){
26602             this.el.addClass('x-form-label-'+this.labelAlign);
26603         }
26604         if(this.hideLabels){
26605             this.labelStyle = "display:none";
26606             this.elementStyle = "padding-left:0;";
26607         }else{
26608             if(typeof this.labelWidth == 'number'){
26609                 this.labelStyle = "width:"+this.labelWidth+"px;";
26610                 this.elementStyle = "padding-left:"+((this.labelWidth+(typeof this.labelPad == 'number' ? this.labelPad : 5))+'px')+";";
26611             }
26612             if(this.labelAlign == 'top'){
26613                 this.labelStyle = "width:auto;";
26614                 this.elementStyle = "padding-left:0;";
26615             }
26616         }
26617         var stack = this.stack;
26618         var slen = stack.length;
26619         if(slen > 0){
26620             if(!this.fieldTpl){
26621                 var t = new Roo.Template(
26622                     '<div class="x-form-item {5}">',
26623                         '<label for="{0}" style="{2}">{1}{4}</label>',
26624                         '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
26625                         '</div>',
26626                     '</div><div class="x-form-clear-left"></div>'
26627                 );
26628                 t.disableFormats = true;
26629                 t.compile();
26630                 Roo.form.Layout.prototype.fieldTpl = t;
26631             }
26632             for(var i = 0; i < slen; i++) {
26633                 if(stack[i].isFormField){
26634                     this.renderField(stack[i]);
26635                 }else{
26636                     this.renderComponent(stack[i]);
26637                 }
26638             }
26639         }
26640         if(this.clear){
26641             this.el.createChild({cls:'x-form-clear'});
26642         }
26643     },
26644
26645     // private
26646     renderField : function(f){
26647         f.fieldEl = Roo.get(this.fieldTpl.append(this.el, [
26648                f.id, //0
26649                f.fieldLabel, //1
26650                f.labelStyle||this.labelStyle||'', //2
26651                this.elementStyle||'', //3
26652                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator, //4
26653                f.itemCls||this.itemCls||''  //5
26654        ], true).getPrevSibling());
26655     },
26656
26657     // private
26658     renderComponent : function(c){
26659         c.render(c.isLayout ? this.el : this.el.createChild());    
26660     },
26661     /**
26662      * Adds a object form elements (using the xtype property as the factory method.)
26663      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column
26664      * @param {Object} config 
26665      */
26666     addxtype : function(o)
26667     {
26668         // create the lement.
26669         o.form = this.form;
26670         var fe = Roo.factory(o, Roo.form);
26671         this.form.allItems.push(fe);
26672         this.stack.push(fe);
26673         
26674         if (fe.isFormField) {
26675             this.form.items.add(fe);
26676         }
26677          
26678         return fe;
26679     }
26680 });
26681
26682 /**
26683  * @class Roo.form.Column
26684  * @extends Roo.form.Layout
26685  * Creates a column container for layout and rendering of fields in an {@link Roo.form.Form}.
26686  * @constructor
26687  * @param {Object} config Configuration options
26688  */
26689 Roo.form.Column = function(config){
26690     Roo.form.Column.superclass.constructor.call(this, config);
26691 };
26692
26693 Roo.extend(Roo.form.Column, Roo.form.Layout, {
26694     /**
26695      * @cfg {Number/String} width
26696      * The fixed width of the column in pixels or CSS value (defaults to "auto")
26697      */
26698     /**
26699      * @cfg {String/Object} autoCreate
26700      * A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})
26701      */
26702
26703     // private
26704     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-column'},
26705
26706     // private
26707     onRender : function(ct, position){
26708         Roo.form.Column.superclass.onRender.call(this, ct, position);
26709         if(this.width){
26710             this.el.setWidth(this.width);
26711         }
26712     }
26713 });
26714
26715
26716 /**
26717  * @class Roo.form.Row
26718  * @extends Roo.form.Layout
26719  * Creates a row container for layout and rendering of fields in an {@link Roo.form.Form}.
26720  * @constructor
26721  * @param {Object} config Configuration options
26722  */
26723
26724  
26725 Roo.form.Row = function(config){
26726     Roo.form.Row.superclass.constructor.call(this, config);
26727 };
26728  
26729 Roo.extend(Roo.form.Row, Roo.form.Layout, {
26730       /**
26731      * @cfg {Number/String} width
26732      * The fixed width of the column in pixels or CSS value (defaults to "auto")
26733      */
26734     /**
26735      * @cfg {Number/String} height
26736      * The fixed height of the column in pixels or CSS value (defaults to "auto")
26737      */
26738     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-row'},
26739     
26740     padWidth : 20,
26741     // private
26742     onRender : function(ct, position){
26743         //console.log('row render');
26744         if(!this.rowTpl){
26745             var t = new Roo.Template(
26746                 '<div class="x-form-item {5}" style="float:left;width:{6}px">',
26747                     '<label for="{0}" style="{2}">{1}{4}</label>',
26748                     '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
26749                     '</div>',
26750                 '</div>'
26751             );
26752             t.disableFormats = true;
26753             t.compile();
26754             Roo.form.Layout.prototype.rowTpl = t;
26755         }
26756         this.fieldTpl = this.rowTpl;
26757         
26758         //console.log('lw' + this.labelWidth +', la:' + this.labelAlign);
26759         var labelWidth = 100;
26760         
26761         if ((this.labelAlign != 'top')) {
26762             if (typeof this.labelWidth == 'number') {
26763                 labelWidth = this.labelWidth
26764             }
26765             this.padWidth =  20 + labelWidth;
26766             
26767         }
26768         
26769         Roo.form.Column.superclass.onRender.call(this, ct, position);
26770         if(this.width){
26771             this.el.setWidth(this.width);
26772         }
26773         if(this.height){
26774             this.el.setHeight(this.height);
26775         }
26776     },
26777     
26778     // private
26779     renderField : function(f){
26780         f.fieldEl = this.fieldTpl.append(this.el, [
26781                f.id, f.fieldLabel,
26782                f.labelStyle||this.labelStyle||'',
26783                this.elementStyle||'',
26784                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator,
26785                f.itemCls||this.itemCls||'',
26786                f.width ? f.width + this.padWidth : 160 + this.padWidth
26787        ],true);
26788     }
26789 });
26790  
26791
26792 /**
26793  * @class Roo.form.FieldSet
26794  * @extends Roo.form.Layout
26795  * Creates a fieldset container for layout and rendering of fields in an {@link Roo.form.Form}.
26796  * @constructor
26797  * @param {Object} config Configuration options
26798  */
26799 Roo.form.FieldSet = function(config){
26800     Roo.form.FieldSet.superclass.constructor.call(this, config);
26801 };
26802
26803 Roo.extend(Roo.form.FieldSet, Roo.form.Layout, {
26804     /**
26805      * @cfg {String} legend
26806      * The text to display as the legend for the FieldSet (defaults to '')
26807      */
26808     /**
26809      * @cfg {String/Object} autoCreate
26810      * A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})
26811      */
26812
26813     // private
26814     defaultAutoCreate : {tag: 'fieldset', cn: {tag:'legend'}},
26815
26816     // private
26817     onRender : function(ct, position){
26818         Roo.form.FieldSet.superclass.onRender.call(this, ct, position);
26819         if(this.legend){
26820             this.setLegend(this.legend);
26821         }
26822     },
26823
26824     // private
26825     setLegend : function(text){
26826         if(this.rendered){
26827             this.el.child('legend').update(text);
26828         }
26829     }
26830 });/*
26831  * Based on:
26832  * Ext JS Library 1.1.1
26833  * Copyright(c) 2006-2007, Ext JS, LLC.
26834  *
26835  * Originally Released Under LGPL - original licence link has changed is not relivant.
26836  *
26837  * Fork - LGPL
26838  * <script type="text/javascript">
26839  */
26840 /**
26841  * @class Roo.form.VTypes
26842  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
26843  * @singleton
26844  */
26845 Roo.form.VTypes = function(){
26846     // closure these in so they are only created once.
26847     var alpha = /^[a-zA-Z_]+$/;
26848     var alphanum = /^[a-zA-Z0-9_]+$/;
26849     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
26850     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
26851
26852     // All these messages and functions are configurable
26853     return {
26854         /**
26855          * The function used to validate email addresses
26856          * @param {String} value The email address
26857          */
26858         'email' : function(v){
26859             return email.test(v);
26860         },
26861         /**
26862          * The error text to display when the email validation function returns false
26863          * @type String
26864          */
26865         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
26866         /**
26867          * The keystroke filter mask to be applied on email input
26868          * @type RegExp
26869          */
26870         'emailMask' : /[a-z0-9_\.\-@]/i,
26871
26872         /**
26873          * The function used to validate URLs
26874          * @param {String} value The URL
26875          */
26876         'url' : function(v){
26877             return url.test(v);
26878         },
26879         /**
26880          * The error text to display when the url validation function returns false
26881          * @type String
26882          */
26883         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
26884         
26885         /**
26886          * The function used to validate alpha values
26887          * @param {String} value The value
26888          */
26889         'alpha' : function(v){
26890             return alpha.test(v);
26891         },
26892         /**
26893          * The error text to display when the alpha validation function returns false
26894          * @type String
26895          */
26896         'alphaText' : 'This field should only contain letters and _',
26897         /**
26898          * The keystroke filter mask to be applied on alpha input
26899          * @type RegExp
26900          */
26901         'alphaMask' : /[a-z_]/i,
26902
26903         /**
26904          * The function used to validate alphanumeric values
26905          * @param {String} value The value
26906          */
26907         'alphanum' : function(v){
26908             return alphanum.test(v);
26909         },
26910         /**
26911          * The error text to display when the alphanumeric validation function returns false
26912          * @type String
26913          */
26914         'alphanumText' : 'This field should only contain letters, numbers and _',
26915         /**
26916          * The keystroke filter mask to be applied on alphanumeric input
26917          * @type RegExp
26918          */
26919         'alphanumMask' : /[a-z0-9_]/i
26920     };
26921 }();//<script type="text/javascript">
26922
26923 /**
26924  * @class Roo.form.FCKeditor
26925  * @extends Roo.form.TextArea
26926  * Wrapper around the FCKEditor http://www.fckeditor.net
26927  * @constructor
26928  * Creates a new FCKeditor
26929  * @param {Object} config Configuration options
26930  */
26931 Roo.form.FCKeditor = function(config){
26932     Roo.form.FCKeditor.superclass.constructor.call(this, config);
26933     this.addEvents({
26934          /**
26935          * @event editorinit
26936          * Fired when the editor is initialized - you can add extra handlers here..
26937          * @param {FCKeditor} this
26938          * @param {Object} the FCK object.
26939          */
26940         editorinit : true
26941     });
26942     
26943     
26944 };
26945 Roo.form.FCKeditor.editors = { };
26946 Roo.extend(Roo.form.FCKeditor, Roo.form.TextArea,
26947 {
26948     //defaultAutoCreate : {
26949     //    tag : "textarea",style   : "width:100px;height:60px;" ,autocomplete    : "off"
26950     //},
26951     // private
26952     /**
26953      * @cfg {Object} fck options - see fck manual for details.
26954      */
26955     fckconfig : false,
26956     
26957     /**
26958      * @cfg {Object} fck toolbar set (Basic or Default)
26959      */
26960     toolbarSet : 'Basic',
26961     /**
26962      * @cfg {Object} fck BasePath
26963      */ 
26964     basePath : '/fckeditor/',
26965     
26966     
26967     frame : false,
26968     
26969     value : '',
26970     
26971    
26972     onRender : function(ct, position)
26973     {
26974         if(!this.el){
26975             this.defaultAutoCreate = {
26976                 tag: "textarea",
26977                 style:"width:300px;height:60px;",
26978                 autocomplete: "new-password"
26979             };
26980         }
26981         Roo.form.FCKeditor.superclass.onRender.call(this, ct, position);
26982         /*
26983         if(this.grow){
26984             this.textSizeEl = Roo.DomHelper.append(document.body, {tag: "pre", cls: "x-form-grow-sizer"});
26985             if(this.preventScrollbars){
26986                 this.el.setStyle("overflow", "hidden");
26987             }
26988             this.el.setHeight(this.growMin);
26989         }
26990         */
26991         //console.log('onrender' + this.getId() );
26992         Roo.form.FCKeditor.editors[this.getId()] = this;
26993          
26994
26995         this.replaceTextarea() ;
26996         
26997     },
26998     
26999     getEditor : function() {
27000         return this.fckEditor;
27001     },
27002     /**
27003      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
27004      * @param {Mixed} value The value to set
27005      */
27006     
27007     
27008     setValue : function(value)
27009     {
27010         //console.log('setValue: ' + value);
27011         
27012         if(typeof(value) == 'undefined') { // not sure why this is happending...
27013             return;
27014         }
27015         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
27016         
27017         //if(!this.el || !this.getEditor()) {
27018         //    this.value = value;
27019             //this.setValue.defer(100,this,[value]);    
27020         //    return;
27021         //} 
27022         
27023         if(!this.getEditor()) {
27024             return;
27025         }
27026         
27027         this.getEditor().SetData(value);
27028         
27029         //
27030
27031     },
27032
27033     /**
27034      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
27035      * @return {Mixed} value The field value
27036      */
27037     getValue : function()
27038     {
27039         
27040         if (this.frame && this.frame.dom.style.display == 'none') {
27041             return Roo.form.FCKeditor.superclass.getValue.call(this);
27042         }
27043         
27044         if(!this.el || !this.getEditor()) {
27045            
27046            // this.getValue.defer(100,this); 
27047             return this.value;
27048         }
27049        
27050         
27051         var value=this.getEditor().GetData();
27052         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
27053         return Roo.form.FCKeditor.superclass.getValue.call(this);
27054         
27055
27056     },
27057
27058     /**
27059      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
27060      * @return {Mixed} value The field value
27061      */
27062     getRawValue : function()
27063     {
27064         if (this.frame && this.frame.dom.style.display == 'none') {
27065             return Roo.form.FCKeditor.superclass.getRawValue.call(this);
27066         }
27067         
27068         if(!this.el || !this.getEditor()) {
27069             //this.getRawValue.defer(100,this); 
27070             return this.value;
27071             return;
27072         }
27073         
27074         
27075         
27076         var value=this.getEditor().GetData();
27077         Roo.form.FCKeditor.superclass.setRawValue.apply(this,[value]);
27078         return Roo.form.FCKeditor.superclass.getRawValue.call(this);
27079          
27080     },
27081     
27082     setSize : function(w,h) {
27083         
27084         
27085         
27086         //if (this.frame && this.frame.dom.style.display == 'none') {
27087         //    Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
27088         //    return;
27089         //}
27090         //if(!this.el || !this.getEditor()) {
27091         //    this.setSize.defer(100,this, [w,h]); 
27092         //    return;
27093         //}
27094         
27095         
27096         
27097         Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
27098         
27099         this.frame.dom.setAttribute('width', w);
27100         this.frame.dom.setAttribute('height', h);
27101         this.frame.setSize(w,h);
27102         
27103     },
27104     
27105     toggleSourceEdit : function(value) {
27106         
27107       
27108          
27109         this.el.dom.style.display = value ? '' : 'none';
27110         this.frame.dom.style.display = value ?  'none' : '';
27111         
27112     },
27113     
27114     
27115     focus: function(tag)
27116     {
27117         if (this.frame.dom.style.display == 'none') {
27118             return Roo.form.FCKeditor.superclass.focus.call(this);
27119         }
27120         if(!this.el || !this.getEditor()) {
27121             this.focus.defer(100,this, [tag]); 
27122             return;
27123         }
27124         
27125         
27126         
27127         
27128         var tgs = this.getEditor().EditorDocument.getElementsByTagName(tag);
27129         this.getEditor().Focus();
27130         if (tgs.length) {
27131             if (!this.getEditor().Selection.GetSelection()) {
27132                 this.focus.defer(100,this, [tag]); 
27133                 return;
27134             }
27135             
27136             
27137             var r = this.getEditor().EditorDocument.createRange();
27138             r.setStart(tgs[0],0);
27139             r.setEnd(tgs[0],0);
27140             this.getEditor().Selection.GetSelection().removeAllRanges();
27141             this.getEditor().Selection.GetSelection().addRange(r);
27142             this.getEditor().Focus();
27143         }
27144         
27145     },
27146     
27147     
27148     
27149     replaceTextarea : function()
27150     {
27151         if ( document.getElementById( this.getId() + '___Frame' ) ) {
27152             return ;
27153         }
27154         //if ( !this.checkBrowser || this._isCompatibleBrowser() )
27155         //{
27156             // We must check the elements firstly using the Id and then the name.
27157         var oTextarea = document.getElementById( this.getId() );
27158         
27159         var colElementsByName = document.getElementsByName( this.getId() ) ;
27160          
27161         oTextarea.style.display = 'none' ;
27162
27163         if ( oTextarea.tabIndex ) {            
27164             this.TabIndex = oTextarea.tabIndex ;
27165         }
27166         
27167         this._insertHtmlBefore( this._getConfigHtml(), oTextarea ) ;
27168         this._insertHtmlBefore( this._getIFrameHtml(), oTextarea ) ;
27169         this.frame = Roo.get(this.getId() + '___Frame')
27170     },
27171     
27172     _getConfigHtml : function()
27173     {
27174         var sConfig = '' ;
27175
27176         for ( var o in this.fckconfig ) {
27177             sConfig += sConfig.length > 0  ? '&amp;' : '';
27178             sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.fckconfig[o] ) ;
27179         }
27180
27181         return '<input type="hidden" id="' + this.getId() + '___Config" value="' + sConfig + '" style="display:none" />' ;
27182     },
27183     
27184     
27185     _getIFrameHtml : function()
27186     {
27187         var sFile = 'fckeditor.html' ;
27188         /* no idea what this is about..
27189         try
27190         {
27191             if ( (/fcksource=true/i).test( window.top.location.search ) )
27192                 sFile = 'fckeditor.original.html' ;
27193         }
27194         catch (e) { 
27195         */
27196
27197         var sLink = this.basePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.getId() ) ;
27198         sLink += this.toolbarSet ? ( '&amp;Toolbar=' + this.toolbarSet)  : '';
27199         
27200         
27201         var html = '<iframe id="' + this.getId() +
27202             '___Frame" src="' + sLink +
27203             '" width="' + this.width +
27204             '" height="' + this.height + '"' +
27205             (this.tabIndex ?  ' tabindex="' + this.tabIndex + '"' :'' ) +
27206             ' frameborder="0" scrolling="no"></iframe>' ;
27207
27208         return html ;
27209     },
27210     
27211     _insertHtmlBefore : function( html, element )
27212     {
27213         if ( element.insertAdjacentHTML )       {
27214             // IE
27215             element.insertAdjacentHTML( 'beforeBegin', html ) ;
27216         } else { // Gecko
27217             var oRange = document.createRange() ;
27218             oRange.setStartBefore( element ) ;
27219             var oFragment = oRange.createContextualFragment( html );
27220             element.parentNode.insertBefore( oFragment, element ) ;
27221         }
27222     }
27223     
27224     
27225   
27226     
27227     
27228     
27229     
27230
27231 });
27232
27233 //Roo.reg('fckeditor', Roo.form.FCKeditor);
27234
27235 function FCKeditor_OnComplete(editorInstance){
27236     var f = Roo.form.FCKeditor.editors[editorInstance.Name];
27237     f.fckEditor = editorInstance;
27238     //console.log("loaded");
27239     f.fireEvent('editorinit', f, editorInstance);
27240
27241   
27242
27243  
27244
27245
27246
27247
27248
27249
27250
27251
27252
27253
27254
27255
27256
27257
27258
27259 //<script type="text/javascript">
27260 /**
27261  * @class Roo.form.GridField
27262  * @extends Roo.form.Field
27263  * Embed a grid (or editable grid into a form)
27264  * STATUS ALPHA
27265  * 
27266  * This embeds a grid in a form, the value of the field should be the json encoded array of rows
27267  * it needs 
27268  * xgrid.store = Roo.data.Store
27269  * xgrid.store.proxy = Roo.data.MemoryProxy (data = [] )
27270  * xgrid.store.reader = Roo.data.JsonReader 
27271  * 
27272  * 
27273  * @constructor
27274  * Creates a new GridField
27275  * @param {Object} config Configuration options
27276  */
27277 Roo.form.GridField = function(config){
27278     Roo.form.GridField.superclass.constructor.call(this, config);
27279      
27280 };
27281
27282 Roo.extend(Roo.form.GridField, Roo.form.Field,  {
27283     /**
27284      * @cfg {Number} width  - used to restrict width of grid..
27285      */
27286     width : 100,
27287     /**
27288      * @cfg {Number} height - used to restrict height of grid..
27289      */
27290     height : 50,
27291      /**
27292      * @cfg {Object} xgrid (xtype'd description of grid) { xtype : 'Grid', dataSource: .... }
27293          * 
27294          *}
27295      */
27296     xgrid : false, 
27297     /**
27298      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
27299      * {tag: "input", type: "checkbox", autocomplete: "off"})
27300      */
27301    // defaultAutoCreate : { tag: 'div' },
27302     defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'new-password'},
27303     /**
27304      * @cfg {String} addTitle Text to include for adding a title.
27305      */
27306     addTitle : false,
27307     //
27308     onResize : function(){
27309         Roo.form.Field.superclass.onResize.apply(this, arguments);
27310     },
27311
27312     initEvents : function(){
27313         // Roo.form.Checkbox.superclass.initEvents.call(this);
27314         // has no events...
27315        
27316     },
27317
27318
27319     getResizeEl : function(){
27320         return this.wrap;
27321     },
27322
27323     getPositionEl : function(){
27324         return this.wrap;
27325     },
27326
27327     // private
27328     onRender : function(ct, position){
27329         
27330         this.style = this.style || 'overflow: hidden; border:1px solid #c3daf9;';
27331         var style = this.style;
27332         delete this.style;
27333         
27334         Roo.form.GridField.superclass.onRender.call(this, ct, position);
27335         this.wrap = this.el.wrap({cls: ''}); // not sure why ive done thsi...
27336         this.viewEl = this.wrap.createChild({ tag: 'div' });
27337         if (style) {
27338             this.viewEl.applyStyles(style);
27339         }
27340         if (this.width) {
27341             this.viewEl.setWidth(this.width);
27342         }
27343         if (this.height) {
27344             this.viewEl.setHeight(this.height);
27345         }
27346         //if(this.inputValue !== undefined){
27347         //this.setValue(this.value);
27348         
27349         
27350         this.grid = new Roo.grid[this.xgrid.xtype](this.viewEl, this.xgrid);
27351         
27352         
27353         this.grid.render();
27354         this.grid.getDataSource().on('remove', this.refreshValue, this);
27355         this.grid.getDataSource().on('update', this.refreshValue, this);
27356         this.grid.on('afteredit', this.refreshValue, this);
27357  
27358     },
27359      
27360     
27361     /**
27362      * Sets the value of the item. 
27363      * @param {String} either an object  or a string..
27364      */
27365     setValue : function(v){
27366         //this.value = v;
27367         v = v || []; // empty set..
27368         // this does not seem smart - it really only affects memoryproxy grids..
27369         if (this.grid && this.grid.getDataSource() && typeof(v) != 'undefined') {
27370             var ds = this.grid.getDataSource();
27371             // assumes a json reader..
27372             var data = {}
27373             data[ds.reader.meta.root ] =  typeof(v) == 'string' ? Roo.decode(v) : v;
27374             ds.loadData( data);
27375         }
27376         // clear selection so it does not get stale.
27377         if (this.grid.sm) { 
27378             this.grid.sm.clearSelections();
27379         }
27380         
27381         Roo.form.GridField.superclass.setValue.call(this, v);
27382         this.refreshValue();
27383         // should load data in the grid really....
27384     },
27385     
27386     // private
27387     refreshValue: function() {
27388          var val = [];
27389         this.grid.getDataSource().each(function(r) {
27390             val.push(r.data);
27391         });
27392         this.el.dom.value = Roo.encode(val);
27393     }
27394     
27395      
27396     
27397     
27398 });/*
27399  * Based on:
27400  * Ext JS Library 1.1.1
27401  * Copyright(c) 2006-2007, Ext JS, LLC.
27402  *
27403  * Originally Released Under LGPL - original licence link has changed is not relivant.
27404  *
27405  * Fork - LGPL
27406  * <script type="text/javascript">
27407  */
27408 /**
27409  * @class Roo.form.DisplayField
27410  * @extends Roo.form.Field
27411  * A generic Field to display non-editable data.
27412  * @cfg {Boolean} closable (true|false) default false
27413  * @constructor
27414  * Creates a new Display Field item.
27415  * @param {Object} config Configuration options
27416  */
27417 Roo.form.DisplayField = function(config){
27418     Roo.form.DisplayField.superclass.constructor.call(this, config);
27419     
27420     this.addEvents({
27421         /**
27422          * @event close
27423          * Fires after the click the close btn
27424              * @param {Roo.form.DisplayField} this
27425              */
27426         close : true
27427     });
27428 };
27429
27430 Roo.extend(Roo.form.DisplayField, Roo.form.TextField,  {
27431     inputType:      'hidden',
27432     allowBlank:     true,
27433     readOnly:         true,
27434     
27435  
27436     /**
27437      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
27438      */
27439     focusClass : undefined,
27440     /**
27441      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
27442      */
27443     fieldClass: 'x-form-field',
27444     
27445      /**
27446      * @cfg {Function} valueRenderer The renderer for the field (so you can reformat output). should return raw HTML
27447      */
27448     valueRenderer: undefined,
27449     
27450     width: 100,
27451     /**
27452      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
27453      * {tag: "input", type: "checkbox", autocomplete: "off"})
27454      */
27455      
27456  //   defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
27457  
27458     closable : false,
27459     
27460     onResize : function(){
27461         Roo.form.DisplayField.superclass.onResize.apply(this, arguments);
27462         
27463     },
27464
27465     initEvents : function(){
27466         // Roo.form.Checkbox.superclass.initEvents.call(this);
27467         // has no events...
27468         
27469         if(this.closable){
27470             this.closeEl.on('click', this.onClose, this);
27471         }
27472        
27473     },
27474
27475
27476     getResizeEl : function(){
27477         return this.wrap;
27478     },
27479
27480     getPositionEl : function(){
27481         return this.wrap;
27482     },
27483
27484     // private
27485     onRender : function(ct, position){
27486         
27487         Roo.form.DisplayField.superclass.onRender.call(this, ct, position);
27488         //if(this.inputValue !== undefined){
27489         this.wrap = this.el.wrap();
27490         
27491         this.viewEl = this.wrap.createChild({ tag: 'div', cls: 'x-form-displayfield'});
27492         
27493         if(this.closable){
27494             this.closeEl = this.wrap.createChild({ tag: 'div', cls: 'x-dlg-close'});
27495         }
27496         
27497         if (this.bodyStyle) {
27498             this.viewEl.applyStyles(this.bodyStyle);
27499         }
27500         //this.viewEl.setStyle('padding', '2px');
27501         
27502         this.setValue(this.value);
27503         
27504     },
27505 /*
27506     // private
27507     initValue : Roo.emptyFn,
27508
27509   */
27510
27511         // private
27512     onClick : function(){
27513         
27514     },
27515
27516     /**
27517      * Sets the checked state of the checkbox.
27518      * @param {Boolean/String} checked True, 'true', '1', or 'on' to check the checkbox, any other value will uncheck it.
27519      */
27520     setValue : function(v){
27521         this.value = v;
27522         var html = this.valueRenderer ?  this.valueRenderer(v) : String.format('{0}', v);
27523         // this might be called before we have a dom element..
27524         if (!this.viewEl) {
27525             return;
27526         }
27527         this.viewEl.dom.innerHTML = html;
27528         Roo.form.DisplayField.superclass.setValue.call(this, v);
27529
27530     },
27531     
27532     onClose : function(e)
27533     {
27534         e.preventDefault();
27535         
27536         this.fireEvent('close', this);
27537     }
27538 });/*
27539  * 
27540  * Licence- LGPL
27541  * 
27542  */
27543
27544 /**
27545  * @class Roo.form.DayPicker
27546  * @extends Roo.form.Field
27547  * A Day picker show [M] [T] [W] ....
27548  * @constructor
27549  * Creates a new Day Picker
27550  * @param {Object} config Configuration options
27551  */
27552 Roo.form.DayPicker= function(config){
27553     Roo.form.DayPicker.superclass.constructor.call(this, config);
27554      
27555 };
27556
27557 Roo.extend(Roo.form.DayPicker, Roo.form.Field,  {
27558     /**
27559      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
27560      */
27561     focusClass : undefined,
27562     /**
27563      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
27564      */
27565     fieldClass: "x-form-field",
27566    
27567     /**
27568      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
27569      * {tag: "input", type: "checkbox", autocomplete: "off"})
27570      */
27571     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "new-password"},
27572     
27573    
27574     actionMode : 'viewEl', 
27575     //
27576     // private
27577  
27578     inputType : 'hidden',
27579     
27580      
27581     inputElement: false, // real input element?
27582     basedOn: false, // ????
27583     
27584     isFormField: true, // not sure where this is needed!!!!
27585
27586     onResize : function(){
27587         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
27588         if(!this.boxLabel){
27589             this.el.alignTo(this.wrap, 'c-c');
27590         }
27591     },
27592
27593     initEvents : function(){
27594         Roo.form.Checkbox.superclass.initEvents.call(this);
27595         this.el.on("click", this.onClick,  this);
27596         this.el.on("change", this.onClick,  this);
27597     },
27598
27599
27600     getResizeEl : function(){
27601         return this.wrap;
27602     },
27603
27604     getPositionEl : function(){
27605         return this.wrap;
27606     },
27607
27608     
27609     // private
27610     onRender : function(ct, position){
27611         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
27612        
27613         this.wrap = this.el.wrap({cls: 'x-form-daypick-item '});
27614         
27615         var r1 = '<table><tr>';
27616         var r2 = '<tr class="x-form-daypick-icons">';
27617         for (var i=0; i < 7; i++) {
27618             r1+= '<td><div>' + Date.dayNames[i].substring(0,3) + '</div></td>';
27619             r2+= '<td><img class="x-menu-item-icon" src="' + Roo.BLANK_IMAGE_URL  +'"></td>';
27620         }
27621         
27622         var viewEl = this.wrap.createChild( r1 + '</tr>' + r2 + '</tr></table>');
27623         viewEl.select('img').on('click', this.onClick, this);
27624         this.viewEl = viewEl;   
27625         
27626         
27627         // this will not work on Chrome!!!
27628         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
27629         this.el.on('propertychange', this.setFromHidden,  this);  //ie
27630         
27631         
27632           
27633
27634     },
27635
27636     // private
27637     initValue : Roo.emptyFn,
27638
27639     /**
27640      * Returns the checked state of the checkbox.
27641      * @return {Boolean} True if checked, else false
27642      */
27643     getValue : function(){
27644         return this.el.dom.value;
27645         
27646     },
27647
27648         // private
27649     onClick : function(e){ 
27650         //this.setChecked(!this.checked);
27651         Roo.get(e.target).toggleClass('x-menu-item-checked');
27652         this.refreshValue();
27653         //if(this.el.dom.checked != this.checked){
27654         //    this.setValue(this.el.dom.checked);
27655        // }
27656     },
27657     
27658     // private
27659     refreshValue : function()
27660     {
27661         var val = '';
27662         this.viewEl.select('img',true).each(function(e,i,n)  {
27663             val += e.is(".x-menu-item-checked") ? String(n) : '';
27664         });
27665         this.setValue(val, true);
27666     },
27667
27668     /**
27669      * Sets the checked state of the checkbox.
27670      * On is always based on a string comparison between inputValue and the param.
27671      * @param {Boolean/String} value - the value to set 
27672      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
27673      */
27674     setValue : function(v,suppressEvent){
27675         if (!this.el.dom) {
27676             return;
27677         }
27678         var old = this.el.dom.value ;
27679         this.el.dom.value = v;
27680         if (suppressEvent) {
27681             return ;
27682         }
27683          
27684         // update display..
27685         this.viewEl.select('img',true).each(function(e,i,n)  {
27686             
27687             var on = e.is(".x-menu-item-checked");
27688             var newv = v.indexOf(String(n)) > -1;
27689             if (on != newv) {
27690                 e.toggleClass('x-menu-item-checked');
27691             }
27692             
27693         });
27694         
27695         
27696         this.fireEvent('change', this, v, old);
27697         
27698         
27699     },
27700    
27701     // handle setting of hidden value by some other method!!?!?
27702     setFromHidden: function()
27703     {
27704         if(!this.el){
27705             return;
27706         }
27707         //console.log("SET FROM HIDDEN");
27708         //alert('setFrom hidden');
27709         this.setValue(this.el.dom.value);
27710     },
27711     
27712     onDestroy : function()
27713     {
27714         if(this.viewEl){
27715             Roo.get(this.viewEl).remove();
27716         }
27717          
27718         Roo.form.DayPicker.superclass.onDestroy.call(this);
27719     }
27720
27721 });/*
27722  * RooJS Library 1.1.1
27723  * Copyright(c) 2008-2011  Alan Knowles
27724  *
27725  * License - LGPL
27726  */
27727  
27728
27729 /**
27730  * @class Roo.form.ComboCheck
27731  * @extends Roo.form.ComboBox
27732  * A combobox for multiple select items.
27733  *
27734  * FIXME - could do with a reset button..
27735  * 
27736  * @constructor
27737  * Create a new ComboCheck
27738  * @param {Object} config Configuration options
27739  */
27740 Roo.form.ComboCheck = function(config){
27741     Roo.form.ComboCheck.superclass.constructor.call(this, config);
27742     // should verify some data...
27743     // like
27744     // hiddenName = required..
27745     // displayField = required
27746     // valudField == required
27747     var req= [ 'hiddenName', 'displayField', 'valueField' ];
27748     var _t = this;
27749     Roo.each(req, function(e) {
27750         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
27751             throw "Roo.form.ComboCheck : missing value for: " + e;
27752         }
27753     });
27754     
27755     
27756 };
27757
27758 Roo.extend(Roo.form.ComboCheck, Roo.form.ComboBox, {
27759      
27760      
27761     editable : false,
27762      
27763     selectedClass: 'x-menu-item-checked', 
27764     
27765     // private
27766     onRender : function(ct, position){
27767         var _t = this;
27768         
27769         
27770         
27771         if(!this.tpl){
27772             var cls = 'x-combo-list';
27773
27774             
27775             this.tpl =  new Roo.Template({
27776                 html :  '<div class="'+cls+'-item x-menu-check-item">' +
27777                    '<img class="x-menu-item-icon" style="margin: 0px;" src="' + Roo.BLANK_IMAGE_URL + '">' + 
27778                    '<span>{' + this.displayField + '}</span>' +
27779                     '</div>' 
27780                 
27781             });
27782         }
27783  
27784         
27785         Roo.form.ComboCheck.superclass.onRender.call(this, ct, position);
27786         this.view.singleSelect = false;
27787         this.view.multiSelect = true;
27788         this.view.toggleSelect = true;
27789         this.pageTb.add(new Roo.Toolbar.Fill(), {
27790             
27791             text: 'Done',
27792             handler: function()
27793             {
27794                 _t.collapse();
27795             }
27796         });
27797     },
27798     
27799     onViewOver : function(e, t){
27800         // do nothing...
27801         return;
27802         
27803     },
27804     
27805     onViewClick : function(doFocus,index){
27806         return;
27807         
27808     },
27809     select: function () {
27810         //Roo.log("SELECT CALLED");
27811     },
27812      
27813     selectByValue : function(xv, scrollIntoView){
27814         var ar = this.getValueArray();
27815         var sels = [];
27816         
27817         Roo.each(ar, function(v) {
27818             if(v === undefined || v === null){
27819                 return;
27820             }
27821             var r = this.findRecord(this.valueField, v);
27822             if(r){
27823                 sels.push(this.store.indexOf(r))
27824                 
27825             }
27826         },this);
27827         this.view.select(sels);
27828         return false;
27829     },
27830     
27831     
27832     
27833     onSelect : function(record, index){
27834        // Roo.log("onselect Called");
27835        // this is only called by the clear button now..
27836         this.view.clearSelections();
27837         this.setValue('[]');
27838         if (this.value != this.valueBefore) {
27839             this.fireEvent('change', this, this.value, this.valueBefore);
27840             this.valueBefore = this.value;
27841         }
27842     },
27843     getValueArray : function()
27844     {
27845         var ar = [] ;
27846         
27847         try {
27848             //Roo.log(this.value);
27849             if (typeof(this.value) == 'undefined') {
27850                 return [];
27851             }
27852             var ar = Roo.decode(this.value);
27853             return  ar instanceof Array ? ar : []; //?? valid?
27854             
27855         } catch(e) {
27856             Roo.log(e + "\nRoo.form.ComboCheck:getValueArray  invalid data:" + this.getValue());
27857             return [];
27858         }
27859          
27860     },
27861     expand : function ()
27862     {
27863         
27864         Roo.form.ComboCheck.superclass.expand.call(this);
27865         this.valueBefore = typeof(this.value) == 'undefined' ? '' : this.value;
27866         //this.valueBefore = typeof(this.valueBefore) == 'undefined' ? '' : this.valueBefore;
27867         
27868
27869     },
27870     
27871     collapse : function(){
27872         Roo.form.ComboCheck.superclass.collapse.call(this);
27873         var sl = this.view.getSelectedIndexes();
27874         var st = this.store;
27875         var nv = [];
27876         var tv = [];
27877         var r;
27878         Roo.each(sl, function(i) {
27879             r = st.getAt(i);
27880             nv.push(r.get(this.valueField));
27881         },this);
27882         this.setValue(Roo.encode(nv));
27883         if (this.value != this.valueBefore) {
27884
27885             this.fireEvent('change', this, this.value, this.valueBefore);
27886             this.valueBefore = this.value;
27887         }
27888         
27889     },
27890     
27891     setValue : function(v){
27892         // Roo.log(v);
27893         this.value = v;
27894         
27895         var vals = this.getValueArray();
27896         var tv = [];
27897         Roo.each(vals, function(k) {
27898             var r = this.findRecord(this.valueField, k);
27899             if(r){
27900                 tv.push(r.data[this.displayField]);
27901             }else if(this.valueNotFoundText !== undefined){
27902                 tv.push( this.valueNotFoundText );
27903             }
27904         },this);
27905        // Roo.log(tv);
27906         
27907         Roo.form.ComboBox.superclass.setValue.call(this, tv.join(', '));
27908         this.hiddenField.value = v;
27909         this.value = v;
27910     }
27911     
27912 });/*
27913  * Based on:
27914  * Ext JS Library 1.1.1
27915  * Copyright(c) 2006-2007, Ext JS, LLC.
27916  *
27917  * Originally Released Under LGPL - original licence link has changed is not relivant.
27918  *
27919  * Fork - LGPL
27920  * <script type="text/javascript">
27921  */
27922  
27923 /**
27924  * @class Roo.form.Signature
27925  * @extends Roo.form.Field
27926  * Signature field.  
27927  * @constructor
27928  * 
27929  * @param {Object} config Configuration options
27930  */
27931
27932 Roo.form.Signature = function(config){
27933     Roo.form.Signature.superclass.constructor.call(this, config);
27934     
27935     this.addEvents({// not in used??
27936          /**
27937          * @event confirm
27938          * Fires when the 'confirm' icon is pressed (add a listener to enable add button)
27939              * @param {Roo.form.Signature} combo This combo box
27940              */
27941         'confirm' : true,
27942         /**
27943          * @event reset
27944          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
27945              * @param {Roo.form.ComboBox} combo This combo box
27946              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
27947              */
27948         'reset' : true
27949     });
27950 };
27951
27952 Roo.extend(Roo.form.Signature, Roo.form.Field,  {
27953     /**
27954      * @cfg {Object} labels Label to use when rendering a form.
27955      * defaults to 
27956      * labels : { 
27957      *      clear : "Clear",
27958      *      confirm : "Confirm"
27959      *  }
27960      */
27961     labels : { 
27962         clear : "Clear",
27963         confirm : "Confirm"
27964     },
27965     /**
27966      * @cfg {Number} width The signature panel width (defaults to 300)
27967      */
27968     width: 300,
27969     /**
27970      * @cfg {Number} height The signature panel height (defaults to 100)
27971      */
27972     height : 100,
27973     /**
27974      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to false)
27975      */
27976     allowBlank : false,
27977     
27978     //private
27979     // {Object} signPanel The signature SVG panel element (defaults to {})
27980     signPanel : {},
27981     // {Boolean} isMouseDown False to validate that the mouse down event (defaults to false)
27982     isMouseDown : false,
27983     // {Boolean} isConfirmed validate the signature is confirmed or not for submitting form (defaults to false)
27984     isConfirmed : false,
27985     // {String} signatureTmp SVG mapping string (defaults to empty string)
27986     signatureTmp : '',
27987     
27988     
27989     defaultAutoCreate : { // modified by initCompnoent..
27990         tag: "input",
27991         type:"hidden"
27992     },
27993
27994     // private
27995     onRender : function(ct, position){
27996         
27997         Roo.form.Signature.superclass.onRender.call(this, ct, position);
27998         
27999         this.wrap = this.el.wrap({
28000             cls:'x-form-signature-wrap', style : 'width: ' + this.width + 'px', cn:{cls:'x-form-signature'}
28001         });
28002         
28003         this.createToolbar(this);
28004         this.signPanel = this.wrap.createChild({
28005                 tag: 'div',
28006                 style: 'width: ' + this.width + 'px; height: ' + this.height + 'px; border: 0;'
28007             }, this.el
28008         );
28009             
28010         this.svgID = Roo.id();
28011         this.svgEl = this.signPanel.createChild({
28012               xmlns : 'http://www.w3.org/2000/svg',
28013               tag : 'svg',
28014               id : this.svgID + "-svg",
28015               width: this.width,
28016               height: this.height,
28017               viewBox: '0 0 '+this.width+' '+this.height,
28018               cn : [
28019                 {
28020                     tag: "rect",
28021                     id: this.svgID + "-svg-r",
28022                     width: this.width,
28023                     height: this.height,
28024                     fill: "#ffa"
28025                 },
28026                 {
28027                     tag: "line",
28028                     id: this.svgID + "-svg-l",
28029                     x1: "0", // start
28030                     y1: (this.height*0.8), // start set the line in 80% of height
28031                     x2: this.width, // end
28032                     y2: (this.height*0.8), // end set the line in 80% of height
28033                     'stroke': "#666",
28034                     'stroke-width': "1",
28035                     'stroke-dasharray': "3",
28036                     'shape-rendering': "crispEdges",
28037                     'pointer-events': "none"
28038                 },
28039                 {
28040                     tag: "path",
28041                     id: this.svgID + "-svg-p",
28042                     'stroke': "navy",
28043                     'stroke-width': "3",
28044                     'fill': "none",
28045                     'pointer-events': 'none'
28046                 }
28047               ]
28048         });
28049         this.createSVG();
28050         this.svgBox = this.svgEl.dom.getScreenCTM();
28051     },
28052     createSVG : function(){ 
28053         var svg = this.signPanel;
28054         var r = svg.select('#'+ this.svgID + '-svg-r', true).first().dom;
28055         var t = this;
28056
28057         r.addEventListener('mousedown', function(e) { return t.down(e); }, false);
28058         r.addEventListener('mousemove', function(e) { return t.move(e); }, false);
28059         r.addEventListener('mouseup', function(e) { return t.up(e); }, false);
28060         r.addEventListener('mouseout', function(e) { return t.up(e); }, false);
28061         r.addEventListener('touchstart', function(e) { return t.down(e); }, false);
28062         r.addEventListener('touchmove', function(e) { return t.move(e); }, false);
28063         r.addEventListener('touchend', function(e) { return t.up(e); }, false);
28064         
28065     },
28066     isTouchEvent : function(e){
28067         return e.type.match(/^touch/);
28068     },
28069     getCoords : function (e) {
28070         var pt    = this.svgEl.dom.createSVGPoint();
28071         pt.x = e.clientX; 
28072         pt.y = e.clientY;
28073         if (this.isTouchEvent(e)) {
28074             pt.x =  e.targetTouches[0].clientX;
28075             pt.y = e.targetTouches[0].clientY;
28076         }
28077         var a = this.svgEl.dom.getScreenCTM();
28078         var b = a.inverse();
28079         var mx = pt.matrixTransform(b);
28080         return mx.x + ',' + mx.y;
28081     },
28082     //mouse event headler 
28083     down : function (e) {
28084         this.signatureTmp += 'M' + this.getCoords(e) + ' ';
28085         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr('d', this.signatureTmp);
28086         
28087         this.isMouseDown = true;
28088         
28089         e.preventDefault();
28090     },
28091     move : function (e) {
28092         if (this.isMouseDown) {
28093             this.signatureTmp += 'L' + this.getCoords(e) + ' ';
28094             this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', this.signatureTmp);
28095         }
28096         
28097         e.preventDefault();
28098     },
28099     up : function (e) {
28100         this.isMouseDown = false;
28101         var sp = this.signatureTmp.split(' ');
28102         
28103         if(sp.length > 1){
28104             if(!sp[sp.length-2].match(/^L/)){
28105                 sp.pop();
28106                 sp.pop();
28107                 sp.push("");
28108                 this.signatureTmp = sp.join(" ");
28109             }
28110         }
28111         if(this.getValue() != this.signatureTmp){
28112             this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
28113             this.isConfirmed = false;
28114         }
28115         e.preventDefault();
28116     },
28117     
28118     /**
28119      * Protected method that will not generally be called directly. It
28120      * is called when the editor creates its toolbar. Override this method if you need to
28121      * add custom toolbar buttons.
28122      * @param {HtmlEditor} editor
28123      */
28124     createToolbar : function(editor){
28125          function btn(id, toggle, handler){
28126             var xid = fid + '-'+ id ;
28127             return {
28128                 id : xid,
28129                 cmd : id,
28130                 cls : 'x-btn-icon x-edit-'+id,
28131                 enableToggle:toggle !== false,
28132                 scope: editor, // was editor...
28133                 handler:handler||editor.relayBtnCmd,
28134                 clickEvent:'mousedown',
28135                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
28136                 tabIndex:-1
28137             };
28138         }
28139         
28140         
28141         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
28142         this.tb = tb;
28143         this.tb.add(
28144            {
28145                 cls : ' x-signature-btn x-signature-'+id,
28146                 scope: editor, // was editor...
28147                 handler: this.reset,
28148                 clickEvent:'mousedown',
28149                 text: this.labels.clear
28150             },
28151             {
28152                  xtype : 'Fill',
28153                  xns: Roo.Toolbar
28154             }, 
28155             {
28156                 cls : '  x-signature-btn x-signature-'+id,
28157                 scope: editor, // was editor...
28158                 handler: this.confirmHandler,
28159                 clickEvent:'mousedown',
28160                 text: this.labels.confirm
28161             }
28162         );
28163     
28164     },
28165     //public
28166     /**
28167      * when user is clicked confirm then show this image.....
28168      * 
28169      * @return {String} Image Data URI
28170      */
28171     getImageDataURI : function(){
28172         var svg = this.svgEl.dom.parentNode.innerHTML;
28173         var src = 'data:image/svg+xml;base64,'+window.btoa(svg);
28174         return src; 
28175     },
28176     /**
28177      * 
28178      * @return {Boolean} this.isConfirmed
28179      */
28180     getConfirmed : function(){
28181         return this.isConfirmed;
28182     },
28183     /**
28184      * 
28185      * @return {Number} this.width
28186      */
28187     getWidth : function(){
28188         return this.width;
28189     },
28190     /**
28191      * 
28192      * @return {Number} this.height
28193      */
28194     getHeight : function(){
28195         return this.height;
28196     },
28197     // private
28198     getSignature : function(){
28199         return this.signatureTmp;
28200     },
28201     // private
28202     reset : function(){
28203         this.signatureTmp = '';
28204         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
28205         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', '');
28206         this.isConfirmed = false;
28207         Roo.form.Signature.superclass.reset.call(this);
28208     },
28209     setSignature : function(s){
28210         this.signatureTmp = s;
28211         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
28212         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', s);
28213         this.setValue(s);
28214         this.isConfirmed = false;
28215         Roo.form.Signature.superclass.reset.call(this);
28216     }, 
28217     test : function(){
28218 //        Roo.log(this.signPanel.dom.contentWindow.up())
28219     },
28220     //private
28221     setConfirmed : function(){
28222         
28223         
28224         
28225 //        Roo.log(Roo.get(this.signPanel.dom.contentWindow.r).attr('fill', '#cfc'));
28226     },
28227     // private
28228     confirmHandler : function(){
28229         if(!this.getSignature()){
28230             return;
28231         }
28232         
28233         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#cfc');
28234         this.setValue(this.getSignature());
28235         this.isConfirmed = true;
28236         
28237         this.fireEvent('confirm', this);
28238     },
28239     // private
28240     // Subclasses should provide the validation implementation by overriding this
28241     validateValue : function(value){
28242         if(this.allowBlank){
28243             return true;
28244         }
28245         
28246         if(this.isConfirmed){
28247             return true;
28248         }
28249         return false;
28250     }
28251 });/*
28252  * Based on:
28253  * Ext JS Library 1.1.1
28254  * Copyright(c) 2006-2007, Ext JS, LLC.
28255  *
28256  * Originally Released Under LGPL - original licence link has changed is not relivant.
28257  *
28258  * Fork - LGPL
28259  * <script type="text/javascript">
28260  */
28261  
28262
28263 /**
28264  * @class Roo.form.ComboBox
28265  * @extends Roo.form.TriggerField
28266  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
28267  * @constructor
28268  * Create a new ComboBox.
28269  * @param {Object} config Configuration options
28270  */
28271 Roo.form.Select = function(config){
28272     Roo.form.Select.superclass.constructor.call(this, config);
28273      
28274 };
28275
28276 Roo.extend(Roo.form.Select , Roo.form.ComboBox, {
28277     /**
28278      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
28279      */
28280     /**
28281      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
28282      * rendering into an Roo.Editor, defaults to false)
28283      */
28284     /**
28285      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
28286      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
28287      */
28288     /**
28289      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
28290      */
28291     /**
28292      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
28293      * the dropdown list (defaults to undefined, with no header element)
28294      */
28295
28296      /**
28297      * @cfg {String/Roo.Template} tpl The template to use to render the output
28298      */
28299      
28300     // private
28301     defaultAutoCreate : {tag: "select"  },
28302     /**
28303      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
28304      */
28305     listWidth: undefined,
28306     /**
28307      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
28308      * mode = 'remote' or 'text' if mode = 'local')
28309      */
28310     displayField: undefined,
28311     /**
28312      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
28313      * mode = 'remote' or 'value' if mode = 'local'). 
28314      * Note: use of a valueField requires the user make a selection
28315      * in order for a value to be mapped.
28316      */
28317     valueField: undefined,
28318     
28319     
28320     /**
28321      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
28322      * field's data value (defaults to the underlying DOM element's name)
28323      */
28324     hiddenName: undefined,
28325     /**
28326      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
28327      */
28328     listClass: '',
28329     /**
28330      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
28331      */
28332     selectedClass: 'x-combo-selected',
28333     /**
28334      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
28335      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
28336      * which displays a downward arrow icon).
28337      */
28338     triggerClass : 'x-form-arrow-trigger',
28339     /**
28340      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
28341      */
28342     shadow:'sides',
28343     /**
28344      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
28345      * anchor positions (defaults to 'tl-bl')
28346      */
28347     listAlign: 'tl-bl?',
28348     /**
28349      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
28350      */
28351     maxHeight: 300,
28352     /**
28353      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
28354      * query specified by the allQuery config option (defaults to 'query')
28355      */
28356     triggerAction: 'query',
28357     /**
28358      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
28359      * (defaults to 4, does not apply if editable = false)
28360      */
28361     minChars : 4,
28362     /**
28363      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
28364      * delay (typeAheadDelay) if it matches a known value (defaults to false)
28365      */
28366     typeAhead: false,
28367     /**
28368      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
28369      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
28370      */
28371     queryDelay: 500,
28372     /**
28373      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
28374      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
28375      */
28376     pageSize: 0,
28377     /**
28378      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
28379      * when editable = true (defaults to false)
28380      */
28381     selectOnFocus:false,
28382     /**
28383      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
28384      */
28385     queryParam: 'query',
28386     /**
28387      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
28388      * when mode = 'remote' (defaults to 'Loading...')
28389      */
28390     loadingText: 'Loading...',
28391     /**
28392      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
28393      */
28394     resizable: false,
28395     /**
28396      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
28397      */
28398     handleHeight : 8,
28399     /**
28400      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
28401      * traditional select (defaults to true)
28402      */
28403     editable: true,
28404     /**
28405      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
28406      */
28407     allQuery: '',
28408     /**
28409      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
28410      */
28411     mode: 'remote',
28412     /**
28413      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
28414      * listWidth has a higher value)
28415      */
28416     minListWidth : 70,
28417     /**
28418      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
28419      * allow the user to set arbitrary text into the field (defaults to false)
28420      */
28421     forceSelection:false,
28422     /**
28423      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
28424      * if typeAhead = true (defaults to 250)
28425      */
28426     typeAheadDelay : 250,
28427     /**
28428      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
28429      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
28430      */
28431     valueNotFoundText : undefined,
28432     
28433     /**
28434      * @cfg {String} defaultValue The value displayed after loading the store.
28435      */
28436     defaultValue: '',
28437     
28438     /**
28439      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
28440      */
28441     blockFocus : false,
28442     
28443     /**
28444      * @cfg {Boolean} disableClear Disable showing of clear button.
28445      */
28446     disableClear : false,
28447     /**
28448      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
28449      */
28450     alwaysQuery : false,
28451     
28452     //private
28453     addicon : false,
28454     editicon: false,
28455     
28456     // element that contains real text value.. (when hidden is used..)
28457      
28458     // private
28459     onRender : function(ct, position){
28460         Roo.form.Field.prototype.onRender.call(this, ct, position);
28461         
28462         if(this.store){
28463             this.store.on('beforeload', this.onBeforeLoad, this);
28464             this.store.on('load', this.onLoad, this);
28465             this.store.on('loadexception', this.onLoadException, this);
28466             this.store.load({});
28467         }
28468         
28469         
28470         
28471     },
28472
28473     // private
28474     initEvents : function(){
28475         //Roo.form.ComboBox.superclass.initEvents.call(this);
28476  
28477     },
28478
28479     onDestroy : function(){
28480        
28481         if(this.store){
28482             this.store.un('beforeload', this.onBeforeLoad, this);
28483             this.store.un('load', this.onLoad, this);
28484             this.store.un('loadexception', this.onLoadException, this);
28485         }
28486         //Roo.form.ComboBox.superclass.onDestroy.call(this);
28487     },
28488
28489     // private
28490     fireKey : function(e){
28491         if(e.isNavKeyPress() && !this.list.isVisible()){
28492             this.fireEvent("specialkey", this, e);
28493         }
28494     },
28495
28496     // private
28497     onResize: function(w, h){
28498         
28499         return; 
28500     
28501         
28502     },
28503
28504     /**
28505      * Allow or prevent the user from directly editing the field text.  If false is passed,
28506      * the user will only be able to select from the items defined in the dropdown list.  This method
28507      * is the runtime equivalent of setting the 'editable' config option at config time.
28508      * @param {Boolean} value True to allow the user to directly edit the field text
28509      */
28510     setEditable : function(value){
28511          
28512     },
28513
28514     // private
28515     onBeforeLoad : function(){
28516         
28517         Roo.log("Select before load");
28518         return;
28519     
28520         this.innerList.update(this.loadingText ?
28521                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
28522         //this.restrictHeight();
28523         this.selectedIndex = -1;
28524     },
28525
28526     // private
28527     onLoad : function(){
28528
28529     
28530         var dom = this.el.dom;
28531         dom.innerHTML = '';
28532          var od = dom.ownerDocument;
28533          
28534         if (this.emptyText) {
28535             var op = od.createElement('option');
28536             op.setAttribute('value', '');
28537             op.innerHTML = String.format('{0}', this.emptyText);
28538             dom.appendChild(op);
28539         }
28540         if(this.store.getCount() > 0){
28541            
28542             var vf = this.valueField;
28543             var df = this.displayField;
28544             this.store.data.each(function(r) {
28545                 // which colmsn to use... testing - cdoe / title..
28546                 var op = od.createElement('option');
28547                 op.setAttribute('value', r.data[vf]);
28548                 op.innerHTML = String.format('{0}', r.data[df]);
28549                 dom.appendChild(op);
28550             });
28551             if (typeof(this.defaultValue != 'undefined')) {
28552                 this.setValue(this.defaultValue);
28553             }
28554             
28555              
28556         }else{
28557             //this.onEmptyResults();
28558         }
28559         //this.el.focus();
28560     },
28561     // private
28562     onLoadException : function()
28563     {
28564         dom.innerHTML = '';
28565             
28566         Roo.log("Select on load exception");
28567         return;
28568     
28569         this.collapse();
28570         Roo.log(this.store.reader.jsonData);
28571         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
28572             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
28573         }
28574         
28575         
28576     },
28577     // private
28578     onTypeAhead : function(){
28579          
28580     },
28581
28582     // private
28583     onSelect : function(record, index){
28584         Roo.log('on select?');
28585         return;
28586         if(this.fireEvent('beforeselect', this, record, index) !== false){
28587             this.setFromData(index > -1 ? record.data : false);
28588             this.collapse();
28589             this.fireEvent('select', this, record, index);
28590         }
28591     },
28592
28593     /**
28594      * Returns the currently selected field value or empty string if no value is set.
28595      * @return {String} value The selected value
28596      */
28597     getValue : function(){
28598         var dom = this.el.dom;
28599         this.value = dom.options[dom.selectedIndex].value;
28600         return this.value;
28601         
28602     },
28603
28604     /**
28605      * Clears any text/value currently set in the field
28606      */
28607     clearValue : function(){
28608         this.value = '';
28609         this.el.dom.selectedIndex = this.emptyText ? 0 : -1;
28610         
28611     },
28612
28613     /**
28614      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
28615      * will be displayed in the field.  If the value does not match the data value of an existing item,
28616      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
28617      * Otherwise the field will be blank (although the value will still be set).
28618      * @param {String} value The value to match
28619      */
28620     setValue : function(v){
28621         var d = this.el.dom;
28622         for (var i =0; i < d.options.length;i++) {
28623             if (v == d.options[i].value) {
28624                 d.selectedIndex = i;
28625                 this.value = v;
28626                 return;
28627             }
28628         }
28629         this.clearValue();
28630     },
28631     /**
28632      * @property {Object} the last set data for the element
28633      */
28634     
28635     lastData : false,
28636     /**
28637      * Sets the value of the field based on a object which is related to the record format for the store.
28638      * @param {Object} value the value to set as. or false on reset?
28639      */
28640     setFromData : function(o){
28641         Roo.log('setfrom data?');
28642          
28643         
28644         
28645     },
28646     // private
28647     reset : function(){
28648         this.clearValue();
28649     },
28650     // private
28651     findRecord : function(prop, value){
28652         
28653         return false;
28654     
28655         var record;
28656         if(this.store.getCount() > 0){
28657             this.store.each(function(r){
28658                 if(r.data[prop] == value){
28659                     record = r;
28660                     return false;
28661                 }
28662                 return true;
28663             });
28664         }
28665         return record;
28666     },
28667     
28668     getName: function()
28669     {
28670         // returns hidden if it's set..
28671         if (!this.rendered) {return ''};
28672         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
28673         
28674     },
28675      
28676
28677     
28678
28679     // private
28680     onEmptyResults : function(){
28681         Roo.log('empty results');
28682         //this.collapse();
28683     },
28684
28685     /**
28686      * Returns true if the dropdown list is expanded, else false.
28687      */
28688     isExpanded : function(){
28689         return false;
28690     },
28691
28692     /**
28693      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
28694      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
28695      * @param {String} value The data value of the item to select
28696      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
28697      * selected item if it is not currently in view (defaults to true)
28698      * @return {Boolean} True if the value matched an item in the list, else false
28699      */
28700     selectByValue : function(v, scrollIntoView){
28701         Roo.log('select By Value');
28702         return false;
28703     
28704         if(v !== undefined && v !== null){
28705             var r = this.findRecord(this.valueField || this.displayField, v);
28706             if(r){
28707                 this.select(this.store.indexOf(r), scrollIntoView);
28708                 return true;
28709             }
28710         }
28711         return false;
28712     },
28713
28714     /**
28715      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
28716      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
28717      * @param {Number} index The zero-based index of the list item to select
28718      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
28719      * selected item if it is not currently in view (defaults to true)
28720      */
28721     select : function(index, scrollIntoView){
28722         Roo.log('select ');
28723         return  ;
28724         
28725         this.selectedIndex = index;
28726         this.view.select(index);
28727         if(scrollIntoView !== false){
28728             var el = this.view.getNode(index);
28729             if(el){
28730                 this.innerList.scrollChildIntoView(el, false);
28731             }
28732         }
28733     },
28734
28735       
28736
28737     // private
28738     validateBlur : function(){
28739         
28740         return;
28741         
28742     },
28743
28744     // private
28745     initQuery : function(){
28746         this.doQuery(this.getRawValue());
28747     },
28748
28749     // private
28750     doForce : function(){
28751         if(this.el.dom.value.length > 0){
28752             this.el.dom.value =
28753                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
28754              
28755         }
28756     },
28757
28758     /**
28759      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
28760      * query allowing the query action to be canceled if needed.
28761      * @param {String} query The SQL query to execute
28762      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
28763      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
28764      * saved in the current store (defaults to false)
28765      */
28766     doQuery : function(q, forceAll){
28767         
28768         Roo.log('doQuery?');
28769         if(q === undefined || q === null){
28770             q = '';
28771         }
28772         var qe = {
28773             query: q,
28774             forceAll: forceAll,
28775             combo: this,
28776             cancel:false
28777         };
28778         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
28779             return false;
28780         }
28781         q = qe.query;
28782         forceAll = qe.forceAll;
28783         if(forceAll === true || (q.length >= this.minChars)){
28784             if(this.lastQuery != q || this.alwaysQuery){
28785                 this.lastQuery = q;
28786                 if(this.mode == 'local'){
28787                     this.selectedIndex = -1;
28788                     if(forceAll){
28789                         this.store.clearFilter();
28790                     }else{
28791                         this.store.filter(this.displayField, q);
28792                     }
28793                     this.onLoad();
28794                 }else{
28795                     this.store.baseParams[this.queryParam] = q;
28796                     this.store.load({
28797                         params: this.getParams(q)
28798                     });
28799                     this.expand();
28800                 }
28801             }else{
28802                 this.selectedIndex = -1;
28803                 this.onLoad();   
28804             }
28805         }
28806     },
28807
28808     // private
28809     getParams : function(q){
28810         var p = {};
28811         //p[this.queryParam] = q;
28812         if(this.pageSize){
28813             p.start = 0;
28814             p.limit = this.pageSize;
28815         }
28816         return p;
28817     },
28818
28819     /**
28820      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
28821      */
28822     collapse : function(){
28823         
28824     },
28825
28826     // private
28827     collapseIf : function(e){
28828         
28829     },
28830
28831     /**
28832      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
28833      */
28834     expand : function(){
28835         
28836     } ,
28837
28838     // private
28839      
28840
28841     /** 
28842     * @cfg {Boolean} grow 
28843     * @hide 
28844     */
28845     /** 
28846     * @cfg {Number} growMin 
28847     * @hide 
28848     */
28849     /** 
28850     * @cfg {Number} growMax 
28851     * @hide 
28852     */
28853     /**
28854      * @hide
28855      * @method autoSize
28856      */
28857     
28858     setWidth : function()
28859     {
28860         
28861     },
28862     getResizeEl : function(){
28863         return this.el;
28864     }
28865 });//<script type="text/javasscript">
28866  
28867
28868 /**
28869  * @class Roo.DDView
28870  * A DnD enabled version of Roo.View.
28871  * @param {Element/String} container The Element in which to create the View.
28872  * @param {String} tpl The template string used to create the markup for each element of the View
28873  * @param {Object} config The configuration properties. These include all the config options of
28874  * {@link Roo.View} plus some specific to this class.<br>
28875  * <p>
28876  * Drag/drop is implemented by adding {@link Roo.data.Record}s to the target DDView. If copying is
28877  * not being performed, the original {@link Roo.data.Record} is removed from the source DDView.<br>
28878  * <p>
28879  * The following extra CSS rules are needed to provide insertion point highlighting:<pre><code>
28880 .x-view-drag-insert-above {
28881         border-top:1px dotted #3366cc;
28882 }
28883 .x-view-drag-insert-below {
28884         border-bottom:1px dotted #3366cc;
28885 }
28886 </code></pre>
28887  * 
28888  */
28889  
28890 Roo.DDView = function(container, tpl, config) {
28891     Roo.DDView.superclass.constructor.apply(this, arguments);
28892     this.getEl().setStyle("outline", "0px none");
28893     this.getEl().unselectable();
28894     if (this.dragGroup) {
28895                 this.setDraggable(this.dragGroup.split(","));
28896     }
28897     if (this.dropGroup) {
28898                 this.setDroppable(this.dropGroup.split(","));
28899     }
28900     if (this.deletable) {
28901         this.setDeletable();
28902     }
28903     this.isDirtyFlag = false;
28904         this.addEvents({
28905                 "drop" : true
28906         });
28907 };
28908
28909 Roo.extend(Roo.DDView, Roo.View, {
28910 /**     @cfg {String/Array} dragGroup The ddgroup name(s) for the View's DragZone. */
28911 /**     @cfg {String/Array} dropGroup The ddgroup name(s) for the View's DropZone. */
28912 /**     @cfg {Boolean} copy Causes drag operations to copy nodes rather than move. */
28913 /**     @cfg {Boolean} allowCopy Causes ctrl/drag operations to copy nodes rather than move. */
28914
28915         isFormField: true,
28916
28917         reset: Roo.emptyFn,
28918         
28919         clearInvalid: Roo.form.Field.prototype.clearInvalid,
28920
28921         validate: function() {
28922                 return true;
28923         },
28924         
28925         destroy: function() {
28926                 this.purgeListeners();
28927                 this.getEl.removeAllListeners();
28928                 this.getEl().remove();
28929                 if (this.dragZone) {
28930                         if (this.dragZone.destroy) {
28931                                 this.dragZone.destroy();
28932                         }
28933                 }
28934                 if (this.dropZone) {
28935                         if (this.dropZone.destroy) {
28936                                 this.dropZone.destroy();
28937                         }
28938                 }
28939         },
28940
28941 /**     Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}. */
28942         getName: function() {
28943                 return this.name;
28944         },
28945
28946 /**     Loads the View from a JSON string representing the Records to put into the Store. */
28947         setValue: function(v) {
28948                 if (!this.store) {
28949                         throw "DDView.setValue(). DDView must be constructed with a valid Store";
28950                 }
28951                 var data = {};
28952                 data[this.store.reader.meta.root] = v ? [].concat(v) : [];
28953                 this.store.proxy = new Roo.data.MemoryProxy(data);
28954                 this.store.load();
28955         },
28956
28957 /**     @return {String} a parenthesised list of the ids of the Records in the View. */
28958         getValue: function() {
28959                 var result = '(';
28960                 this.store.each(function(rec) {
28961                         result += rec.id + ',';
28962                 });
28963                 return result.substr(0, result.length - 1) + ')';
28964         },
28965         
28966         getIds: function() {
28967                 var i = 0, result = new Array(this.store.getCount());
28968                 this.store.each(function(rec) {
28969                         result[i++] = rec.id;
28970                 });
28971                 return result;
28972         },
28973         
28974         isDirty: function() {
28975                 return this.isDirtyFlag;
28976         },
28977
28978 /**
28979  *      Part of the Roo.dd.DropZone interface. If no target node is found, the
28980  *      whole Element becomes the target, and this causes the drop gesture to append.
28981  */
28982     getTargetFromEvent : function(e) {
28983                 var target = e.getTarget();
28984                 while ((target !== null) && (target.parentNode != this.el.dom)) {
28985                 target = target.parentNode;
28986                 }
28987                 if (!target) {
28988                         target = this.el.dom.lastChild || this.el.dom;
28989                 }
28990                 return target;
28991     },
28992
28993 /**
28994  *      Create the drag data which consists of an object which has the property "ddel" as
28995  *      the drag proxy element. 
28996  */
28997     getDragData : function(e) {
28998         var target = this.findItemFromChild(e.getTarget());
28999                 if(target) {
29000                         this.handleSelection(e);
29001                         var selNodes = this.getSelectedNodes();
29002             var dragData = {
29003                 source: this,
29004                 copy: this.copy || (this.allowCopy && e.ctrlKey),
29005                 nodes: selNodes,
29006                 records: []
29007                         };
29008                         var selectedIndices = this.getSelectedIndexes();
29009                         for (var i = 0; i < selectedIndices.length; i++) {
29010                                 dragData.records.push(this.store.getAt(selectedIndices[i]));
29011                         }
29012                         if (selNodes.length == 1) {
29013                                 dragData.ddel = target.cloneNode(true); // the div element
29014                         } else {
29015                                 var div = document.createElement('div'); // create the multi element drag "ghost"
29016                                 div.className = 'multi-proxy';
29017                                 for (var i = 0, len = selNodes.length; i < len; i++) {
29018                                         div.appendChild(selNodes[i].cloneNode(true));
29019                                 }
29020                                 dragData.ddel = div;
29021                         }
29022             //console.log(dragData)
29023             //console.log(dragData.ddel.innerHTML)
29024                         return dragData;
29025                 }
29026         //console.log('nodragData')
29027                 return false;
29028     },
29029     
29030 /**     Specify to which ddGroup items in this DDView may be dragged. */
29031     setDraggable: function(ddGroup) {
29032         if (ddGroup instanceof Array) {
29033                 Roo.each(ddGroup, this.setDraggable, this);
29034                 return;
29035         }
29036         if (this.dragZone) {
29037                 this.dragZone.addToGroup(ddGroup);
29038         } else {
29039                         this.dragZone = new Roo.dd.DragZone(this.getEl(), {
29040                                 containerScroll: true,
29041                                 ddGroup: ddGroup 
29042
29043                         });
29044 //                      Draggability implies selection. DragZone's mousedown selects the element.
29045                         if (!this.multiSelect) { this.singleSelect = true; }
29046
29047 //                      Wire the DragZone's handlers up to methods in *this*
29048                         this.dragZone.getDragData = this.getDragData.createDelegate(this);
29049                 }
29050     },
29051
29052 /**     Specify from which ddGroup this DDView accepts drops. */
29053     setDroppable: function(ddGroup) {
29054         if (ddGroup instanceof Array) {
29055                 Roo.each(ddGroup, this.setDroppable, this);
29056                 return;
29057         }
29058         if (this.dropZone) {
29059                 this.dropZone.addToGroup(ddGroup);
29060         } else {
29061                         this.dropZone = new Roo.dd.DropZone(this.getEl(), {
29062                                 containerScroll: true,
29063                                 ddGroup: ddGroup
29064                         });
29065
29066 //                      Wire the DropZone's handlers up to methods in *this*
29067                         this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
29068                         this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
29069                         this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
29070                         this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
29071                         this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
29072                 }
29073     },
29074
29075 /**     Decide whether to drop above or below a View node. */
29076     getDropPoint : function(e, n, dd){
29077         if (n == this.el.dom) { return "above"; }
29078                 var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
29079                 var c = t + (b - t) / 2;
29080                 var y = Roo.lib.Event.getPageY(e);
29081                 if(y <= c) {
29082                         return "above";
29083                 }else{
29084                         return "below";
29085                 }
29086     },
29087
29088     onNodeEnter : function(n, dd, e, data){
29089                 return false;
29090     },
29091     
29092     onNodeOver : function(n, dd, e, data){
29093                 var pt = this.getDropPoint(e, n, dd);
29094                 // set the insert point style on the target node
29095                 var dragElClass = this.dropNotAllowed;
29096                 if (pt) {
29097                         var targetElClass;
29098                         if (pt == "above"){
29099                                 dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
29100                                 targetElClass = "x-view-drag-insert-above";
29101                         } else {
29102                                 dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
29103                                 targetElClass = "x-view-drag-insert-below";
29104                         }
29105                         if (this.lastInsertClass != targetElClass){
29106                                 Roo.fly(n).replaceClass(this.lastInsertClass, targetElClass);
29107                                 this.lastInsertClass = targetElClass;
29108                         }
29109                 }
29110                 return dragElClass;
29111         },
29112
29113     onNodeOut : function(n, dd, e, data){
29114                 this.removeDropIndicators(n);
29115     },
29116
29117     onNodeDrop : function(n, dd, e, data){
29118         if (this.fireEvent("drop", this, n, dd, e, data) === false) {
29119                 return false;
29120         }
29121         var pt = this.getDropPoint(e, n, dd);
29122                 var insertAt = (n == this.el.dom) ? this.nodes.length : n.nodeIndex;
29123                 if (pt == "below") { insertAt++; }
29124                 for (var i = 0; i < data.records.length; i++) {
29125                         var r = data.records[i];
29126                         var dup = this.store.getById(r.id);
29127                         if (dup && (dd != this.dragZone)) {
29128                                 Roo.fly(this.getNode(this.store.indexOf(dup))).frame("red", 1);
29129                         } else {
29130                                 if (data.copy) {
29131                                         this.store.insert(insertAt++, r.copy());
29132                                 } else {
29133                                         data.source.isDirtyFlag = true;
29134                                         r.store.remove(r);
29135                                         this.store.insert(insertAt++, r);
29136                                 }
29137                                 this.isDirtyFlag = true;
29138                         }
29139                 }
29140                 this.dragZone.cachedTarget = null;
29141                 return true;
29142     },
29143
29144     removeDropIndicators : function(n){
29145                 if(n){
29146                         Roo.fly(n).removeClass([
29147                                 "x-view-drag-insert-above",
29148                                 "x-view-drag-insert-below"]);
29149                         this.lastInsertClass = "_noclass";
29150                 }
29151     },
29152
29153 /**
29154  *      Utility method. Add a delete option to the DDView's context menu.
29155  *      @param {String} imageUrl The URL of the "delete" icon image.
29156  */
29157         setDeletable: function(imageUrl) {
29158                 if (!this.singleSelect && !this.multiSelect) {
29159                         this.singleSelect = true;
29160                 }
29161                 var c = this.getContextMenu();
29162                 this.contextMenu.on("itemclick", function(item) {
29163                         switch (item.id) {
29164                                 case "delete":
29165                                         this.remove(this.getSelectedIndexes());
29166                                         break;
29167                         }
29168                 }, this);
29169                 this.contextMenu.add({
29170                         icon: imageUrl,
29171                         id: "delete",
29172                         text: 'Delete'
29173                 });
29174         },
29175         
29176 /**     Return the context menu for this DDView. */
29177         getContextMenu: function() {
29178                 if (!this.contextMenu) {
29179 //                      Create the View's context menu
29180                         this.contextMenu = new Roo.menu.Menu({
29181                                 id: this.id + "-contextmenu"
29182                         });
29183                         this.el.on("contextmenu", this.showContextMenu, this);
29184                 }
29185                 return this.contextMenu;
29186         },
29187         
29188         disableContextMenu: function() {
29189                 if (this.contextMenu) {
29190                         this.el.un("contextmenu", this.showContextMenu, this);
29191                 }
29192         },
29193
29194         showContextMenu: function(e, item) {
29195         item = this.findItemFromChild(e.getTarget());
29196                 if (item) {
29197                         e.stopEvent();
29198                         this.select(this.getNode(item), this.multiSelect && e.ctrlKey, true);
29199                         this.contextMenu.showAt(e.getXY());
29200             }
29201     },
29202
29203 /**
29204  *      Remove {@link Roo.data.Record}s at the specified indices.
29205  *      @param {Array/Number} selectedIndices The index (or Array of indices) of Records to remove.
29206  */
29207     remove: function(selectedIndices) {
29208                 selectedIndices = [].concat(selectedIndices);
29209                 for (var i = 0; i < selectedIndices.length; i++) {
29210                         var rec = this.store.getAt(selectedIndices[i]);
29211                         this.store.remove(rec);
29212                 }
29213     },
29214
29215 /**
29216  *      Double click fires the event, but also, if this is draggable, and there is only one other
29217  *      related DropZone, it transfers the selected node.
29218  */
29219     onDblClick : function(e){
29220         var item = this.findItemFromChild(e.getTarget());
29221         if(item){
29222             if (this.fireEvent("dblclick", this, this.indexOf(item), item, e) === false) {
29223                 return false;
29224             }
29225             if (this.dragGroup) {
29226                     var targets = Roo.dd.DragDropMgr.getRelated(this.dragZone, true);
29227                     while (targets.indexOf(this.dropZone) > -1) {
29228                             targets.remove(this.dropZone);
29229                                 }
29230                     if (targets.length == 1) {
29231                                         this.dragZone.cachedTarget = null;
29232                         var el = Roo.get(targets[0].getEl());
29233                         var box = el.getBox(true);
29234                         targets[0].onNodeDrop(el.dom, {
29235                                 target: el.dom,
29236                                 xy: [box.x, box.y + box.height - 1]
29237                         }, null, this.getDragData(e));
29238                     }
29239                 }
29240         }
29241     },
29242     
29243     handleSelection: function(e) {
29244                 this.dragZone.cachedTarget = null;
29245         var item = this.findItemFromChild(e.getTarget());
29246         if (!item) {
29247                 this.clearSelections(true);
29248                 return;
29249         }
29250                 if (item && (this.multiSelect || this.singleSelect)){
29251                         if(this.multiSelect && e.shiftKey && (!e.ctrlKey) && this.lastSelection){
29252                                 this.select(this.getNodes(this.indexOf(this.lastSelection), item.nodeIndex), false);
29253                         }else if (this.isSelected(this.getNode(item)) && e.ctrlKey){
29254                                 this.unselect(item);
29255                         } else {
29256                                 this.select(item, this.multiSelect && e.ctrlKey);
29257                                 this.lastSelection = item;
29258                         }
29259                 }
29260     },
29261
29262     onItemClick : function(item, index, e){
29263                 if(this.fireEvent("beforeclick", this, index, item, e) === false){
29264                         return false;
29265                 }
29266                 return true;
29267     },
29268
29269     unselect : function(nodeInfo, suppressEvent){
29270                 var node = this.getNode(nodeInfo);
29271                 if(node && this.isSelected(node)){
29272                         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
29273                                 Roo.fly(node).removeClass(this.selectedClass);
29274                                 this.selections.remove(node);
29275                                 if(!suppressEvent){
29276                                         this.fireEvent("selectionchange", this, this.selections);
29277                                 }
29278                         }
29279                 }
29280     }
29281 });
29282 /*
29283  * Based on:
29284  * Ext JS Library 1.1.1
29285  * Copyright(c) 2006-2007, Ext JS, LLC.
29286  *
29287  * Originally Released Under LGPL - original licence link has changed is not relivant.
29288  *
29289  * Fork - LGPL
29290  * <script type="text/javascript">
29291  */
29292  
29293 /**
29294  * @class Roo.LayoutManager
29295  * @extends Roo.util.Observable
29296  * Base class for layout managers.
29297  */
29298 Roo.LayoutManager = function(container, config){
29299     Roo.LayoutManager.superclass.constructor.call(this);
29300     this.el = Roo.get(container);
29301     // ie scrollbar fix
29302     if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
29303         document.body.scroll = "no";
29304     }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
29305         this.el.position('relative');
29306     }
29307     this.id = this.el.id;
29308     this.el.addClass("x-layout-container");
29309     /** false to disable window resize monitoring @type Boolean */
29310     this.monitorWindowResize = true;
29311     this.regions = {};
29312     this.addEvents({
29313         /**
29314          * @event layout
29315          * Fires when a layout is performed. 
29316          * @param {Roo.LayoutManager} this
29317          */
29318         "layout" : true,
29319         /**
29320          * @event regionresized
29321          * Fires when the user resizes a region. 
29322          * @param {Roo.LayoutRegion} region The resized region
29323          * @param {Number} newSize The new size (width for east/west, height for north/south)
29324          */
29325         "regionresized" : true,
29326         /**
29327          * @event regioncollapsed
29328          * Fires when a region is collapsed. 
29329          * @param {Roo.LayoutRegion} region The collapsed region
29330          */
29331         "regioncollapsed" : true,
29332         /**
29333          * @event regionexpanded
29334          * Fires when a region is expanded.  
29335          * @param {Roo.LayoutRegion} region The expanded region
29336          */
29337         "regionexpanded" : true
29338     });
29339     this.updating = false;
29340     Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
29341 };
29342
29343 Roo.extend(Roo.LayoutManager, Roo.util.Observable, {
29344     /**
29345      * Returns true if this layout is currently being updated
29346      * @return {Boolean}
29347      */
29348     isUpdating : function(){
29349         return this.updating; 
29350     },
29351     
29352     /**
29353      * Suspend the LayoutManager from doing auto-layouts while
29354      * making multiple add or remove calls
29355      */
29356     beginUpdate : function(){
29357         this.updating = true;    
29358     },
29359     
29360     /**
29361      * Restore auto-layouts and optionally disable the manager from performing a layout
29362      * @param {Boolean} noLayout true to disable a layout update 
29363      */
29364     endUpdate : function(noLayout){
29365         this.updating = false;
29366         if(!noLayout){
29367             this.layout();
29368         }    
29369     },
29370     
29371     layout: function(){
29372         
29373     },
29374     
29375     onRegionResized : function(region, newSize){
29376         this.fireEvent("regionresized", region, newSize);
29377         this.layout();
29378     },
29379     
29380     onRegionCollapsed : function(region){
29381         this.fireEvent("regioncollapsed", region);
29382     },
29383     
29384     onRegionExpanded : function(region){
29385         this.fireEvent("regionexpanded", region);
29386     },
29387         
29388     /**
29389      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
29390      * performs box-model adjustments.
29391      * @return {Object} The size as an object {width: (the width), height: (the height)}
29392      */
29393     getViewSize : function(){
29394         var size;
29395         if(this.el.dom != document.body){
29396             size = this.el.getSize();
29397         }else{
29398             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
29399         }
29400         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
29401         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
29402         return size;
29403     },
29404     
29405     /**
29406      * Returns the Element this layout is bound to.
29407      * @return {Roo.Element}
29408      */
29409     getEl : function(){
29410         return this.el;
29411     },
29412     
29413     /**
29414      * Returns the specified region.
29415      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
29416      * @return {Roo.LayoutRegion}
29417      */
29418     getRegion : function(target){
29419         return this.regions[target.toLowerCase()];
29420     },
29421     
29422     onWindowResize : function(){
29423         if(this.monitorWindowResize){
29424             this.layout();
29425         }
29426     }
29427 });/*
29428  * Based on:
29429  * Ext JS Library 1.1.1
29430  * Copyright(c) 2006-2007, Ext JS, LLC.
29431  *
29432  * Originally Released Under LGPL - original licence link has changed is not relivant.
29433  *
29434  * Fork - LGPL
29435  * <script type="text/javascript">
29436  */
29437 /**
29438  * @class Roo.BorderLayout
29439  * @extends Roo.LayoutManager
29440  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
29441  * please see: <br><br>
29442  * <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>
29443  * <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>
29444  * Example:
29445  <pre><code>
29446  var layout = new Roo.BorderLayout(document.body, {
29447     north: {
29448         initialSize: 25,
29449         titlebar: false
29450     },
29451     west: {
29452         split:true,
29453         initialSize: 200,
29454         minSize: 175,
29455         maxSize: 400,
29456         titlebar: true,
29457         collapsible: true
29458     },
29459     east: {
29460         split:true,
29461         initialSize: 202,
29462         minSize: 175,
29463         maxSize: 400,
29464         titlebar: true,
29465         collapsible: true
29466     },
29467     south: {
29468         split:true,
29469         initialSize: 100,
29470         minSize: 100,
29471         maxSize: 200,
29472         titlebar: true,
29473         collapsible: true
29474     },
29475     center: {
29476         titlebar: true,
29477         autoScroll:true,
29478         resizeTabs: true,
29479         minTabWidth: 50,
29480         preferredTabWidth: 150
29481     }
29482 });
29483
29484 // shorthand
29485 var CP = Roo.ContentPanel;
29486
29487 layout.beginUpdate();
29488 layout.add("north", new CP("north", "North"));
29489 layout.add("south", new CP("south", {title: "South", closable: true}));
29490 layout.add("west", new CP("west", {title: "West"}));
29491 layout.add("east", new CP("autoTabs", {title: "Auto Tabs", closable: true}));
29492 layout.add("center", new CP("center1", {title: "Close Me", closable: true}));
29493 layout.add("center", new CP("center2", {title: "Center Panel", closable: false}));
29494 layout.getRegion("center").showPanel("center1");
29495 layout.endUpdate();
29496 </code></pre>
29497
29498 <b>The container the layout is rendered into can be either the body element or any other element.
29499 If it is not the body element, the container needs to either be an absolute positioned element,
29500 or you will need to add "position:relative" to the css of the container.  You will also need to specify
29501 the container size if it is not the body element.</b>
29502
29503 * @constructor
29504 * Create a new BorderLayout
29505 * @param {String/HTMLElement/Element} container The container this layout is bound to
29506 * @param {Object} config Configuration options
29507  */
29508 Roo.BorderLayout = function(container, config){
29509     config = config || {};
29510     Roo.BorderLayout.superclass.constructor.call(this, container, config);
29511     this.factory = config.factory || Roo.BorderLayout.RegionFactory;
29512     for(var i = 0, len = this.factory.validRegions.length; i < len; i++) {
29513         var target = this.factory.validRegions[i];
29514         if(config[target]){
29515             this.addRegion(target, config[target]);
29516         }
29517     }
29518 };
29519
29520 Roo.extend(Roo.BorderLayout, Roo.LayoutManager, {
29521     /**
29522      * Creates and adds a new region if it doesn't already exist.
29523      * @param {String} target The target region key (north, south, east, west or center).
29524      * @param {Object} config The regions config object
29525      * @return {BorderLayoutRegion} The new region
29526      */
29527     addRegion : function(target, config){
29528         if(!this.regions[target]){
29529             var r = this.factory.create(target, this, config);
29530             this.bindRegion(target, r);
29531         }
29532         return this.regions[target];
29533     },
29534
29535     // private (kinda)
29536     bindRegion : function(name, r){
29537         this.regions[name] = r;
29538         r.on("visibilitychange", this.layout, this);
29539         r.on("paneladded", this.layout, this);
29540         r.on("panelremoved", this.layout, this);
29541         r.on("invalidated", this.layout, this);
29542         r.on("resized", this.onRegionResized, this);
29543         r.on("collapsed", this.onRegionCollapsed, this);
29544         r.on("expanded", this.onRegionExpanded, this);
29545     },
29546
29547     /**
29548      * Performs a layout update.
29549      */
29550     layout : function(){
29551         if(this.updating) {
29552             return;
29553         }
29554         var size = this.getViewSize();
29555         var w = size.width;
29556         var h = size.height;
29557         var centerW = w;
29558         var centerH = h;
29559         var centerY = 0;
29560         var centerX = 0;
29561         //var x = 0, y = 0;
29562
29563         var rs = this.regions;
29564         var north = rs["north"];
29565         var south = rs["south"]; 
29566         var west = rs["west"];
29567         var east = rs["east"];
29568         var center = rs["center"];
29569         //if(this.hideOnLayout){ // not supported anymore
29570             //c.el.setStyle("display", "none");
29571         //}
29572         if(north && north.isVisible()){
29573             var b = north.getBox();
29574             var m = north.getMargins();
29575             b.width = w - (m.left+m.right);
29576             b.x = m.left;
29577             b.y = m.top;
29578             centerY = b.height + b.y + m.bottom;
29579             centerH -= centerY;
29580             north.updateBox(this.safeBox(b));
29581         }
29582         if(south && south.isVisible()){
29583             var b = south.getBox();
29584             var m = south.getMargins();
29585             b.width = w - (m.left+m.right);
29586             b.x = m.left;
29587             var totalHeight = (b.height + m.top + m.bottom);
29588             b.y = h - totalHeight + m.top;
29589             centerH -= totalHeight;
29590             south.updateBox(this.safeBox(b));
29591         }
29592         if(west && west.isVisible()){
29593             var b = west.getBox();
29594             var m = west.getMargins();
29595             b.height = centerH - (m.top+m.bottom);
29596             b.x = m.left;
29597             b.y = centerY + m.top;
29598             var totalWidth = (b.width + m.left + m.right);
29599             centerX += totalWidth;
29600             centerW -= totalWidth;
29601             west.updateBox(this.safeBox(b));
29602         }
29603         if(east && east.isVisible()){
29604             var b = east.getBox();
29605             var m = east.getMargins();
29606             b.height = centerH - (m.top+m.bottom);
29607             var totalWidth = (b.width + m.left + m.right);
29608             b.x = w - totalWidth + m.left;
29609             b.y = centerY + m.top;
29610             centerW -= totalWidth;
29611             east.updateBox(this.safeBox(b));
29612         }
29613         if(center){
29614             var m = center.getMargins();
29615             var centerBox = {
29616                 x: centerX + m.left,
29617                 y: centerY + m.top,
29618                 width: centerW - (m.left+m.right),
29619                 height: centerH - (m.top+m.bottom)
29620             };
29621             //if(this.hideOnLayout){
29622                 //center.el.setStyle("display", "block");
29623             //}
29624             center.updateBox(this.safeBox(centerBox));
29625         }
29626         this.el.repaint();
29627         this.fireEvent("layout", this);
29628     },
29629
29630     // private
29631     safeBox : function(box){
29632         box.width = Math.max(0, box.width);
29633         box.height = Math.max(0, box.height);
29634         return box;
29635     },
29636
29637     /**
29638      * Adds a ContentPanel (or subclass) to this layout.
29639      * @param {String} target The target region key (north, south, east, west or center).
29640      * @param {Roo.ContentPanel} panel The panel to add
29641      * @return {Roo.ContentPanel} The added panel
29642      */
29643     add : function(target, panel){
29644          
29645         target = target.toLowerCase();
29646         return this.regions[target].add(panel);
29647     },
29648
29649     /**
29650      * Remove a ContentPanel (or subclass) to this layout.
29651      * @param {String} target The target region key (north, south, east, west or center).
29652      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
29653      * @return {Roo.ContentPanel} The removed panel
29654      */
29655     remove : function(target, panel){
29656         target = target.toLowerCase();
29657         return this.regions[target].remove(panel);
29658     },
29659
29660     /**
29661      * Searches all regions for a panel with the specified id
29662      * @param {String} panelId
29663      * @return {Roo.ContentPanel} The panel or null if it wasn't found
29664      */
29665     findPanel : function(panelId){
29666         var rs = this.regions;
29667         for(var target in rs){
29668             if(typeof rs[target] != "function"){
29669                 var p = rs[target].getPanel(panelId);
29670                 if(p){
29671                     return p;
29672                 }
29673             }
29674         }
29675         return null;
29676     },
29677
29678     /**
29679      * Searches all regions for a panel with the specified id and activates (shows) it.
29680      * @param {String/ContentPanel} panelId The panels id or the panel itself
29681      * @return {Roo.ContentPanel} The shown panel or null
29682      */
29683     showPanel : function(panelId) {
29684       var rs = this.regions;
29685       for(var target in rs){
29686          var r = rs[target];
29687          if(typeof r != "function"){
29688             if(r.hasPanel(panelId)){
29689                return r.showPanel(panelId);
29690             }
29691          }
29692       }
29693       return null;
29694    },
29695
29696    /**
29697      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
29698      * @param {Roo.state.Provider} provider (optional) An alternate state provider
29699      */
29700     restoreState : function(provider){
29701         if(!provider){
29702             provider = Roo.state.Manager;
29703         }
29704         var sm = new Roo.LayoutStateManager();
29705         sm.init(this, provider);
29706     },
29707
29708     /**
29709      * Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config
29710      * object should contain properties for each region to add ContentPanels to, and each property's value should be
29711      * a valid ContentPanel config object.  Example:
29712      * <pre><code>
29713 // Create the main layout
29714 var layout = new Roo.BorderLayout('main-ct', {
29715     west: {
29716         split:true,
29717         minSize: 175,
29718         titlebar: true
29719     },
29720     center: {
29721         title:'Components'
29722     }
29723 }, 'main-ct');
29724
29725 // Create and add multiple ContentPanels at once via configs
29726 layout.batchAdd({
29727    west: {
29728        id: 'source-files',
29729        autoCreate:true,
29730        title:'Ext Source Files',
29731        autoScroll:true,
29732        fitToFrame:true
29733    },
29734    center : {
29735        el: cview,
29736        autoScroll:true,
29737        fitToFrame:true,
29738        toolbar: tb,
29739        resizeEl:'cbody'
29740    }
29741 });
29742 </code></pre>
29743      * @param {Object} regions An object containing ContentPanel configs by region name
29744      */
29745     batchAdd : function(regions){
29746         this.beginUpdate();
29747         for(var rname in regions){
29748             var lr = this.regions[rname];
29749             if(lr){
29750                 this.addTypedPanels(lr, regions[rname]);
29751             }
29752         }
29753         this.endUpdate();
29754     },
29755
29756     // private
29757     addTypedPanels : function(lr, ps){
29758         if(typeof ps == 'string'){
29759             lr.add(new Roo.ContentPanel(ps));
29760         }
29761         else if(ps instanceof Array){
29762             for(var i =0, len = ps.length; i < len; i++){
29763                 this.addTypedPanels(lr, ps[i]);
29764             }
29765         }
29766         else if(!ps.events){ // raw config?
29767             var el = ps.el;
29768             delete ps.el; // prevent conflict
29769             lr.add(new Roo.ContentPanel(el || Roo.id(), ps));
29770         }
29771         else {  // panel object assumed!
29772             lr.add(ps);
29773         }
29774     },
29775     /**
29776      * Adds a xtype elements to the layout.
29777      * <pre><code>
29778
29779 layout.addxtype({
29780        xtype : 'ContentPanel',
29781        region: 'west',
29782        items: [ .... ]
29783    }
29784 );
29785
29786 layout.addxtype({
29787         xtype : 'NestedLayoutPanel',
29788         region: 'west',
29789         layout: {
29790            center: { },
29791            west: { }   
29792         },
29793         items : [ ... list of content panels or nested layout panels.. ]
29794    }
29795 );
29796 </code></pre>
29797      * @param {Object} cfg Xtype definition of item to add.
29798      */
29799     addxtype : function(cfg)
29800     {
29801         // basically accepts a pannel...
29802         // can accept a layout region..!?!?
29803         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
29804         
29805         if (!cfg.xtype.match(/Panel$/)) {
29806             return false;
29807         }
29808         var ret = false;
29809         
29810         if (typeof(cfg.region) == 'undefined') {
29811             Roo.log("Failed to add Panel, region was not set");
29812             Roo.log(cfg);
29813             return false;
29814         }
29815         var region = cfg.region;
29816         delete cfg.region;
29817         
29818           
29819         var xitems = [];
29820         if (cfg.items) {
29821             xitems = cfg.items;
29822             delete cfg.items;
29823         }
29824         var nb = false;
29825         
29826         switch(cfg.xtype) 
29827         {
29828             case 'ContentPanel':  // ContentPanel (el, cfg)
29829             case 'ScrollPanel':  // ContentPanel (el, cfg)
29830             case 'ViewPanel': 
29831                 if(cfg.autoCreate) {
29832                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
29833                 } else {
29834                     var el = this.el.createChild();
29835                     ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
29836                 }
29837                 
29838                 this.add(region, ret);
29839                 break;
29840             
29841             
29842             case 'TreePanel': // our new panel!
29843                 cfg.el = this.el.createChild();
29844                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
29845                 this.add(region, ret);
29846                 break;
29847             
29848             case 'NestedLayoutPanel': 
29849                 // create a new Layout (which is  a Border Layout...
29850                 var el = this.el.createChild();
29851                 var clayout = cfg.layout;
29852                 delete cfg.layout;
29853                 clayout.items   = clayout.items  || [];
29854                 // replace this exitems with the clayout ones..
29855                 xitems = clayout.items;
29856                  
29857                 
29858                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
29859                     cfg.background = false;
29860                 }
29861                 var layout = new Roo.BorderLayout(el, clayout);
29862                 
29863                 ret = new Roo[cfg.xtype](layout, cfg); // new panel!!!!!
29864                 //console.log('adding nested layout panel '  + cfg.toSource());
29865                 this.add(region, ret);
29866                 nb = {}; /// find first...
29867                 break;
29868                 
29869             case 'GridPanel': 
29870             
29871                 // needs grid and region
29872                 
29873                 //var el = this.getRegion(region).el.createChild();
29874                 var el = this.el.createChild();
29875                 // create the grid first...
29876                 
29877                 var grid = new Roo.grid[cfg.grid.xtype](el, cfg.grid);
29878                 delete cfg.grid;
29879                 if (region == 'center' && this.active ) {
29880                     cfg.background = false;
29881                 }
29882                 ret = new Roo[cfg.xtype](grid, cfg); // new panel!!!!!
29883                 
29884                 this.add(region, ret);
29885                 if (cfg.background) {
29886                     ret.on('activate', function(gp) {
29887                         if (!gp.grid.rendered) {
29888                             gp.grid.render();
29889                         }
29890                     });
29891                 } else {
29892                     grid.render();
29893                 }
29894                 break;
29895            
29896            
29897            
29898                 
29899                 
29900                 
29901             default:
29902                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
29903                     
29904                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
29905                     this.add(region, ret);
29906                 } else {
29907                 
29908                     alert("Can not add '" + cfg.xtype + "' to BorderLayout");
29909                     return null;
29910                 }
29911                 
29912              // GridPanel (grid, cfg)
29913             
29914         }
29915         this.beginUpdate();
29916         // add children..
29917         var region = '';
29918         var abn = {};
29919         Roo.each(xitems, function(i)  {
29920             region = nb && i.region ? i.region : false;
29921             
29922             var add = ret.addxtype(i);
29923            
29924             if (region) {
29925                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
29926                 if (!i.background) {
29927                     abn[region] = nb[region] ;
29928                 }
29929             }
29930             
29931         });
29932         this.endUpdate();
29933
29934         // make the last non-background panel active..
29935         //if (nb) { Roo.log(abn); }
29936         if (nb) {
29937             
29938             for(var r in abn) {
29939                 region = this.getRegion(r);
29940                 if (region) {
29941                     // tried using nb[r], but it does not work..
29942                      
29943                     region.showPanel(abn[r]);
29944                    
29945                 }
29946             }
29947         }
29948         return ret;
29949         
29950     }
29951 });
29952
29953 /**
29954  * Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling
29955  * the beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be
29956  * provided with each region config, which allows you to add ContentPanel configs in addition to the region configs
29957  * during creation.  The following code is equivalent to the constructor-based example at the beginning of this class:
29958  * <pre><code>
29959 // shorthand
29960 var CP = Roo.ContentPanel;
29961
29962 var layout = Roo.BorderLayout.create({
29963     north: {
29964         initialSize: 25,
29965         titlebar: false,
29966         panels: [new CP("north", "North")]
29967     },
29968     west: {
29969         split:true,
29970         initialSize: 200,
29971         minSize: 175,
29972         maxSize: 400,
29973         titlebar: true,
29974         collapsible: true,
29975         panels: [new CP("west", {title: "West"})]
29976     },
29977     east: {
29978         split:true,
29979         initialSize: 202,
29980         minSize: 175,
29981         maxSize: 400,
29982         titlebar: true,
29983         collapsible: true,
29984         panels: [new CP("autoTabs", {title: "Auto Tabs", closable: true})]
29985     },
29986     south: {
29987         split:true,
29988         initialSize: 100,
29989         minSize: 100,
29990         maxSize: 200,
29991         titlebar: true,
29992         collapsible: true,
29993         panels: [new CP("south", {title: "South", closable: true})]
29994     },
29995     center: {
29996         titlebar: true,
29997         autoScroll:true,
29998         resizeTabs: true,
29999         minTabWidth: 50,
30000         preferredTabWidth: 150,
30001         panels: [
30002             new CP("center1", {title: "Close Me", closable: true}),
30003             new CP("center2", {title: "Center Panel", closable: false})
30004         ]
30005     }
30006 }, document.body);
30007
30008 layout.getRegion("center").showPanel("center1");
30009 </code></pre>
30010  * @param config
30011  * @param targetEl
30012  */
30013 Roo.BorderLayout.create = function(config, targetEl){
30014     var layout = new Roo.BorderLayout(targetEl || document.body, config);
30015     layout.beginUpdate();
30016     var regions = Roo.BorderLayout.RegionFactory.validRegions;
30017     for(var j = 0, jlen = regions.length; j < jlen; j++){
30018         var lr = regions[j];
30019         if(layout.regions[lr] && config[lr].panels){
30020             var r = layout.regions[lr];
30021             var ps = config[lr].panels;
30022             layout.addTypedPanels(r, ps);
30023         }
30024     }
30025     layout.endUpdate();
30026     return layout;
30027 };
30028
30029 // private
30030 Roo.BorderLayout.RegionFactory = {
30031     // private
30032     validRegions : ["north","south","east","west","center"],
30033
30034     // private
30035     create : function(target, mgr, config){
30036         target = target.toLowerCase();
30037         if(config.lightweight || config.basic){
30038             return new Roo.BasicLayoutRegion(mgr, config, target);
30039         }
30040         switch(target){
30041             case "north":
30042                 return new Roo.NorthLayoutRegion(mgr, config);
30043             case "south":
30044                 return new Roo.SouthLayoutRegion(mgr, config);
30045             case "east":
30046                 return new Roo.EastLayoutRegion(mgr, config);
30047             case "west":
30048                 return new Roo.WestLayoutRegion(mgr, config);
30049             case "center":
30050                 return new Roo.CenterLayoutRegion(mgr, config);
30051         }
30052         throw 'Layout region "'+target+'" not supported.';
30053     }
30054 };/*
30055  * Based on:
30056  * Ext JS Library 1.1.1
30057  * Copyright(c) 2006-2007, Ext JS, LLC.
30058  *
30059  * Originally Released Under LGPL - original licence link has changed is not relivant.
30060  *
30061  * Fork - LGPL
30062  * <script type="text/javascript">
30063  */
30064  
30065 /**
30066  * @class Roo.BasicLayoutRegion
30067  * @extends Roo.util.Observable
30068  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
30069  * and does not have a titlebar, tabs or any other features. All it does is size and position 
30070  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
30071  */
30072 Roo.BasicLayoutRegion = function(mgr, config, pos, skipConfig){
30073     this.mgr = mgr;
30074     this.position  = pos;
30075     this.events = {
30076         /**
30077          * @scope Roo.BasicLayoutRegion
30078          */
30079         
30080         /**
30081          * @event beforeremove
30082          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
30083          * @param {Roo.LayoutRegion} this
30084          * @param {Roo.ContentPanel} panel The panel
30085          * @param {Object} e The cancel event object
30086          */
30087         "beforeremove" : true,
30088         /**
30089          * @event invalidated
30090          * Fires when the layout for this region is changed.
30091          * @param {Roo.LayoutRegion} this
30092          */
30093         "invalidated" : true,
30094         /**
30095          * @event visibilitychange
30096          * Fires when this region is shown or hidden 
30097          * @param {Roo.LayoutRegion} this
30098          * @param {Boolean} visibility true or false
30099          */
30100         "visibilitychange" : true,
30101         /**
30102          * @event paneladded
30103          * Fires when a panel is added. 
30104          * @param {Roo.LayoutRegion} this
30105          * @param {Roo.ContentPanel} panel The panel
30106          */
30107         "paneladded" : true,
30108         /**
30109          * @event panelremoved
30110          * Fires when a panel is removed. 
30111          * @param {Roo.LayoutRegion} this
30112          * @param {Roo.ContentPanel} panel The panel
30113          */
30114         "panelremoved" : true,
30115         /**
30116          * @event beforecollapse
30117          * Fires when this region before collapse.
30118          * @param {Roo.LayoutRegion} this
30119          */
30120         "beforecollapse" : true,
30121         /**
30122          * @event collapsed
30123          * Fires when this region is collapsed.
30124          * @param {Roo.LayoutRegion} this
30125          */
30126         "collapsed" : true,
30127         /**
30128          * @event expanded
30129          * Fires when this region is expanded.
30130          * @param {Roo.LayoutRegion} this
30131          */
30132         "expanded" : true,
30133         /**
30134          * @event slideshow
30135          * Fires when this region is slid into view.
30136          * @param {Roo.LayoutRegion} this
30137          */
30138         "slideshow" : true,
30139         /**
30140          * @event slidehide
30141          * Fires when this region slides out of view. 
30142          * @param {Roo.LayoutRegion} this
30143          */
30144         "slidehide" : true,
30145         /**
30146          * @event panelactivated
30147          * Fires when a panel is activated. 
30148          * @param {Roo.LayoutRegion} this
30149          * @param {Roo.ContentPanel} panel The activated panel
30150          */
30151         "panelactivated" : true,
30152         /**
30153          * @event resized
30154          * Fires when the user resizes this region. 
30155          * @param {Roo.LayoutRegion} this
30156          * @param {Number} newSize The new size (width for east/west, height for north/south)
30157          */
30158         "resized" : true
30159     };
30160     /** A collection of panels in this region. @type Roo.util.MixedCollection */
30161     this.panels = new Roo.util.MixedCollection();
30162     this.panels.getKey = this.getPanelId.createDelegate(this);
30163     this.box = null;
30164     this.activePanel = null;
30165     // ensure listeners are added...
30166     
30167     if (config.listeners || config.events) {
30168         Roo.BasicLayoutRegion.superclass.constructor.call(this, {
30169             listeners : config.listeners || {},
30170             events : config.events || {}
30171         });
30172     }
30173     
30174     if(skipConfig !== true){
30175         this.applyConfig(config);
30176     }
30177 };
30178
30179 Roo.extend(Roo.BasicLayoutRegion, Roo.util.Observable, {
30180     getPanelId : function(p){
30181         return p.getId();
30182     },
30183     
30184     applyConfig : function(config){
30185         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
30186         this.config = config;
30187         
30188     },
30189     
30190     /**
30191      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
30192      * the width, for horizontal (north, south) the height.
30193      * @param {Number} newSize The new width or height
30194      */
30195     resizeTo : function(newSize){
30196         var el = this.el ? this.el :
30197                  (this.activePanel ? this.activePanel.getEl() : null);
30198         if(el){
30199             switch(this.position){
30200                 case "east":
30201                 case "west":
30202                     el.setWidth(newSize);
30203                     this.fireEvent("resized", this, newSize);
30204                 break;
30205                 case "north":
30206                 case "south":
30207                     el.setHeight(newSize);
30208                     this.fireEvent("resized", this, newSize);
30209                 break;                
30210             }
30211         }
30212     },
30213     
30214     getBox : function(){
30215         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
30216     },
30217     
30218     getMargins : function(){
30219         return this.margins;
30220     },
30221     
30222     updateBox : function(box){
30223         this.box = box;
30224         var el = this.activePanel.getEl();
30225         el.dom.style.left = box.x + "px";
30226         el.dom.style.top = box.y + "px";
30227         this.activePanel.setSize(box.width, box.height);
30228     },
30229     
30230     /**
30231      * Returns the container element for this region.
30232      * @return {Roo.Element}
30233      */
30234     getEl : function(){
30235         return this.activePanel;
30236     },
30237     
30238     /**
30239      * Returns true if this region is currently visible.
30240      * @return {Boolean}
30241      */
30242     isVisible : function(){
30243         return this.activePanel ? true : false;
30244     },
30245     
30246     setActivePanel : function(panel){
30247         panel = this.getPanel(panel);
30248         if(this.activePanel && this.activePanel != panel){
30249             this.activePanel.setActiveState(false);
30250             this.activePanel.getEl().setLeftTop(-10000,-10000);
30251         }
30252         this.activePanel = panel;
30253         panel.setActiveState(true);
30254         if(this.box){
30255             panel.setSize(this.box.width, this.box.height);
30256         }
30257         this.fireEvent("panelactivated", this, panel);
30258         this.fireEvent("invalidated");
30259     },
30260     
30261     /**
30262      * Show the specified panel.
30263      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
30264      * @return {Roo.ContentPanel} The shown panel or null
30265      */
30266     showPanel : function(panel){
30267         if(panel = this.getPanel(panel)){
30268             this.setActivePanel(panel);
30269         }
30270         return panel;
30271     },
30272     
30273     /**
30274      * Get the active panel for this region.
30275      * @return {Roo.ContentPanel} The active panel or null
30276      */
30277     getActivePanel : function(){
30278         return this.activePanel;
30279     },
30280     
30281     /**
30282      * Add the passed ContentPanel(s)
30283      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
30284      * @return {Roo.ContentPanel} The panel added (if only one was added)
30285      */
30286     add : function(panel){
30287         if(arguments.length > 1){
30288             for(var i = 0, len = arguments.length; i < len; i++) {
30289                 this.add(arguments[i]);
30290             }
30291             return null;
30292         }
30293         if(this.hasPanel(panel)){
30294             this.showPanel(panel);
30295             return panel;
30296         }
30297         var el = panel.getEl();
30298         if(el.dom.parentNode != this.mgr.el.dom){
30299             this.mgr.el.dom.appendChild(el.dom);
30300         }
30301         if(panel.setRegion){
30302             panel.setRegion(this);
30303         }
30304         this.panels.add(panel);
30305         el.setStyle("position", "absolute");
30306         if(!panel.background){
30307             this.setActivePanel(panel);
30308             if(this.config.initialSize && this.panels.getCount()==1){
30309                 this.resizeTo(this.config.initialSize);
30310             }
30311         }
30312         this.fireEvent("paneladded", this, panel);
30313         return panel;
30314     },
30315     
30316     /**
30317      * Returns true if the panel is in this region.
30318      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
30319      * @return {Boolean}
30320      */
30321     hasPanel : function(panel){
30322         if(typeof panel == "object"){ // must be panel obj
30323             panel = panel.getId();
30324         }
30325         return this.getPanel(panel) ? true : false;
30326     },
30327     
30328     /**
30329      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
30330      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
30331      * @param {Boolean} preservePanel Overrides the config preservePanel option
30332      * @return {Roo.ContentPanel} The panel that was removed
30333      */
30334     remove : function(panel, preservePanel){
30335         panel = this.getPanel(panel);
30336         if(!panel){
30337             return null;
30338         }
30339         var e = {};
30340         this.fireEvent("beforeremove", this, panel, e);
30341         if(e.cancel === true){
30342             return null;
30343         }
30344         var panelId = panel.getId();
30345         this.panels.removeKey(panelId);
30346         return panel;
30347     },
30348     
30349     /**
30350      * Returns the panel specified or null if it's not in this region.
30351      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
30352      * @return {Roo.ContentPanel}
30353      */
30354     getPanel : function(id){
30355         if(typeof id == "object"){ // must be panel obj
30356             return id;
30357         }
30358         return this.panels.get(id);
30359     },
30360     
30361     /**
30362      * Returns this regions position (north/south/east/west/center).
30363      * @return {String} 
30364      */
30365     getPosition: function(){
30366         return this.position;    
30367     }
30368 });/*
30369  * Based on:
30370  * Ext JS Library 1.1.1
30371  * Copyright(c) 2006-2007, Ext JS, LLC.
30372  *
30373  * Originally Released Under LGPL - original licence link has changed is not relivant.
30374  *
30375  * Fork - LGPL
30376  * <script type="text/javascript">
30377  */
30378  
30379 /**
30380  * @class Roo.LayoutRegion
30381  * @extends Roo.BasicLayoutRegion
30382  * This class represents a region in a layout manager.
30383  * @cfg {Boolean}   collapsible     False to disable collapsing (defaults to true)
30384  * @cfg {Boolean}   collapsed       True to set the initial display to collapsed (defaults to false)
30385  * @cfg {Boolean}   floatable       False to disable floating (defaults to true)
30386  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
30387  * @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})
30388  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
30389  * @cfg {String}    collapsedTitle  Optional string message to display in the collapsed block of a north or south region
30390  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
30391  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
30392  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
30393  * @cfg {String}    title           The title for the region (overrides panel titles)
30394  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
30395  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
30396  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
30397  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
30398  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
30399  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
30400  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
30401  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
30402  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
30403  * @cfg {Boolean}   showPin         True to show a pin button
30404  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
30405  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
30406  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
30407  * @cfg {Number}    width           For East/West panels
30408  * @cfg {Number}    height          For North/South panels
30409  * @cfg {Boolean}   split           To show the splitter
30410  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
30411  */
30412 Roo.LayoutRegion = function(mgr, config, pos){
30413     Roo.LayoutRegion.superclass.constructor.call(this, mgr, config, pos, true);
30414     var dh = Roo.DomHelper;
30415     /** This region's container element 
30416     * @type Roo.Element */
30417     this.el = dh.append(mgr.el.dom, {tag: "div", cls: "x-layout-panel x-layout-panel-" + this.position}, true);
30418     /** This region's title element 
30419     * @type Roo.Element */
30420
30421     this.titleEl = dh.append(this.el.dom, {tag: "div", unselectable: "on", cls: "x-unselectable x-layout-panel-hd x-layout-title-"+this.position, children:[
30422         {tag: "span", cls: "x-unselectable x-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
30423         {tag: "div", cls: "x-unselectable x-layout-panel-hd-tools", unselectable: "on"}
30424     ]}, true);
30425     this.titleEl.enableDisplayMode();
30426     /** This region's title text element 
30427     * @type HTMLElement */
30428     this.titleTextEl = this.titleEl.dom.firstChild;
30429     this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
30430     this.closeBtn = this.createTool(this.tools.dom, "x-layout-close");
30431     this.closeBtn.enableDisplayMode();
30432     this.closeBtn.on("click", this.closeClicked, this);
30433     this.closeBtn.hide();
30434
30435     this.createBody(config);
30436     this.visible = true;
30437     this.collapsed = false;
30438
30439     if(config.hideWhenEmpty){
30440         this.hide();
30441         this.on("paneladded", this.validateVisibility, this);
30442         this.on("panelremoved", this.validateVisibility, this);
30443     }
30444     this.applyConfig(config);
30445 };
30446
30447 Roo.extend(Roo.LayoutRegion, Roo.BasicLayoutRegion, {
30448
30449     createBody : function(){
30450         /** This region's body element 
30451         * @type Roo.Element */
30452         this.bodyEl = this.el.createChild({tag: "div", cls: "x-layout-panel-body"});
30453     },
30454
30455     applyConfig : function(c){
30456         if(c.collapsible && this.position != "center" && !this.collapsedEl){
30457             var dh = Roo.DomHelper;
30458             if(c.titlebar !== false){
30459                 this.collapseBtn = this.createTool(this.tools.dom, "x-layout-collapse-"+this.position);
30460                 this.collapseBtn.on("click", this.collapse, this);
30461                 this.collapseBtn.enableDisplayMode();
30462
30463                 if(c.showPin === true || this.showPin){
30464                     this.stickBtn = this.createTool(this.tools.dom, "x-layout-stick");
30465                     this.stickBtn.enableDisplayMode();
30466                     this.stickBtn.on("click", this.expand, this);
30467                     this.stickBtn.hide();
30468                 }
30469             }
30470             /** This region's collapsed element
30471             * @type Roo.Element */
30472             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
30473                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
30474             ]}, true);
30475             if(c.floatable !== false){
30476                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
30477                this.collapsedEl.on("click", this.collapseClick, this);
30478             }
30479
30480             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
30481                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
30482                    id: "message", unselectable: "on", style:{"float":"left"}});
30483                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
30484              }
30485             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
30486             this.expandBtn.on("click", this.expand, this);
30487         }
30488         if(this.collapseBtn){
30489             this.collapseBtn.setVisible(c.collapsible == true);
30490         }
30491         this.cmargins = c.cmargins || this.cmargins ||
30492                          (this.position == "west" || this.position == "east" ?
30493                              {top: 0, left: 2, right:2, bottom: 0} :
30494                              {top: 2, left: 0, right:0, bottom: 2});
30495         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
30496         this.bottomTabs = c.tabPosition != "top";
30497         this.autoScroll = c.autoScroll || false;
30498         if(this.autoScroll){
30499             this.bodyEl.setStyle("overflow", "auto");
30500         }else{
30501             this.bodyEl.setStyle("overflow", "hidden");
30502         }
30503         //if(c.titlebar !== false){
30504             if((!c.titlebar && !c.title) || c.titlebar === false){
30505                 this.titleEl.hide();
30506             }else{
30507                 this.titleEl.show();
30508                 if(c.title){
30509                     this.titleTextEl.innerHTML = c.title;
30510                 }
30511             }
30512         //}
30513         this.duration = c.duration || .30;
30514         this.slideDuration = c.slideDuration || .45;
30515         this.config = c;
30516         if(c.collapsed){
30517             this.collapse(true);
30518         }
30519         if(c.hidden){
30520             this.hide();
30521         }
30522     },
30523     /**
30524      * Returns true if this region is currently visible.
30525      * @return {Boolean}
30526      */
30527     isVisible : function(){
30528         return this.visible;
30529     },
30530
30531     /**
30532      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
30533      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
30534      */
30535     setCollapsedTitle : function(title){
30536         title = title || "&#160;";
30537         if(this.collapsedTitleTextEl){
30538             this.collapsedTitleTextEl.innerHTML = title;
30539         }
30540     },
30541
30542     getBox : function(){
30543         var b;
30544         if(!this.collapsed){
30545             b = this.el.getBox(false, true);
30546         }else{
30547             b = this.collapsedEl.getBox(false, true);
30548         }
30549         return b;
30550     },
30551
30552     getMargins : function(){
30553         return this.collapsed ? this.cmargins : this.margins;
30554     },
30555
30556     highlight : function(){
30557         this.el.addClass("x-layout-panel-dragover");
30558     },
30559
30560     unhighlight : function(){
30561         this.el.removeClass("x-layout-panel-dragover");
30562     },
30563
30564     updateBox : function(box){
30565         this.box = box;
30566         if(!this.collapsed){
30567             this.el.dom.style.left = box.x + "px";
30568             this.el.dom.style.top = box.y + "px";
30569             this.updateBody(box.width, box.height);
30570         }else{
30571             this.collapsedEl.dom.style.left = box.x + "px";
30572             this.collapsedEl.dom.style.top = box.y + "px";
30573             this.collapsedEl.setSize(box.width, box.height);
30574         }
30575         if(this.tabs){
30576             this.tabs.autoSizeTabs();
30577         }
30578     },
30579
30580     updateBody : function(w, h){
30581         if(w !== null){
30582             this.el.setWidth(w);
30583             w -= this.el.getBorderWidth("rl");
30584             if(this.config.adjustments){
30585                 w += this.config.adjustments[0];
30586             }
30587         }
30588         if(h !== null){
30589             this.el.setHeight(h);
30590             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
30591             h -= this.el.getBorderWidth("tb");
30592             if(this.config.adjustments){
30593                 h += this.config.adjustments[1];
30594             }
30595             this.bodyEl.setHeight(h);
30596             if(this.tabs){
30597                 h = this.tabs.syncHeight(h);
30598             }
30599         }
30600         if(this.panelSize){
30601             w = w !== null ? w : this.panelSize.width;
30602             h = h !== null ? h : this.panelSize.height;
30603         }
30604         if(this.activePanel){
30605             var el = this.activePanel.getEl();
30606             w = w !== null ? w : el.getWidth();
30607             h = h !== null ? h : el.getHeight();
30608             this.panelSize = {width: w, height: h};
30609             this.activePanel.setSize(w, h);
30610         }
30611         if(Roo.isIE && this.tabs){
30612             this.tabs.el.repaint();
30613         }
30614     },
30615
30616     /**
30617      * Returns the container element for this region.
30618      * @return {Roo.Element}
30619      */
30620     getEl : function(){
30621         return this.el;
30622     },
30623
30624     /**
30625      * Hides this region.
30626      */
30627     hide : function(){
30628         if(!this.collapsed){
30629             this.el.dom.style.left = "-2000px";
30630             this.el.hide();
30631         }else{
30632             this.collapsedEl.dom.style.left = "-2000px";
30633             this.collapsedEl.hide();
30634         }
30635         this.visible = false;
30636         this.fireEvent("visibilitychange", this, false);
30637     },
30638
30639     /**
30640      * Shows this region if it was previously hidden.
30641      */
30642     show : function(){
30643         if(!this.collapsed){
30644             this.el.show();
30645         }else{
30646             this.collapsedEl.show();
30647         }
30648         this.visible = true;
30649         this.fireEvent("visibilitychange", this, true);
30650     },
30651
30652     closeClicked : function(){
30653         if(this.activePanel){
30654             this.remove(this.activePanel);
30655         }
30656     },
30657
30658     collapseClick : function(e){
30659         if(this.isSlid){
30660            e.stopPropagation();
30661            this.slideIn();
30662         }else{
30663            e.stopPropagation();
30664            this.slideOut();
30665         }
30666     },
30667
30668     /**
30669      * Collapses this region.
30670      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
30671      */
30672     collapse : function(skipAnim, skipCheck){
30673         if(this.collapsed) {
30674             return;
30675         }
30676         
30677         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
30678             
30679             this.collapsed = true;
30680             if(this.split){
30681                 this.split.el.hide();
30682             }
30683             if(this.config.animate && skipAnim !== true){
30684                 this.fireEvent("invalidated", this);
30685                 this.animateCollapse();
30686             }else{
30687                 this.el.setLocation(-20000,-20000);
30688                 this.el.hide();
30689                 this.collapsedEl.show();
30690                 this.fireEvent("collapsed", this);
30691                 this.fireEvent("invalidated", this);
30692             }
30693         }
30694         
30695     },
30696
30697     animateCollapse : function(){
30698         // overridden
30699     },
30700
30701     /**
30702      * Expands this region if it was previously collapsed.
30703      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
30704      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
30705      */
30706     expand : function(e, skipAnim){
30707         if(e) {
30708             e.stopPropagation();
30709         }
30710         if(!this.collapsed || this.el.hasActiveFx()) {
30711             return;
30712         }
30713         if(this.isSlid){
30714             this.afterSlideIn();
30715             skipAnim = true;
30716         }
30717         this.collapsed = false;
30718         if(this.config.animate && skipAnim !== true){
30719             this.animateExpand();
30720         }else{
30721             this.el.show();
30722             if(this.split){
30723                 this.split.el.show();
30724             }
30725             this.collapsedEl.setLocation(-2000,-2000);
30726             this.collapsedEl.hide();
30727             this.fireEvent("invalidated", this);
30728             this.fireEvent("expanded", this);
30729         }
30730     },
30731
30732     animateExpand : function(){
30733         // overridden
30734     },
30735
30736     initTabs : function()
30737     {
30738         this.bodyEl.setStyle("overflow", "hidden");
30739         var ts = new Roo.TabPanel(
30740                 this.bodyEl.dom,
30741                 {
30742                     tabPosition: this.bottomTabs ? 'bottom' : 'top',
30743                     disableTooltips: this.config.disableTabTips,
30744                     toolbar : this.config.toolbar
30745                 }
30746         );
30747         if(this.config.hideTabs){
30748             ts.stripWrap.setDisplayed(false);
30749         }
30750         this.tabs = ts;
30751         ts.resizeTabs = this.config.resizeTabs === true;
30752         ts.minTabWidth = this.config.minTabWidth || 40;
30753         ts.maxTabWidth = this.config.maxTabWidth || 250;
30754         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
30755         ts.monitorResize = false;
30756         ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
30757         ts.bodyEl.addClass('x-layout-tabs-body');
30758         this.panels.each(this.initPanelAsTab, this);
30759     },
30760
30761     initPanelAsTab : function(panel){
30762         var ti = this.tabs.addTab(panel.getEl().id, panel.getTitle(), null,
30763                     this.config.closeOnTab && panel.isClosable());
30764         if(panel.tabTip !== undefined){
30765             ti.setTooltip(panel.tabTip);
30766         }
30767         ti.on("activate", function(){
30768               this.setActivePanel(panel);
30769         }, this);
30770         if(this.config.closeOnTab){
30771             ti.on("beforeclose", function(t, e){
30772                 e.cancel = true;
30773                 this.remove(panel);
30774             }, this);
30775         }
30776         return ti;
30777     },
30778
30779     updatePanelTitle : function(panel, title){
30780         if(this.activePanel == panel){
30781             this.updateTitle(title);
30782         }
30783         if(this.tabs){
30784             var ti = this.tabs.getTab(panel.getEl().id);
30785             ti.setText(title);
30786             if(panel.tabTip !== undefined){
30787                 ti.setTooltip(panel.tabTip);
30788             }
30789         }
30790     },
30791
30792     updateTitle : function(title){
30793         if(this.titleTextEl && !this.config.title){
30794             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
30795         }
30796     },
30797
30798     setActivePanel : function(panel){
30799         panel = this.getPanel(panel);
30800         if(this.activePanel && this.activePanel != panel){
30801             this.activePanel.setActiveState(false);
30802         }
30803         this.activePanel = panel;
30804         panel.setActiveState(true);
30805         if(this.panelSize){
30806             panel.setSize(this.panelSize.width, this.panelSize.height);
30807         }
30808         if(this.closeBtn){
30809             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
30810         }
30811         this.updateTitle(panel.getTitle());
30812         if(this.tabs){
30813             this.fireEvent("invalidated", this);
30814         }
30815         this.fireEvent("panelactivated", this, panel);
30816     },
30817
30818     /**
30819      * Shows the specified panel.
30820      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
30821      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
30822      */
30823     showPanel : function(panel)
30824     {
30825         panel = this.getPanel(panel);
30826         if(panel){
30827             if(this.tabs){
30828                 var tab = this.tabs.getTab(panel.getEl().id);
30829                 if(tab.isHidden()){
30830                     this.tabs.unhideTab(tab.id);
30831                 }
30832                 tab.activate();
30833             }else{
30834                 this.setActivePanel(panel);
30835             }
30836         }
30837         return panel;
30838     },
30839
30840     /**
30841      * Get the active panel for this region.
30842      * @return {Roo.ContentPanel} The active panel or null
30843      */
30844     getActivePanel : function(){
30845         return this.activePanel;
30846     },
30847
30848     validateVisibility : function(){
30849         if(this.panels.getCount() < 1){
30850             this.updateTitle("&#160;");
30851             this.closeBtn.hide();
30852             this.hide();
30853         }else{
30854             if(!this.isVisible()){
30855                 this.show();
30856             }
30857         }
30858     },
30859
30860     /**
30861      * Adds the passed ContentPanel(s) to this region.
30862      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
30863      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
30864      */
30865     add : function(panel){
30866         if(arguments.length > 1){
30867             for(var i = 0, len = arguments.length; i < len; i++) {
30868                 this.add(arguments[i]);
30869             }
30870             return null;
30871         }
30872         if(this.hasPanel(panel)){
30873             this.showPanel(panel);
30874             return panel;
30875         }
30876         panel.setRegion(this);
30877         this.panels.add(panel);
30878         if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
30879             this.bodyEl.dom.appendChild(panel.getEl().dom);
30880             if(panel.background !== true){
30881                 this.setActivePanel(panel);
30882             }
30883             this.fireEvent("paneladded", this, panel);
30884             return panel;
30885         }
30886         if(!this.tabs){
30887             this.initTabs();
30888         }else{
30889             this.initPanelAsTab(panel);
30890         }
30891         if(panel.background !== true){
30892             this.tabs.activate(panel.getEl().id);
30893         }
30894         this.fireEvent("paneladded", this, panel);
30895         return panel;
30896     },
30897
30898     /**
30899      * Hides the tab for the specified panel.
30900      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
30901      */
30902     hidePanel : function(panel){
30903         if(this.tabs && (panel = this.getPanel(panel))){
30904             this.tabs.hideTab(panel.getEl().id);
30905         }
30906     },
30907
30908     /**
30909      * Unhides the tab for a previously hidden panel.
30910      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
30911      */
30912     unhidePanel : function(panel){
30913         if(this.tabs && (panel = this.getPanel(panel))){
30914             this.tabs.unhideTab(panel.getEl().id);
30915         }
30916     },
30917
30918     clearPanels : function(){
30919         while(this.panels.getCount() > 0){
30920              this.remove(this.panels.first());
30921         }
30922     },
30923
30924     /**
30925      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
30926      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
30927      * @param {Boolean} preservePanel Overrides the config preservePanel option
30928      * @return {Roo.ContentPanel} The panel that was removed
30929      */
30930     remove : function(panel, preservePanel){
30931         panel = this.getPanel(panel);
30932         if(!panel){
30933             return null;
30934         }
30935         var e = {};
30936         this.fireEvent("beforeremove", this, panel, e);
30937         if(e.cancel === true){
30938             return null;
30939         }
30940         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
30941         var panelId = panel.getId();
30942         this.panels.removeKey(panelId);
30943         if(preservePanel){
30944             document.body.appendChild(panel.getEl().dom);
30945         }
30946         if(this.tabs){
30947             this.tabs.removeTab(panel.getEl().id);
30948         }else if (!preservePanel){
30949             this.bodyEl.dom.removeChild(panel.getEl().dom);
30950         }
30951         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
30952             var p = this.panels.first();
30953             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
30954             tempEl.appendChild(p.getEl().dom);
30955             this.bodyEl.update("");
30956             this.bodyEl.dom.appendChild(p.getEl().dom);
30957             tempEl = null;
30958             this.updateTitle(p.getTitle());
30959             this.tabs = null;
30960             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
30961             this.setActivePanel(p);
30962         }
30963         panel.setRegion(null);
30964         if(this.activePanel == panel){
30965             this.activePanel = null;
30966         }
30967         if(this.config.autoDestroy !== false && preservePanel !== true){
30968             try{panel.destroy();}catch(e){}
30969         }
30970         this.fireEvent("panelremoved", this, panel);
30971         return panel;
30972     },
30973
30974     /**
30975      * Returns the TabPanel component used by this region
30976      * @return {Roo.TabPanel}
30977      */
30978     getTabs : function(){
30979         return this.tabs;
30980     },
30981
30982     createTool : function(parentEl, className){
30983         var btn = Roo.DomHelper.append(parentEl, {tag: "div", cls: "x-layout-tools-button",
30984             children: [{tag: "div", cls: "x-layout-tools-button-inner " + className, html: "&#160;"}]}, true);
30985         btn.addClassOnOver("x-layout-tools-button-over");
30986         return btn;
30987     }
30988 });/*
30989  * Based on:
30990  * Ext JS Library 1.1.1
30991  * Copyright(c) 2006-2007, Ext JS, LLC.
30992  *
30993  * Originally Released Under LGPL - original licence link has changed is not relivant.
30994  *
30995  * Fork - LGPL
30996  * <script type="text/javascript">
30997  */
30998  
30999
31000
31001 /**
31002  * @class Roo.SplitLayoutRegion
31003  * @extends Roo.LayoutRegion
31004  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
31005  */
31006 Roo.SplitLayoutRegion = function(mgr, config, pos, cursor){
31007     this.cursor = cursor;
31008     Roo.SplitLayoutRegion.superclass.constructor.call(this, mgr, config, pos);
31009 };
31010
31011 Roo.extend(Roo.SplitLayoutRegion, Roo.LayoutRegion, {
31012     splitTip : "Drag to resize.",
31013     collapsibleSplitTip : "Drag to resize. Double click to hide.",
31014     useSplitTips : false,
31015
31016     applyConfig : function(config){
31017         Roo.SplitLayoutRegion.superclass.applyConfig.call(this, config);
31018         if(config.split){
31019             if(!this.split){
31020                 var splitEl = Roo.DomHelper.append(this.mgr.el.dom, 
31021                         {tag: "div", id: this.el.id + "-split", cls: "x-layout-split x-layout-split-"+this.position, html: "&#160;"});
31022                 /** The SplitBar for this region 
31023                 * @type Roo.SplitBar */
31024                 this.split = new Roo.SplitBar(splitEl, this.el, this.orientation);
31025                 this.split.on("moved", this.onSplitMove, this);
31026                 this.split.useShim = config.useShim === true;
31027                 this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
31028                 if(this.useSplitTips){
31029                     this.split.el.dom.title = config.collapsible ? this.collapsibleSplitTip : this.splitTip;
31030                 }
31031                 if(config.collapsible){
31032                     this.split.el.on("dblclick", this.collapse,  this);
31033                 }
31034             }
31035             if(typeof config.minSize != "undefined"){
31036                 this.split.minSize = config.minSize;
31037             }
31038             if(typeof config.maxSize != "undefined"){
31039                 this.split.maxSize = config.maxSize;
31040             }
31041             if(config.hideWhenEmpty || config.hidden || config.collapsed){
31042                 this.hideSplitter();
31043             }
31044         }
31045     },
31046
31047     getHMaxSize : function(){
31048          var cmax = this.config.maxSize || 10000;
31049          var center = this.mgr.getRegion("center");
31050          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
31051     },
31052
31053     getVMaxSize : function(){
31054          var cmax = this.config.maxSize || 10000;
31055          var center = this.mgr.getRegion("center");
31056          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
31057     },
31058
31059     onSplitMove : function(split, newSize){
31060         this.fireEvent("resized", this, newSize);
31061     },
31062     
31063     /** 
31064      * Returns the {@link Roo.SplitBar} for this region.
31065      * @return {Roo.SplitBar}
31066      */
31067     getSplitBar : function(){
31068         return this.split;
31069     },
31070     
31071     hide : function(){
31072         this.hideSplitter();
31073         Roo.SplitLayoutRegion.superclass.hide.call(this);
31074     },
31075
31076     hideSplitter : function(){
31077         if(this.split){
31078             this.split.el.setLocation(-2000,-2000);
31079             this.split.el.hide();
31080         }
31081     },
31082
31083     show : function(){
31084         if(this.split){
31085             this.split.el.show();
31086         }
31087         Roo.SplitLayoutRegion.superclass.show.call(this);
31088     },
31089     
31090     beforeSlide: function(){
31091         if(Roo.isGecko){// firefox overflow auto bug workaround
31092             this.bodyEl.clip();
31093             if(this.tabs) {
31094                 this.tabs.bodyEl.clip();
31095             }
31096             if(this.activePanel){
31097                 this.activePanel.getEl().clip();
31098                 
31099                 if(this.activePanel.beforeSlide){
31100                     this.activePanel.beforeSlide();
31101                 }
31102             }
31103         }
31104     },
31105     
31106     afterSlide : function(){
31107         if(Roo.isGecko){// firefox overflow auto bug workaround
31108             this.bodyEl.unclip();
31109             if(this.tabs) {
31110                 this.tabs.bodyEl.unclip();
31111             }
31112             if(this.activePanel){
31113                 this.activePanel.getEl().unclip();
31114                 if(this.activePanel.afterSlide){
31115                     this.activePanel.afterSlide();
31116                 }
31117             }
31118         }
31119     },
31120
31121     initAutoHide : function(){
31122         if(this.autoHide !== false){
31123             if(!this.autoHideHd){
31124                 var st = new Roo.util.DelayedTask(this.slideIn, this);
31125                 this.autoHideHd = {
31126                     "mouseout": function(e){
31127                         if(!e.within(this.el, true)){
31128                             st.delay(500);
31129                         }
31130                     },
31131                     "mouseover" : function(e){
31132                         st.cancel();
31133                     },
31134                     scope : this
31135                 };
31136             }
31137             this.el.on(this.autoHideHd);
31138         }
31139     },
31140
31141     clearAutoHide : function(){
31142         if(this.autoHide !== false){
31143             this.el.un("mouseout", this.autoHideHd.mouseout);
31144             this.el.un("mouseover", this.autoHideHd.mouseover);
31145         }
31146     },
31147
31148     clearMonitor : function(){
31149         Roo.get(document).un("click", this.slideInIf, this);
31150     },
31151
31152     // these names are backwards but not changed for compat
31153     slideOut : function(){
31154         if(this.isSlid || this.el.hasActiveFx()){
31155             return;
31156         }
31157         this.isSlid = true;
31158         if(this.collapseBtn){
31159             this.collapseBtn.hide();
31160         }
31161         this.closeBtnState = this.closeBtn.getStyle('display');
31162         this.closeBtn.hide();
31163         if(this.stickBtn){
31164             this.stickBtn.show();
31165         }
31166         this.el.show();
31167         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
31168         this.beforeSlide();
31169         this.el.setStyle("z-index", 10001);
31170         this.el.slideIn(this.getSlideAnchor(), {
31171             callback: function(){
31172                 this.afterSlide();
31173                 this.initAutoHide();
31174                 Roo.get(document).on("click", this.slideInIf, this);
31175                 this.fireEvent("slideshow", this);
31176             },
31177             scope: this,
31178             block: true
31179         });
31180     },
31181
31182     afterSlideIn : function(){
31183         this.clearAutoHide();
31184         this.isSlid = false;
31185         this.clearMonitor();
31186         this.el.setStyle("z-index", "");
31187         if(this.collapseBtn){
31188             this.collapseBtn.show();
31189         }
31190         this.closeBtn.setStyle('display', this.closeBtnState);
31191         if(this.stickBtn){
31192             this.stickBtn.hide();
31193         }
31194         this.fireEvent("slidehide", this);
31195     },
31196
31197     slideIn : function(cb){
31198         if(!this.isSlid || this.el.hasActiveFx()){
31199             Roo.callback(cb);
31200             return;
31201         }
31202         this.isSlid = false;
31203         this.beforeSlide();
31204         this.el.slideOut(this.getSlideAnchor(), {
31205             callback: function(){
31206                 this.el.setLeftTop(-10000, -10000);
31207                 this.afterSlide();
31208                 this.afterSlideIn();
31209                 Roo.callback(cb);
31210             },
31211             scope: this,
31212             block: true
31213         });
31214     },
31215     
31216     slideInIf : function(e){
31217         if(!e.within(this.el)){
31218             this.slideIn();
31219         }
31220     },
31221
31222     animateCollapse : function(){
31223         this.beforeSlide();
31224         this.el.setStyle("z-index", 20000);
31225         var anchor = this.getSlideAnchor();
31226         this.el.slideOut(anchor, {
31227             callback : function(){
31228                 this.el.setStyle("z-index", "");
31229                 this.collapsedEl.slideIn(anchor, {duration:.3});
31230                 this.afterSlide();
31231                 this.el.setLocation(-10000,-10000);
31232                 this.el.hide();
31233                 this.fireEvent("collapsed", this);
31234             },
31235             scope: this,
31236             block: true
31237         });
31238     },
31239
31240     animateExpand : function(){
31241         this.beforeSlide();
31242         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
31243         this.el.setStyle("z-index", 20000);
31244         this.collapsedEl.hide({
31245             duration:.1
31246         });
31247         this.el.slideIn(this.getSlideAnchor(), {
31248             callback : function(){
31249                 this.el.setStyle("z-index", "");
31250                 this.afterSlide();
31251                 if(this.split){
31252                     this.split.el.show();
31253                 }
31254                 this.fireEvent("invalidated", this);
31255                 this.fireEvent("expanded", this);
31256             },
31257             scope: this,
31258             block: true
31259         });
31260     },
31261
31262     anchors : {
31263         "west" : "left",
31264         "east" : "right",
31265         "north" : "top",
31266         "south" : "bottom"
31267     },
31268
31269     sanchors : {
31270         "west" : "l",
31271         "east" : "r",
31272         "north" : "t",
31273         "south" : "b"
31274     },
31275
31276     canchors : {
31277         "west" : "tl-tr",
31278         "east" : "tr-tl",
31279         "north" : "tl-bl",
31280         "south" : "bl-tl"
31281     },
31282
31283     getAnchor : function(){
31284         return this.anchors[this.position];
31285     },
31286
31287     getCollapseAnchor : function(){
31288         return this.canchors[this.position];
31289     },
31290
31291     getSlideAnchor : function(){
31292         return this.sanchors[this.position];
31293     },
31294
31295     getAlignAdj : function(){
31296         var cm = this.cmargins;
31297         switch(this.position){
31298             case "west":
31299                 return [0, 0];
31300             break;
31301             case "east":
31302                 return [0, 0];
31303             break;
31304             case "north":
31305                 return [0, 0];
31306             break;
31307             case "south":
31308                 return [0, 0];
31309             break;
31310         }
31311     },
31312
31313     getExpandAdj : function(){
31314         var c = this.collapsedEl, cm = this.cmargins;
31315         switch(this.position){
31316             case "west":
31317                 return [-(cm.right+c.getWidth()+cm.left), 0];
31318             break;
31319             case "east":
31320                 return [cm.right+c.getWidth()+cm.left, 0];
31321             break;
31322             case "north":
31323                 return [0, -(cm.top+cm.bottom+c.getHeight())];
31324             break;
31325             case "south":
31326                 return [0, cm.top+cm.bottom+c.getHeight()];
31327             break;
31328         }
31329     }
31330 });/*
31331  * Based on:
31332  * Ext JS Library 1.1.1
31333  * Copyright(c) 2006-2007, Ext JS, LLC.
31334  *
31335  * Originally Released Under LGPL - original licence link has changed is not relivant.
31336  *
31337  * Fork - LGPL
31338  * <script type="text/javascript">
31339  */
31340 /*
31341  * These classes are private internal classes
31342  */
31343 Roo.CenterLayoutRegion = function(mgr, config){
31344     Roo.LayoutRegion.call(this, mgr, config, "center");
31345     this.visible = true;
31346     this.minWidth = config.minWidth || 20;
31347     this.minHeight = config.minHeight || 20;
31348 };
31349
31350 Roo.extend(Roo.CenterLayoutRegion, Roo.LayoutRegion, {
31351     hide : function(){
31352         // center panel can't be hidden
31353     },
31354     
31355     show : function(){
31356         // center panel can't be hidden
31357     },
31358     
31359     getMinWidth: function(){
31360         return this.minWidth;
31361     },
31362     
31363     getMinHeight: function(){
31364         return this.minHeight;
31365     }
31366 });
31367
31368
31369 Roo.NorthLayoutRegion = function(mgr, config){
31370     Roo.LayoutRegion.call(this, mgr, config, "north", "n-resize");
31371     if(this.split){
31372         this.split.placement = Roo.SplitBar.TOP;
31373         this.split.orientation = Roo.SplitBar.VERTICAL;
31374         this.split.el.addClass("x-layout-split-v");
31375     }
31376     var size = config.initialSize || config.height;
31377     if(typeof size != "undefined"){
31378         this.el.setHeight(size);
31379     }
31380 };
31381 Roo.extend(Roo.NorthLayoutRegion, Roo.SplitLayoutRegion, {
31382     orientation: Roo.SplitBar.VERTICAL,
31383     getBox : function(){
31384         if(this.collapsed){
31385             return this.collapsedEl.getBox();
31386         }
31387         var box = this.el.getBox();
31388         if(this.split){
31389             box.height += this.split.el.getHeight();
31390         }
31391         return box;
31392     },
31393     
31394     updateBox : function(box){
31395         if(this.split && !this.collapsed){
31396             box.height -= this.split.el.getHeight();
31397             this.split.el.setLeft(box.x);
31398             this.split.el.setTop(box.y+box.height);
31399             this.split.el.setWidth(box.width);
31400         }
31401         if(this.collapsed){
31402             this.updateBody(box.width, null);
31403         }
31404         Roo.LayoutRegion.prototype.updateBox.call(this, box);
31405     }
31406 });
31407
31408 Roo.SouthLayoutRegion = function(mgr, config){
31409     Roo.SplitLayoutRegion.call(this, mgr, config, "south", "s-resize");
31410     if(this.split){
31411         this.split.placement = Roo.SplitBar.BOTTOM;
31412         this.split.orientation = Roo.SplitBar.VERTICAL;
31413         this.split.el.addClass("x-layout-split-v");
31414     }
31415     var size = config.initialSize || config.height;
31416     if(typeof size != "undefined"){
31417         this.el.setHeight(size);
31418     }
31419 };
31420 Roo.extend(Roo.SouthLayoutRegion, Roo.SplitLayoutRegion, {
31421     orientation: Roo.SplitBar.VERTICAL,
31422     getBox : function(){
31423         if(this.collapsed){
31424             return this.collapsedEl.getBox();
31425         }
31426         var box = this.el.getBox();
31427         if(this.split){
31428             var sh = this.split.el.getHeight();
31429             box.height += sh;
31430             box.y -= sh;
31431         }
31432         return box;
31433     },
31434     
31435     updateBox : function(box){
31436         if(this.split && !this.collapsed){
31437             var sh = this.split.el.getHeight();
31438             box.height -= sh;
31439             box.y += sh;
31440             this.split.el.setLeft(box.x);
31441             this.split.el.setTop(box.y-sh);
31442             this.split.el.setWidth(box.width);
31443         }
31444         if(this.collapsed){
31445             this.updateBody(box.width, null);
31446         }
31447         Roo.LayoutRegion.prototype.updateBox.call(this, box);
31448     }
31449 });
31450
31451 Roo.EastLayoutRegion = function(mgr, config){
31452     Roo.SplitLayoutRegion.call(this, mgr, config, "east", "e-resize");
31453     if(this.split){
31454         this.split.placement = Roo.SplitBar.RIGHT;
31455         this.split.orientation = Roo.SplitBar.HORIZONTAL;
31456         this.split.el.addClass("x-layout-split-h");
31457     }
31458     var size = config.initialSize || config.width;
31459     if(typeof size != "undefined"){
31460         this.el.setWidth(size);
31461     }
31462 };
31463 Roo.extend(Roo.EastLayoutRegion, Roo.SplitLayoutRegion, {
31464     orientation: Roo.SplitBar.HORIZONTAL,
31465     getBox : function(){
31466         if(this.collapsed){
31467             return this.collapsedEl.getBox();
31468         }
31469         var box = this.el.getBox();
31470         if(this.split){
31471             var sw = this.split.el.getWidth();
31472             box.width += sw;
31473             box.x -= sw;
31474         }
31475         return box;
31476     },
31477
31478     updateBox : function(box){
31479         if(this.split && !this.collapsed){
31480             var sw = this.split.el.getWidth();
31481             box.width -= sw;
31482             this.split.el.setLeft(box.x);
31483             this.split.el.setTop(box.y);
31484             this.split.el.setHeight(box.height);
31485             box.x += sw;
31486         }
31487         if(this.collapsed){
31488             this.updateBody(null, box.height);
31489         }
31490         Roo.LayoutRegion.prototype.updateBox.call(this, box);
31491     }
31492 });
31493
31494 Roo.WestLayoutRegion = function(mgr, config){
31495     Roo.SplitLayoutRegion.call(this, mgr, config, "west", "w-resize");
31496     if(this.split){
31497         this.split.placement = Roo.SplitBar.LEFT;
31498         this.split.orientation = Roo.SplitBar.HORIZONTAL;
31499         this.split.el.addClass("x-layout-split-h");
31500     }
31501     var size = config.initialSize || config.width;
31502     if(typeof size != "undefined"){
31503         this.el.setWidth(size);
31504     }
31505 };
31506 Roo.extend(Roo.WestLayoutRegion, Roo.SplitLayoutRegion, {
31507     orientation: Roo.SplitBar.HORIZONTAL,
31508     getBox : function(){
31509         if(this.collapsed){
31510             return this.collapsedEl.getBox();
31511         }
31512         var box = this.el.getBox();
31513         if(this.split){
31514             box.width += this.split.el.getWidth();
31515         }
31516         return box;
31517     },
31518     
31519     updateBox : function(box){
31520         if(this.split && !this.collapsed){
31521             var sw = this.split.el.getWidth();
31522             box.width -= sw;
31523             this.split.el.setLeft(box.x+box.width);
31524             this.split.el.setTop(box.y);
31525             this.split.el.setHeight(box.height);
31526         }
31527         if(this.collapsed){
31528             this.updateBody(null, box.height);
31529         }
31530         Roo.LayoutRegion.prototype.updateBox.call(this, box);
31531     }
31532 });
31533 /*
31534  * Based on:
31535  * Ext JS Library 1.1.1
31536  * Copyright(c) 2006-2007, Ext JS, LLC.
31537  *
31538  * Originally Released Under LGPL - original licence link has changed is not relivant.
31539  *
31540  * Fork - LGPL
31541  * <script type="text/javascript">
31542  */
31543  
31544  
31545 /*
31546  * Private internal class for reading and applying state
31547  */
31548 Roo.LayoutStateManager = function(layout){
31549      // default empty state
31550      this.state = {
31551         north: {},
31552         south: {},
31553         east: {},
31554         west: {}       
31555     };
31556 };
31557
31558 Roo.LayoutStateManager.prototype = {
31559     init : function(layout, provider){
31560         this.provider = provider;
31561         var state = provider.get(layout.id+"-layout-state");
31562         if(state){
31563             var wasUpdating = layout.isUpdating();
31564             if(!wasUpdating){
31565                 layout.beginUpdate();
31566             }
31567             for(var key in state){
31568                 if(typeof state[key] != "function"){
31569                     var rstate = state[key];
31570                     var r = layout.getRegion(key);
31571                     if(r && rstate){
31572                         if(rstate.size){
31573                             r.resizeTo(rstate.size);
31574                         }
31575                         if(rstate.collapsed == true){
31576                             r.collapse(true);
31577                         }else{
31578                             r.expand(null, true);
31579                         }
31580                     }
31581                 }
31582             }
31583             if(!wasUpdating){
31584                 layout.endUpdate();
31585             }
31586             this.state = state; 
31587         }
31588         this.layout = layout;
31589         layout.on("regionresized", this.onRegionResized, this);
31590         layout.on("regioncollapsed", this.onRegionCollapsed, this);
31591         layout.on("regionexpanded", this.onRegionExpanded, this);
31592     },
31593     
31594     storeState : function(){
31595         this.provider.set(this.layout.id+"-layout-state", this.state);
31596     },
31597     
31598     onRegionResized : function(region, newSize){
31599         this.state[region.getPosition()].size = newSize;
31600         this.storeState();
31601     },
31602     
31603     onRegionCollapsed : function(region){
31604         this.state[region.getPosition()].collapsed = true;
31605         this.storeState();
31606     },
31607     
31608     onRegionExpanded : function(region){
31609         this.state[region.getPosition()].collapsed = false;
31610         this.storeState();
31611     }
31612 };/*
31613  * Based on:
31614  * Ext JS Library 1.1.1
31615  * Copyright(c) 2006-2007, Ext JS, LLC.
31616  *
31617  * Originally Released Under LGPL - original licence link has changed is not relivant.
31618  *
31619  * Fork - LGPL
31620  * <script type="text/javascript">
31621  */
31622 /**
31623  * @class Roo.ContentPanel
31624  * @extends Roo.util.Observable
31625  * A basic ContentPanel element.
31626  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
31627  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
31628  * @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
31629  * @cfg {Boolean}   closable      True if the panel can be closed/removed
31630  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
31631  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
31632  * @cfg {Toolbar}   toolbar       A toolbar for this panel
31633  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
31634  * @cfg {String} title          The title for this panel
31635  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
31636  * @cfg {String} url            Calls {@link #setUrl} with this value
31637  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
31638  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
31639  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
31640  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
31641
31642  * @constructor
31643  * Create a new ContentPanel.
31644  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
31645  * @param {String/Object} config A string to set only the title or a config object
31646  * @param {String} content (optional) Set the HTML content for this panel
31647  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
31648  */
31649 Roo.ContentPanel = function(el, config, content){
31650     
31651      
31652     /*
31653     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
31654         config = el;
31655         el = Roo.id();
31656     }
31657     if (config && config.parentLayout) { 
31658         el = config.parentLayout.el.createChild(); 
31659     }
31660     */
31661     if(el.autoCreate){ // xtype is available if this is called from factory
31662         config = el;
31663         el = Roo.id();
31664     }
31665     this.el = Roo.get(el);
31666     if(!this.el && config && config.autoCreate){
31667         if(typeof config.autoCreate == "object"){
31668             if(!config.autoCreate.id){
31669                 config.autoCreate.id = config.id||el;
31670             }
31671             this.el = Roo.DomHelper.append(document.body,
31672                         config.autoCreate, true);
31673         }else{
31674             this.el = Roo.DomHelper.append(document.body,
31675                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
31676         }
31677     }
31678     this.closable = false;
31679     this.loaded = false;
31680     this.active = false;
31681     if(typeof config == "string"){
31682         this.title = config;
31683     }else{
31684         Roo.apply(this, config);
31685     }
31686     
31687     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
31688         this.wrapEl = this.el.wrap();
31689         this.toolbar.container = this.el.insertSibling(false, 'before');
31690         this.toolbar = new Roo.Toolbar(this.toolbar);
31691     }
31692     
31693     // xtype created footer. - not sure if will work as we normally have to render first..
31694     if (this.footer && !this.footer.el && this.footer.xtype) {
31695         if (!this.wrapEl) {
31696             this.wrapEl = this.el.wrap();
31697         }
31698     
31699         this.footer.container = this.wrapEl.createChild();
31700          
31701         this.footer = Roo.factory(this.footer, Roo);
31702         
31703     }
31704     
31705     if(this.resizeEl){
31706         this.resizeEl = Roo.get(this.resizeEl, true);
31707     }else{
31708         this.resizeEl = this.el;
31709     }
31710     // handle view.xtype
31711     
31712  
31713     
31714     
31715     this.addEvents({
31716         /**
31717          * @event activate
31718          * Fires when this panel is activated. 
31719          * @param {Roo.ContentPanel} this
31720          */
31721         "activate" : true,
31722         /**
31723          * @event deactivate
31724          * Fires when this panel is activated. 
31725          * @param {Roo.ContentPanel} this
31726          */
31727         "deactivate" : true,
31728
31729         /**
31730          * @event resize
31731          * Fires when this panel is resized if fitToFrame is true.
31732          * @param {Roo.ContentPanel} this
31733          * @param {Number} width The width after any component adjustments
31734          * @param {Number} height The height after any component adjustments
31735          */
31736         "resize" : true,
31737         
31738          /**
31739          * @event render
31740          * Fires when this tab is created
31741          * @param {Roo.ContentPanel} this
31742          */
31743         "render" : true
31744          
31745         
31746     });
31747     
31748
31749     
31750     
31751     if(this.autoScroll){
31752         this.resizeEl.setStyle("overflow", "auto");
31753     } else {
31754         // fix randome scrolling
31755         this.el.on('scroll', function() {
31756             Roo.log('fix random scolling');
31757             this.scrollTo('top',0); 
31758         });
31759     }
31760     content = content || this.content;
31761     if(content){
31762         this.setContent(content);
31763     }
31764     if(config && config.url){
31765         this.setUrl(this.url, this.params, this.loadOnce);
31766     }
31767     
31768     
31769     
31770     Roo.ContentPanel.superclass.constructor.call(this);
31771     
31772     if (this.view && typeof(this.view.xtype) != 'undefined') {
31773         this.view.el = this.el.appendChild(document.createElement("div"));
31774         this.view = Roo.factory(this.view); 
31775         this.view.render  &&  this.view.render(false, '');  
31776     }
31777     
31778     
31779     this.fireEvent('render', this);
31780 };
31781
31782 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
31783     tabTip:'',
31784     setRegion : function(region){
31785         this.region = region;
31786         if(region){
31787            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
31788         }else{
31789            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
31790         } 
31791     },
31792     
31793     /**
31794      * Returns the toolbar for this Panel if one was configured. 
31795      * @return {Roo.Toolbar} 
31796      */
31797     getToolbar : function(){
31798         return this.toolbar;
31799     },
31800     
31801     setActiveState : function(active){
31802         this.active = active;
31803         if(!active){
31804             this.fireEvent("deactivate", this);
31805         }else{
31806             this.fireEvent("activate", this);
31807         }
31808     },
31809     /**
31810      * Updates this panel's element
31811      * @param {String} content The new content
31812      * @param {Boolean} loadScripts (optional) true to look for and process scripts
31813     */
31814     setContent : function(content, loadScripts){
31815         this.el.update(content, loadScripts);
31816     },
31817
31818     ignoreResize : function(w, h){
31819         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
31820             return true;
31821         }else{
31822             this.lastSize = {width: w, height: h};
31823             return false;
31824         }
31825     },
31826     /**
31827      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
31828      * @return {Roo.UpdateManager} The UpdateManager
31829      */
31830     getUpdateManager : function(){
31831         return this.el.getUpdateManager();
31832     },
31833      /**
31834      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
31835      * @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:
31836 <pre><code>
31837 panel.load({
31838     url: "your-url.php",
31839     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
31840     callback: yourFunction,
31841     scope: yourObject, //(optional scope)
31842     discardUrl: false,
31843     nocache: false,
31844     text: "Loading...",
31845     timeout: 30,
31846     scripts: false
31847 });
31848 </code></pre>
31849      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
31850      * 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.
31851      * @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}
31852      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
31853      * @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.
31854      * @return {Roo.ContentPanel} this
31855      */
31856     load : function(){
31857         var um = this.el.getUpdateManager();
31858         um.update.apply(um, arguments);
31859         return this;
31860     },
31861
31862
31863     /**
31864      * 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.
31865      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
31866      * @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)
31867      * @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)
31868      * @return {Roo.UpdateManager} The UpdateManager
31869      */
31870     setUrl : function(url, params, loadOnce){
31871         if(this.refreshDelegate){
31872             this.removeListener("activate", this.refreshDelegate);
31873         }
31874         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
31875         this.on("activate", this.refreshDelegate);
31876         return this.el.getUpdateManager();
31877     },
31878     
31879     _handleRefresh : function(url, params, loadOnce){
31880         if(!loadOnce || !this.loaded){
31881             var updater = this.el.getUpdateManager();
31882             updater.update(url, params, this._setLoaded.createDelegate(this));
31883         }
31884     },
31885     
31886     _setLoaded : function(){
31887         this.loaded = true;
31888     }, 
31889     
31890     /**
31891      * Returns this panel's id
31892      * @return {String} 
31893      */
31894     getId : function(){
31895         return this.el.id;
31896     },
31897     
31898     /** 
31899      * Returns this panel's element - used by regiosn to add.
31900      * @return {Roo.Element} 
31901      */
31902     getEl : function(){
31903         return this.wrapEl || this.el;
31904     },
31905     
31906     adjustForComponents : function(width, height)
31907     {
31908         //Roo.log('adjustForComponents ');
31909         if(this.resizeEl != this.el){
31910             width -= this.el.getFrameWidth('lr');
31911             height -= this.el.getFrameWidth('tb');
31912         }
31913         if(this.toolbar){
31914             var te = this.toolbar.getEl();
31915             height -= te.getHeight();
31916             te.setWidth(width);
31917         }
31918         if(this.footer){
31919             var te = this.footer.getEl();
31920             //Roo.log("footer:" + te.getHeight());
31921             
31922             height -= te.getHeight();
31923             te.setWidth(width);
31924         }
31925         
31926         
31927         if(this.adjustments){
31928             width += this.adjustments[0];
31929             height += this.adjustments[1];
31930         }
31931         return {"width": width, "height": height};
31932     },
31933     
31934     setSize : function(width, height){
31935         if(this.fitToFrame && !this.ignoreResize(width, height)){
31936             if(this.fitContainer && this.resizeEl != this.el){
31937                 this.el.setSize(width, height);
31938             }
31939             var size = this.adjustForComponents(width, height);
31940             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
31941             this.fireEvent('resize', this, size.width, size.height);
31942         }
31943     },
31944     
31945     /**
31946      * Returns this panel's title
31947      * @return {String} 
31948      */
31949     getTitle : function(){
31950         return this.title;
31951     },
31952     
31953     /**
31954      * Set this panel's title
31955      * @param {String} title
31956      */
31957     setTitle : function(title){
31958         this.title = title;
31959         if(this.region){
31960             this.region.updatePanelTitle(this, title);
31961         }
31962     },
31963     
31964     /**
31965      * Returns true is this panel was configured to be closable
31966      * @return {Boolean} 
31967      */
31968     isClosable : function(){
31969         return this.closable;
31970     },
31971     
31972     beforeSlide : function(){
31973         this.el.clip();
31974         this.resizeEl.clip();
31975     },
31976     
31977     afterSlide : function(){
31978         this.el.unclip();
31979         this.resizeEl.unclip();
31980     },
31981     
31982     /**
31983      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
31984      *   Will fail silently if the {@link #setUrl} method has not been called.
31985      *   This does not activate the panel, just updates its content.
31986      */
31987     refresh : function(){
31988         if(this.refreshDelegate){
31989            this.loaded = false;
31990            this.refreshDelegate();
31991         }
31992     },
31993     
31994     /**
31995      * Destroys this panel
31996      */
31997     destroy : function(){
31998         this.el.removeAllListeners();
31999         var tempEl = document.createElement("span");
32000         tempEl.appendChild(this.el.dom);
32001         tempEl.innerHTML = "";
32002         this.el.remove();
32003         this.el = null;
32004     },
32005     
32006     /**
32007      * form - if the content panel contains a form - this is a reference to it.
32008      * @type {Roo.form.Form}
32009      */
32010     form : false,
32011     /**
32012      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
32013      *    This contains a reference to it.
32014      * @type {Roo.View}
32015      */
32016     view : false,
32017     
32018       /**
32019      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
32020      * <pre><code>
32021
32022 layout.addxtype({
32023        xtype : 'Form',
32024        items: [ .... ]
32025    }
32026 );
32027
32028 </code></pre>
32029      * @param {Object} cfg Xtype definition of item to add.
32030      */
32031     
32032     addxtype : function(cfg) {
32033         // add form..
32034         if (cfg.xtype.match(/^Form$/)) {
32035             
32036             var el;
32037             //if (this.footer) {
32038             //    el = this.footer.container.insertSibling(false, 'before');
32039             //} else {
32040                 el = this.el.createChild();
32041             //}
32042
32043             this.form = new  Roo.form.Form(cfg);
32044             
32045             
32046             if ( this.form.allItems.length) {
32047                 this.form.render(el.dom);
32048             }
32049             return this.form;
32050         }
32051         // should only have one of theses..
32052         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
32053             // views.. should not be just added - used named prop 'view''
32054             
32055             cfg.el = this.el.appendChild(document.createElement("div"));
32056             // factory?
32057             
32058             var ret = new Roo.factory(cfg);
32059              
32060              ret.render && ret.render(false, ''); // render blank..
32061             this.view = ret;
32062             return ret;
32063         }
32064         return false;
32065     }
32066 });
32067
32068 /**
32069  * @class Roo.GridPanel
32070  * @extends Roo.ContentPanel
32071  * @constructor
32072  * Create a new GridPanel.
32073  * @param {Roo.grid.Grid} grid The grid for this panel
32074  * @param {String/Object} config A string to set only the panel's title, or a config object
32075  */
32076 Roo.GridPanel = function(grid, config){
32077     
32078   
32079     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
32080         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
32081         
32082     this.wrapper.dom.appendChild(grid.getGridEl().dom);
32083     
32084     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
32085     
32086     if(this.toolbar){
32087         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
32088     }
32089     // xtype created footer. - not sure if will work as we normally have to render first..
32090     if (this.footer && !this.footer.el && this.footer.xtype) {
32091         
32092         this.footer.container = this.grid.getView().getFooterPanel(true);
32093         this.footer.dataSource = this.grid.dataSource;
32094         this.footer = Roo.factory(this.footer, Roo);
32095         
32096     }
32097     
32098     grid.monitorWindowResize = false; // turn off autosizing
32099     grid.autoHeight = false;
32100     grid.autoWidth = false;
32101     this.grid = grid;
32102     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
32103 };
32104
32105 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
32106     getId : function(){
32107         return this.grid.id;
32108     },
32109     
32110     /**
32111      * Returns the grid for this panel
32112      * @return {Roo.grid.Grid} 
32113      */
32114     getGrid : function(){
32115         return this.grid;    
32116     },
32117     
32118     setSize : function(width, height){
32119         if(!this.ignoreResize(width, height)){
32120             var grid = this.grid;
32121             var size = this.adjustForComponents(width, height);
32122             grid.getGridEl().setSize(size.width, size.height);
32123             grid.autoSize();
32124         }
32125     },
32126     
32127     beforeSlide : function(){
32128         this.grid.getView().scroller.clip();
32129     },
32130     
32131     afterSlide : function(){
32132         this.grid.getView().scroller.unclip();
32133     },
32134     
32135     destroy : function(){
32136         this.grid.destroy();
32137         delete this.grid;
32138         Roo.GridPanel.superclass.destroy.call(this); 
32139     }
32140 });
32141
32142
32143 /**
32144  * @class Roo.NestedLayoutPanel
32145  * @extends Roo.ContentPanel
32146  * @constructor
32147  * Create a new NestedLayoutPanel.
32148  * 
32149  * 
32150  * @param {Roo.BorderLayout} layout The layout for this panel
32151  * @param {String/Object} config A string to set only the title or a config object
32152  */
32153 Roo.NestedLayoutPanel = function(layout, config)
32154 {
32155     // construct with only one argument..
32156     /* FIXME - implement nicer consturctors
32157     if (layout.layout) {
32158         config = layout;
32159         layout = config.layout;
32160         delete config.layout;
32161     }
32162     if (layout.xtype && !layout.getEl) {
32163         // then layout needs constructing..
32164         layout = Roo.factory(layout, Roo);
32165     }
32166     */
32167     
32168     
32169     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
32170     
32171     layout.monitorWindowResize = false; // turn off autosizing
32172     this.layout = layout;
32173     this.layout.getEl().addClass("x-layout-nested-layout");
32174     
32175     
32176     
32177     
32178 };
32179
32180 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
32181
32182     setSize : function(width, height){
32183         if(!this.ignoreResize(width, height)){
32184             var size = this.adjustForComponents(width, height);
32185             var el = this.layout.getEl();
32186             el.setSize(size.width, size.height);
32187             var touch = el.dom.offsetWidth;
32188             this.layout.layout();
32189             // ie requires a double layout on the first pass
32190             if(Roo.isIE && !this.initialized){
32191                 this.initialized = true;
32192                 this.layout.layout();
32193             }
32194         }
32195     },
32196     
32197     // activate all subpanels if not currently active..
32198     
32199     setActiveState : function(active){
32200         this.active = active;
32201         if(!active){
32202             this.fireEvent("deactivate", this);
32203             return;
32204         }
32205         
32206         this.fireEvent("activate", this);
32207         // not sure if this should happen before or after..
32208         if (!this.layout) {
32209             return; // should not happen..
32210         }
32211         var reg = false;
32212         for (var r in this.layout.regions) {
32213             reg = this.layout.getRegion(r);
32214             if (reg.getActivePanel()) {
32215                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
32216                 reg.setActivePanel(reg.getActivePanel());
32217                 continue;
32218             }
32219             if (!reg.panels.length) {
32220                 continue;
32221             }
32222             reg.showPanel(reg.getPanel(0));
32223         }
32224         
32225         
32226         
32227         
32228     },
32229     
32230     /**
32231      * Returns the nested BorderLayout for this panel
32232      * @return {Roo.BorderLayout} 
32233      */
32234     getLayout : function(){
32235         return this.layout;
32236     },
32237     
32238      /**
32239      * Adds a xtype elements to the layout of the nested panel
32240      * <pre><code>
32241
32242 panel.addxtype({
32243        xtype : 'ContentPanel',
32244        region: 'west',
32245        items: [ .... ]
32246    }
32247 );
32248
32249 panel.addxtype({
32250         xtype : 'NestedLayoutPanel',
32251         region: 'west',
32252         layout: {
32253            center: { },
32254            west: { }   
32255         },
32256         items : [ ... list of content panels or nested layout panels.. ]
32257    }
32258 );
32259 </code></pre>
32260      * @param {Object} cfg Xtype definition of item to add.
32261      */
32262     addxtype : function(cfg) {
32263         return this.layout.addxtype(cfg);
32264     
32265     }
32266 });
32267
32268 Roo.ScrollPanel = function(el, config, content){
32269     config = config || {};
32270     config.fitToFrame = true;
32271     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
32272     
32273     this.el.dom.style.overflow = "hidden";
32274     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
32275     this.el.removeClass("x-layout-inactive-content");
32276     this.el.on("mousewheel", this.onWheel, this);
32277
32278     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
32279     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
32280     up.unselectable(); down.unselectable();
32281     up.on("click", this.scrollUp, this);
32282     down.on("click", this.scrollDown, this);
32283     up.addClassOnOver("x-scroller-btn-over");
32284     down.addClassOnOver("x-scroller-btn-over");
32285     up.addClassOnClick("x-scroller-btn-click");
32286     down.addClassOnClick("x-scroller-btn-click");
32287     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
32288
32289     this.resizeEl = this.el;
32290     this.el = wrap; this.up = up; this.down = down;
32291 };
32292
32293 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
32294     increment : 100,
32295     wheelIncrement : 5,
32296     scrollUp : function(){
32297         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
32298     },
32299
32300     scrollDown : function(){
32301         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
32302     },
32303
32304     afterScroll : function(){
32305         var el = this.resizeEl;
32306         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
32307         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
32308         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
32309     },
32310
32311     setSize : function(){
32312         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
32313         this.afterScroll();
32314     },
32315
32316     onWheel : function(e){
32317         var d = e.getWheelDelta();
32318         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
32319         this.afterScroll();
32320         e.stopEvent();
32321     },
32322
32323     setContent : function(content, loadScripts){
32324         this.resizeEl.update(content, loadScripts);
32325     }
32326
32327 });
32328
32329
32330
32331
32332
32333
32334
32335
32336
32337 /**
32338  * @class Roo.TreePanel
32339  * @extends Roo.ContentPanel
32340  * @constructor
32341  * Create a new TreePanel. - defaults to fit/scoll contents.
32342  * @param {String/Object} config A string to set only the panel's title, or a config object
32343  * @cfg {Roo.tree.TreePanel} tree The tree TreePanel, with config etc.
32344  */
32345 Roo.TreePanel = function(config){
32346     var el = config.el;
32347     var tree = config.tree;
32348     delete config.tree; 
32349     delete config.el; // hopefull!
32350     
32351     // wrapper for IE7 strict & safari scroll issue
32352     
32353     var treeEl = el.createChild();
32354     config.resizeEl = treeEl;
32355     
32356     
32357     
32358     Roo.TreePanel.superclass.constructor.call(this, el, config);
32359  
32360  
32361     this.tree = new Roo.tree.TreePanel(treeEl , tree);
32362     //console.log(tree);
32363     this.on('activate', function()
32364     {
32365         if (this.tree.rendered) {
32366             return;
32367         }
32368         //console.log('render tree');
32369         this.tree.render();
32370     });
32371     // this should not be needed.. - it's actually the 'el' that resizes?
32372     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
32373     
32374     //this.on('resize',  function (cp, w, h) {
32375     //        this.tree.innerCt.setWidth(w);
32376     //        this.tree.innerCt.setHeight(h);
32377     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
32378     //});
32379
32380         
32381     
32382 };
32383
32384 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
32385     fitToFrame : true,
32386     autoScroll : true
32387 });
32388
32389
32390
32391
32392
32393
32394
32395
32396
32397
32398
32399 /*
32400  * Based on:
32401  * Ext JS Library 1.1.1
32402  * Copyright(c) 2006-2007, Ext JS, LLC.
32403  *
32404  * Originally Released Under LGPL - original licence link has changed is not relivant.
32405  *
32406  * Fork - LGPL
32407  * <script type="text/javascript">
32408  */
32409  
32410
32411 /**
32412  * @class Roo.ReaderLayout
32413  * @extends Roo.BorderLayout
32414  * This is a pre-built layout that represents a classic, 5-pane application.  It consists of a header, a primary
32415  * center region containing two nested regions (a top one for a list view and one for item preview below),
32416  * and regions on either side that can be used for navigation, application commands, informational displays, etc.
32417  * The setup and configuration work exactly the same as it does for a {@link Roo.BorderLayout} - this class simply
32418  * expedites the setup of the overall layout and regions for this common application style.
32419  * Example:
32420  <pre><code>
32421 var reader = new Roo.ReaderLayout();
32422 var CP = Roo.ContentPanel;  // shortcut for adding
32423
32424 reader.beginUpdate();
32425 reader.add("north", new CP("north", "North"));
32426 reader.add("west", new CP("west", {title: "West"}));
32427 reader.add("east", new CP("east", {title: "East"}));
32428
32429 reader.regions.listView.add(new CP("listView", "List"));
32430 reader.regions.preview.add(new CP("preview", "Preview"));
32431 reader.endUpdate();
32432 </code></pre>
32433 * @constructor
32434 * Create a new ReaderLayout
32435 * @param {Object} config Configuration options
32436 * @param {String/HTMLElement/Element} container (optional) The container this layout is bound to (defaults to
32437 * document.body if omitted)
32438 */
32439 Roo.ReaderLayout = function(config, renderTo){
32440     var c = config || {size:{}};
32441     Roo.ReaderLayout.superclass.constructor.call(this, renderTo || document.body, {
32442         north: c.north !== false ? Roo.apply({
32443             split:false,
32444             initialSize: 32,
32445             titlebar: false
32446         }, c.north) : false,
32447         west: c.west !== false ? Roo.apply({
32448             split:true,
32449             initialSize: 200,
32450             minSize: 175,
32451             maxSize: 400,
32452             titlebar: true,
32453             collapsible: true,
32454             animate: true,
32455             margins:{left:5,right:0,bottom:5,top:5},
32456             cmargins:{left:5,right:5,bottom:5,top:5}
32457         }, c.west) : false,
32458         east: c.east !== false ? Roo.apply({
32459             split:true,
32460             initialSize: 200,
32461             minSize: 175,
32462             maxSize: 400,
32463             titlebar: true,
32464             collapsible: true,
32465             animate: true,
32466             margins:{left:0,right:5,bottom:5,top:5},
32467             cmargins:{left:5,right:5,bottom:5,top:5}
32468         }, c.east) : false,
32469         center: Roo.apply({
32470             tabPosition: 'top',
32471             autoScroll:false,
32472             closeOnTab: true,
32473             titlebar:false,
32474             margins:{left:c.west!==false ? 0 : 5,right:c.east!==false ? 0 : 5,bottom:5,top:2}
32475         }, c.center)
32476     });
32477
32478     this.el.addClass('x-reader');
32479
32480     this.beginUpdate();
32481
32482     var inner = new Roo.BorderLayout(Roo.get(document.body).createChild(), {
32483         south: c.preview !== false ? Roo.apply({
32484             split:true,
32485             initialSize: 200,
32486             minSize: 100,
32487             autoScroll:true,
32488             collapsible:true,
32489             titlebar: true,
32490             cmargins:{top:5,left:0, right:0, bottom:0}
32491         }, c.preview) : false,
32492         center: Roo.apply({
32493             autoScroll:false,
32494             titlebar:false,
32495             minHeight:200
32496         }, c.listView)
32497     });
32498     this.add('center', new Roo.NestedLayoutPanel(inner,
32499             Roo.apply({title: c.mainTitle || '',tabTip:''},c.innerPanelCfg)));
32500
32501     this.endUpdate();
32502
32503     this.regions.preview = inner.getRegion('south');
32504     this.regions.listView = inner.getRegion('center');
32505 };
32506
32507 Roo.extend(Roo.ReaderLayout, Roo.BorderLayout);/*
32508  * Based on:
32509  * Ext JS Library 1.1.1
32510  * Copyright(c) 2006-2007, Ext JS, LLC.
32511  *
32512  * Originally Released Under LGPL - original licence link has changed is not relivant.
32513  *
32514  * Fork - LGPL
32515  * <script type="text/javascript">
32516  */
32517  
32518 /**
32519  * @class Roo.grid.Grid
32520  * @extends Roo.util.Observable
32521  * This class represents the primary interface of a component based grid control.
32522  * <br><br>Usage:<pre><code>
32523  var grid = new Roo.grid.Grid("my-container-id", {
32524      ds: myDataStore,
32525      cm: myColModel,
32526      selModel: mySelectionModel,
32527      autoSizeColumns: true,
32528      monitorWindowResize: false,
32529      trackMouseOver: true
32530  });
32531  // set any options
32532  grid.render();
32533  * </code></pre>
32534  * <b>Common Problems:</b><br/>
32535  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
32536  * element will correct this<br/>
32537  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
32538  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
32539  * are unpredictable.<br/>
32540  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
32541  * grid to calculate dimensions/offsets.<br/>
32542   * @constructor
32543  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
32544  * The container MUST have some type of size defined for the grid to fill. The container will be
32545  * automatically set to position relative if it isn't already.
32546  * @param {Object} config A config object that sets properties on this grid.
32547  */
32548 Roo.grid.Grid = function(container, config){
32549         // initialize the container
32550         this.container = Roo.get(container);
32551         this.container.update("");
32552         this.container.setStyle("overflow", "hidden");
32553     this.container.addClass('x-grid-container');
32554
32555     this.id = this.container.id;
32556
32557     Roo.apply(this, config);
32558     // check and correct shorthanded configs
32559     if(this.ds){
32560         this.dataSource = this.ds;
32561         delete this.ds;
32562     }
32563     if(this.cm){
32564         this.colModel = this.cm;
32565         delete this.cm;
32566     }
32567     if(this.sm){
32568         this.selModel = this.sm;
32569         delete this.sm;
32570     }
32571
32572     if (this.selModel) {
32573         this.selModel = Roo.factory(this.selModel, Roo.grid);
32574         this.sm = this.selModel;
32575         this.sm.xmodule = this.xmodule || false;
32576     }
32577     if (typeof(this.colModel.config) == 'undefined') {
32578         this.colModel = new Roo.grid.ColumnModel(this.colModel);
32579         this.cm = this.colModel;
32580         this.cm.xmodule = this.xmodule || false;
32581     }
32582     if (this.dataSource) {
32583         this.dataSource= Roo.factory(this.dataSource, Roo.data);
32584         this.ds = this.dataSource;
32585         this.ds.xmodule = this.xmodule || false;
32586          
32587     }
32588     
32589     
32590     
32591     if(this.width){
32592         this.container.setWidth(this.width);
32593     }
32594
32595     if(this.height){
32596         this.container.setHeight(this.height);
32597     }
32598     /** @private */
32599         this.addEvents({
32600         // raw events
32601         /**
32602          * @event click
32603          * The raw click event for the entire grid.
32604          * @param {Roo.EventObject} e
32605          */
32606         "click" : true,
32607         /**
32608          * @event dblclick
32609          * The raw dblclick event for the entire grid.
32610          * @param {Roo.EventObject} e
32611          */
32612         "dblclick" : true,
32613         /**
32614          * @event contextmenu
32615          * The raw contextmenu event for the entire grid.
32616          * @param {Roo.EventObject} e
32617          */
32618         "contextmenu" : true,
32619         /**
32620          * @event mousedown
32621          * The raw mousedown event for the entire grid.
32622          * @param {Roo.EventObject} e
32623          */
32624         "mousedown" : true,
32625         /**
32626          * @event mouseup
32627          * The raw mouseup event for the entire grid.
32628          * @param {Roo.EventObject} e
32629          */
32630         "mouseup" : true,
32631         /**
32632          * @event mouseover
32633          * The raw mouseover event for the entire grid.
32634          * @param {Roo.EventObject} e
32635          */
32636         "mouseover" : true,
32637         /**
32638          * @event mouseout
32639          * The raw mouseout event for the entire grid.
32640          * @param {Roo.EventObject} e
32641          */
32642         "mouseout" : true,
32643         /**
32644          * @event keypress
32645          * The raw keypress event for the entire grid.
32646          * @param {Roo.EventObject} e
32647          */
32648         "keypress" : true,
32649         /**
32650          * @event keydown
32651          * The raw keydown event for the entire grid.
32652          * @param {Roo.EventObject} e
32653          */
32654         "keydown" : true,
32655
32656         // custom events
32657
32658         /**
32659          * @event cellclick
32660          * Fires when a cell is clicked
32661          * @param {Grid} this
32662          * @param {Number} rowIndex
32663          * @param {Number} columnIndex
32664          * @param {Roo.EventObject} e
32665          */
32666         "cellclick" : true,
32667         /**
32668          * @event celldblclick
32669          * Fires when a cell is double clicked
32670          * @param {Grid} this
32671          * @param {Number} rowIndex
32672          * @param {Number} columnIndex
32673          * @param {Roo.EventObject} e
32674          */
32675         "celldblclick" : true,
32676         /**
32677          * @event rowclick
32678          * Fires when a row is clicked
32679          * @param {Grid} this
32680          * @param {Number} rowIndex
32681          * @param {Roo.EventObject} e
32682          */
32683         "rowclick" : true,
32684         /**
32685          * @event rowdblclick
32686          * Fires when a row is double clicked
32687          * @param {Grid} this
32688          * @param {Number} rowIndex
32689          * @param {Roo.EventObject} e
32690          */
32691         "rowdblclick" : true,
32692         /**
32693          * @event headerclick
32694          * Fires when a header is clicked
32695          * @param {Grid} this
32696          * @param {Number} columnIndex
32697          * @param {Roo.EventObject} e
32698          */
32699         "headerclick" : true,
32700         /**
32701          * @event headerdblclick
32702          * Fires when a header cell is double clicked
32703          * @param {Grid} this
32704          * @param {Number} columnIndex
32705          * @param {Roo.EventObject} e
32706          */
32707         "headerdblclick" : true,
32708         /**
32709          * @event rowcontextmenu
32710          * Fires when a row is right clicked
32711          * @param {Grid} this
32712          * @param {Number} rowIndex
32713          * @param {Roo.EventObject} e
32714          */
32715         "rowcontextmenu" : true,
32716         /**
32717          * @event cellcontextmenu
32718          * Fires when a cell is right clicked
32719          * @param {Grid} this
32720          * @param {Number} rowIndex
32721          * @param {Number} cellIndex
32722          * @param {Roo.EventObject} e
32723          */
32724          "cellcontextmenu" : true,
32725         /**
32726          * @event headercontextmenu
32727          * Fires when a header is right clicked
32728          * @param {Grid} this
32729          * @param {Number} columnIndex
32730          * @param {Roo.EventObject} e
32731          */
32732         "headercontextmenu" : true,
32733         /**
32734          * @event bodyscroll
32735          * Fires when the body element is scrolled
32736          * @param {Number} scrollLeft
32737          * @param {Number} scrollTop
32738          */
32739         "bodyscroll" : true,
32740         /**
32741          * @event columnresize
32742          * Fires when the user resizes a column
32743          * @param {Number} columnIndex
32744          * @param {Number} newSize
32745          */
32746         "columnresize" : true,
32747         /**
32748          * @event columnmove
32749          * Fires when the user moves a column
32750          * @param {Number} oldIndex
32751          * @param {Number} newIndex
32752          */
32753         "columnmove" : true,
32754         /**
32755          * @event startdrag
32756          * Fires when row(s) start being dragged
32757          * @param {Grid} this
32758          * @param {Roo.GridDD} dd The drag drop object
32759          * @param {event} e The raw browser event
32760          */
32761         "startdrag" : true,
32762         /**
32763          * @event enddrag
32764          * Fires when a drag operation is complete
32765          * @param {Grid} this
32766          * @param {Roo.GridDD} dd The drag drop object
32767          * @param {event} e The raw browser event
32768          */
32769         "enddrag" : true,
32770         /**
32771          * @event dragdrop
32772          * Fires when dragged row(s) are dropped on a valid DD target
32773          * @param {Grid} this
32774          * @param {Roo.GridDD} dd The drag drop object
32775          * @param {String} targetId The target drag drop object
32776          * @param {event} e The raw browser event
32777          */
32778         "dragdrop" : true,
32779         /**
32780          * @event dragover
32781          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
32782          * @param {Grid} this
32783          * @param {Roo.GridDD} dd The drag drop object
32784          * @param {String} targetId The target drag drop object
32785          * @param {event} e The raw browser event
32786          */
32787         "dragover" : true,
32788         /**
32789          * @event dragenter
32790          *  Fires when the dragged row(s) first cross another DD target while being dragged
32791          * @param {Grid} this
32792          * @param {Roo.GridDD} dd The drag drop object
32793          * @param {String} targetId The target drag drop object
32794          * @param {event} e The raw browser event
32795          */
32796         "dragenter" : true,
32797         /**
32798          * @event dragout
32799          * Fires when the dragged row(s) leave another DD target while being dragged
32800          * @param {Grid} this
32801          * @param {Roo.GridDD} dd The drag drop object
32802          * @param {String} targetId The target drag drop object
32803          * @param {event} e The raw browser event
32804          */
32805         "dragout" : true,
32806         /**
32807          * @event rowclass
32808          * Fires when a row is rendered, so you can change add a style to it.
32809          * @param {GridView} gridview   The grid view
32810          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
32811          */
32812         'rowclass' : true,
32813
32814         /**
32815          * @event render
32816          * Fires when the grid is rendered
32817          * @param {Grid} grid
32818          */
32819         'render' : true
32820     });
32821
32822     Roo.grid.Grid.superclass.constructor.call(this);
32823 };
32824 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
32825     
32826     /**
32827      * @cfg {String} ddGroup - drag drop group.
32828      */
32829
32830     /**
32831      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
32832      */
32833     minColumnWidth : 25,
32834
32835     /**
32836      * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
32837      * <b>on initial render.</b> It is more efficient to explicitly size the columns
32838      * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
32839      */
32840     autoSizeColumns : false,
32841
32842     /**
32843      * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
32844      */
32845     autoSizeHeaders : true,
32846
32847     /**
32848      * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
32849      */
32850     monitorWindowResize : true,
32851
32852     /**
32853      * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
32854      * rows measured to get a columns size. Default is 0 (all rows).
32855      */
32856     maxRowsToMeasure : 0,
32857
32858     /**
32859      * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
32860      */
32861     trackMouseOver : true,
32862
32863     /**
32864     * @cfg {Boolean} enableDrag  True to enable drag of rows. Default is false. (double check if this is needed?)
32865     */
32866     
32867     /**
32868     * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
32869     */
32870     enableDragDrop : false,
32871     
32872     /**
32873     * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
32874     */
32875     enableColumnMove : true,
32876     
32877     /**
32878     * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
32879     */
32880     enableColumnHide : true,
32881     
32882     /**
32883     * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
32884     */
32885     enableRowHeightSync : false,
32886     
32887     /**
32888     * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
32889     */
32890     stripeRows : true,
32891     
32892     /**
32893     * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
32894     */
32895     autoHeight : false,
32896
32897     /**
32898      * @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.
32899      */
32900     autoExpandColumn : false,
32901
32902     /**
32903     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
32904     * Default is 50.
32905     */
32906     autoExpandMin : 50,
32907
32908     /**
32909     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
32910     */
32911     autoExpandMax : 1000,
32912
32913     /**
32914     * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
32915     */
32916     view : null,
32917
32918     /**
32919     * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
32920     */
32921     loadMask : false,
32922     /**
32923     * @cfg {Roo.dd.DropTarget} dropTarget An {@link Roo.dd.DropTarget} config
32924     */
32925     dropTarget: false,
32926     
32927    
32928     
32929     // private
32930     rendered : false,
32931
32932     /**
32933     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
32934     * of a fixed width. Default is false.
32935     */
32936     /**
32937     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
32938     */
32939     /**
32940      * Called once after all setup has been completed and the grid is ready to be rendered.
32941      * @return {Roo.grid.Grid} this
32942      */
32943     render : function()
32944     {
32945         var c = this.container;
32946         // try to detect autoHeight/width mode
32947         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
32948             this.autoHeight = true;
32949         }
32950         var view = this.getView();
32951         view.init(this);
32952
32953         c.on("click", this.onClick, this);
32954         c.on("dblclick", this.onDblClick, this);
32955         c.on("contextmenu", this.onContextMenu, this);
32956         c.on("keydown", this.onKeyDown, this);
32957         if (Roo.isTouch) {
32958             c.on("touchstart", this.onTouchStart, this);
32959         }
32960
32961         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
32962
32963         this.getSelectionModel().init(this);
32964
32965         view.render();
32966
32967         if(this.loadMask){
32968             this.loadMask = new Roo.LoadMask(this.container,
32969                     Roo.apply({store:this.dataSource}, this.loadMask));
32970         }
32971         
32972         
32973         if (this.toolbar && this.toolbar.xtype) {
32974             this.toolbar.container = this.getView().getHeaderPanel(true);
32975             this.toolbar = new Roo.Toolbar(this.toolbar);
32976         }
32977         if (this.footer && this.footer.xtype) {
32978             this.footer.dataSource = this.getDataSource();
32979             this.footer.container = this.getView().getFooterPanel(true);
32980             this.footer = Roo.factory(this.footer, Roo);
32981         }
32982         if (this.dropTarget && this.dropTarget.xtype) {
32983             delete this.dropTarget.xtype;
32984             this.dropTarget =  new Roo.dd.DropTarget(this.getView().mainBody, this.dropTarget);
32985         }
32986         
32987         
32988         this.rendered = true;
32989         this.fireEvent('render', this);
32990         return this;
32991     },
32992
32993     /**
32994      * Reconfigures the grid to use a different Store and Column Model.
32995      * The View will be bound to the new objects and refreshed.
32996      * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
32997      * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
32998      */
32999     reconfigure : function(dataSource, colModel){
33000         if(this.loadMask){
33001             this.loadMask.destroy();
33002             this.loadMask = new Roo.LoadMask(this.container,
33003                     Roo.apply({store:dataSource}, this.loadMask));
33004         }
33005         this.view.bind(dataSource, colModel);
33006         this.dataSource = dataSource;
33007         this.colModel = colModel;
33008         this.view.refresh(true);
33009     },
33010     /**
33011      * addColumns
33012      * Add's a column, default at the end..
33013      
33014      * @param {int} position to add (default end)
33015      * @param {Array} of objects of column configuration see {@link Roo.grid.ColumnModel} 
33016      */
33017     addColumns : function(pos, ar)
33018     {
33019         
33020         for (var i =0;i< ar.length;i++) {
33021             var cfg = ar[i];
33022             cfg.id = typeof(cfg.id) == 'undefined' ? Roo.id() : cfg.id; // don't normally use this..
33023             this.cm.lookup[cfg.id] = cfg;
33024         }
33025         
33026         
33027         if (typeof(pos) == 'undefined' || pos >= this.cm.config.length) {
33028             pos = this.cm.config.length; //this.cm.config.push(cfg);
33029         } 
33030         pos = Math.max(0,pos);
33031         ar.unshift(0);
33032         ar.unshift(pos);
33033         this.cm.config.splice.apply(this.cm.config, ar);
33034         
33035         
33036         
33037         this.view.generateRules(this.cm);
33038         this.view.refresh(true);
33039         
33040     },
33041     
33042     
33043     
33044     
33045     // private
33046     onKeyDown : function(e){
33047         this.fireEvent("keydown", e);
33048     },
33049
33050     /**
33051      * Destroy this grid.
33052      * @param {Boolean} removeEl True to remove the element
33053      */
33054     destroy : function(removeEl, keepListeners){
33055         if(this.loadMask){
33056             this.loadMask.destroy();
33057         }
33058         var c = this.container;
33059         c.removeAllListeners();
33060         this.view.destroy();
33061         this.colModel.purgeListeners();
33062         if(!keepListeners){
33063             this.purgeListeners();
33064         }
33065         c.update("");
33066         if(removeEl === true){
33067             c.remove();
33068         }
33069     },
33070
33071     // private
33072     processEvent : function(name, e){
33073         // does this fire select???
33074         //Roo.log('grid:processEvent '  + name);
33075         
33076         if (name != 'touchstart' ) {
33077             this.fireEvent(name, e);    
33078         }
33079         
33080         var t = e.getTarget();
33081         var v = this.view;
33082         var header = v.findHeaderIndex(t);
33083         if(header !== false){
33084             var ename = name == 'touchstart' ? 'click' : name;
33085              
33086             this.fireEvent("header" + ename, this, header, e);
33087         }else{
33088             var row = v.findRowIndex(t);
33089             var cell = v.findCellIndex(t);
33090             if (name == 'touchstart') {
33091                 // first touch is always a click.
33092                 // hopefull this happens after selection is updated.?
33093                 name = false;
33094                 
33095                 if (typeof(this.selModel.getSelectedCell) != 'undefined') {
33096                     var cs = this.selModel.getSelectedCell();
33097                     if (row == cs[0] && cell == cs[1]){
33098                         name = 'dblclick';
33099                     }
33100                 }
33101                 if (typeof(this.selModel.getSelections) != 'undefined') {
33102                     var cs = this.selModel.getSelections();
33103                     var ds = this.dataSource;
33104                     if (cs.length == 1 && ds.getAt(row) == cs[0]){
33105                         name = 'dblclick';
33106                     }
33107                 }
33108                 if (!name) {
33109                     return;
33110                 }
33111             }
33112             
33113             
33114             if(row !== false){
33115                 this.fireEvent("row" + name, this, row, e);
33116                 if(cell !== false){
33117                     this.fireEvent("cell" + name, this, row, cell, e);
33118                 }
33119             }
33120         }
33121     },
33122
33123     // private
33124     onClick : function(e){
33125         this.processEvent("click", e);
33126     },
33127    // private
33128     onTouchStart : function(e){
33129         this.processEvent("touchstart", e);
33130     },
33131
33132     // private
33133     onContextMenu : function(e, t){
33134         this.processEvent("contextmenu", e);
33135     },
33136
33137     // private
33138     onDblClick : function(e){
33139         this.processEvent("dblclick", e);
33140     },
33141
33142     // private
33143     walkCells : function(row, col, step, fn, scope){
33144         var cm = this.colModel, clen = cm.getColumnCount();
33145         var ds = this.dataSource, rlen = ds.getCount(), first = true;
33146         if(step < 0){
33147             if(col < 0){
33148                 row--;
33149                 first = false;
33150             }
33151             while(row >= 0){
33152                 if(!first){
33153                     col = clen-1;
33154                 }
33155                 first = false;
33156                 while(col >= 0){
33157                     if(fn.call(scope || this, row, col, cm) === true){
33158                         return [row, col];
33159                     }
33160                     col--;
33161                 }
33162                 row--;
33163             }
33164         } else {
33165             if(col >= clen){
33166                 row++;
33167                 first = false;
33168             }
33169             while(row < rlen){
33170                 if(!first){
33171                     col = 0;
33172                 }
33173                 first = false;
33174                 while(col < clen){
33175                     if(fn.call(scope || this, row, col, cm) === true){
33176                         return [row, col];
33177                     }
33178                     col++;
33179                 }
33180                 row++;
33181             }
33182         }
33183         return null;
33184     },
33185
33186     // private
33187     getSelections : function(){
33188         return this.selModel.getSelections();
33189     },
33190
33191     /**
33192      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
33193      * but if manual update is required this method will initiate it.
33194      */
33195     autoSize : function(){
33196         if(this.rendered){
33197             this.view.layout();
33198             if(this.view.adjustForScroll){
33199                 this.view.adjustForScroll();
33200             }
33201         }
33202     },
33203
33204     /**
33205      * Returns the grid's underlying element.
33206      * @return {Element} The element
33207      */
33208     getGridEl : function(){
33209         return this.container;
33210     },
33211
33212     // private for compatibility, overridden by editor grid
33213     stopEditing : function(){},
33214
33215     /**
33216      * Returns the grid's SelectionModel.
33217      * @return {SelectionModel}
33218      */
33219     getSelectionModel : function(){
33220         if(!this.selModel){
33221             this.selModel = new Roo.grid.RowSelectionModel();
33222         }
33223         return this.selModel;
33224     },
33225
33226     /**
33227      * Returns the grid's DataSource.
33228      * @return {DataSource}
33229      */
33230     getDataSource : function(){
33231         return this.dataSource;
33232     },
33233
33234     /**
33235      * Returns the grid's ColumnModel.
33236      * @return {ColumnModel}
33237      */
33238     getColumnModel : function(){
33239         return this.colModel;
33240     },
33241
33242     /**
33243      * Returns the grid's GridView object.
33244      * @return {GridView}
33245      */
33246     getView : function(){
33247         if(!this.view){
33248             this.view = new Roo.grid.GridView(this.viewConfig);
33249         }
33250         return this.view;
33251     },
33252     /**
33253      * Called to get grid's drag proxy text, by default returns this.ddText.
33254      * @return {String}
33255      */
33256     getDragDropText : function(){
33257         var count = this.selModel.getCount();
33258         return String.format(this.ddText, count, count == 1 ? '' : 's');
33259     }
33260 });
33261 /**
33262  * Configures the text is the drag proxy (defaults to "%0 selected row(s)").
33263  * %0 is replaced with the number of selected rows.
33264  * @type String
33265  */
33266 Roo.grid.Grid.prototype.ddText = "{0} selected row{1}";/*
33267  * Based on:
33268  * Ext JS Library 1.1.1
33269  * Copyright(c) 2006-2007, Ext JS, LLC.
33270  *
33271  * Originally Released Under LGPL - original licence link has changed is not relivant.
33272  *
33273  * Fork - LGPL
33274  * <script type="text/javascript">
33275  */
33276  
33277 Roo.grid.AbstractGridView = function(){
33278         this.grid = null;
33279         
33280         this.events = {
33281             "beforerowremoved" : true,
33282             "beforerowsinserted" : true,
33283             "beforerefresh" : true,
33284             "rowremoved" : true,
33285             "rowsinserted" : true,
33286             "rowupdated" : true,
33287             "refresh" : true
33288         };
33289     Roo.grid.AbstractGridView.superclass.constructor.call(this);
33290 };
33291
33292 Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
33293     rowClass : "x-grid-row",
33294     cellClass : "x-grid-cell",
33295     tdClass : "x-grid-td",
33296     hdClass : "x-grid-hd",
33297     splitClass : "x-grid-hd-split",
33298     
33299     init: function(grid){
33300         this.grid = grid;
33301                 var cid = this.grid.getGridEl().id;
33302         this.colSelector = "#" + cid + " ." + this.cellClass + "-";
33303         this.tdSelector = "#" + cid + " ." + this.tdClass + "-";
33304         this.hdSelector = "#" + cid + " ." + this.hdClass + "-";
33305         this.splitSelector = "#" + cid + " ." + this.splitClass + "-";
33306         },
33307         
33308     getColumnRenderers : function(){
33309         var renderers = [];
33310         var cm = this.grid.colModel;
33311         var colCount = cm.getColumnCount();
33312         for(var i = 0; i < colCount; i++){
33313             renderers[i] = cm.getRenderer(i);
33314         }
33315         return renderers;
33316     },
33317     
33318     getColumnIds : function(){
33319         var ids = [];
33320         var cm = this.grid.colModel;
33321         var colCount = cm.getColumnCount();
33322         for(var i = 0; i < colCount; i++){
33323             ids[i] = cm.getColumnId(i);
33324         }
33325         return ids;
33326     },
33327     
33328     getDataIndexes : function(){
33329         if(!this.indexMap){
33330             this.indexMap = this.buildIndexMap();
33331         }
33332         return this.indexMap.colToData;
33333     },
33334     
33335     getColumnIndexByDataIndex : function(dataIndex){
33336         if(!this.indexMap){
33337             this.indexMap = this.buildIndexMap();
33338         }
33339         return this.indexMap.dataToCol[dataIndex];
33340     },
33341     
33342     /**
33343      * Set a css style for a column dynamically. 
33344      * @param {Number} colIndex The index of the column
33345      * @param {String} name The css property name
33346      * @param {String} value The css value
33347      */
33348     setCSSStyle : function(colIndex, name, value){
33349         var selector = "#" + this.grid.id + " .x-grid-col-" + colIndex;
33350         Roo.util.CSS.updateRule(selector, name, value);
33351     },
33352     
33353     generateRules : function(cm){
33354         var ruleBuf = [], rulesId = this.grid.id + '-cssrules';
33355         Roo.util.CSS.removeStyleSheet(rulesId);
33356         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
33357             var cid = cm.getColumnId(i);
33358             ruleBuf.push(this.colSelector, cid, " {\n", cm.config[i].css, "}\n",
33359                          this.tdSelector, cid, " {\n}\n",
33360                          this.hdSelector, cid, " {\n}\n",
33361                          this.splitSelector, cid, " {\n}\n");
33362         }
33363         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
33364     }
33365 });/*
33366  * Based on:
33367  * Ext JS Library 1.1.1
33368  * Copyright(c) 2006-2007, Ext JS, LLC.
33369  *
33370  * Originally Released Under LGPL - original licence link has changed is not relivant.
33371  *
33372  * Fork - LGPL
33373  * <script type="text/javascript">
33374  */
33375
33376 // private
33377 // This is a support class used internally by the Grid components
33378 Roo.grid.HeaderDragZone = function(grid, hd, hd2){
33379     this.grid = grid;
33380     this.view = grid.getView();
33381     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
33382     Roo.grid.HeaderDragZone.superclass.constructor.call(this, hd);
33383     if(hd2){
33384         this.setHandleElId(Roo.id(hd));
33385         this.setOuterHandleElId(Roo.id(hd2));
33386     }
33387     this.scroll = false;
33388 };
33389 Roo.extend(Roo.grid.HeaderDragZone, Roo.dd.DragZone, {
33390     maxDragWidth: 120,
33391     getDragData : function(e){
33392         var t = Roo.lib.Event.getTarget(e);
33393         var h = this.view.findHeaderCell(t);
33394         if(h){
33395             return {ddel: h.firstChild, header:h};
33396         }
33397         return false;
33398     },
33399
33400     onInitDrag : function(e){
33401         this.view.headersDisabled = true;
33402         var clone = this.dragData.ddel.cloneNode(true);
33403         clone.id = Roo.id();
33404         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
33405         this.proxy.update(clone);
33406         return true;
33407     },
33408
33409     afterValidDrop : function(){
33410         var v = this.view;
33411         setTimeout(function(){
33412             v.headersDisabled = false;
33413         }, 50);
33414     },
33415
33416     afterInvalidDrop : function(){
33417         var v = this.view;
33418         setTimeout(function(){
33419             v.headersDisabled = false;
33420         }, 50);
33421     }
33422 });
33423 /*
33424  * Based on:
33425  * Ext JS Library 1.1.1
33426  * Copyright(c) 2006-2007, Ext JS, LLC.
33427  *
33428  * Originally Released Under LGPL - original licence link has changed is not relivant.
33429  *
33430  * Fork - LGPL
33431  * <script type="text/javascript">
33432  */
33433 // private
33434 // This is a support class used internally by the Grid components
33435 Roo.grid.HeaderDropZone = function(grid, hd, hd2){
33436     this.grid = grid;
33437     this.view = grid.getView();
33438     // split the proxies so they don't interfere with mouse events
33439     this.proxyTop = Roo.DomHelper.append(document.body, {
33440         cls:"col-move-top", html:"&#160;"
33441     }, true);
33442     this.proxyBottom = Roo.DomHelper.append(document.body, {
33443         cls:"col-move-bottom", html:"&#160;"
33444     }, true);
33445     this.proxyTop.hide = this.proxyBottom.hide = function(){
33446         this.setLeftTop(-100,-100);
33447         this.setStyle("visibility", "hidden");
33448     };
33449     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
33450     // temporarily disabled
33451     //Roo.dd.ScrollManager.register(this.view.scroller.dom);
33452     Roo.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
33453 };
33454 Roo.extend(Roo.grid.HeaderDropZone, Roo.dd.DropZone, {
33455     proxyOffsets : [-4, -9],
33456     fly: Roo.Element.fly,
33457
33458     getTargetFromEvent : function(e){
33459         var t = Roo.lib.Event.getTarget(e);
33460         var cindex = this.view.findCellIndex(t);
33461         if(cindex !== false){
33462             return this.view.getHeaderCell(cindex);
33463         }
33464         return null;
33465     },
33466
33467     nextVisible : function(h){
33468         var v = this.view, cm = this.grid.colModel;
33469         h = h.nextSibling;
33470         while(h){
33471             if(!cm.isHidden(v.getCellIndex(h))){
33472                 return h;
33473             }
33474             h = h.nextSibling;
33475         }
33476         return null;
33477     },
33478
33479     prevVisible : function(h){
33480         var v = this.view, cm = this.grid.colModel;
33481         h = h.prevSibling;
33482         while(h){
33483             if(!cm.isHidden(v.getCellIndex(h))){
33484                 return h;
33485             }
33486             h = h.prevSibling;
33487         }
33488         return null;
33489     },
33490
33491     positionIndicator : function(h, n, e){
33492         var x = Roo.lib.Event.getPageX(e);
33493         var r = Roo.lib.Dom.getRegion(n.firstChild);
33494         var px, pt, py = r.top + this.proxyOffsets[1];
33495         if((r.right - x) <= (r.right-r.left)/2){
33496             px = r.right+this.view.borderWidth;
33497             pt = "after";
33498         }else{
33499             px = r.left;
33500             pt = "before";
33501         }
33502         var oldIndex = this.view.getCellIndex(h);
33503         var newIndex = this.view.getCellIndex(n);
33504
33505         if(this.grid.colModel.isFixed(newIndex)){
33506             return false;
33507         }
33508
33509         var locked = this.grid.colModel.isLocked(newIndex);
33510
33511         if(pt == "after"){
33512             newIndex++;
33513         }
33514         if(oldIndex < newIndex){
33515             newIndex--;
33516         }
33517         if(oldIndex == newIndex && (locked == this.grid.colModel.isLocked(oldIndex))){
33518             return false;
33519         }
33520         px +=  this.proxyOffsets[0];
33521         this.proxyTop.setLeftTop(px, py);
33522         this.proxyTop.show();
33523         if(!this.bottomOffset){
33524             this.bottomOffset = this.view.mainHd.getHeight();
33525         }
33526         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
33527         this.proxyBottom.show();
33528         return pt;
33529     },
33530
33531     onNodeEnter : function(n, dd, e, data){
33532         if(data.header != n){
33533             this.positionIndicator(data.header, n, e);
33534         }
33535     },
33536
33537     onNodeOver : function(n, dd, e, data){
33538         var result = false;
33539         if(data.header != n){
33540             result = this.positionIndicator(data.header, n, e);
33541         }
33542         if(!result){
33543             this.proxyTop.hide();
33544             this.proxyBottom.hide();
33545         }
33546         return result ? this.dropAllowed : this.dropNotAllowed;
33547     },
33548
33549     onNodeOut : function(n, dd, e, data){
33550         this.proxyTop.hide();
33551         this.proxyBottom.hide();
33552     },
33553
33554     onNodeDrop : function(n, dd, e, data){
33555         var h = data.header;
33556         if(h != n){
33557             var cm = this.grid.colModel;
33558             var x = Roo.lib.Event.getPageX(e);
33559             var r = Roo.lib.Dom.getRegion(n.firstChild);
33560             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
33561             var oldIndex = this.view.getCellIndex(h);
33562             var newIndex = this.view.getCellIndex(n);
33563             var locked = cm.isLocked(newIndex);
33564             if(pt == "after"){
33565                 newIndex++;
33566             }
33567             if(oldIndex < newIndex){
33568                 newIndex--;
33569             }
33570             if(oldIndex == newIndex && (locked == cm.isLocked(oldIndex))){
33571                 return false;
33572             }
33573             cm.setLocked(oldIndex, locked, true);
33574             cm.moveColumn(oldIndex, newIndex);
33575             this.grid.fireEvent("columnmove", oldIndex, newIndex);
33576             return true;
33577         }
33578         return false;
33579     }
33580 });
33581 /*
33582  * Based on:
33583  * Ext JS Library 1.1.1
33584  * Copyright(c) 2006-2007, Ext JS, LLC.
33585  *
33586  * Originally Released Under LGPL - original licence link has changed is not relivant.
33587  *
33588  * Fork - LGPL
33589  * <script type="text/javascript">
33590  */
33591   
33592 /**
33593  * @class Roo.grid.GridView
33594  * @extends Roo.util.Observable
33595  *
33596  * @constructor
33597  * @param {Object} config
33598  */
33599 Roo.grid.GridView = function(config){
33600     Roo.grid.GridView.superclass.constructor.call(this);
33601     this.el = null;
33602
33603     Roo.apply(this, config);
33604 };
33605
33606 Roo.extend(Roo.grid.GridView, Roo.grid.AbstractGridView, {
33607
33608     unselectable :  'unselectable="on"',
33609     unselectableCls :  'x-unselectable',
33610     
33611     
33612     rowClass : "x-grid-row",
33613
33614     cellClass : "x-grid-col",
33615
33616     tdClass : "x-grid-td",
33617
33618     hdClass : "x-grid-hd",
33619
33620     splitClass : "x-grid-split",
33621
33622     sortClasses : ["sort-asc", "sort-desc"],
33623
33624     enableMoveAnim : false,
33625
33626     hlColor: "C3DAF9",
33627
33628     dh : Roo.DomHelper,
33629
33630     fly : Roo.Element.fly,
33631
33632     css : Roo.util.CSS,
33633
33634     borderWidth: 1,
33635
33636     splitOffset: 3,
33637
33638     scrollIncrement : 22,
33639
33640     cellRE: /(?:.*?)x-grid-(?:hd|cell|csplit)-(?:[\d]+)-([\d]+)(?:.*?)/,
33641
33642     findRE: /\s?(?:x-grid-hd|x-grid-col|x-grid-csplit)\s/,
33643
33644     bind : function(ds, cm){
33645         if(this.ds){
33646             this.ds.un("load", this.onLoad, this);
33647             this.ds.un("datachanged", this.onDataChange, this);
33648             this.ds.un("add", this.onAdd, this);
33649             this.ds.un("remove", this.onRemove, this);
33650             this.ds.un("update", this.onUpdate, this);
33651             this.ds.un("clear", this.onClear, this);
33652         }
33653         if(ds){
33654             ds.on("load", this.onLoad, this);
33655             ds.on("datachanged", this.onDataChange, this);
33656             ds.on("add", this.onAdd, this);
33657             ds.on("remove", this.onRemove, this);
33658             ds.on("update", this.onUpdate, this);
33659             ds.on("clear", this.onClear, this);
33660         }
33661         this.ds = ds;
33662
33663         if(this.cm){
33664             this.cm.un("widthchange", this.onColWidthChange, this);
33665             this.cm.un("headerchange", this.onHeaderChange, this);
33666             this.cm.un("hiddenchange", this.onHiddenChange, this);
33667             this.cm.un("columnmoved", this.onColumnMove, this);
33668             this.cm.un("columnlockchange", this.onColumnLock, this);
33669         }
33670         if(cm){
33671             this.generateRules(cm);
33672             cm.on("widthchange", this.onColWidthChange, this);
33673             cm.on("headerchange", this.onHeaderChange, this);
33674             cm.on("hiddenchange", this.onHiddenChange, this);
33675             cm.on("columnmoved", this.onColumnMove, this);
33676             cm.on("columnlockchange", this.onColumnLock, this);
33677         }
33678         this.cm = cm;
33679     },
33680
33681     init: function(grid){
33682         Roo.grid.GridView.superclass.init.call(this, grid);
33683
33684         this.bind(grid.dataSource, grid.colModel);
33685
33686         grid.on("headerclick", this.handleHeaderClick, this);
33687
33688         if(grid.trackMouseOver){
33689             grid.on("mouseover", this.onRowOver, this);
33690             grid.on("mouseout", this.onRowOut, this);
33691         }
33692         grid.cancelTextSelection = function(){};
33693         this.gridId = grid.id;
33694
33695         var tpls = this.templates || {};
33696
33697         if(!tpls.master){
33698             tpls.master = new Roo.Template(
33699                '<div class="x-grid" hidefocus="true">',
33700                 '<a href="#" class="x-grid-focus" tabIndex="-1"></a>',
33701                   '<div class="x-grid-topbar"></div>',
33702                   '<div class="x-grid-scroller"><div></div></div>',
33703                   '<div class="x-grid-locked">',
33704                       '<div class="x-grid-header">{lockedHeader}</div>',
33705                       '<div class="x-grid-body">{lockedBody}</div>',
33706                   "</div>",
33707                   '<div class="x-grid-viewport">',
33708                       '<div class="x-grid-header">{header}</div>',
33709                       '<div class="x-grid-body">{body}</div>',
33710                   "</div>",
33711                   '<div class="x-grid-bottombar"></div>',
33712                  
33713                   '<div class="x-grid-resize-proxy">&#160;</div>',
33714                "</div>"
33715             );
33716             tpls.master.disableformats = true;
33717         }
33718
33719         if(!tpls.header){
33720             tpls.header = new Roo.Template(
33721                '<table border="0" cellspacing="0" cellpadding="0">',
33722                '<tbody><tr class="x-grid-hd-row">{cells}</tr></tbody>',
33723                "</table>{splits}"
33724             );
33725             tpls.header.disableformats = true;
33726         }
33727         tpls.header.compile();
33728
33729         if(!tpls.hcell){
33730             tpls.hcell = new Roo.Template(
33731                 '<td class="x-grid-hd x-grid-td-{id} {cellId}"><div title="{title}" class="x-grid-hd-inner x-grid-hd-{id}">',
33732                 '<div class="x-grid-hd-text ' + this.unselectableCls +  '" ' + this.unselectable +'>{value}<img class="x-grid-sort-icon" src="', Roo.BLANK_IMAGE_URL, '" /></div>',
33733                 "</div></td>"
33734              );
33735              tpls.hcell.disableFormats = true;
33736         }
33737         tpls.hcell.compile();
33738
33739         if(!tpls.hsplit){
33740             tpls.hsplit = new Roo.Template('<div class="x-grid-split {splitId} x-grid-split-{id}" style="{style} ' +
33741                                             this.unselectableCls +  '" ' + this.unselectable +'>&#160;</div>');
33742             tpls.hsplit.disableFormats = true;
33743         }
33744         tpls.hsplit.compile();
33745
33746         if(!tpls.body){
33747             tpls.body = new Roo.Template(
33748                '<table border="0" cellspacing="0" cellpadding="0">',
33749                "<tbody>{rows}</tbody>",
33750                "</table>"
33751             );
33752             tpls.body.disableFormats = true;
33753         }
33754         tpls.body.compile();
33755
33756         if(!tpls.row){
33757             tpls.row = new Roo.Template('<tr class="x-grid-row {alt}">{cells}</tr>');
33758             tpls.row.disableFormats = true;
33759         }
33760         tpls.row.compile();
33761
33762         if(!tpls.cell){
33763             tpls.cell = new Roo.Template(
33764                 '<td class="x-grid-col x-grid-td-{id} {cellId} {css}" tabIndex="0">',
33765                 '<div class="x-grid-col-{id} x-grid-cell-inner"><div class="x-grid-cell-text ' +
33766                     this.unselectableCls +  '" ' + this.unselectable +'" {attr}>{value}</div></div>',
33767                 "</td>"
33768             );
33769             tpls.cell.disableFormats = true;
33770         }
33771         tpls.cell.compile();
33772
33773         this.templates = tpls;
33774     },
33775
33776     // remap these for backwards compat
33777     onColWidthChange : function(){
33778         this.updateColumns.apply(this, arguments);
33779     },
33780     onHeaderChange : function(){
33781         this.updateHeaders.apply(this, arguments);
33782     }, 
33783     onHiddenChange : function(){
33784         this.handleHiddenChange.apply(this, arguments);
33785     },
33786     onColumnMove : function(){
33787         this.handleColumnMove.apply(this, arguments);
33788     },
33789     onColumnLock : function(){
33790         this.handleLockChange.apply(this, arguments);
33791     },
33792
33793     onDataChange : function(){
33794         this.refresh();
33795         this.updateHeaderSortState();
33796     },
33797
33798     onClear : function(){
33799         this.refresh();
33800     },
33801
33802     onUpdate : function(ds, record){
33803         this.refreshRow(record);
33804     },
33805
33806     refreshRow : function(record){
33807         var ds = this.ds, index;
33808         if(typeof record == 'number'){
33809             index = record;
33810             record = ds.getAt(index);
33811         }else{
33812             index = ds.indexOf(record);
33813         }
33814         this.insertRows(ds, index, index, true);
33815         this.onRemove(ds, record, index+1, true);
33816         this.syncRowHeights(index, index);
33817         this.layout();
33818         this.fireEvent("rowupdated", this, index, record);
33819     },
33820
33821     onAdd : function(ds, records, index){
33822         this.insertRows(ds, index, index + (records.length-1));
33823     },
33824
33825     onRemove : function(ds, record, index, isUpdate){
33826         if(isUpdate !== true){
33827             this.fireEvent("beforerowremoved", this, index, record);
33828         }
33829         var bt = this.getBodyTable(), lt = this.getLockedTable();
33830         if(bt.rows[index]){
33831             bt.firstChild.removeChild(bt.rows[index]);
33832         }
33833         if(lt.rows[index]){
33834             lt.firstChild.removeChild(lt.rows[index]);
33835         }
33836         if(isUpdate !== true){
33837             this.stripeRows(index);
33838             this.syncRowHeights(index, index);
33839             this.layout();
33840             this.fireEvent("rowremoved", this, index, record);
33841         }
33842     },
33843
33844     onLoad : function(){
33845         this.scrollToTop();
33846     },
33847
33848     /**
33849      * Scrolls the grid to the top
33850      */
33851     scrollToTop : function(){
33852         if(this.scroller){
33853             this.scroller.dom.scrollTop = 0;
33854             this.syncScroll();
33855         }
33856     },
33857
33858     /**
33859      * Gets a panel in the header of the grid that can be used for toolbars etc.
33860      * After modifying the contents of this panel a call to grid.autoSize() may be
33861      * required to register any changes in size.
33862      * @param {Boolean} doShow By default the header is hidden. Pass true to show the panel
33863      * @return Roo.Element
33864      */
33865     getHeaderPanel : function(doShow){
33866         if(doShow){
33867             this.headerPanel.show();
33868         }
33869         return this.headerPanel;
33870     },
33871
33872     /**
33873      * Gets a panel in the footer of the grid that can be used for toolbars etc.
33874      * After modifying the contents of this panel a call to grid.autoSize() may be
33875      * required to register any changes in size.
33876      * @param {Boolean} doShow By default the footer is hidden. Pass true to show the panel
33877      * @return Roo.Element
33878      */
33879     getFooterPanel : function(doShow){
33880         if(doShow){
33881             this.footerPanel.show();
33882         }
33883         return this.footerPanel;
33884     },
33885
33886     initElements : function(){
33887         var E = Roo.Element;
33888         var el = this.grid.getGridEl().dom.firstChild;
33889         var cs = el.childNodes;
33890
33891         this.el = new E(el);
33892         
33893          this.focusEl = new E(el.firstChild);
33894         this.focusEl.swallowEvent("click", true);
33895         
33896         this.headerPanel = new E(cs[1]);
33897         this.headerPanel.enableDisplayMode("block");
33898
33899         this.scroller = new E(cs[2]);
33900         this.scrollSizer = new E(this.scroller.dom.firstChild);
33901
33902         this.lockedWrap = new E(cs[3]);
33903         this.lockedHd = new E(this.lockedWrap.dom.firstChild);
33904         this.lockedBody = new E(this.lockedWrap.dom.childNodes[1]);
33905
33906         this.mainWrap = new E(cs[4]);
33907         this.mainHd = new E(this.mainWrap.dom.firstChild);
33908         this.mainBody = new E(this.mainWrap.dom.childNodes[1]);
33909
33910         this.footerPanel = new E(cs[5]);
33911         this.footerPanel.enableDisplayMode("block");
33912
33913         this.resizeProxy = new E(cs[6]);
33914
33915         this.headerSelector = String.format(
33916            '#{0} td.x-grid-hd, #{1} td.x-grid-hd',
33917            this.lockedHd.id, this.mainHd.id
33918         );
33919
33920         this.splitterSelector = String.format(
33921            '#{0} div.x-grid-split, #{1} div.x-grid-split',
33922            this.idToCssName(this.lockedHd.id), this.idToCssName(this.mainHd.id)
33923         );
33924     },
33925     idToCssName : function(s)
33926     {
33927         return s.replace(/[^a-z0-9]+/ig, '-');
33928     },
33929
33930     getHeaderCell : function(index){
33931         return Roo.DomQuery.select(this.headerSelector)[index];
33932     },
33933
33934     getHeaderCellMeasure : function(index){
33935         return this.getHeaderCell(index).firstChild;
33936     },
33937
33938     getHeaderCellText : function(index){
33939         return this.getHeaderCell(index).firstChild.firstChild;
33940     },
33941
33942     getLockedTable : function(){
33943         return this.lockedBody.dom.firstChild;
33944     },
33945
33946     getBodyTable : function(){
33947         return this.mainBody.dom.firstChild;
33948     },
33949
33950     getLockedRow : function(index){
33951         return this.getLockedTable().rows[index];
33952     },
33953
33954     getRow : function(index){
33955         return this.getBodyTable().rows[index];
33956     },
33957
33958     getRowComposite : function(index){
33959         if(!this.rowEl){
33960             this.rowEl = new Roo.CompositeElementLite();
33961         }
33962         var els = [], lrow, mrow;
33963         if(lrow = this.getLockedRow(index)){
33964             els.push(lrow);
33965         }
33966         if(mrow = this.getRow(index)){
33967             els.push(mrow);
33968         }
33969         this.rowEl.elements = els;
33970         return this.rowEl;
33971     },
33972     /**
33973      * Gets the 'td' of the cell
33974      * 
33975      * @param {Integer} rowIndex row to select
33976      * @param {Integer} colIndex column to select
33977      * 
33978      * @return {Object} 
33979      */
33980     getCell : function(rowIndex, colIndex){
33981         var locked = this.cm.getLockedCount();
33982         var source;
33983         if(colIndex < locked){
33984             source = this.lockedBody.dom.firstChild;
33985         }else{
33986             source = this.mainBody.dom.firstChild;
33987             colIndex -= locked;
33988         }
33989         return source.rows[rowIndex].childNodes[colIndex];
33990     },
33991
33992     getCellText : function(rowIndex, colIndex){
33993         return this.getCell(rowIndex, colIndex).firstChild.firstChild;
33994     },
33995
33996     getCellBox : function(cell){
33997         var b = this.fly(cell).getBox();
33998         if(Roo.isOpera){ // opera fails to report the Y
33999             b.y = cell.offsetTop + this.mainBody.getY();
34000         }
34001         return b;
34002     },
34003
34004     getCellIndex : function(cell){
34005         var id = String(cell.className).match(this.cellRE);
34006         if(id){
34007             return parseInt(id[1], 10);
34008         }
34009         return 0;
34010     },
34011
34012     findHeaderIndex : function(n){
34013         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
34014         return r ? this.getCellIndex(r) : false;
34015     },
34016
34017     findHeaderCell : function(n){
34018         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
34019         return r ? r : false;
34020     },
34021
34022     findRowIndex : function(n){
34023         if(!n){
34024             return false;
34025         }
34026         var r = Roo.fly(n).findParent("tr." + this.rowClass, 6);
34027         return r ? r.rowIndex : false;
34028     },
34029
34030     findCellIndex : function(node){
34031         var stop = this.el.dom;
34032         while(node && node != stop){
34033             if(this.findRE.test(node.className)){
34034                 return this.getCellIndex(node);
34035             }
34036             node = node.parentNode;
34037         }
34038         return false;
34039     },
34040
34041     getColumnId : function(index){
34042         return this.cm.getColumnId(index);
34043     },
34044
34045     getSplitters : function()
34046     {
34047         if(this.splitterSelector){
34048            return Roo.DomQuery.select(this.splitterSelector);
34049         }else{
34050             return null;
34051       }
34052     },
34053
34054     getSplitter : function(index){
34055         return this.getSplitters()[index];
34056     },
34057
34058     onRowOver : function(e, t){
34059         var row;
34060         if((row = this.findRowIndex(t)) !== false){
34061             this.getRowComposite(row).addClass("x-grid-row-over");
34062         }
34063     },
34064
34065     onRowOut : function(e, t){
34066         var row;
34067         if((row = this.findRowIndex(t)) !== false && row !== this.findRowIndex(e.getRelatedTarget())){
34068             this.getRowComposite(row).removeClass("x-grid-row-over");
34069         }
34070     },
34071
34072     renderHeaders : function(){
34073         var cm = this.cm;
34074         var ct = this.templates.hcell, ht = this.templates.header, st = this.templates.hsplit;
34075         var cb = [], lb = [], sb = [], lsb = [], p = {};
34076         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
34077             p.cellId = "x-grid-hd-0-" + i;
34078             p.splitId = "x-grid-csplit-0-" + i;
34079             p.id = cm.getColumnId(i);
34080             p.value = cm.getColumnHeader(i) || "";
34081             p.title = cm.getColumnTooltip(i) || (''+p.value).match(/\</)  ? '' :  p.value  || "";
34082             p.style = (this.grid.enableColumnResize === false || !cm.isResizable(i) || cm.isFixed(i)) ? 'cursor:default' : '';
34083             if(!cm.isLocked(i)){
34084                 cb[cb.length] = ct.apply(p);
34085                 sb[sb.length] = st.apply(p);
34086             }else{
34087                 lb[lb.length] = ct.apply(p);
34088                 lsb[lsb.length] = st.apply(p);
34089             }
34090         }
34091         return [ht.apply({cells: lb.join(""), splits:lsb.join("")}),
34092                 ht.apply({cells: cb.join(""), splits:sb.join("")})];
34093     },
34094
34095     updateHeaders : function(){
34096         var html = this.renderHeaders();
34097         this.lockedHd.update(html[0]);
34098         this.mainHd.update(html[1]);
34099     },
34100
34101     /**
34102      * Focuses the specified row.
34103      * @param {Number} row The row index
34104      */
34105     focusRow : function(row)
34106     {
34107         //Roo.log('GridView.focusRow');
34108         var x = this.scroller.dom.scrollLeft;
34109         this.focusCell(row, 0, false);
34110         this.scroller.dom.scrollLeft = x;
34111     },
34112
34113     /**
34114      * Focuses the specified cell.
34115      * @param {Number} row The row index
34116      * @param {Number} col The column index
34117      * @param {Boolean} hscroll false to disable horizontal scrolling
34118      */
34119     focusCell : function(row, col, hscroll)
34120     {
34121         //Roo.log('GridView.focusCell');
34122         var el = this.ensureVisible(row, col, hscroll);
34123         this.focusEl.alignTo(el, "tl-tl");
34124         if(Roo.isGecko){
34125             this.focusEl.focus();
34126         }else{
34127             this.focusEl.focus.defer(1, this.focusEl);
34128         }
34129     },
34130
34131     /**
34132      * Scrolls the specified cell into view
34133      * @param {Number} row The row index
34134      * @param {Number} col The column index
34135      * @param {Boolean} hscroll false to disable horizontal scrolling
34136      */
34137     ensureVisible : function(row, col, hscroll)
34138     {
34139         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
34140         //return null; //disable for testing.
34141         if(typeof row != "number"){
34142             row = row.rowIndex;
34143         }
34144         if(row < 0 && row >= this.ds.getCount()){
34145             return  null;
34146         }
34147         col = (col !== undefined ? col : 0);
34148         var cm = this.grid.colModel;
34149         while(cm.isHidden(col)){
34150             col++;
34151         }
34152
34153         var el = this.getCell(row, col);
34154         if(!el){
34155             return null;
34156         }
34157         var c = this.scroller.dom;
34158
34159         var ctop = parseInt(el.offsetTop, 10);
34160         var cleft = parseInt(el.offsetLeft, 10);
34161         var cbot = ctop + el.offsetHeight;
34162         var cright = cleft + el.offsetWidth;
34163         
34164         var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
34165         var stop = parseInt(c.scrollTop, 10);
34166         var sleft = parseInt(c.scrollLeft, 10);
34167         var sbot = stop + ch;
34168         var sright = sleft + c.clientWidth;
34169         /*
34170         Roo.log('GridView.ensureVisible:' +
34171                 ' ctop:' + ctop +
34172                 ' c.clientHeight:' + c.clientHeight +
34173                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
34174                 ' stop:' + stop +
34175                 ' cbot:' + cbot +
34176                 ' sbot:' + sbot +
34177                 ' ch:' + ch  
34178                 );
34179         */
34180         if(ctop < stop){
34181              c.scrollTop = ctop;
34182             //Roo.log("set scrolltop to ctop DISABLE?");
34183         }else if(cbot > sbot){
34184             //Roo.log("set scrolltop to cbot-ch");
34185             c.scrollTop = cbot-ch;
34186         }
34187         
34188         if(hscroll !== false){
34189             if(cleft < sleft){
34190                 c.scrollLeft = cleft;
34191             }else if(cright > sright){
34192                 c.scrollLeft = cright-c.clientWidth;
34193             }
34194         }
34195          
34196         return el;
34197     },
34198
34199     updateColumns : function(){
34200         this.grid.stopEditing();
34201         var cm = this.grid.colModel, colIds = this.getColumnIds();
34202         //var totalWidth = cm.getTotalWidth();
34203         var pos = 0;
34204         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
34205             //if(cm.isHidden(i)) continue;
34206             var w = cm.getColumnWidth(i);
34207             this.css.updateRule(this.colSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
34208             this.css.updateRule(this.hdSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
34209         }
34210         this.updateSplitters();
34211     },
34212
34213     generateRules : function(cm){
34214         var ruleBuf = [], rulesId = this.idToCssName(this.grid.id)+ '-cssrules';
34215         Roo.util.CSS.removeStyleSheet(rulesId);
34216         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
34217             var cid = cm.getColumnId(i);
34218             var align = '';
34219             if(cm.config[i].align){
34220                 align = 'text-align:'+cm.config[i].align+';';
34221             }
34222             var hidden = '';
34223             if(cm.isHidden(i)){
34224                 hidden = 'display:none;';
34225             }
34226             var width = "width:" + (cm.getColumnWidth(i) - this.borderWidth) + "px;";
34227             ruleBuf.push(
34228                     this.colSelector, cid, " {\n", cm.config[i].css, align, width, "\n}\n",
34229                     this.hdSelector, cid, " {\n", align, width, "}\n",
34230                     this.tdSelector, cid, " {\n",hidden,"\n}\n",
34231                     this.splitSelector, cid, " {\n", hidden , "\n}\n");
34232         }
34233         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
34234     },
34235
34236     updateSplitters : function(){
34237         var cm = this.cm, s = this.getSplitters();
34238         if(s){ // splitters not created yet
34239             var pos = 0, locked = true;
34240             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
34241                 if(cm.isHidden(i)) {
34242                     continue;
34243                 }
34244                 var w = cm.getColumnWidth(i); // make sure it's a number
34245                 if(!cm.isLocked(i) && locked){
34246                     pos = 0;
34247                     locked = false;
34248                 }
34249                 pos += w;
34250                 s[i].style.left = (pos-this.splitOffset) + "px";
34251             }
34252         }
34253     },
34254
34255     handleHiddenChange : function(colModel, colIndex, hidden){
34256         if(hidden){
34257             this.hideColumn(colIndex);
34258         }else{
34259             this.unhideColumn(colIndex);
34260         }
34261     },
34262
34263     hideColumn : function(colIndex){
34264         var cid = this.getColumnId(colIndex);
34265         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "none");
34266         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "none");
34267         if(Roo.isSafari){
34268             this.updateHeaders();
34269         }
34270         this.updateSplitters();
34271         this.layout();
34272     },
34273
34274     unhideColumn : function(colIndex){
34275         var cid = this.getColumnId(colIndex);
34276         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "");
34277         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "");
34278
34279         if(Roo.isSafari){
34280             this.updateHeaders();
34281         }
34282         this.updateSplitters();
34283         this.layout();
34284     },
34285
34286     insertRows : function(dm, firstRow, lastRow, isUpdate){
34287         if(firstRow == 0 && lastRow == dm.getCount()-1){
34288             this.refresh();
34289         }else{
34290             if(!isUpdate){
34291                 this.fireEvent("beforerowsinserted", this, firstRow, lastRow);
34292             }
34293             var s = this.getScrollState();
34294             var markup = this.renderRows(firstRow, lastRow);
34295             this.bufferRows(markup[0], this.getLockedTable(), firstRow);
34296             this.bufferRows(markup[1], this.getBodyTable(), firstRow);
34297             this.restoreScroll(s);
34298             if(!isUpdate){
34299                 this.fireEvent("rowsinserted", this, firstRow, lastRow);
34300                 this.syncRowHeights(firstRow, lastRow);
34301                 this.stripeRows(firstRow);
34302                 this.layout();
34303             }
34304         }
34305     },
34306
34307     bufferRows : function(markup, target, index){
34308         var before = null, trows = target.rows, tbody = target.tBodies[0];
34309         if(index < trows.length){
34310             before = trows[index];
34311         }
34312         var b = document.createElement("div");
34313         b.innerHTML = "<table><tbody>"+markup+"</tbody></table>";
34314         var rows = b.firstChild.rows;
34315         for(var i = 0, len = rows.length; i < len; i++){
34316             if(before){
34317                 tbody.insertBefore(rows[0], before);
34318             }else{
34319                 tbody.appendChild(rows[0]);
34320             }
34321         }
34322         b.innerHTML = "";
34323         b = null;
34324     },
34325
34326     deleteRows : function(dm, firstRow, lastRow){
34327         if(dm.getRowCount()<1){
34328             this.fireEvent("beforerefresh", this);
34329             this.mainBody.update("");
34330             this.lockedBody.update("");
34331             this.fireEvent("refresh", this);
34332         }else{
34333             this.fireEvent("beforerowsdeleted", this, firstRow, lastRow);
34334             var bt = this.getBodyTable();
34335             var tbody = bt.firstChild;
34336             var rows = bt.rows;
34337             for(var rowIndex = firstRow; rowIndex <= lastRow; rowIndex++){
34338                 tbody.removeChild(rows[firstRow]);
34339             }
34340             this.stripeRows(firstRow);
34341             this.fireEvent("rowsdeleted", this, firstRow, lastRow);
34342         }
34343     },
34344
34345     updateRows : function(dataSource, firstRow, lastRow){
34346         var s = this.getScrollState();
34347         this.refresh();
34348         this.restoreScroll(s);
34349     },
34350
34351     handleSort : function(dataSource, sortColumnIndex, sortDir, noRefresh){
34352         if(!noRefresh){
34353            this.refresh();
34354         }
34355         this.updateHeaderSortState();
34356     },
34357
34358     getScrollState : function(){
34359         
34360         var sb = this.scroller.dom;
34361         return {left: sb.scrollLeft, top: sb.scrollTop};
34362     },
34363
34364     stripeRows : function(startRow){
34365         if(!this.grid.stripeRows || this.ds.getCount() < 1){
34366             return;
34367         }
34368         startRow = startRow || 0;
34369         var rows = this.getBodyTable().rows;
34370         var lrows = this.getLockedTable().rows;
34371         var cls = ' x-grid-row-alt ';
34372         for(var i = startRow, len = rows.length; i < len; i++){
34373             var row = rows[i], lrow = lrows[i];
34374             var isAlt = ((i+1) % 2 == 0);
34375             var hasAlt = (' '+row.className + ' ').indexOf(cls) != -1;
34376             if(isAlt == hasAlt){
34377                 continue;
34378             }
34379             if(isAlt){
34380                 row.className += " x-grid-row-alt";
34381             }else{
34382                 row.className = row.className.replace("x-grid-row-alt", "");
34383             }
34384             if(lrow){
34385                 lrow.className = row.className;
34386             }
34387         }
34388     },
34389
34390     restoreScroll : function(state){
34391         //Roo.log('GridView.restoreScroll');
34392         var sb = this.scroller.dom;
34393         sb.scrollLeft = state.left;
34394         sb.scrollTop = state.top;
34395         this.syncScroll();
34396     },
34397
34398     syncScroll : function(){
34399         //Roo.log('GridView.syncScroll');
34400         var sb = this.scroller.dom;
34401         var sh = this.mainHd.dom;
34402         var bs = this.mainBody.dom;
34403         var lv = this.lockedBody.dom;
34404         sh.scrollLeft = bs.scrollLeft = sb.scrollLeft;
34405         lv.scrollTop = bs.scrollTop = sb.scrollTop;
34406     },
34407
34408     handleScroll : function(e){
34409         this.syncScroll();
34410         var sb = this.scroller.dom;
34411         this.grid.fireEvent("bodyscroll", sb.scrollLeft, sb.scrollTop);
34412         e.stopEvent();
34413     },
34414
34415     handleWheel : function(e){
34416         var d = e.getWheelDelta();
34417         this.scroller.dom.scrollTop -= d*22;
34418         // set this here to prevent jumpy scrolling on large tables
34419         this.lockedBody.dom.scrollTop = this.mainBody.dom.scrollTop = this.scroller.dom.scrollTop;
34420         e.stopEvent();
34421     },
34422
34423     renderRows : function(startRow, endRow){
34424         // pull in all the crap needed to render rows
34425         var g = this.grid, cm = g.colModel, ds = g.dataSource, stripe = g.stripeRows;
34426         var colCount = cm.getColumnCount();
34427
34428         if(ds.getCount() < 1){
34429             return ["", ""];
34430         }
34431
34432         // build a map for all the columns
34433         var cs = [];
34434         for(var i = 0; i < colCount; i++){
34435             var name = cm.getDataIndex(i);
34436             cs[i] = {
34437                 name : typeof name == 'undefined' ? ds.fields.get(i).name : name,
34438                 renderer : cm.getRenderer(i),
34439                 id : cm.getColumnId(i),
34440                 locked : cm.isLocked(i),
34441                 has_editor : cm.isCellEditable(i)
34442             };
34443         }
34444
34445         startRow = startRow || 0;
34446         endRow = typeof endRow == "undefined"? ds.getCount()-1 : endRow;
34447
34448         // records to render
34449         var rs = ds.getRange(startRow, endRow);
34450
34451         return this.doRender(cs, rs, ds, startRow, colCount, stripe);
34452     },
34453
34454     // As much as I hate to duplicate code, this was branched because FireFox really hates
34455     // [].join("") on strings. The performance difference was substantial enough to
34456     // branch this function
34457     doRender : Roo.isGecko ?
34458             function(cs, rs, ds, startRow, colCount, stripe){
34459                 var ts = this.templates, ct = ts.cell, rt = ts.row;
34460                 // buffers
34461                 var buf = "", lbuf = "", cb, lcb, c, p = {}, rp = {}, r, rowIndex;
34462                 
34463                 var hasListener = this.grid.hasListener('rowclass');
34464                 var rowcfg = {};
34465                 for(var j = 0, len = rs.length; j < len; j++){
34466                     r = rs[j]; cb = ""; lcb = ""; rowIndex = (j+startRow);
34467                     for(var i = 0; i < colCount; i++){
34468                         c = cs[i];
34469                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
34470                         p.id = c.id;
34471                         p.css = p.attr = "";
34472                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
34473                         if(p.value == undefined || p.value === "") {
34474                             p.value = "&#160;";
34475                         }
34476                         if(c.has_editor){
34477                             p.css += ' x-grid-editable-cell';
34478                         }
34479                         if(c.dirty && typeof r.modified[c.name] !== 'undefined'){
34480                             p.css +=  ' x-grid-dirty-cell';
34481                         }
34482                         var markup = ct.apply(p);
34483                         if(!c.locked){
34484                             cb+= markup;
34485                         }else{
34486                             lcb+= markup;
34487                         }
34488                     }
34489                     var alt = [];
34490                     if(stripe && ((rowIndex+1) % 2 == 0)){
34491                         alt.push("x-grid-row-alt")
34492                     }
34493                     if(r.dirty){
34494                         alt.push(  " x-grid-dirty-row");
34495                     }
34496                     rp.cells = lcb;
34497                     if(this.getRowClass){
34498                         alt.push(this.getRowClass(r, rowIndex));
34499                     }
34500                     if (hasListener) {
34501                         rowcfg = {
34502                              
34503                             record: r,
34504                             rowIndex : rowIndex,
34505                             rowClass : ''
34506                         };
34507                         this.grid.fireEvent('rowclass', this, rowcfg);
34508                         alt.push(rowcfg.rowClass);
34509                     }
34510                     rp.alt = alt.join(" ");
34511                     lbuf+= rt.apply(rp);
34512                     rp.cells = cb;
34513                     buf+=  rt.apply(rp);
34514                 }
34515                 return [lbuf, buf];
34516             } :
34517             function(cs, rs, ds, startRow, colCount, stripe){
34518                 var ts = this.templates, ct = ts.cell, rt = ts.row;
34519                 // buffers
34520                 var buf = [], lbuf = [], cb, lcb, c, p = {}, rp = {}, r, rowIndex;
34521                 var hasListener = this.grid.hasListener('rowclass');
34522  
34523                 var rowcfg = {};
34524                 for(var j = 0, len = rs.length; j < len; j++){
34525                     r = rs[j]; cb = []; lcb = []; rowIndex = (j+startRow);
34526                     for(var i = 0; i < colCount; i++){
34527                         c = cs[i];
34528                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
34529                         p.id = c.id;
34530                         p.css = p.attr = "";
34531                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
34532                         if(p.value == undefined || p.value === "") {
34533                             p.value = "&#160;";
34534                         }
34535                         //Roo.log(c);
34536                          if(c.has_editor){
34537                             p.css += ' x-grid-editable-cell';
34538                         }
34539                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
34540                             p.css += ' x-grid-dirty-cell' 
34541                         }
34542                         
34543                         var markup = ct.apply(p);
34544                         if(!c.locked){
34545                             cb[cb.length] = markup;
34546                         }else{
34547                             lcb[lcb.length] = markup;
34548                         }
34549                     }
34550                     var alt = [];
34551                     if(stripe && ((rowIndex+1) % 2 == 0)){
34552                         alt.push( "x-grid-row-alt");
34553                     }
34554                     if(r.dirty){
34555                         alt.push(" x-grid-dirty-row");
34556                     }
34557                     rp.cells = lcb;
34558                     if(this.getRowClass){
34559                         alt.push( this.getRowClass(r, rowIndex));
34560                     }
34561                     if (hasListener) {
34562                         rowcfg = {
34563                              
34564                             record: r,
34565                             rowIndex : rowIndex,
34566                             rowClass : ''
34567                         };
34568                         this.grid.fireEvent('rowclass', this, rowcfg);
34569                         alt.push(rowcfg.rowClass);
34570                     }
34571                     
34572                     rp.alt = alt.join(" ");
34573                     rp.cells = lcb.join("");
34574                     lbuf[lbuf.length] = rt.apply(rp);
34575                     rp.cells = cb.join("");
34576                     buf[buf.length] =  rt.apply(rp);
34577                 }
34578                 return [lbuf.join(""), buf.join("")];
34579             },
34580
34581     renderBody : function(){
34582         var markup = this.renderRows();
34583         var bt = this.templates.body;
34584         return [bt.apply({rows: markup[0]}), bt.apply({rows: markup[1]})];
34585     },
34586
34587     /**
34588      * Refreshes the grid
34589      * @param {Boolean} headersToo
34590      */
34591     refresh : function(headersToo){
34592         this.fireEvent("beforerefresh", this);
34593         this.grid.stopEditing();
34594         var result = this.renderBody();
34595         this.lockedBody.update(result[0]);
34596         this.mainBody.update(result[1]);
34597         if(headersToo === true){
34598             this.updateHeaders();
34599             this.updateColumns();
34600             this.updateSplitters();
34601             this.updateHeaderSortState();
34602         }
34603         this.syncRowHeights();
34604         this.layout();
34605         this.fireEvent("refresh", this);
34606     },
34607
34608     handleColumnMove : function(cm, oldIndex, newIndex){
34609         this.indexMap = null;
34610         var s = this.getScrollState();
34611         this.refresh(true);
34612         this.restoreScroll(s);
34613         this.afterMove(newIndex);
34614     },
34615
34616     afterMove : function(colIndex){
34617         if(this.enableMoveAnim && Roo.enableFx){
34618             this.fly(this.getHeaderCell(colIndex).firstChild).highlight(this.hlColor);
34619         }
34620         // if multisort - fix sortOrder, and reload..
34621         if (this.grid.dataSource.multiSort) {
34622             // the we can call sort again..
34623             var dm = this.grid.dataSource;
34624             var cm = this.grid.colModel;
34625             var so = [];
34626             for(var i = 0; i < cm.config.length; i++ ) {
34627                 
34628                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined')) {
34629                     continue; // dont' bother, it's not in sort list or being set.
34630                 }
34631                 
34632                 so.push(cm.config[i].dataIndex);
34633             };
34634             dm.sortOrder = so;
34635             dm.load(dm.lastOptions);
34636             
34637             
34638         }
34639         
34640     },
34641
34642     updateCell : function(dm, rowIndex, dataIndex){
34643         var colIndex = this.getColumnIndexByDataIndex(dataIndex);
34644         if(typeof colIndex == "undefined"){ // not present in grid
34645             return;
34646         }
34647         var cm = this.grid.colModel;
34648         var cell = this.getCell(rowIndex, colIndex);
34649         var cellText = this.getCellText(rowIndex, colIndex);
34650
34651         var p = {
34652             cellId : "x-grid-cell-" + rowIndex + "-" + colIndex,
34653             id : cm.getColumnId(colIndex),
34654             css: colIndex == cm.getColumnCount()-1 ? "x-grid-col-last" : ""
34655         };
34656         var renderer = cm.getRenderer(colIndex);
34657         var val = renderer(dm.getValueAt(rowIndex, dataIndex), p, rowIndex, colIndex, dm);
34658         if(typeof val == "undefined" || val === "") {
34659             val = "&#160;";
34660         }
34661         cellText.innerHTML = val;
34662         cell.className = this.cellClass + " " + this.idToCssName(p.cellId) + " " + p.css;
34663         this.syncRowHeights(rowIndex, rowIndex);
34664     },
34665
34666     calcColumnWidth : function(colIndex, maxRowsToMeasure){
34667         var maxWidth = 0;
34668         if(this.grid.autoSizeHeaders){
34669             var h = this.getHeaderCellMeasure(colIndex);
34670             maxWidth = Math.max(maxWidth, h.scrollWidth);
34671         }
34672         var tb, index;
34673         if(this.cm.isLocked(colIndex)){
34674             tb = this.getLockedTable();
34675             index = colIndex;
34676         }else{
34677             tb = this.getBodyTable();
34678             index = colIndex - this.cm.getLockedCount();
34679         }
34680         if(tb && tb.rows){
34681             var rows = tb.rows;
34682             var stopIndex = Math.min(maxRowsToMeasure || rows.length, rows.length);
34683             for(var i = 0; i < stopIndex; i++){
34684                 var cell = rows[i].childNodes[index].firstChild;
34685                 maxWidth = Math.max(maxWidth, cell.scrollWidth);
34686             }
34687         }
34688         return maxWidth + /*margin for error in IE*/ 5;
34689     },
34690     /**
34691      * Autofit a column to its content.
34692      * @param {Number} colIndex
34693      * @param {Boolean} forceMinSize true to force the column to go smaller if possible
34694      */
34695      autoSizeColumn : function(colIndex, forceMinSize, suppressEvent){
34696          if(this.cm.isHidden(colIndex)){
34697              return; // can't calc a hidden column
34698          }
34699         if(forceMinSize){
34700             var cid = this.cm.getColumnId(colIndex);
34701             this.css.updateRule(this.colSelector +this.idToCssName( cid), "width", this.grid.minColumnWidth + "px");
34702            if(this.grid.autoSizeHeaders){
34703                this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", this.grid.minColumnWidth + "px");
34704            }
34705         }
34706         var newWidth = this.calcColumnWidth(colIndex);
34707         this.cm.setColumnWidth(colIndex,
34708             Math.max(this.grid.minColumnWidth, newWidth), suppressEvent);
34709         if(!suppressEvent){
34710             this.grid.fireEvent("columnresize", colIndex, newWidth);
34711         }
34712     },
34713
34714     /**
34715      * Autofits all columns to their content and then expands to fit any extra space in the grid
34716      */
34717      autoSizeColumns : function(){
34718         var cm = this.grid.colModel;
34719         var colCount = cm.getColumnCount();
34720         for(var i = 0; i < colCount; i++){
34721             this.autoSizeColumn(i, true, true);
34722         }
34723         if(cm.getTotalWidth() < this.scroller.dom.clientWidth){
34724             this.fitColumns();
34725         }else{
34726             this.updateColumns();
34727             this.layout();
34728         }
34729     },
34730
34731     /**
34732      * Autofits all columns to the grid's width proportionate with their current size
34733      * @param {Boolean} reserveScrollSpace Reserve space for a scrollbar
34734      */
34735     fitColumns : function(reserveScrollSpace){
34736         var cm = this.grid.colModel;
34737         var colCount = cm.getColumnCount();
34738         var cols = [];
34739         var width = 0;
34740         var i, w;
34741         for (i = 0; i < colCount; i++){
34742             if(!cm.isHidden(i) && !cm.isFixed(i)){
34743                 w = cm.getColumnWidth(i);
34744                 cols.push(i);
34745                 cols.push(w);
34746                 width += w;
34747             }
34748         }
34749         var avail = Math.min(this.scroller.dom.clientWidth, this.el.getWidth());
34750         if(reserveScrollSpace){
34751             avail -= 17;
34752         }
34753         var frac = (avail - cm.getTotalWidth())/width;
34754         while (cols.length){
34755             w = cols.pop();
34756             i = cols.pop();
34757             cm.setColumnWidth(i, Math.floor(w + w*frac), true);
34758         }
34759         this.updateColumns();
34760         this.layout();
34761     },
34762
34763     onRowSelect : function(rowIndex){
34764         var row = this.getRowComposite(rowIndex);
34765         row.addClass("x-grid-row-selected");
34766     },
34767
34768     onRowDeselect : function(rowIndex){
34769         var row = this.getRowComposite(rowIndex);
34770         row.removeClass("x-grid-row-selected");
34771     },
34772
34773     onCellSelect : function(row, col){
34774         var cell = this.getCell(row, col);
34775         if(cell){
34776             Roo.fly(cell).addClass("x-grid-cell-selected");
34777         }
34778     },
34779
34780     onCellDeselect : function(row, col){
34781         var cell = this.getCell(row, col);
34782         if(cell){
34783             Roo.fly(cell).removeClass("x-grid-cell-selected");
34784         }
34785     },
34786
34787     updateHeaderSortState : function(){
34788         
34789         // sort state can be single { field: xxx, direction : yyy}
34790         // or   { xxx=>ASC , yyy : DESC ..... }
34791         
34792         var mstate = {};
34793         if (!this.ds.multiSort) { 
34794             var state = this.ds.getSortState();
34795             if(!state){
34796                 return;
34797             }
34798             mstate[state.field] = state.direction;
34799             // FIXME... - this is not used here.. but might be elsewhere..
34800             this.sortState = state;
34801             
34802         } else {
34803             mstate = this.ds.sortToggle;
34804         }
34805         //remove existing sort classes..
34806         
34807         var sc = this.sortClasses;
34808         var hds = this.el.select(this.headerSelector).removeClass(sc);
34809         
34810         for(var f in mstate) {
34811         
34812             var sortColumn = this.cm.findColumnIndex(f);
34813             
34814             if(sortColumn != -1){
34815                 var sortDir = mstate[f];        
34816                 hds.item(sortColumn).addClass(sc[sortDir == "DESC" ? 1 : 0]);
34817             }
34818         }
34819         
34820          
34821         
34822     },
34823
34824
34825     handleHeaderClick : function(g, index,e){
34826         
34827         Roo.log("header click");
34828         
34829         if (Roo.isTouch) {
34830             // touch events on header are handled by context
34831             this.handleHdCtx(g,index,e);
34832             return;
34833         }
34834         
34835         
34836         if(this.headersDisabled){
34837             return;
34838         }
34839         var dm = g.dataSource, cm = g.colModel;
34840         if(!cm.isSortable(index)){
34841             return;
34842         }
34843         g.stopEditing();
34844         
34845         if (dm.multiSort) {
34846             // update the sortOrder
34847             var so = [];
34848             for(var i = 0; i < cm.config.length; i++ ) {
34849                 
34850                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined') && (index != i)) {
34851                     continue; // dont' bother, it's not in sort list or being set.
34852                 }
34853                 
34854                 so.push(cm.config[i].dataIndex);
34855             };
34856             dm.sortOrder = so;
34857         }
34858         
34859         
34860         dm.sort(cm.getDataIndex(index));
34861     },
34862
34863
34864     destroy : function(){
34865         if(this.colMenu){
34866             this.colMenu.removeAll();
34867             Roo.menu.MenuMgr.unregister(this.colMenu);
34868             this.colMenu.getEl().remove();
34869             delete this.colMenu;
34870         }
34871         if(this.hmenu){
34872             this.hmenu.removeAll();
34873             Roo.menu.MenuMgr.unregister(this.hmenu);
34874             this.hmenu.getEl().remove();
34875             delete this.hmenu;
34876         }
34877         if(this.grid.enableColumnMove){
34878             var dds = Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
34879             if(dds){
34880                 for(var dd in dds){
34881                     if(!dds[dd].config.isTarget && dds[dd].dragElId){
34882                         var elid = dds[dd].dragElId;
34883                         dds[dd].unreg();
34884                         Roo.get(elid).remove();
34885                     } else if(dds[dd].config.isTarget){
34886                         dds[dd].proxyTop.remove();
34887                         dds[dd].proxyBottom.remove();
34888                         dds[dd].unreg();
34889                     }
34890                     if(Roo.dd.DDM.locationCache[dd]){
34891                         delete Roo.dd.DDM.locationCache[dd];
34892                     }
34893                 }
34894                 delete Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
34895             }
34896         }
34897         Roo.util.CSS.removeStyleSheet(this.idToCssName(this.grid.id) + '-cssrules');
34898         this.bind(null, null);
34899         Roo.EventManager.removeResizeListener(this.onWindowResize, this);
34900     },
34901
34902     handleLockChange : function(){
34903         this.refresh(true);
34904     },
34905
34906     onDenyColumnLock : function(){
34907
34908     },
34909
34910     onDenyColumnHide : function(){
34911
34912     },
34913
34914     handleHdMenuClick : function(item){
34915         var index = this.hdCtxIndex;
34916         var cm = this.cm, ds = this.ds;
34917         switch(item.id){
34918             case "asc":
34919                 ds.sort(cm.getDataIndex(index), "ASC");
34920                 break;
34921             case "desc":
34922                 ds.sort(cm.getDataIndex(index), "DESC");
34923                 break;
34924             case "lock":
34925                 var lc = cm.getLockedCount();
34926                 if(cm.getColumnCount(true) <= lc+1){
34927                     this.onDenyColumnLock();
34928                     return;
34929                 }
34930                 if(lc != index){
34931                     cm.setLocked(index, true, true);
34932                     cm.moveColumn(index, lc);
34933                     this.grid.fireEvent("columnmove", index, lc);
34934                 }else{
34935                     cm.setLocked(index, true);
34936                 }
34937             break;
34938             case "unlock":
34939                 var lc = cm.getLockedCount();
34940                 if((lc-1) != index){
34941                     cm.setLocked(index, false, true);
34942                     cm.moveColumn(index, lc-1);
34943                     this.grid.fireEvent("columnmove", index, lc-1);
34944                 }else{
34945                     cm.setLocked(index, false);
34946                 }
34947             break;
34948             case 'wider': // used to expand cols on touch..
34949             case 'narrow':
34950                 var cw = cm.getColumnWidth(index);
34951                 cw += (item.id == 'wider' ? 1 : -1) * 50;
34952                 cw = Math.max(0, cw);
34953                 cw = Math.min(cw,4000);
34954                 cm.setColumnWidth(index, cw);
34955                 break;
34956                 
34957             default:
34958                 index = cm.getIndexById(item.id.substr(4));
34959                 if(index != -1){
34960                     if(item.checked && cm.getColumnCount(true) <= 1){
34961                         this.onDenyColumnHide();
34962                         return false;
34963                     }
34964                     cm.setHidden(index, item.checked);
34965                 }
34966         }
34967         return true;
34968     },
34969
34970     beforeColMenuShow : function(){
34971         var cm = this.cm,  colCount = cm.getColumnCount();
34972         this.colMenu.removeAll();
34973         for(var i = 0; i < colCount; i++){
34974             this.colMenu.add(new Roo.menu.CheckItem({
34975                 id: "col-"+cm.getColumnId(i),
34976                 text: cm.getColumnHeader(i),
34977                 checked: !cm.isHidden(i),
34978                 hideOnClick:false
34979             }));
34980         }
34981     },
34982
34983     handleHdCtx : function(g, index, e){
34984         e.stopEvent();
34985         var hd = this.getHeaderCell(index);
34986         this.hdCtxIndex = index;
34987         var ms = this.hmenu.items, cm = this.cm;
34988         ms.get("asc").setDisabled(!cm.isSortable(index));
34989         ms.get("desc").setDisabled(!cm.isSortable(index));
34990         if(this.grid.enableColLock !== false){
34991             ms.get("lock").setDisabled(cm.isLocked(index));
34992             ms.get("unlock").setDisabled(!cm.isLocked(index));
34993         }
34994         this.hmenu.show(hd, "tl-bl");
34995     },
34996
34997     handleHdOver : function(e){
34998         var hd = this.findHeaderCell(e.getTarget());
34999         if(hd && !this.headersDisabled){
35000             if(this.grid.colModel.isSortable(this.getCellIndex(hd))){
35001                this.fly(hd).addClass("x-grid-hd-over");
35002             }
35003         }
35004     },
35005
35006     handleHdOut : function(e){
35007         var hd = this.findHeaderCell(e.getTarget());
35008         if(hd){
35009             this.fly(hd).removeClass("x-grid-hd-over");
35010         }
35011     },
35012
35013     handleSplitDblClick : function(e, t){
35014         var i = this.getCellIndex(t);
35015         if(this.grid.enableColumnResize !== false && this.cm.isResizable(i) && !this.cm.isFixed(i)){
35016             this.autoSizeColumn(i, true);
35017             this.layout();
35018         }
35019     },
35020
35021     render : function(){
35022
35023         var cm = this.cm;
35024         var colCount = cm.getColumnCount();
35025
35026         if(this.grid.monitorWindowResize === true){
35027             Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
35028         }
35029         var header = this.renderHeaders();
35030         var body = this.templates.body.apply({rows:""});
35031         var html = this.templates.master.apply({
35032             lockedBody: body,
35033             body: body,
35034             lockedHeader: header[0],
35035             header: header[1]
35036         });
35037
35038         //this.updateColumns();
35039
35040         this.grid.getGridEl().dom.innerHTML = html;
35041
35042         this.initElements();
35043         
35044         // a kludge to fix the random scolling effect in webkit
35045         this.el.on("scroll", function() {
35046             this.el.dom.scrollTop=0; // hopefully not recursive..
35047         },this);
35048
35049         this.scroller.on("scroll", this.handleScroll, this);
35050         this.lockedBody.on("mousewheel", this.handleWheel, this);
35051         this.mainBody.on("mousewheel", this.handleWheel, this);
35052
35053         this.mainHd.on("mouseover", this.handleHdOver, this);
35054         this.mainHd.on("mouseout", this.handleHdOut, this);
35055         this.mainHd.on("dblclick", this.handleSplitDblClick, this,
35056                 {delegate: "."+this.splitClass});
35057
35058         this.lockedHd.on("mouseover", this.handleHdOver, this);
35059         this.lockedHd.on("mouseout", this.handleHdOut, this);
35060         this.lockedHd.on("dblclick", this.handleSplitDblClick, this,
35061                 {delegate: "."+this.splitClass});
35062
35063         if(this.grid.enableColumnResize !== false && Roo.grid.SplitDragZone){
35064             new Roo.grid.SplitDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
35065         }
35066
35067         this.updateSplitters();
35068
35069         if(this.grid.enableColumnMove && Roo.grid.HeaderDragZone){
35070             new Roo.grid.HeaderDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
35071             new Roo.grid.HeaderDropZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
35072         }
35073
35074         if(this.grid.enableCtxMenu !== false && Roo.menu.Menu){
35075             this.hmenu = new Roo.menu.Menu({id: this.grid.id + "-hctx"});
35076             this.hmenu.add(
35077                 {id:"asc", text: this.sortAscText, cls: "xg-hmenu-sort-asc"},
35078                 {id:"desc", text: this.sortDescText, cls: "xg-hmenu-sort-desc"}
35079             );
35080             if(this.grid.enableColLock !== false){
35081                 this.hmenu.add('-',
35082                     {id:"lock", text: this.lockText, cls: "xg-hmenu-lock"},
35083                     {id:"unlock", text: this.unlockText, cls: "xg-hmenu-unlock"}
35084                 );
35085             }
35086             if (Roo.isTouch) {
35087                  this.hmenu.add('-',
35088                     {id:"wider", text: this.columnsWiderText},
35089                     {id:"narrow", text: this.columnsNarrowText }
35090                 );
35091                 
35092                  
35093             }
35094             
35095             if(this.grid.enableColumnHide !== false){
35096
35097                 this.colMenu = new Roo.menu.Menu({id:this.grid.id + "-hcols-menu"});
35098                 this.colMenu.on("beforeshow", this.beforeColMenuShow, this);
35099                 this.colMenu.on("itemclick", this.handleHdMenuClick, this);
35100
35101                 this.hmenu.add('-',
35102                     {id:"columns", text: this.columnsText, menu: this.colMenu}
35103                 );
35104             }
35105             this.hmenu.on("itemclick", this.handleHdMenuClick, this);
35106
35107             this.grid.on("headercontextmenu", this.handleHdCtx, this);
35108         }
35109
35110         if((this.grid.enableDragDrop || this.grid.enableDrag) && Roo.grid.GridDragZone){
35111             this.dd = new Roo.grid.GridDragZone(this.grid, {
35112                 ddGroup : this.grid.ddGroup || 'GridDD'
35113             });
35114             
35115         }
35116
35117         /*
35118         for(var i = 0; i < colCount; i++){
35119             if(cm.isHidden(i)){
35120                 this.hideColumn(i);
35121             }
35122             if(cm.config[i].align){
35123                 this.css.updateRule(this.colSelector + i, "textAlign", cm.config[i].align);
35124                 this.css.updateRule(this.hdSelector + i, "textAlign", cm.config[i].align);
35125             }
35126         }*/
35127         
35128         this.updateHeaderSortState();
35129
35130         this.beforeInitialResize();
35131         this.layout(true);
35132
35133         // two part rendering gives faster view to the user
35134         this.renderPhase2.defer(1, this);
35135     },
35136
35137     renderPhase2 : function(){
35138         // render the rows now
35139         this.refresh();
35140         if(this.grid.autoSizeColumns){
35141             this.autoSizeColumns();
35142         }
35143     },
35144
35145     beforeInitialResize : function(){
35146
35147     },
35148
35149     onColumnSplitterMoved : function(i, w){
35150         this.userResized = true;
35151         var cm = this.grid.colModel;
35152         cm.setColumnWidth(i, w, true);
35153         var cid = cm.getColumnId(i);
35154         this.css.updateRule(this.colSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
35155         this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
35156         this.updateSplitters();
35157         this.layout();
35158         this.grid.fireEvent("columnresize", i, w);
35159     },
35160
35161     syncRowHeights : function(startIndex, endIndex){
35162         if(this.grid.enableRowHeightSync === true && this.cm.getLockedCount() > 0){
35163             startIndex = startIndex || 0;
35164             var mrows = this.getBodyTable().rows;
35165             var lrows = this.getLockedTable().rows;
35166             var len = mrows.length-1;
35167             endIndex = Math.min(endIndex || len, len);
35168             for(var i = startIndex; i <= endIndex; i++){
35169                 var m = mrows[i], l = lrows[i];
35170                 var h = Math.max(m.offsetHeight, l.offsetHeight);
35171                 m.style.height = l.style.height = h + "px";
35172             }
35173         }
35174     },
35175
35176     layout : function(initialRender, is2ndPass){
35177         var g = this.grid;
35178         var auto = g.autoHeight;
35179         var scrollOffset = 16;
35180         var c = g.getGridEl(), cm = this.cm,
35181                 expandCol = g.autoExpandColumn,
35182                 gv = this;
35183         //c.beginMeasure();
35184
35185         if(!c.dom.offsetWidth){ // display:none?
35186             if(initialRender){
35187                 this.lockedWrap.show();
35188                 this.mainWrap.show();
35189             }
35190             return;
35191         }
35192
35193         var hasLock = this.cm.isLocked(0);
35194
35195         var tbh = this.headerPanel.getHeight();
35196         var bbh = this.footerPanel.getHeight();
35197
35198         if(auto){
35199             var ch = this.getBodyTable().offsetHeight + tbh + bbh + this.mainHd.getHeight();
35200             var newHeight = ch + c.getBorderWidth("tb");
35201             if(g.maxHeight){
35202                 newHeight = Math.min(g.maxHeight, newHeight);
35203             }
35204             c.setHeight(newHeight);
35205         }
35206
35207         if(g.autoWidth){
35208             c.setWidth(cm.getTotalWidth()+c.getBorderWidth('lr'));
35209         }
35210
35211         var s = this.scroller;
35212
35213         var csize = c.getSize(true);
35214
35215         this.el.setSize(csize.width, csize.height);
35216
35217         this.headerPanel.setWidth(csize.width);
35218         this.footerPanel.setWidth(csize.width);
35219
35220         var hdHeight = this.mainHd.getHeight();
35221         var vw = csize.width;
35222         var vh = csize.height - (tbh + bbh);
35223
35224         s.setSize(vw, vh);
35225
35226         var bt = this.getBodyTable();
35227         
35228         if(cm.getLockedCount() == cm.config.length){
35229             bt = this.getLockedTable();
35230         }
35231         
35232         var ltWidth = hasLock ?
35233                       Math.max(this.getLockedTable().offsetWidth, this.lockedHd.dom.firstChild.offsetWidth) : 0;
35234
35235         var scrollHeight = bt.offsetHeight;
35236         var scrollWidth = ltWidth + bt.offsetWidth;
35237         var vscroll = false, hscroll = false;
35238
35239         this.scrollSizer.setSize(scrollWidth, scrollHeight+hdHeight);
35240
35241         var lw = this.lockedWrap, mw = this.mainWrap;
35242         var lb = this.lockedBody, mb = this.mainBody;
35243
35244         setTimeout(function(){
35245             var t = s.dom.offsetTop;
35246             var w = s.dom.clientWidth,
35247                 h = s.dom.clientHeight;
35248
35249             lw.setTop(t);
35250             lw.setSize(ltWidth, h);
35251
35252             mw.setLeftTop(ltWidth, t);
35253             mw.setSize(w-ltWidth, h);
35254
35255             lb.setHeight(h-hdHeight);
35256             mb.setHeight(h-hdHeight);
35257
35258             if(is2ndPass !== true && !gv.userResized && expandCol){
35259                 // high speed resize without full column calculation
35260                 
35261                 var ci = cm.getIndexById(expandCol);
35262                 if (ci < 0) {
35263                     ci = cm.findColumnIndex(expandCol);
35264                 }
35265                 ci = Math.max(0, ci); // make sure it's got at least the first col.
35266                 var expandId = cm.getColumnId(ci);
35267                 var  tw = cm.getTotalWidth(false);
35268                 var currentWidth = cm.getColumnWidth(ci);
35269                 var cw = Math.min(Math.max(((w-tw)+currentWidth-2)-/*scrollbar*/(w <= s.dom.offsetWidth ? 0 : 18), g.autoExpandMin), g.autoExpandMax);
35270                 if(currentWidth != cw){
35271                     cm.setColumnWidth(ci, cw, true);
35272                     gv.css.updateRule(gv.colSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
35273                     gv.css.updateRule(gv.hdSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
35274                     gv.updateSplitters();
35275                     gv.layout(false, true);
35276                 }
35277             }
35278
35279             if(initialRender){
35280                 lw.show();
35281                 mw.show();
35282             }
35283             //c.endMeasure();
35284         }, 10);
35285     },
35286
35287     onWindowResize : function(){
35288         if(!this.grid.monitorWindowResize || this.grid.autoHeight){
35289             return;
35290         }
35291         this.layout();
35292     },
35293
35294     appendFooter : function(parentEl){
35295         return null;
35296     },
35297
35298     sortAscText : "Sort Ascending",
35299     sortDescText : "Sort Descending",
35300     lockText : "Lock Column",
35301     unlockText : "Unlock Column",
35302     columnsText : "Columns",
35303  
35304     columnsWiderText : "Wider",
35305     columnsNarrowText : "Thinner"
35306 });
35307
35308
35309 Roo.grid.GridView.ColumnDragZone = function(grid, hd){
35310     Roo.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
35311     this.proxy.el.addClass('x-grid3-col-dd');
35312 };
35313
35314 Roo.extend(Roo.grid.GridView.ColumnDragZone, Roo.grid.HeaderDragZone, {
35315     handleMouseDown : function(e){
35316
35317     },
35318
35319     callHandleMouseDown : function(e){
35320         Roo.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
35321     }
35322 });
35323 /*
35324  * Based on:
35325  * Ext JS Library 1.1.1
35326  * Copyright(c) 2006-2007, Ext JS, LLC.
35327  *
35328  * Originally Released Under LGPL - original licence link has changed is not relivant.
35329  *
35330  * Fork - LGPL
35331  * <script type="text/javascript">
35332  */
35333  
35334 // private
35335 // This is a support class used internally by the Grid components
35336 Roo.grid.SplitDragZone = function(grid, hd, hd2){
35337     this.grid = grid;
35338     this.view = grid.getView();
35339     this.proxy = this.view.resizeProxy;
35340     Roo.grid.SplitDragZone.superclass.constructor.call(this, hd,
35341         "gridSplitters" + this.grid.getGridEl().id, {
35342         dragElId : Roo.id(this.proxy.dom), resizeFrame:false
35343     });
35344     this.setHandleElId(Roo.id(hd));
35345     this.setOuterHandleElId(Roo.id(hd2));
35346     this.scroll = false;
35347 };
35348 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
35349     fly: Roo.Element.fly,
35350
35351     b4StartDrag : function(x, y){
35352         this.view.headersDisabled = true;
35353         this.proxy.setHeight(this.view.mainWrap.getHeight());
35354         var w = this.cm.getColumnWidth(this.cellIndex);
35355         var minw = Math.max(w-this.grid.minColumnWidth, 0);
35356         this.resetConstraints();
35357         this.setXConstraint(minw, 1000);
35358         this.setYConstraint(0, 0);
35359         this.minX = x - minw;
35360         this.maxX = x + 1000;
35361         this.startPos = x;
35362         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
35363     },
35364
35365
35366     handleMouseDown : function(e){
35367         ev = Roo.EventObject.setEvent(e);
35368         var t = this.fly(ev.getTarget());
35369         if(t.hasClass("x-grid-split")){
35370             this.cellIndex = this.view.getCellIndex(t.dom);
35371             this.split = t.dom;
35372             this.cm = this.grid.colModel;
35373             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
35374                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
35375             }
35376         }
35377     },
35378
35379     endDrag : function(e){
35380         this.view.headersDisabled = false;
35381         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
35382         var diff = endX - this.startPos;
35383         this.view.onColumnSplitterMoved(this.cellIndex, this.cm.getColumnWidth(this.cellIndex)+diff);
35384     },
35385
35386     autoOffset : function(){
35387         this.setDelta(0,0);
35388     }
35389 });/*
35390  * Based on:
35391  * Ext JS Library 1.1.1
35392  * Copyright(c) 2006-2007, Ext JS, LLC.
35393  *
35394  * Originally Released Under LGPL - original licence link has changed is not relivant.
35395  *
35396  * Fork - LGPL
35397  * <script type="text/javascript">
35398  */
35399  
35400 // private
35401 // This is a support class used internally by the Grid components
35402 Roo.grid.GridDragZone = function(grid, config){
35403     this.view = grid.getView();
35404     Roo.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, config);
35405     if(this.view.lockedBody){
35406         this.setHandleElId(Roo.id(this.view.mainBody.dom));
35407         this.setOuterHandleElId(Roo.id(this.view.lockedBody.dom));
35408     }
35409     this.scroll = false;
35410     this.grid = grid;
35411     this.ddel = document.createElement('div');
35412     this.ddel.className = 'x-grid-dd-wrap';
35413 };
35414
35415 Roo.extend(Roo.grid.GridDragZone, Roo.dd.DragZone, {
35416     ddGroup : "GridDD",
35417
35418     getDragData : function(e){
35419         var t = Roo.lib.Event.getTarget(e);
35420         var rowIndex = this.view.findRowIndex(t);
35421         var sm = this.grid.selModel;
35422             
35423         //Roo.log(rowIndex);
35424         
35425         if (sm.getSelectedCell) {
35426             // cell selection..
35427             if (!sm.getSelectedCell()) {
35428                 return false;
35429             }
35430             if (rowIndex != sm.getSelectedCell()[0]) {
35431                 return false;
35432             }
35433         
35434         }
35435         
35436         if(rowIndex !== false){
35437             
35438             // if editorgrid.. 
35439             
35440             
35441             //Roo.log([ sm.getSelectedCell() ? sm.getSelectedCell()[0] : 'NO' , rowIndex ]);
35442                
35443             //if(!sm.isSelected(rowIndex) || e.hasModifier()){
35444               //  
35445             //}
35446             if (e.hasModifier()){
35447                 sm.handleMouseDown(e, t); // non modifier buttons are handled by row select.
35448             }
35449             
35450             Roo.log("getDragData");
35451             
35452             return {
35453                 grid: this.grid,
35454                 ddel: this.ddel,
35455                 rowIndex: rowIndex,
35456                 selections:sm.getSelections ? sm.getSelections() : (
35457                     sm.getSelectedCell() ? [ this.grid.ds.getAt(sm.getSelectedCell()[0]) ] : []
35458                 )
35459             };
35460         }
35461         return false;
35462     },
35463
35464     onInitDrag : function(e){
35465         var data = this.dragData;
35466         this.ddel.innerHTML = this.grid.getDragDropText();
35467         this.proxy.update(this.ddel);
35468         // fire start drag?
35469     },
35470
35471     afterRepair : function(){
35472         this.dragging = false;
35473     },
35474
35475     getRepairXY : function(e, data){
35476         return false;
35477     },
35478
35479     onEndDrag : function(data, e){
35480         // fire end drag?
35481     },
35482
35483     onValidDrop : function(dd, e, id){
35484         // fire drag drop?
35485         this.hideProxy();
35486     },
35487
35488     beforeInvalidDrop : function(e, id){
35489
35490     }
35491 });/*
35492  * Based on:
35493  * Ext JS Library 1.1.1
35494  * Copyright(c) 2006-2007, Ext JS, LLC.
35495  *
35496  * Originally Released Under LGPL - original licence link has changed is not relivant.
35497  *
35498  * Fork - LGPL
35499  * <script type="text/javascript">
35500  */
35501  
35502
35503 /**
35504  * @class Roo.grid.ColumnModel
35505  * @extends Roo.util.Observable
35506  * This is the default implementation of a ColumnModel used by the Grid. It defines
35507  * the columns in the grid.
35508  * <br>Usage:<br>
35509  <pre><code>
35510  var colModel = new Roo.grid.ColumnModel([
35511         {header: "Ticker", width: 60, sortable: true, locked: true},
35512         {header: "Company Name", width: 150, sortable: true},
35513         {header: "Market Cap.", width: 100, sortable: true},
35514         {header: "$ Sales", width: 100, sortable: true, renderer: money},
35515         {header: "Employees", width: 100, sortable: true, resizable: false}
35516  ]);
35517  </code></pre>
35518  * <p>
35519  
35520  * The config options listed for this class are options which may appear in each
35521  * individual column definition.
35522  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
35523  * @constructor
35524  * @param {Object} config An Array of column config objects. See this class's
35525  * config objects for details.
35526 */
35527 Roo.grid.ColumnModel = function(config){
35528         /**
35529      * The config passed into the constructor
35530      */
35531     this.config = config;
35532     this.lookup = {};
35533
35534     // if no id, create one
35535     // if the column does not have a dataIndex mapping,
35536     // map it to the order it is in the config
35537     for(var i = 0, len = config.length; i < len; i++){
35538         var c = config[i];
35539         if(typeof c.dataIndex == "undefined"){
35540             c.dataIndex = i;
35541         }
35542         if(typeof c.renderer == "string"){
35543             c.renderer = Roo.util.Format[c.renderer];
35544         }
35545         if(typeof c.id == "undefined"){
35546             c.id = Roo.id();
35547         }
35548         if(c.editor && c.editor.xtype){
35549             c.editor  = Roo.factory(c.editor, Roo.grid);
35550         }
35551         if(c.editor && c.editor.isFormField){
35552             c.editor = new Roo.grid.GridEditor(c.editor);
35553         }
35554         this.lookup[c.id] = c;
35555     }
35556
35557     /**
35558      * The width of columns which have no width specified (defaults to 100)
35559      * @type Number
35560      */
35561     this.defaultWidth = 100;
35562
35563     /**
35564      * Default sortable of columns which have no sortable specified (defaults to false)
35565      * @type Boolean
35566      */
35567     this.defaultSortable = false;
35568
35569     this.addEvents({
35570         /**
35571              * @event widthchange
35572              * Fires when the width of a column changes.
35573              * @param {ColumnModel} this
35574              * @param {Number} columnIndex The column index
35575              * @param {Number} newWidth The new width
35576              */
35577             "widthchange": true,
35578         /**
35579              * @event headerchange
35580              * Fires when the text of a header changes.
35581              * @param {ColumnModel} this
35582              * @param {Number} columnIndex The column index
35583              * @param {Number} newText The new header text
35584              */
35585             "headerchange": true,
35586         /**
35587              * @event hiddenchange
35588              * Fires when a column is hidden or "unhidden".
35589              * @param {ColumnModel} this
35590              * @param {Number} columnIndex The column index
35591              * @param {Boolean} hidden true if hidden, false otherwise
35592              */
35593             "hiddenchange": true,
35594             /**
35595          * @event columnmoved
35596          * Fires when a column is moved.
35597          * @param {ColumnModel} this
35598          * @param {Number} oldIndex
35599          * @param {Number} newIndex
35600          */
35601         "columnmoved" : true,
35602         /**
35603          * @event columlockchange
35604          * Fires when a column's locked state is changed
35605          * @param {ColumnModel} this
35606          * @param {Number} colIndex
35607          * @param {Boolean} locked true if locked
35608          */
35609         "columnlockchange" : true
35610     });
35611     Roo.grid.ColumnModel.superclass.constructor.call(this);
35612 };
35613 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
35614     /**
35615      * @cfg {String} header The header text to display in the Grid view.
35616      */
35617     /**
35618      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
35619      * {@link Roo.data.Record} definition from which to draw the column's value. If not
35620      * specified, the column's index is used as an index into the Record's data Array.
35621      */
35622     /**
35623      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
35624      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
35625      */
35626     /**
35627      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
35628      * Defaults to the value of the {@link #defaultSortable} property.
35629      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
35630      */
35631     /**
35632      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
35633      */
35634     /**
35635      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
35636      */
35637     /**
35638      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
35639      */
35640     /**
35641      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
35642      */
35643     /**
35644      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
35645      * given the cell's data value. See {@link #setRenderer}. If not specified, the
35646      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
35647      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
35648      */
35649        /**
35650      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
35651      */
35652     /**
35653      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
35654      */
35655     /**
35656      * @cfg {String} valign (Optional) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined.
35657      */
35658     /**
35659      * @cfg {String} cursor (Optional)
35660      */
35661     /**
35662      * @cfg {String} tooltip (Optional)
35663      */
35664     /**
35665      * @cfg {Number} xs (Optional)
35666      */
35667     /**
35668      * @cfg {Number} sm (Optional)
35669      */
35670     /**
35671      * @cfg {Number} md (Optional)
35672      */
35673     /**
35674      * @cfg {Number} lg (Optional)
35675      */
35676     /**
35677      * Returns the id of the column at the specified index.
35678      * @param {Number} index The column index
35679      * @return {String} the id
35680      */
35681     getColumnId : function(index){
35682         return this.config[index].id;
35683     },
35684
35685     /**
35686      * Returns the column for a specified id.
35687      * @param {String} id The column id
35688      * @return {Object} the column
35689      */
35690     getColumnById : function(id){
35691         return this.lookup[id];
35692     },
35693
35694     
35695     /**
35696      * Returns the column for a specified dataIndex.
35697      * @param {String} dataIndex The column dataIndex
35698      * @return {Object|Boolean} the column or false if not found
35699      */
35700     getColumnByDataIndex: function(dataIndex){
35701         var index = this.findColumnIndex(dataIndex);
35702         return index > -1 ? this.config[index] : false;
35703     },
35704     
35705     /**
35706      * Returns the index for a specified column id.
35707      * @param {String} id The column id
35708      * @return {Number} the index, or -1 if not found
35709      */
35710     getIndexById : function(id){
35711         for(var i = 0, len = this.config.length; i < len; i++){
35712             if(this.config[i].id == id){
35713                 return i;
35714             }
35715         }
35716         return -1;
35717     },
35718     
35719     /**
35720      * Returns the index for a specified column dataIndex.
35721      * @param {String} dataIndex The column dataIndex
35722      * @return {Number} the index, or -1 if not found
35723      */
35724     
35725     findColumnIndex : function(dataIndex){
35726         for(var i = 0, len = this.config.length; i < len; i++){
35727             if(this.config[i].dataIndex == dataIndex){
35728                 return i;
35729             }
35730         }
35731         return -1;
35732     },
35733     
35734     
35735     moveColumn : function(oldIndex, newIndex){
35736         var c = this.config[oldIndex];
35737         this.config.splice(oldIndex, 1);
35738         this.config.splice(newIndex, 0, c);
35739         this.dataMap = null;
35740         this.fireEvent("columnmoved", this, oldIndex, newIndex);
35741     },
35742
35743     isLocked : function(colIndex){
35744         return this.config[colIndex].locked === true;
35745     },
35746
35747     setLocked : function(colIndex, value, suppressEvent){
35748         if(this.isLocked(colIndex) == value){
35749             return;
35750         }
35751         this.config[colIndex].locked = value;
35752         if(!suppressEvent){
35753             this.fireEvent("columnlockchange", this, colIndex, value);
35754         }
35755     },
35756
35757     getTotalLockedWidth : function(){
35758         var totalWidth = 0;
35759         for(var i = 0; i < this.config.length; i++){
35760             if(this.isLocked(i) && !this.isHidden(i)){
35761                 this.totalWidth += this.getColumnWidth(i);
35762             }
35763         }
35764         return totalWidth;
35765     },
35766
35767     getLockedCount : function(){
35768         for(var i = 0, len = this.config.length; i < len; i++){
35769             if(!this.isLocked(i)){
35770                 return i;
35771             }
35772         }
35773         
35774         return this.config.length;
35775     },
35776
35777     /**
35778      * Returns the number of columns.
35779      * @return {Number}
35780      */
35781     getColumnCount : function(visibleOnly){
35782         if(visibleOnly === true){
35783             var c = 0;
35784             for(var i = 0, len = this.config.length; i < len; i++){
35785                 if(!this.isHidden(i)){
35786                     c++;
35787                 }
35788             }
35789             return c;
35790         }
35791         return this.config.length;
35792     },
35793
35794     /**
35795      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
35796      * @param {Function} fn
35797      * @param {Object} scope (optional)
35798      * @return {Array} result
35799      */
35800     getColumnsBy : function(fn, scope){
35801         var r = [];
35802         for(var i = 0, len = this.config.length; i < len; i++){
35803             var c = this.config[i];
35804             if(fn.call(scope||this, c, i) === true){
35805                 r[r.length] = c;
35806             }
35807         }
35808         return r;
35809     },
35810
35811     /**
35812      * Returns true if the specified column is sortable.
35813      * @param {Number} col The column index
35814      * @return {Boolean}
35815      */
35816     isSortable : function(col){
35817         if(typeof this.config[col].sortable == "undefined"){
35818             return this.defaultSortable;
35819         }
35820         return this.config[col].sortable;
35821     },
35822
35823     /**
35824      * Returns the rendering (formatting) function defined for the column.
35825      * @param {Number} col The column index.
35826      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
35827      */
35828     getRenderer : function(col){
35829         if(!this.config[col].renderer){
35830             return Roo.grid.ColumnModel.defaultRenderer;
35831         }
35832         return this.config[col].renderer;
35833     },
35834
35835     /**
35836      * Sets the rendering (formatting) function for a column.
35837      * @param {Number} col The column index
35838      * @param {Function} fn The function to use to process the cell's raw data
35839      * to return HTML markup for the grid view. The render function is called with
35840      * the following parameters:<ul>
35841      * <li>Data value.</li>
35842      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
35843      * <li>css A CSS style string to apply to the table cell.</li>
35844      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
35845      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
35846      * <li>Row index</li>
35847      * <li>Column index</li>
35848      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
35849      */
35850     setRenderer : function(col, fn){
35851         this.config[col].renderer = fn;
35852     },
35853
35854     /**
35855      * Returns the width for the specified column.
35856      * @param {Number} col The column index
35857      * @return {Number}
35858      */
35859     getColumnWidth : function(col){
35860         return this.config[col].width * 1 || this.defaultWidth;
35861     },
35862
35863     /**
35864      * Sets the width for a column.
35865      * @param {Number} col The column index
35866      * @param {Number} width The new width
35867      */
35868     setColumnWidth : function(col, width, suppressEvent){
35869         this.config[col].width = width;
35870         this.totalWidth = null;
35871         if(!suppressEvent){
35872              this.fireEvent("widthchange", this, col, width);
35873         }
35874     },
35875
35876     /**
35877      * Returns the total width of all columns.
35878      * @param {Boolean} includeHidden True to include hidden column widths
35879      * @return {Number}
35880      */
35881     getTotalWidth : function(includeHidden){
35882         if(!this.totalWidth){
35883             this.totalWidth = 0;
35884             for(var i = 0, len = this.config.length; i < len; i++){
35885                 if(includeHidden || !this.isHidden(i)){
35886                     this.totalWidth += this.getColumnWidth(i);
35887                 }
35888             }
35889         }
35890         return this.totalWidth;
35891     },
35892
35893     /**
35894      * Returns the header for the specified column.
35895      * @param {Number} col The column index
35896      * @return {String}
35897      */
35898     getColumnHeader : function(col){
35899         return this.config[col].header;
35900     },
35901
35902     /**
35903      * Sets the header for a column.
35904      * @param {Number} col The column index
35905      * @param {String} header The new header
35906      */
35907     setColumnHeader : function(col, header){
35908         this.config[col].header = header;
35909         this.fireEvent("headerchange", this, col, header);
35910     },
35911
35912     /**
35913      * Returns the tooltip for the specified column.
35914      * @param {Number} col The column index
35915      * @return {String}
35916      */
35917     getColumnTooltip : function(col){
35918             return this.config[col].tooltip;
35919     },
35920     /**
35921      * Sets the tooltip for a column.
35922      * @param {Number} col The column index
35923      * @param {String} tooltip The new tooltip
35924      */
35925     setColumnTooltip : function(col, tooltip){
35926             this.config[col].tooltip = tooltip;
35927     },
35928
35929     /**
35930      * Returns the dataIndex for the specified column.
35931      * @param {Number} col The column index
35932      * @return {Number}
35933      */
35934     getDataIndex : function(col){
35935         return this.config[col].dataIndex;
35936     },
35937
35938     /**
35939      * Sets the dataIndex for a column.
35940      * @param {Number} col The column index
35941      * @param {Number} dataIndex The new dataIndex
35942      */
35943     setDataIndex : function(col, dataIndex){
35944         this.config[col].dataIndex = dataIndex;
35945     },
35946
35947     
35948     
35949     /**
35950      * Returns true if the cell is editable.
35951      * @param {Number} colIndex The column index
35952      * @param {Number} rowIndex The row index - this is nto actually used..?
35953      * @return {Boolean}
35954      */
35955     isCellEditable : function(colIndex, rowIndex){
35956         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
35957     },
35958
35959     /**
35960      * Returns the editor defined for the cell/column.
35961      * return false or null to disable editing.
35962      * @param {Number} colIndex The column index
35963      * @param {Number} rowIndex The row index
35964      * @return {Object}
35965      */
35966     getCellEditor : function(colIndex, rowIndex){
35967         return this.config[colIndex].editor;
35968     },
35969
35970     /**
35971      * Sets if a column is editable.
35972      * @param {Number} col The column index
35973      * @param {Boolean} editable True if the column is editable
35974      */
35975     setEditable : function(col, editable){
35976         this.config[col].editable = editable;
35977     },
35978
35979
35980     /**
35981      * Returns true if the column is hidden.
35982      * @param {Number} colIndex The column index
35983      * @return {Boolean}
35984      */
35985     isHidden : function(colIndex){
35986         return this.config[colIndex].hidden;
35987     },
35988
35989
35990     /**
35991      * Returns true if the column width cannot be changed
35992      */
35993     isFixed : function(colIndex){
35994         return this.config[colIndex].fixed;
35995     },
35996
35997     /**
35998      * Returns true if the column can be resized
35999      * @return {Boolean}
36000      */
36001     isResizable : function(colIndex){
36002         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
36003     },
36004     /**
36005      * Sets if a column is hidden.
36006      * @param {Number} colIndex The column index
36007      * @param {Boolean} hidden True if the column is hidden
36008      */
36009     setHidden : function(colIndex, hidden){
36010         this.config[colIndex].hidden = hidden;
36011         this.totalWidth = null;
36012         this.fireEvent("hiddenchange", this, colIndex, hidden);
36013     },
36014
36015     /**
36016      * Sets the editor for a column.
36017      * @param {Number} col The column index
36018      * @param {Object} editor The editor object
36019      */
36020     setEditor : function(col, editor){
36021         this.config[col].editor = editor;
36022     }
36023 });
36024
36025 Roo.grid.ColumnModel.defaultRenderer = function(value)
36026 {
36027     if(typeof value == "object") {
36028         return value;
36029     }
36030         if(typeof value == "string" && value.length < 1){
36031             return "&#160;";
36032         }
36033     
36034         return String.format("{0}", value);
36035 };
36036
36037 // Alias for backwards compatibility
36038 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
36039 /*
36040  * Based on:
36041  * Ext JS Library 1.1.1
36042  * Copyright(c) 2006-2007, Ext JS, LLC.
36043  *
36044  * Originally Released Under LGPL - original licence link has changed is not relivant.
36045  *
36046  * Fork - LGPL
36047  * <script type="text/javascript">
36048  */
36049
36050 /**
36051  * @class Roo.grid.AbstractSelectionModel
36052  * @extends Roo.util.Observable
36053  * Abstract base class for grid SelectionModels.  It provides the interface that should be
36054  * implemented by descendant classes.  This class should not be directly instantiated.
36055  * @constructor
36056  */
36057 Roo.grid.AbstractSelectionModel = function(){
36058     this.locked = false;
36059     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
36060 };
36061
36062 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
36063     /** @ignore Called by the grid automatically. Do not call directly. */
36064     init : function(grid){
36065         this.grid = grid;
36066         this.initEvents();
36067     },
36068
36069     /**
36070      * Locks the selections.
36071      */
36072     lock : function(){
36073         this.locked = true;
36074     },
36075
36076     /**
36077      * Unlocks the selections.
36078      */
36079     unlock : function(){
36080         this.locked = false;
36081     },
36082
36083     /**
36084      * Returns true if the selections are locked.
36085      * @return {Boolean}
36086      */
36087     isLocked : function(){
36088         return this.locked;
36089     }
36090 });/*
36091  * Based on:
36092  * Ext JS Library 1.1.1
36093  * Copyright(c) 2006-2007, Ext JS, LLC.
36094  *
36095  * Originally Released Under LGPL - original licence link has changed is not relivant.
36096  *
36097  * Fork - LGPL
36098  * <script type="text/javascript">
36099  */
36100 /**
36101  * @extends Roo.grid.AbstractSelectionModel
36102  * @class Roo.grid.RowSelectionModel
36103  * The default SelectionModel used by {@link Roo.grid.Grid}.
36104  * It supports multiple selections and keyboard selection/navigation. 
36105  * @constructor
36106  * @param {Object} config
36107  */
36108 Roo.grid.RowSelectionModel = function(config){
36109     Roo.apply(this, config);
36110     this.selections = new Roo.util.MixedCollection(false, function(o){
36111         return o.id;
36112     });
36113
36114     this.last = false;
36115     this.lastActive = false;
36116
36117     this.addEvents({
36118         /**
36119              * @event selectionchange
36120              * Fires when the selection changes
36121              * @param {SelectionModel} this
36122              */
36123             "selectionchange" : true,
36124         /**
36125              * @event afterselectionchange
36126              * Fires after the selection changes (eg. by key press or clicking)
36127              * @param {SelectionModel} this
36128              */
36129             "afterselectionchange" : true,
36130         /**
36131              * @event beforerowselect
36132              * Fires when a row is selected being selected, return false to cancel.
36133              * @param {SelectionModel} this
36134              * @param {Number} rowIndex The selected index
36135              * @param {Boolean} keepExisting False if other selections will be cleared
36136              */
36137             "beforerowselect" : true,
36138         /**
36139              * @event rowselect
36140              * Fires when a row is selected.
36141              * @param {SelectionModel} this
36142              * @param {Number} rowIndex The selected index
36143              * @param {Roo.data.Record} r The record
36144              */
36145             "rowselect" : true,
36146         /**
36147              * @event rowdeselect
36148              * Fires when a row is deselected.
36149              * @param {SelectionModel} this
36150              * @param {Number} rowIndex The selected index
36151              */
36152         "rowdeselect" : true
36153     });
36154     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
36155     this.locked = false;
36156 };
36157
36158 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
36159     /**
36160      * @cfg {Boolean} singleSelect
36161      * True to allow selection of only one row at a time (defaults to false)
36162      */
36163     singleSelect : false,
36164
36165     // private
36166     initEvents : function(){
36167
36168         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
36169             this.grid.on("mousedown", this.handleMouseDown, this);
36170         }else{ // allow click to work like normal
36171             this.grid.on("rowclick", this.handleDragableRowClick, this);
36172         }
36173
36174         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
36175             "up" : function(e){
36176                 if(!e.shiftKey){
36177                     this.selectPrevious(e.shiftKey);
36178                 }else if(this.last !== false && this.lastActive !== false){
36179                     var last = this.last;
36180                     this.selectRange(this.last,  this.lastActive-1);
36181                     this.grid.getView().focusRow(this.lastActive);
36182                     if(last !== false){
36183                         this.last = last;
36184                     }
36185                 }else{
36186                     this.selectFirstRow();
36187                 }
36188                 this.fireEvent("afterselectionchange", this);
36189             },
36190             "down" : function(e){
36191                 if(!e.shiftKey){
36192                     this.selectNext(e.shiftKey);
36193                 }else if(this.last !== false && this.lastActive !== false){
36194                     var last = this.last;
36195                     this.selectRange(this.last,  this.lastActive+1);
36196                     this.grid.getView().focusRow(this.lastActive);
36197                     if(last !== false){
36198                         this.last = last;
36199                     }
36200                 }else{
36201                     this.selectFirstRow();
36202                 }
36203                 this.fireEvent("afterselectionchange", this);
36204             },
36205             scope: this
36206         });
36207
36208         var view = this.grid.view;
36209         view.on("refresh", this.onRefresh, this);
36210         view.on("rowupdated", this.onRowUpdated, this);
36211         view.on("rowremoved", this.onRemove, this);
36212     },
36213
36214     // private
36215     onRefresh : function(){
36216         var ds = this.grid.dataSource, i, v = this.grid.view;
36217         var s = this.selections;
36218         s.each(function(r){
36219             if((i = ds.indexOfId(r.id)) != -1){
36220                 v.onRowSelect(i);
36221                 s.add(ds.getAt(i)); // updating the selection relate data
36222             }else{
36223                 s.remove(r);
36224             }
36225         });
36226     },
36227
36228     // private
36229     onRemove : function(v, index, r){
36230         this.selections.remove(r);
36231     },
36232
36233     // private
36234     onRowUpdated : function(v, index, r){
36235         if(this.isSelected(r)){
36236             v.onRowSelect(index);
36237         }
36238     },
36239
36240     /**
36241      * Select records.
36242      * @param {Array} records The records to select
36243      * @param {Boolean} keepExisting (optional) True to keep existing selections
36244      */
36245     selectRecords : function(records, keepExisting){
36246         if(!keepExisting){
36247             this.clearSelections();
36248         }
36249         var ds = this.grid.dataSource;
36250         for(var i = 0, len = records.length; i < len; i++){
36251             this.selectRow(ds.indexOf(records[i]), true);
36252         }
36253     },
36254
36255     /**
36256      * Gets the number of selected rows.
36257      * @return {Number}
36258      */
36259     getCount : function(){
36260         return this.selections.length;
36261     },
36262
36263     /**
36264      * Selects the first row in the grid.
36265      */
36266     selectFirstRow : function(){
36267         this.selectRow(0);
36268     },
36269
36270     /**
36271      * Select the last row.
36272      * @param {Boolean} keepExisting (optional) True to keep existing selections
36273      */
36274     selectLastRow : function(keepExisting){
36275         this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
36276     },
36277
36278     /**
36279      * Selects the row immediately following the last selected row.
36280      * @param {Boolean} keepExisting (optional) True to keep existing selections
36281      */
36282     selectNext : function(keepExisting){
36283         if(this.last !== false && (this.last+1) < this.grid.dataSource.getCount()){
36284             this.selectRow(this.last+1, keepExisting);
36285             this.grid.getView().focusRow(this.last);
36286         }
36287     },
36288
36289     /**
36290      * Selects the row that precedes the last selected row.
36291      * @param {Boolean} keepExisting (optional) True to keep existing selections
36292      */
36293     selectPrevious : function(keepExisting){
36294         if(this.last){
36295             this.selectRow(this.last-1, keepExisting);
36296             this.grid.getView().focusRow(this.last);
36297         }
36298     },
36299
36300     /**
36301      * Returns the selected records
36302      * @return {Array} Array of selected records
36303      */
36304     getSelections : function(){
36305         return [].concat(this.selections.items);
36306     },
36307
36308     /**
36309      * Returns the first selected record.
36310      * @return {Record}
36311      */
36312     getSelected : function(){
36313         return this.selections.itemAt(0);
36314     },
36315
36316
36317     /**
36318      * Clears all selections.
36319      */
36320     clearSelections : function(fast){
36321         if(this.locked) {
36322             return;
36323         }
36324         if(fast !== true){
36325             var ds = this.grid.dataSource;
36326             var s = this.selections;
36327             s.each(function(r){
36328                 this.deselectRow(ds.indexOfId(r.id));
36329             }, this);
36330             s.clear();
36331         }else{
36332             this.selections.clear();
36333         }
36334         this.last = false;
36335     },
36336
36337
36338     /**
36339      * Selects all rows.
36340      */
36341     selectAll : function(){
36342         if(this.locked) {
36343             return;
36344         }
36345         this.selections.clear();
36346         for(var i = 0, len = this.grid.dataSource.getCount(); i < len; i++){
36347             this.selectRow(i, true);
36348         }
36349     },
36350
36351     /**
36352      * Returns True if there is a selection.
36353      * @return {Boolean}
36354      */
36355     hasSelection : function(){
36356         return this.selections.length > 0;
36357     },
36358
36359     /**
36360      * Returns True if the specified row is selected.
36361      * @param {Number/Record} record The record or index of the record to check
36362      * @return {Boolean}
36363      */
36364     isSelected : function(index){
36365         var r = typeof index == "number" ? this.grid.dataSource.getAt(index) : index;
36366         return (r && this.selections.key(r.id) ? true : false);
36367     },
36368
36369     /**
36370      * Returns True if the specified record id is selected.
36371      * @param {String} id The id of record to check
36372      * @return {Boolean}
36373      */
36374     isIdSelected : function(id){
36375         return (this.selections.key(id) ? true : false);
36376     },
36377
36378     // private
36379     handleMouseDown : function(e, t){
36380         var view = this.grid.getView(), rowIndex;
36381         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
36382             return;
36383         };
36384         if(e.shiftKey && this.last !== false){
36385             var last = this.last;
36386             this.selectRange(last, rowIndex, e.ctrlKey);
36387             this.last = last; // reset the last
36388             view.focusRow(rowIndex);
36389         }else{
36390             var isSelected = this.isSelected(rowIndex);
36391             if(e.button !== 0 && isSelected){
36392                 view.focusRow(rowIndex);
36393             }else if(e.ctrlKey && isSelected){
36394                 this.deselectRow(rowIndex);
36395             }else if(!isSelected){
36396                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
36397                 view.focusRow(rowIndex);
36398             }
36399         }
36400         this.fireEvent("afterselectionchange", this);
36401     },
36402     // private
36403     handleDragableRowClick :  function(grid, rowIndex, e) 
36404     {
36405         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
36406             this.selectRow(rowIndex, false);
36407             grid.view.focusRow(rowIndex);
36408              this.fireEvent("afterselectionchange", this);
36409         }
36410     },
36411     
36412     /**
36413      * Selects multiple rows.
36414      * @param {Array} rows Array of the indexes of the row to select
36415      * @param {Boolean} keepExisting (optional) True to keep existing selections
36416      */
36417     selectRows : function(rows, keepExisting){
36418         if(!keepExisting){
36419             this.clearSelections();
36420         }
36421         for(var i = 0, len = rows.length; i < len; i++){
36422             this.selectRow(rows[i], true);
36423         }
36424     },
36425
36426     /**
36427      * Selects a range of rows. All rows in between startRow and endRow are also selected.
36428      * @param {Number} startRow The index of the first row in the range
36429      * @param {Number} endRow The index of the last row in the range
36430      * @param {Boolean} keepExisting (optional) True to retain existing selections
36431      */
36432     selectRange : function(startRow, endRow, keepExisting){
36433         if(this.locked) {
36434             return;
36435         }
36436         if(!keepExisting){
36437             this.clearSelections();
36438         }
36439         if(startRow <= endRow){
36440             for(var i = startRow; i <= endRow; i++){
36441                 this.selectRow(i, true);
36442             }
36443         }else{
36444             for(var i = startRow; i >= endRow; i--){
36445                 this.selectRow(i, true);
36446             }
36447         }
36448     },
36449
36450     /**
36451      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
36452      * @param {Number} startRow The index of the first row in the range
36453      * @param {Number} endRow The index of the last row in the range
36454      */
36455     deselectRange : function(startRow, endRow, preventViewNotify){
36456         if(this.locked) {
36457             return;
36458         }
36459         for(var i = startRow; i <= endRow; i++){
36460             this.deselectRow(i, preventViewNotify);
36461         }
36462     },
36463
36464     /**
36465      * Selects a row.
36466      * @param {Number} row The index of the row to select
36467      * @param {Boolean} keepExisting (optional) True to keep existing selections
36468      */
36469     selectRow : function(index, keepExisting, preventViewNotify){
36470         if(this.locked || (index < 0 || index >= this.grid.dataSource.getCount())) {
36471             return;
36472         }
36473         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
36474             if(!keepExisting || this.singleSelect){
36475                 this.clearSelections();
36476             }
36477             var r = this.grid.dataSource.getAt(index);
36478             this.selections.add(r);
36479             this.last = this.lastActive = index;
36480             if(!preventViewNotify){
36481                 this.grid.getView().onRowSelect(index);
36482             }
36483             this.fireEvent("rowselect", this, index, r);
36484             this.fireEvent("selectionchange", this);
36485         }
36486     },
36487
36488     /**
36489      * Deselects a row.
36490      * @param {Number} row The index of the row to deselect
36491      */
36492     deselectRow : function(index, preventViewNotify){
36493         if(this.locked) {
36494             return;
36495         }
36496         if(this.last == index){
36497             this.last = false;
36498         }
36499         if(this.lastActive == index){
36500             this.lastActive = false;
36501         }
36502         var r = this.grid.dataSource.getAt(index);
36503         this.selections.remove(r);
36504         if(!preventViewNotify){
36505             this.grid.getView().onRowDeselect(index);
36506         }
36507         this.fireEvent("rowdeselect", this, index);
36508         this.fireEvent("selectionchange", this);
36509     },
36510
36511     // private
36512     restoreLast : function(){
36513         if(this._last){
36514             this.last = this._last;
36515         }
36516     },
36517
36518     // private
36519     acceptsNav : function(row, col, cm){
36520         return !cm.isHidden(col) && cm.isCellEditable(col, row);
36521     },
36522
36523     // private
36524     onEditorKey : function(field, e){
36525         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
36526         if(k == e.TAB){
36527             e.stopEvent();
36528             ed.completeEdit();
36529             if(e.shiftKey){
36530                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
36531             }else{
36532                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
36533             }
36534         }else if(k == e.ENTER && !e.ctrlKey){
36535             e.stopEvent();
36536             ed.completeEdit();
36537             if(e.shiftKey){
36538                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
36539             }else{
36540                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
36541             }
36542         }else if(k == e.ESC){
36543             ed.cancelEdit();
36544         }
36545         if(newCell){
36546             g.startEditing(newCell[0], newCell[1]);
36547         }
36548     }
36549 });/*
36550  * Based on:
36551  * Ext JS Library 1.1.1
36552  * Copyright(c) 2006-2007, Ext JS, LLC.
36553  *
36554  * Originally Released Under LGPL - original licence link has changed is not relivant.
36555  *
36556  * Fork - LGPL
36557  * <script type="text/javascript">
36558  */
36559 /**
36560  * @class Roo.grid.CellSelectionModel
36561  * @extends Roo.grid.AbstractSelectionModel
36562  * This class provides the basic implementation for cell selection in a grid.
36563  * @constructor
36564  * @param {Object} config The object containing the configuration of this model.
36565  * @cfg {Boolean} enter_is_tab Enter behaves the same as tab. (eg. goes to next cell) default: false
36566  */
36567 Roo.grid.CellSelectionModel = function(config){
36568     Roo.apply(this, config);
36569
36570     this.selection = null;
36571
36572     this.addEvents({
36573         /**
36574              * @event beforerowselect
36575              * Fires before a cell is selected.
36576              * @param {SelectionModel} this
36577              * @param {Number} rowIndex The selected row index
36578              * @param {Number} colIndex The selected cell index
36579              */
36580             "beforecellselect" : true,
36581         /**
36582              * @event cellselect
36583              * Fires when a cell is selected.
36584              * @param {SelectionModel} this
36585              * @param {Number} rowIndex The selected row index
36586              * @param {Number} colIndex The selected cell index
36587              */
36588             "cellselect" : true,
36589         /**
36590              * @event selectionchange
36591              * Fires when the active selection changes.
36592              * @param {SelectionModel} this
36593              * @param {Object} selection null for no selection or an object (o) with two properties
36594                 <ul>
36595                 <li>o.record: the record object for the row the selection is in</li>
36596                 <li>o.cell: An array of [rowIndex, columnIndex]</li>
36597                 </ul>
36598              */
36599             "selectionchange" : true,
36600         /**
36601              * @event tabend
36602              * Fires when the tab (or enter) was pressed on the last editable cell
36603              * You can use this to trigger add new row.
36604              * @param {SelectionModel} this
36605              */
36606             "tabend" : true,
36607          /**
36608              * @event beforeeditnext
36609              * Fires before the next editable sell is made active
36610              * You can use this to skip to another cell or fire the tabend
36611              *    if you set cell to false
36612              * @param {Object} eventdata object : { cell : [ row, col ] } 
36613              */
36614             "beforeeditnext" : true
36615     });
36616     Roo.grid.CellSelectionModel.superclass.constructor.call(this);
36617 };
36618
36619 Roo.extend(Roo.grid.CellSelectionModel, Roo.grid.AbstractSelectionModel,  {
36620     
36621     enter_is_tab: false,
36622
36623     /** @ignore */
36624     initEvents : function(){
36625         this.grid.on("mousedown", this.handleMouseDown, this);
36626         this.grid.getGridEl().on(Roo.isIE ? "keydown" : "keypress", this.handleKeyDown, this);
36627         var view = this.grid.view;
36628         view.on("refresh", this.onViewChange, this);
36629         view.on("rowupdated", this.onRowUpdated, this);
36630         view.on("beforerowremoved", this.clearSelections, this);
36631         view.on("beforerowsinserted", this.clearSelections, this);
36632         if(this.grid.isEditor){
36633             this.grid.on("beforeedit", this.beforeEdit,  this);
36634         }
36635     },
36636
36637         //private
36638     beforeEdit : function(e){
36639         this.select(e.row, e.column, false, true, e.record);
36640     },
36641
36642         //private
36643     onRowUpdated : function(v, index, r){
36644         if(this.selection && this.selection.record == r){
36645             v.onCellSelect(index, this.selection.cell[1]);
36646         }
36647     },
36648
36649         //private
36650     onViewChange : function(){
36651         this.clearSelections(true);
36652     },
36653
36654         /**
36655          * Returns the currently selected cell,.
36656          * @return {Array} The selected cell (row, column) or null if none selected.
36657          */
36658     getSelectedCell : function(){
36659         return this.selection ? this.selection.cell : null;
36660     },
36661
36662     /**
36663      * Clears all selections.
36664      * @param {Boolean} true to prevent the gridview from being notified about the change.
36665      */
36666     clearSelections : function(preventNotify){
36667         var s = this.selection;
36668         if(s){
36669             if(preventNotify !== true){
36670                 this.grid.view.onCellDeselect(s.cell[0], s.cell[1]);
36671             }
36672             this.selection = null;
36673             this.fireEvent("selectionchange", this, null);
36674         }
36675     },
36676
36677     /**
36678      * Returns true if there is a selection.
36679      * @return {Boolean}
36680      */
36681     hasSelection : function(){
36682         return this.selection ? true : false;
36683     },
36684
36685     /** @ignore */
36686     handleMouseDown : function(e, t){
36687         var v = this.grid.getView();
36688         if(this.isLocked()){
36689             return;
36690         };
36691         var row = v.findRowIndex(t);
36692         var cell = v.findCellIndex(t);
36693         if(row !== false && cell !== false){
36694             this.select(row, cell);
36695         }
36696     },
36697
36698     /**
36699      * Selects a cell.
36700      * @param {Number} rowIndex
36701      * @param {Number} collIndex
36702      */
36703     select : function(rowIndex, colIndex, preventViewNotify, preventFocus, /*internal*/ r){
36704         if(this.fireEvent("beforecellselect", this, rowIndex, colIndex) !== false){
36705             this.clearSelections();
36706             r = r || this.grid.dataSource.getAt(rowIndex);
36707             this.selection = {
36708                 record : r,
36709                 cell : [rowIndex, colIndex]
36710             };
36711             if(!preventViewNotify){
36712                 var v = this.grid.getView();
36713                 v.onCellSelect(rowIndex, colIndex);
36714                 if(preventFocus !== true){
36715                     v.focusCell(rowIndex, colIndex);
36716                 }
36717             }
36718             this.fireEvent("cellselect", this, rowIndex, colIndex);
36719             this.fireEvent("selectionchange", this, this.selection);
36720         }
36721     },
36722
36723         //private
36724     isSelectable : function(rowIndex, colIndex, cm){
36725         return !cm.isHidden(colIndex);
36726     },
36727
36728     /** @ignore */
36729     handleKeyDown : function(e){
36730         //Roo.log('Cell Sel Model handleKeyDown');
36731         if(!e.isNavKeyPress()){
36732             return;
36733         }
36734         var g = this.grid, s = this.selection;
36735         if(!s){
36736             e.stopEvent();
36737             var cell = g.walkCells(0, 0, 1, this.isSelectable,  this);
36738             if(cell){
36739                 this.select(cell[0], cell[1]);
36740             }
36741             return;
36742         }
36743         var sm = this;
36744         var walk = function(row, col, step){
36745             return g.walkCells(row, col, step, sm.isSelectable,  sm);
36746         };
36747         var k = e.getKey(), r = s.cell[0], c = s.cell[1];
36748         var newCell;
36749
36750       
36751
36752         switch(k){
36753             case e.TAB:
36754                 // handled by onEditorKey
36755                 if (g.isEditor && g.editing) {
36756                     return;
36757                 }
36758                 if(e.shiftKey) {
36759                     newCell = walk(r, c-1, -1);
36760                 } else {
36761                     newCell = walk(r, c+1, 1);
36762                 }
36763                 break;
36764             
36765             case e.DOWN:
36766                newCell = walk(r+1, c, 1);
36767                 break;
36768             
36769             case e.UP:
36770                 newCell = walk(r-1, c, -1);
36771                 break;
36772             
36773             case e.RIGHT:
36774                 newCell = walk(r, c+1, 1);
36775                 break;
36776             
36777             case e.LEFT:
36778                 newCell = walk(r, c-1, -1);
36779                 break;
36780             
36781             case e.ENTER:
36782                 
36783                 if(g.isEditor && !g.editing){
36784                    g.startEditing(r, c);
36785                    e.stopEvent();
36786                    return;
36787                 }
36788                 
36789                 
36790              break;
36791         };
36792         if(newCell){
36793             this.select(newCell[0], newCell[1]);
36794             e.stopEvent();
36795             
36796         }
36797     },
36798
36799     acceptsNav : function(row, col, cm){
36800         return !cm.isHidden(col) && cm.isCellEditable(col, row);
36801     },
36802     /**
36803      * Selects a cell.
36804      * @param {Number} field (not used) - as it's normally used as a listener
36805      * @param {Number} e - event - fake it by using
36806      *
36807      * var e = Roo.EventObjectImpl.prototype;
36808      * e.keyCode = e.TAB
36809      *
36810      * 
36811      */
36812     onEditorKey : function(field, e){
36813         
36814         var k = e.getKey(),
36815             newCell,
36816             g = this.grid,
36817             ed = g.activeEditor,
36818             forward = false;
36819         ///Roo.log('onEditorKey' + k);
36820         
36821         
36822         if (this.enter_is_tab && k == e.ENTER) {
36823             k = e.TAB;
36824         }
36825         
36826         if(k == e.TAB){
36827             if(e.shiftKey){
36828                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
36829             }else{
36830                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
36831                 forward = true;
36832             }
36833             
36834             e.stopEvent();
36835             
36836         } else if(k == e.ENTER &&  !e.ctrlKey){
36837             ed.completeEdit();
36838             e.stopEvent();
36839             newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
36840         
36841                 } else if(k == e.ESC){
36842             ed.cancelEdit();
36843         }
36844                 
36845         if (newCell) {
36846             var ecall = { cell : newCell, forward : forward };
36847             this.fireEvent('beforeeditnext', ecall );
36848             newCell = ecall.cell;
36849                         forward = ecall.forward;
36850         }
36851                 
36852         if(newCell){
36853             //Roo.log('next cell after edit');
36854             g.startEditing.defer(100, g, [newCell[0], newCell[1]]);
36855         } else if (forward) {
36856             // tabbed past last
36857             this.fireEvent.defer(100, this, ['tabend',this]);
36858         }
36859     }
36860 });/*
36861  * Based on:
36862  * Ext JS Library 1.1.1
36863  * Copyright(c) 2006-2007, Ext JS, LLC.
36864  *
36865  * Originally Released Under LGPL - original licence link has changed is not relivant.
36866  *
36867  * Fork - LGPL
36868  * <script type="text/javascript">
36869  */
36870  
36871 /**
36872  * @class Roo.grid.EditorGrid
36873  * @extends Roo.grid.Grid
36874  * Class for creating and editable grid.
36875  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered - 
36876  * The container MUST have some type of size defined for the grid to fill. The container will be 
36877  * automatically set to position relative if it isn't already.
36878  * @param {Object} dataSource The data model to bind to
36879  * @param {Object} colModel The column model with info about this grid's columns
36880  */
36881 Roo.grid.EditorGrid = function(container, config){
36882     Roo.grid.EditorGrid.superclass.constructor.call(this, container, config);
36883     this.getGridEl().addClass("xedit-grid");
36884
36885     if(!this.selModel){
36886         this.selModel = new Roo.grid.CellSelectionModel();
36887     }
36888
36889     this.activeEditor = null;
36890
36891         this.addEvents({
36892             /**
36893              * @event beforeedit
36894              * Fires before cell editing is triggered. The edit event object has the following properties <br />
36895              * <ul style="padding:5px;padding-left:16px;">
36896              * <li>grid - This grid</li>
36897              * <li>record - The record being edited</li>
36898              * <li>field - The field name being edited</li>
36899              * <li>value - The value for the field being edited.</li>
36900              * <li>row - The grid row index</li>
36901              * <li>column - The grid column index</li>
36902              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
36903              * </ul>
36904              * @param {Object} e An edit event (see above for description)
36905              */
36906             "beforeedit" : true,
36907             /**
36908              * @event afteredit
36909              * Fires after a cell is edited. <br />
36910              * <ul style="padding:5px;padding-left:16px;">
36911              * <li>grid - This grid</li>
36912              * <li>record - The record being edited</li>
36913              * <li>field - The field name being edited</li>
36914              * <li>value - The value being set</li>
36915              * <li>originalValue - The original value for the field, before the edit.</li>
36916              * <li>row - The grid row index</li>
36917              * <li>column - The grid column index</li>
36918              * </ul>
36919              * @param {Object} e An edit event (see above for description)
36920              */
36921             "afteredit" : true,
36922             /**
36923              * @event validateedit
36924              * Fires after a cell is edited, but before the value is set in the record. 
36925          * You can use this to modify the value being set in the field, Return false
36926              * to cancel the change. The edit event object has the following properties <br />
36927              * <ul style="padding:5px;padding-left:16px;">
36928          * <li>editor - This editor</li>
36929              * <li>grid - This grid</li>
36930              * <li>record - The record being edited</li>
36931              * <li>field - The field name being edited</li>
36932              * <li>value - The value being set</li>
36933              * <li>originalValue - The original value for the field, before the edit.</li>
36934              * <li>row - The grid row index</li>
36935              * <li>column - The grid column index</li>
36936              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
36937              * </ul>
36938              * @param {Object} e An edit event (see above for description)
36939              */
36940             "validateedit" : true
36941         });
36942     this.on("bodyscroll", this.stopEditing,  this);
36943     this.on(this.clicksToEdit == 1 ? "cellclick" : "celldblclick", this.onCellDblClick,  this);
36944 };
36945
36946 Roo.extend(Roo.grid.EditorGrid, Roo.grid.Grid, {
36947     /**
36948      * @cfg {Number} clicksToEdit
36949      * The number of clicks on a cell required to display the cell's editor (defaults to 2)
36950      */
36951     clicksToEdit: 2,
36952
36953     // private
36954     isEditor : true,
36955     // private
36956     trackMouseOver: false, // causes very odd FF errors
36957
36958     onCellDblClick : function(g, row, col){
36959         this.startEditing(row, col);
36960     },
36961
36962     onEditComplete : function(ed, value, startValue){
36963         this.editing = false;
36964         this.activeEditor = null;
36965         ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
36966         var r = ed.record;
36967         var field = this.colModel.getDataIndex(ed.col);
36968         var e = {
36969             grid: this,
36970             record: r,
36971             field: field,
36972             originalValue: startValue,
36973             value: value,
36974             row: ed.row,
36975             column: ed.col,
36976             cancel:false,
36977             editor: ed
36978         };
36979         var cell = Roo.get(this.view.getCell(ed.row,ed.col));
36980         cell.show();
36981           
36982         if(String(value) !== String(startValue)){
36983             
36984             if(this.fireEvent("validateedit", e) !== false && !e.cancel){
36985                 r.set(field, e.value);
36986                 // if we are dealing with a combo box..
36987                 // then we also set the 'name' colum to be the displayField
36988                 if (ed.field.displayField && ed.field.name) {
36989                     r.set(ed.field.name, ed.field.el.dom.value);
36990                 }
36991                 
36992                 delete e.cancel; //?? why!!!
36993                 this.fireEvent("afteredit", e);
36994             }
36995         } else {
36996             this.fireEvent("afteredit", e); // always fire it!
36997         }
36998         this.view.focusCell(ed.row, ed.col);
36999     },
37000
37001     /**
37002      * Starts editing the specified for the specified row/column
37003      * @param {Number} rowIndex
37004      * @param {Number} colIndex
37005      */
37006     startEditing : function(row, col){
37007         this.stopEditing();
37008         if(this.colModel.isCellEditable(col, row)){
37009             this.view.ensureVisible(row, col, true);
37010           
37011             var r = this.dataSource.getAt(row);
37012             var field = this.colModel.getDataIndex(col);
37013             var cell = Roo.get(this.view.getCell(row,col));
37014             var e = {
37015                 grid: this,
37016                 record: r,
37017                 field: field,
37018                 value: r.data[field],
37019                 row: row,
37020                 column: col,
37021                 cancel:false 
37022             };
37023             if(this.fireEvent("beforeedit", e) !== false && !e.cancel){
37024                 this.editing = true;
37025                 var ed = this.colModel.getCellEditor(col, row);
37026                 
37027                 if (!ed) {
37028                     return;
37029                 }
37030                 if(!ed.rendered){
37031                     ed.render(ed.parentEl || document.body);
37032                 }
37033                 ed.field.reset();
37034                
37035                 cell.hide();
37036                 
37037                 (function(){ // complex but required for focus issues in safari, ie and opera
37038                     ed.row = row;
37039                     ed.col = col;
37040                     ed.record = r;
37041                     ed.on("complete",   this.onEditComplete,        this,       {single: true});
37042                     ed.on("specialkey", this.selModel.onEditorKey,  this.selModel);
37043                     this.activeEditor = ed;
37044                     var v = r.data[field];
37045                     ed.startEdit(this.view.getCell(row, col), v);
37046                     // combo's with 'displayField and name set
37047                     if (ed.field.displayField && ed.field.name) {
37048                         ed.field.el.dom.value = r.data[ed.field.name];
37049                     }
37050                     
37051                     
37052                 }).defer(50, this);
37053             }
37054         }
37055     },
37056         
37057     /**
37058      * Stops any active editing
37059      */
37060     stopEditing : function(){
37061         if(this.activeEditor){
37062             this.activeEditor.completeEdit();
37063         }
37064         this.activeEditor = null;
37065     },
37066         
37067          /**
37068      * Called to get grid's drag proxy text, by default returns this.ddText.
37069      * @return {String}
37070      */
37071     getDragDropText : function(){
37072         var count = this.selModel.getSelectedCell() ? 1 : 0;
37073         return String.format(this.ddText, count, count == 1 ? '' : 's');
37074     }
37075         
37076 });/*
37077  * Based on:
37078  * Ext JS Library 1.1.1
37079  * Copyright(c) 2006-2007, Ext JS, LLC.
37080  *
37081  * Originally Released Under LGPL - original licence link has changed is not relivant.
37082  *
37083  * Fork - LGPL
37084  * <script type="text/javascript">
37085  */
37086
37087 // private - not really -- you end up using it !
37088 // This is a support class used internally by the Grid components
37089
37090 /**
37091  * @class Roo.grid.GridEditor
37092  * @extends Roo.Editor
37093  * Class for creating and editable grid elements.
37094  * @param {Object} config any settings (must include field)
37095  */
37096 Roo.grid.GridEditor = function(field, config){
37097     if (!config && field.field) {
37098         config = field;
37099         field = Roo.factory(config.field, Roo.form);
37100     }
37101     Roo.grid.GridEditor.superclass.constructor.call(this, field, config);
37102     field.monitorTab = false;
37103 };
37104
37105 Roo.extend(Roo.grid.GridEditor, Roo.Editor, {
37106     
37107     /**
37108      * @cfg {Roo.form.Field} field Field to wrap (or xtyped)
37109      */
37110     
37111     alignment: "tl-tl",
37112     autoSize: "width",
37113     hideEl : false,
37114     cls: "x-small-editor x-grid-editor",
37115     shim:false,
37116     shadow:"frame"
37117 });/*
37118  * Based on:
37119  * Ext JS Library 1.1.1
37120  * Copyright(c) 2006-2007, Ext JS, LLC.
37121  *
37122  * Originally Released Under LGPL - original licence link has changed is not relivant.
37123  *
37124  * Fork - LGPL
37125  * <script type="text/javascript">
37126  */
37127   
37128
37129   
37130 Roo.grid.PropertyRecord = Roo.data.Record.create([
37131     {name:'name',type:'string'},  'value'
37132 ]);
37133
37134
37135 Roo.grid.PropertyStore = function(grid, source){
37136     this.grid = grid;
37137     this.store = new Roo.data.Store({
37138         recordType : Roo.grid.PropertyRecord
37139     });
37140     this.store.on('update', this.onUpdate,  this);
37141     if(source){
37142         this.setSource(source);
37143     }
37144     Roo.grid.PropertyStore.superclass.constructor.call(this);
37145 };
37146
37147
37148
37149 Roo.extend(Roo.grid.PropertyStore, Roo.util.Observable, {
37150     setSource : function(o){
37151         this.source = o;
37152         this.store.removeAll();
37153         var data = [];
37154         for(var k in o){
37155             if(this.isEditableValue(o[k])){
37156                 data.push(new Roo.grid.PropertyRecord({name: k, value: o[k]}, k));
37157             }
37158         }
37159         this.store.loadRecords({records: data}, {}, true);
37160     },
37161
37162     onUpdate : function(ds, record, type){
37163         if(type == Roo.data.Record.EDIT){
37164             var v = record.data['value'];
37165             var oldValue = record.modified['value'];
37166             if(this.grid.fireEvent('beforepropertychange', this.source, record.id, v, oldValue) !== false){
37167                 this.source[record.id] = v;
37168                 record.commit();
37169                 this.grid.fireEvent('propertychange', this.source, record.id, v, oldValue);
37170             }else{
37171                 record.reject();
37172             }
37173         }
37174     },
37175
37176     getProperty : function(row){
37177        return this.store.getAt(row);
37178     },
37179
37180     isEditableValue: function(val){
37181         if(val && val instanceof Date){
37182             return true;
37183         }else if(typeof val == 'object' || typeof val == 'function'){
37184             return false;
37185         }
37186         return true;
37187     },
37188
37189     setValue : function(prop, value){
37190         this.source[prop] = value;
37191         this.store.getById(prop).set('value', value);
37192     },
37193
37194     getSource : function(){
37195         return this.source;
37196     }
37197 });
37198
37199 Roo.grid.PropertyColumnModel = function(grid, store){
37200     this.grid = grid;
37201     var g = Roo.grid;
37202     g.PropertyColumnModel.superclass.constructor.call(this, [
37203         {header: this.nameText, sortable: true, dataIndex:'name', id: 'name'},
37204         {header: this.valueText, resizable:false, dataIndex: 'value', id: 'value'}
37205     ]);
37206     this.store = store;
37207     this.bselect = Roo.DomHelper.append(document.body, {
37208         tag: 'select', style:'display:none', cls: 'x-grid-editor', children: [
37209             {tag: 'option', value: 'true', html: 'true'},
37210             {tag: 'option', value: 'false', html: 'false'}
37211         ]
37212     });
37213     Roo.id(this.bselect);
37214     var f = Roo.form;
37215     this.editors = {
37216         'date' : new g.GridEditor(new f.DateField({selectOnFocus:true})),
37217         'string' : new g.GridEditor(new f.TextField({selectOnFocus:true})),
37218         'number' : new g.GridEditor(new f.NumberField({selectOnFocus:true, style:'text-align:left;'})),
37219         'int' : new g.GridEditor(new f.NumberField({selectOnFocus:true, allowDecimals:false, style:'text-align:left;'})),
37220         'boolean' : new g.GridEditor(new f.Field({el:this.bselect,selectOnFocus:true}))
37221     };
37222     this.renderCellDelegate = this.renderCell.createDelegate(this);
37223     this.renderPropDelegate = this.renderProp.createDelegate(this);
37224 };
37225
37226 Roo.extend(Roo.grid.PropertyColumnModel, Roo.grid.ColumnModel, {
37227     
37228     
37229     nameText : 'Name',
37230     valueText : 'Value',
37231     
37232     dateFormat : 'm/j/Y',
37233     
37234     
37235     renderDate : function(dateVal){
37236         return dateVal.dateFormat(this.dateFormat);
37237     },
37238
37239     renderBool : function(bVal){
37240         return bVal ? 'true' : 'false';
37241     },
37242
37243     isCellEditable : function(colIndex, rowIndex){
37244         return colIndex == 1;
37245     },
37246
37247     getRenderer : function(col){
37248         return col == 1 ?
37249             this.renderCellDelegate : this.renderPropDelegate;
37250     },
37251
37252     renderProp : function(v){
37253         return this.getPropertyName(v);
37254     },
37255
37256     renderCell : function(val){
37257         var rv = val;
37258         if(val instanceof Date){
37259             rv = this.renderDate(val);
37260         }else if(typeof val == 'boolean'){
37261             rv = this.renderBool(val);
37262         }
37263         return Roo.util.Format.htmlEncode(rv);
37264     },
37265
37266     getPropertyName : function(name){
37267         var pn = this.grid.propertyNames;
37268         return pn && pn[name] ? pn[name] : name;
37269     },
37270
37271     getCellEditor : function(colIndex, rowIndex){
37272         var p = this.store.getProperty(rowIndex);
37273         var n = p.data['name'], val = p.data['value'];
37274         
37275         if(typeof(this.grid.customEditors[n]) == 'string'){
37276             return this.editors[this.grid.customEditors[n]];
37277         }
37278         if(typeof(this.grid.customEditors[n]) != 'undefined'){
37279             return this.grid.customEditors[n];
37280         }
37281         if(val instanceof Date){
37282             return this.editors['date'];
37283         }else if(typeof val == 'number'){
37284             return this.editors['number'];
37285         }else if(typeof val == 'boolean'){
37286             return this.editors['boolean'];
37287         }else{
37288             return this.editors['string'];
37289         }
37290     }
37291 });
37292
37293 /**
37294  * @class Roo.grid.PropertyGrid
37295  * @extends Roo.grid.EditorGrid
37296  * This class represents the  interface of a component based property grid control.
37297  * <br><br>Usage:<pre><code>
37298  var grid = new Roo.grid.PropertyGrid("my-container-id", {
37299       
37300  });
37301  // set any options
37302  grid.render();
37303  * </code></pre>
37304   
37305  * @constructor
37306  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
37307  * The container MUST have some type of size defined for the grid to fill. The container will be
37308  * automatically set to position relative if it isn't already.
37309  * @param {Object} config A config object that sets properties on this grid.
37310  */
37311 Roo.grid.PropertyGrid = function(container, config){
37312     config = config || {};
37313     var store = new Roo.grid.PropertyStore(this);
37314     this.store = store;
37315     var cm = new Roo.grid.PropertyColumnModel(this, store);
37316     store.store.sort('name', 'ASC');
37317     Roo.grid.PropertyGrid.superclass.constructor.call(this, container, Roo.apply({
37318         ds: store.store,
37319         cm: cm,
37320         enableColLock:false,
37321         enableColumnMove:false,
37322         stripeRows:false,
37323         trackMouseOver: false,
37324         clicksToEdit:1
37325     }, config));
37326     this.getGridEl().addClass('x-props-grid');
37327     this.lastEditRow = null;
37328     this.on('columnresize', this.onColumnResize, this);
37329     this.addEvents({
37330          /**
37331              * @event beforepropertychange
37332              * Fires before a property changes (return false to stop?)
37333              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
37334              * @param {String} id Record Id
37335              * @param {String} newval New Value
37336          * @param {String} oldval Old Value
37337              */
37338         "beforepropertychange": true,
37339         /**
37340              * @event propertychange
37341              * Fires after a property changes
37342              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
37343              * @param {String} id Record Id
37344              * @param {String} newval New Value
37345          * @param {String} oldval Old Value
37346              */
37347         "propertychange": true
37348     });
37349     this.customEditors = this.customEditors || {};
37350 };
37351 Roo.extend(Roo.grid.PropertyGrid, Roo.grid.EditorGrid, {
37352     
37353      /**
37354      * @cfg {Object} customEditors map of colnames=> custom editors.
37355      * the custom editor can be one of the standard ones (date|string|number|int|boolean), or a
37356      * grid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),
37357      * false disables editing of the field.
37358          */
37359     
37360       /**
37361      * @cfg {Object} propertyNames map of property Names to their displayed value
37362          */
37363     
37364     render : function(){
37365         Roo.grid.PropertyGrid.superclass.render.call(this);
37366         this.autoSize.defer(100, this);
37367     },
37368
37369     autoSize : function(){
37370         Roo.grid.PropertyGrid.superclass.autoSize.call(this);
37371         if(this.view){
37372             this.view.fitColumns();
37373         }
37374     },
37375
37376     onColumnResize : function(){
37377         this.colModel.setColumnWidth(1, this.container.getWidth(true)-this.colModel.getColumnWidth(0));
37378         this.autoSize();
37379     },
37380     /**
37381      * Sets the data for the Grid
37382      * accepts a Key => Value object of all the elements avaiable.
37383      * @param {Object} data  to appear in grid.
37384      */
37385     setSource : function(source){
37386         this.store.setSource(source);
37387         //this.autoSize();
37388     },
37389     /**
37390      * Gets all the data from the grid.
37391      * @return {Object} data  data stored in grid
37392      */
37393     getSource : function(){
37394         return this.store.getSource();
37395     }
37396 });/*
37397   
37398  * Licence LGPL
37399  
37400  */
37401  
37402 /**
37403  * @class Roo.grid.Calendar
37404  * @extends Roo.util.Grid
37405  * This class extends the Grid to provide a calendar widget
37406  * <br><br>Usage:<pre><code>
37407  var grid = new Roo.grid.Calendar("my-container-id", {
37408      ds: myDataStore,
37409      cm: myColModel,
37410      selModel: mySelectionModel,
37411      autoSizeColumns: true,
37412      monitorWindowResize: false,
37413      trackMouseOver: true
37414      eventstore : real data store..
37415  });
37416  // set any options
37417  grid.render();
37418   
37419   * @constructor
37420  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
37421  * The container MUST have some type of size defined for the grid to fill. The container will be
37422  * automatically set to position relative if it isn't already.
37423  * @param {Object} config A config object that sets properties on this grid.
37424  */
37425 Roo.grid.Calendar = function(container, config){
37426         // initialize the container
37427         this.container = Roo.get(container);
37428         this.container.update("");
37429         this.container.setStyle("overflow", "hidden");
37430     this.container.addClass('x-grid-container');
37431
37432     this.id = this.container.id;
37433
37434     Roo.apply(this, config);
37435     // check and correct shorthanded configs
37436     
37437     var rows = [];
37438     var d =1;
37439     for (var r = 0;r < 6;r++) {
37440         
37441         rows[r]=[];
37442         for (var c =0;c < 7;c++) {
37443             rows[r][c]= '';
37444         }
37445     }
37446     if (this.eventStore) {
37447         this.eventStore= Roo.factory(this.eventStore, Roo.data);
37448         this.eventStore.on('load',this.onLoad, this);
37449         this.eventStore.on('beforeload',this.clearEvents, this);
37450          
37451     }
37452     
37453     this.dataSource = new Roo.data.Store({
37454             proxy: new Roo.data.MemoryProxy(rows),
37455             reader: new Roo.data.ArrayReader({}, [
37456                    'weekday0', 'weekday1', 'weekday2', 'weekday3', 'weekday4', 'weekday5', 'weekday6' ])
37457     });
37458
37459     this.dataSource.load();
37460     this.ds = this.dataSource;
37461     this.ds.xmodule = this.xmodule || false;
37462     
37463     
37464     var cellRender = function(v,x,r)
37465     {
37466         return String.format(
37467             '<div class="fc-day  fc-widget-content"><div>' +
37468                 '<div class="fc-event-container"></div>' +
37469                 '<div class="fc-day-number">{0}</div>'+
37470                 
37471                 '<div class="fc-day-content"><div style="position:relative"></div></div>' +
37472             '</div></div>', v);
37473     
37474     }
37475     
37476     
37477     this.colModel = new Roo.grid.ColumnModel( [
37478         {
37479             xtype: 'ColumnModel',
37480             xns: Roo.grid,
37481             dataIndex : 'weekday0',
37482             header : 'Sunday',
37483             renderer : cellRender
37484         },
37485         {
37486             xtype: 'ColumnModel',
37487             xns: Roo.grid,
37488             dataIndex : 'weekday1',
37489             header : 'Monday',
37490             renderer : cellRender
37491         },
37492         {
37493             xtype: 'ColumnModel',
37494             xns: Roo.grid,
37495             dataIndex : 'weekday2',
37496             header : 'Tuesday',
37497             renderer : cellRender
37498         },
37499         {
37500             xtype: 'ColumnModel',
37501             xns: Roo.grid,
37502             dataIndex : 'weekday3',
37503             header : 'Wednesday',
37504             renderer : cellRender
37505         },
37506         {
37507             xtype: 'ColumnModel',
37508             xns: Roo.grid,
37509             dataIndex : 'weekday4',
37510             header : 'Thursday',
37511             renderer : cellRender
37512         },
37513         {
37514             xtype: 'ColumnModel',
37515             xns: Roo.grid,
37516             dataIndex : 'weekday5',
37517             header : 'Friday',
37518             renderer : cellRender
37519         },
37520         {
37521             xtype: 'ColumnModel',
37522             xns: Roo.grid,
37523             dataIndex : 'weekday6',
37524             header : 'Saturday',
37525             renderer : cellRender
37526         }
37527     ]);
37528     this.cm = this.colModel;
37529     this.cm.xmodule = this.xmodule || false;
37530  
37531         
37532           
37533     //this.selModel = new Roo.grid.CellSelectionModel();
37534     //this.sm = this.selModel;
37535     //this.selModel.init(this);
37536     
37537     
37538     if(this.width){
37539         this.container.setWidth(this.width);
37540     }
37541
37542     if(this.height){
37543         this.container.setHeight(this.height);
37544     }
37545     /** @private */
37546         this.addEvents({
37547         // raw events
37548         /**
37549          * @event click
37550          * The raw click event for the entire grid.
37551          * @param {Roo.EventObject} e
37552          */
37553         "click" : true,
37554         /**
37555          * @event dblclick
37556          * The raw dblclick event for the entire grid.
37557          * @param {Roo.EventObject} e
37558          */
37559         "dblclick" : true,
37560         /**
37561          * @event contextmenu
37562          * The raw contextmenu event for the entire grid.
37563          * @param {Roo.EventObject} e
37564          */
37565         "contextmenu" : true,
37566         /**
37567          * @event mousedown
37568          * The raw mousedown event for the entire grid.
37569          * @param {Roo.EventObject} e
37570          */
37571         "mousedown" : true,
37572         /**
37573          * @event mouseup
37574          * The raw mouseup event for the entire grid.
37575          * @param {Roo.EventObject} e
37576          */
37577         "mouseup" : true,
37578         /**
37579          * @event mouseover
37580          * The raw mouseover event for the entire grid.
37581          * @param {Roo.EventObject} e
37582          */
37583         "mouseover" : true,
37584         /**
37585          * @event mouseout
37586          * The raw mouseout event for the entire grid.
37587          * @param {Roo.EventObject} e
37588          */
37589         "mouseout" : true,
37590         /**
37591          * @event keypress
37592          * The raw keypress event for the entire grid.
37593          * @param {Roo.EventObject} e
37594          */
37595         "keypress" : true,
37596         /**
37597          * @event keydown
37598          * The raw keydown event for the entire grid.
37599          * @param {Roo.EventObject} e
37600          */
37601         "keydown" : true,
37602
37603         // custom events
37604
37605         /**
37606          * @event cellclick
37607          * Fires when a cell is clicked
37608          * @param {Grid} this
37609          * @param {Number} rowIndex
37610          * @param {Number} columnIndex
37611          * @param {Roo.EventObject} e
37612          */
37613         "cellclick" : true,
37614         /**
37615          * @event celldblclick
37616          * Fires when a cell is double clicked
37617          * @param {Grid} this
37618          * @param {Number} rowIndex
37619          * @param {Number} columnIndex
37620          * @param {Roo.EventObject} e
37621          */
37622         "celldblclick" : true,
37623         /**
37624          * @event rowclick
37625          * Fires when a row is clicked
37626          * @param {Grid} this
37627          * @param {Number} rowIndex
37628          * @param {Roo.EventObject} e
37629          */
37630         "rowclick" : true,
37631         /**
37632          * @event rowdblclick
37633          * Fires when a row is double clicked
37634          * @param {Grid} this
37635          * @param {Number} rowIndex
37636          * @param {Roo.EventObject} e
37637          */
37638         "rowdblclick" : true,
37639         /**
37640          * @event headerclick
37641          * Fires when a header is clicked
37642          * @param {Grid} this
37643          * @param {Number} columnIndex
37644          * @param {Roo.EventObject} e
37645          */
37646         "headerclick" : true,
37647         /**
37648          * @event headerdblclick
37649          * Fires when a header cell is double clicked
37650          * @param {Grid} this
37651          * @param {Number} columnIndex
37652          * @param {Roo.EventObject} e
37653          */
37654         "headerdblclick" : true,
37655         /**
37656          * @event rowcontextmenu
37657          * Fires when a row is right clicked
37658          * @param {Grid} this
37659          * @param {Number} rowIndex
37660          * @param {Roo.EventObject} e
37661          */
37662         "rowcontextmenu" : true,
37663         /**
37664          * @event cellcontextmenu
37665          * Fires when a cell is right clicked
37666          * @param {Grid} this
37667          * @param {Number} rowIndex
37668          * @param {Number} cellIndex
37669          * @param {Roo.EventObject} e
37670          */
37671          "cellcontextmenu" : true,
37672         /**
37673          * @event headercontextmenu
37674          * Fires when a header is right clicked
37675          * @param {Grid} this
37676          * @param {Number} columnIndex
37677          * @param {Roo.EventObject} e
37678          */
37679         "headercontextmenu" : true,
37680         /**
37681          * @event bodyscroll
37682          * Fires when the body element is scrolled
37683          * @param {Number} scrollLeft
37684          * @param {Number} scrollTop
37685          */
37686         "bodyscroll" : true,
37687         /**
37688          * @event columnresize
37689          * Fires when the user resizes a column
37690          * @param {Number} columnIndex
37691          * @param {Number} newSize
37692          */
37693         "columnresize" : true,
37694         /**
37695          * @event columnmove
37696          * Fires when the user moves a column
37697          * @param {Number} oldIndex
37698          * @param {Number} newIndex
37699          */
37700         "columnmove" : true,
37701         /**
37702          * @event startdrag
37703          * Fires when row(s) start being dragged
37704          * @param {Grid} this
37705          * @param {Roo.GridDD} dd The drag drop object
37706          * @param {event} e The raw browser event
37707          */
37708         "startdrag" : true,
37709         /**
37710          * @event enddrag
37711          * Fires when a drag operation is complete
37712          * @param {Grid} this
37713          * @param {Roo.GridDD} dd The drag drop object
37714          * @param {event} e The raw browser event
37715          */
37716         "enddrag" : true,
37717         /**
37718          * @event dragdrop
37719          * Fires when dragged row(s) are dropped on a valid DD target
37720          * @param {Grid} this
37721          * @param {Roo.GridDD} dd The drag drop object
37722          * @param {String} targetId The target drag drop object
37723          * @param {event} e The raw browser event
37724          */
37725         "dragdrop" : true,
37726         /**
37727          * @event dragover
37728          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
37729          * @param {Grid} this
37730          * @param {Roo.GridDD} dd The drag drop object
37731          * @param {String} targetId The target drag drop object
37732          * @param {event} e The raw browser event
37733          */
37734         "dragover" : true,
37735         /**
37736          * @event dragenter
37737          *  Fires when the dragged row(s) first cross another DD target while being dragged
37738          * @param {Grid} this
37739          * @param {Roo.GridDD} dd The drag drop object
37740          * @param {String} targetId The target drag drop object
37741          * @param {event} e The raw browser event
37742          */
37743         "dragenter" : true,
37744         /**
37745          * @event dragout
37746          * Fires when the dragged row(s) leave another DD target while being dragged
37747          * @param {Grid} this
37748          * @param {Roo.GridDD} dd The drag drop object
37749          * @param {String} targetId The target drag drop object
37750          * @param {event} e The raw browser event
37751          */
37752         "dragout" : true,
37753         /**
37754          * @event rowclass
37755          * Fires when a row is rendered, so you can change add a style to it.
37756          * @param {GridView} gridview   The grid view
37757          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
37758          */
37759         'rowclass' : true,
37760
37761         /**
37762          * @event render
37763          * Fires when the grid is rendered
37764          * @param {Grid} grid
37765          */
37766         'render' : true,
37767             /**
37768              * @event select
37769              * Fires when a date is selected
37770              * @param {DatePicker} this
37771              * @param {Date} date The selected date
37772              */
37773         'select': true,
37774         /**
37775              * @event monthchange
37776              * Fires when the displayed month changes 
37777              * @param {DatePicker} this
37778              * @param {Date} date The selected month
37779              */
37780         'monthchange': true,
37781         /**
37782              * @event evententer
37783              * Fires when mouse over an event
37784              * @param {Calendar} this
37785              * @param {event} Event
37786              */
37787         'evententer': true,
37788         /**
37789              * @event eventleave
37790              * Fires when the mouse leaves an
37791              * @param {Calendar} this
37792              * @param {event}
37793              */
37794         'eventleave': true,
37795         /**
37796              * @event eventclick
37797              * Fires when the mouse click an
37798              * @param {Calendar} this
37799              * @param {event}
37800              */
37801         'eventclick': true,
37802         /**
37803              * @event eventrender
37804              * Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip
37805              * @param {Calendar} this
37806              * @param {data} data to be modified
37807              */
37808         'eventrender': true
37809         
37810     });
37811
37812     Roo.grid.Grid.superclass.constructor.call(this);
37813     this.on('render', function() {
37814         this.view.el.addClass('x-grid-cal'); 
37815         
37816         (function() { this.setDate(new Date()); }).defer(100,this); //default today..
37817
37818     },this);
37819     
37820     if (!Roo.grid.Calendar.style) {
37821         Roo.grid.Calendar.style = Roo.util.CSS.createStyleSheet({
37822             
37823             
37824             '.x-grid-cal .x-grid-col' :  {
37825                 height: 'auto !important',
37826                 'vertical-align': 'top'
37827             },
37828             '.x-grid-cal  .fc-event-hori' : {
37829                 height: '14px'
37830             }
37831              
37832             
37833         }, Roo.id());
37834     }
37835
37836     
37837     
37838 };
37839 Roo.extend(Roo.grid.Calendar, Roo.grid.Grid, {
37840     /**
37841      * @cfg {Store} eventStore The store that loads events.
37842      */
37843     eventStore : 25,
37844
37845      
37846     activeDate : false,
37847     startDay : 0,
37848     autoWidth : true,
37849     monitorWindowResize : false,
37850
37851     
37852     resizeColumns : function() {
37853         var col = (this.view.el.getWidth() / 7) - 3;
37854         // loop through cols, and setWidth
37855         for(var i =0 ; i < 7 ; i++){
37856             this.cm.setColumnWidth(i, col);
37857         }
37858     },
37859      setDate :function(date) {
37860         
37861         Roo.log('setDate?');
37862         
37863         this.resizeColumns();
37864         var vd = this.activeDate;
37865         this.activeDate = date;
37866 //        if(vd && this.el){
37867 //            var t = date.getTime();
37868 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
37869 //                Roo.log('using add remove');
37870 //                
37871 //                this.fireEvent('monthchange', this, date);
37872 //                
37873 //                this.cells.removeClass("fc-state-highlight");
37874 //                this.cells.each(function(c){
37875 //                   if(c.dateValue == t){
37876 //                       c.addClass("fc-state-highlight");
37877 //                       setTimeout(function(){
37878 //                            try{c.dom.firstChild.focus();}catch(e){}
37879 //                       }, 50);
37880 //                       return false;
37881 //                   }
37882 //                   return true;
37883 //                });
37884 //                return;
37885 //            }
37886 //        }
37887         
37888         var days = date.getDaysInMonth();
37889         
37890         var firstOfMonth = date.getFirstDateOfMonth();
37891         var startingPos = firstOfMonth.getDay()-this.startDay;
37892         
37893         if(startingPos < this.startDay){
37894             startingPos += 7;
37895         }
37896         
37897         var pm = date.add(Date.MONTH, -1);
37898         var prevStart = pm.getDaysInMonth()-startingPos;
37899 //        
37900         
37901         
37902         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
37903         
37904         this.textNodes = this.view.el.query('.x-grid-row .x-grid-col .x-grid-cell-text');
37905         //this.cells.addClassOnOver('fc-state-hover');
37906         
37907         var cells = this.cells.elements;
37908         var textEls = this.textNodes;
37909         
37910         //Roo.each(cells, function(cell){
37911         //    cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
37912         //});
37913         
37914         days += startingPos;
37915
37916         // convert everything to numbers so it's fast
37917         var day = 86400000;
37918         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
37919         //Roo.log(d);
37920         //Roo.log(pm);
37921         //Roo.log(prevStart);
37922         
37923         var today = new Date().clearTime().getTime();
37924         var sel = date.clearTime().getTime();
37925         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
37926         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
37927         var ddMatch = this.disabledDatesRE;
37928         var ddText = this.disabledDatesText;
37929         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
37930         var ddaysText = this.disabledDaysText;
37931         var format = this.format;
37932         
37933         var setCellClass = function(cal, cell){
37934             
37935             //Roo.log('set Cell Class');
37936             cell.title = "";
37937             var t = d.getTime();
37938             
37939             //Roo.log(d);
37940             
37941             
37942             cell.dateValue = t;
37943             if(t == today){
37944                 cell.className += " fc-today";
37945                 cell.className += " fc-state-highlight";
37946                 cell.title = cal.todayText;
37947             }
37948             if(t == sel){
37949                 // disable highlight in other month..
37950                 cell.className += " fc-state-highlight";
37951                 
37952             }
37953             // disabling
37954             if(t < min) {
37955                 //cell.className = " fc-state-disabled";
37956                 cell.title = cal.minText;
37957                 return;
37958             }
37959             if(t > max) {
37960                 //cell.className = " fc-state-disabled";
37961                 cell.title = cal.maxText;
37962                 return;
37963             }
37964             if(ddays){
37965                 if(ddays.indexOf(d.getDay()) != -1){
37966                     // cell.title = ddaysText;
37967                    // cell.className = " fc-state-disabled";
37968                 }
37969             }
37970             if(ddMatch && format){
37971                 var fvalue = d.dateFormat(format);
37972                 if(ddMatch.test(fvalue)){
37973                     cell.title = ddText.replace("%0", fvalue);
37974                    cell.className = " fc-state-disabled";
37975                 }
37976             }
37977             
37978             if (!cell.initialClassName) {
37979                 cell.initialClassName = cell.dom.className;
37980             }
37981             
37982             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
37983         };
37984
37985         var i = 0;
37986         
37987         for(; i < startingPos; i++) {
37988             cells[i].dayName =  (++prevStart);
37989             Roo.log(textEls[i]);
37990             d.setDate(d.getDate()+1);
37991             
37992             //cells[i].className = "fc-past fc-other-month";
37993             setCellClass(this, cells[i]);
37994         }
37995         
37996         var intDay = 0;
37997         
37998         for(; i < days; i++){
37999             intDay = i - startingPos + 1;
38000             cells[i].dayName =  (intDay);
38001             d.setDate(d.getDate()+1);
38002             
38003             cells[i].className = ''; // "x-date-active";
38004             setCellClass(this, cells[i]);
38005         }
38006         var extraDays = 0;
38007         
38008         for(; i < 42; i++) {
38009             //textEls[i].innerHTML = (++extraDays);
38010             
38011             d.setDate(d.getDate()+1);
38012             cells[i].dayName = (++extraDays);
38013             cells[i].className = "fc-future fc-other-month";
38014             setCellClass(this, cells[i]);
38015         }
38016         
38017         //this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
38018         
38019         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
38020         
38021         // this will cause all the cells to mis
38022         var rows= [];
38023         var i =0;
38024         for (var r = 0;r < 6;r++) {
38025             for (var c =0;c < 7;c++) {
38026                 this.ds.getAt(r).set('weekday' + c ,cells[i++].dayName );
38027             }    
38028         }
38029         
38030         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
38031         for(i=0;i<cells.length;i++) {
38032             
38033             this.cells.elements[i].dayName = cells[i].dayName ;
38034             this.cells.elements[i].className = cells[i].className;
38035             this.cells.elements[i].initialClassName = cells[i].initialClassName ;
38036             this.cells.elements[i].title = cells[i].title ;
38037             this.cells.elements[i].dateValue = cells[i].dateValue ;
38038         }
38039         
38040         
38041         
38042         
38043         //this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
38044         //this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
38045         
38046         ////if(totalRows != 6){
38047             //this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
38048            // this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
38049        // }
38050         
38051         this.fireEvent('monthchange', this, date);
38052         
38053         
38054     },
38055  /**
38056      * Returns the grid's SelectionModel.
38057      * @return {SelectionModel}
38058      */
38059     getSelectionModel : function(){
38060         if(!this.selModel){
38061             this.selModel = new Roo.grid.CellSelectionModel();
38062         }
38063         return this.selModel;
38064     },
38065
38066     load: function() {
38067         this.eventStore.load()
38068         
38069         
38070         
38071     },
38072     
38073     findCell : function(dt) {
38074         dt = dt.clearTime().getTime();
38075         var ret = false;
38076         this.cells.each(function(c){
38077             //Roo.log("check " +c.dateValue + '?=' + dt);
38078             if(c.dateValue == dt){
38079                 ret = c;
38080                 return false;
38081             }
38082             return true;
38083         });
38084         
38085         return ret;
38086     },
38087     
38088     findCells : function(rec) {
38089         var s = rec.data.start_dt.clone().clearTime().getTime();
38090        // Roo.log(s);
38091         var e= rec.data.end_dt.clone().clearTime().getTime();
38092        // Roo.log(e);
38093         var ret = [];
38094         this.cells.each(function(c){
38095              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
38096             
38097             if(c.dateValue > e){
38098                 return ;
38099             }
38100             if(c.dateValue < s){
38101                 return ;
38102             }
38103             ret.push(c);
38104         });
38105         
38106         return ret;    
38107     },
38108     
38109     findBestRow: function(cells)
38110     {
38111         var ret = 0;
38112         
38113         for (var i =0 ; i < cells.length;i++) {
38114             ret  = Math.max(cells[i].rows || 0,ret);
38115         }
38116         return ret;
38117         
38118     },
38119     
38120     
38121     addItem : function(rec)
38122     {
38123         // look for vertical location slot in
38124         var cells = this.findCells(rec);
38125         
38126         rec.row = this.findBestRow(cells);
38127         
38128         // work out the location.
38129         
38130         var crow = false;
38131         var rows = [];
38132         for(var i =0; i < cells.length; i++) {
38133             if (!crow) {
38134                 crow = {
38135                     start : cells[i],
38136                     end :  cells[i]
38137                 };
38138                 continue;
38139             }
38140             if (crow.start.getY() == cells[i].getY()) {
38141                 // on same row.
38142                 crow.end = cells[i];
38143                 continue;
38144             }
38145             // different row.
38146             rows.push(crow);
38147             crow = {
38148                 start: cells[i],
38149                 end : cells[i]
38150             };
38151             
38152         }
38153         
38154         rows.push(crow);
38155         rec.els = [];
38156         rec.rows = rows;
38157         rec.cells = cells;
38158         for (var i = 0; i < cells.length;i++) {
38159             cells[i].rows = Math.max(cells[i].rows || 0 , rec.row + 1 );
38160             
38161         }
38162         
38163         
38164     },
38165     
38166     clearEvents: function() {
38167         
38168         if (!this.eventStore.getCount()) {
38169             return;
38170         }
38171         // reset number of rows in cells.
38172         Roo.each(this.cells.elements, function(c){
38173             c.rows = 0;
38174         });
38175         
38176         this.eventStore.each(function(e) {
38177             this.clearEvent(e);
38178         },this);
38179         
38180     },
38181     
38182     clearEvent : function(ev)
38183     {
38184         if (ev.els) {
38185             Roo.each(ev.els, function(el) {
38186                 el.un('mouseenter' ,this.onEventEnter, this);
38187                 el.un('mouseleave' ,this.onEventLeave, this);
38188                 el.remove();
38189             },this);
38190             ev.els = [];
38191         }
38192     },
38193     
38194     
38195     renderEvent : function(ev,ctr) {
38196         if (!ctr) {
38197              ctr = this.view.el.select('.fc-event-container',true).first();
38198         }
38199         
38200          
38201         this.clearEvent(ev);
38202             //code
38203        
38204         
38205         
38206         ev.els = [];
38207         var cells = ev.cells;
38208         var rows = ev.rows;
38209         this.fireEvent('eventrender', this, ev);
38210         
38211         for(var i =0; i < rows.length; i++) {
38212             
38213             cls = '';
38214             if (i == 0) {
38215                 cls += ' fc-event-start';
38216             }
38217             if ((i+1) == rows.length) {
38218                 cls += ' fc-event-end';
38219             }
38220             
38221             //Roo.log(ev.data);
38222             // how many rows should it span..
38223             var cg = this.eventTmpl.append(ctr,Roo.apply({
38224                 fccls : cls
38225                 
38226             }, ev.data) , true);
38227             
38228             
38229             cg.on('mouseenter' ,this.onEventEnter, this, ev);
38230             cg.on('mouseleave' ,this.onEventLeave, this, ev);
38231             cg.on('click', this.onEventClick, this, ev);
38232             
38233             ev.els.push(cg);
38234             
38235             var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
38236             var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
38237             //Roo.log(cg);
38238              
38239             cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
38240             cg.setWidth(ebox.right - sbox.x -2);
38241         }
38242     },
38243     
38244     renderEvents: function()
38245     {   
38246         // first make sure there is enough space..
38247         
38248         if (!this.eventTmpl) {
38249             this.eventTmpl = new Roo.Template(
38250                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
38251                     '<div class="fc-event-inner">' +
38252                         '<span class="fc-event-time">{time}</span>' +
38253                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>' +
38254                     '</div>' +
38255                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
38256                 '</div>'
38257             );
38258                 
38259         }
38260                
38261         
38262         
38263         this.cells.each(function(c) {
38264             //Roo.log(c.select('.fc-day-content div',true).first());
38265             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
38266         });
38267         
38268         var ctr = this.view.el.select('.fc-event-container',true).first();
38269         
38270         var cls;
38271         this.eventStore.each(function(ev){
38272             
38273             this.renderEvent(ev);
38274              
38275              
38276         }, this);
38277         this.view.layout();
38278         
38279     },
38280     
38281     onEventEnter: function (e, el,event,d) {
38282         this.fireEvent('evententer', this, el, event);
38283     },
38284     
38285     onEventLeave: function (e, el,event,d) {
38286         this.fireEvent('eventleave', this, el, event);
38287     },
38288     
38289     onEventClick: function (e, el,event,d) {
38290         this.fireEvent('eventclick', this, el, event);
38291     },
38292     
38293     onMonthChange: function () {
38294         this.store.load();
38295     },
38296     
38297     onLoad: function () {
38298         
38299         //Roo.log('calendar onload');
38300 //         
38301         if(this.eventStore.getCount() > 0){
38302             
38303            
38304             
38305             this.eventStore.each(function(d){
38306                 
38307                 
38308                 // FIXME..
38309                 var add =   d.data;
38310                 if (typeof(add.end_dt) == 'undefined')  {
38311                     Roo.log("Missing End time in calendar data: ");
38312                     Roo.log(d);
38313                     return;
38314                 }
38315                 if (typeof(add.start_dt) == 'undefined')  {
38316                     Roo.log("Missing Start time in calendar data: ");
38317                     Roo.log(d);
38318                     return;
38319                 }
38320                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
38321                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
38322                 add.id = add.id || d.id;
38323                 add.title = add.title || '??';
38324                 
38325                 this.addItem(d);
38326                 
38327              
38328             },this);
38329         }
38330         
38331         this.renderEvents();
38332     }
38333     
38334
38335 });
38336 /*
38337  grid : {
38338                 xtype: 'Grid',
38339                 xns: Roo.grid,
38340                 listeners : {
38341                     render : function ()
38342                     {
38343                         _this.grid = this;
38344                         
38345                         if (!this.view.el.hasClass('course-timesheet')) {
38346                             this.view.el.addClass('course-timesheet');
38347                         }
38348                         if (this.tsStyle) {
38349                             this.ds.load({});
38350                             return; 
38351                         }
38352                         Roo.log('width');
38353                         Roo.log(_this.grid.view.el.getWidth());
38354                         
38355                         
38356                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
38357                             '.course-timesheet .x-grid-row' : {
38358                                 height: '80px'
38359                             },
38360                             '.x-grid-row td' : {
38361                                 'vertical-align' : 0
38362                             },
38363                             '.course-edit-link' : {
38364                                 'color' : 'blue',
38365                                 'text-overflow' : 'ellipsis',
38366                                 'overflow' : 'hidden',
38367                                 'white-space' : 'nowrap',
38368                                 'cursor' : 'pointer'
38369                             },
38370                             '.sub-link' : {
38371                                 'color' : 'green'
38372                             },
38373                             '.de-act-sup-link' : {
38374                                 'color' : 'purple',
38375                                 'text-decoration' : 'line-through'
38376                             },
38377                             '.de-act-link' : {
38378                                 'color' : 'red',
38379                                 'text-decoration' : 'line-through'
38380                             },
38381                             '.course-timesheet .course-highlight' : {
38382                                 'border-top-style': 'dashed !important',
38383                                 'border-bottom-bottom': 'dashed !important'
38384                             },
38385                             '.course-timesheet .course-item' : {
38386                                 'font-family'   : 'tahoma, arial, helvetica',
38387                                 'font-size'     : '11px',
38388                                 'overflow'      : 'hidden',
38389                                 'padding-left'  : '10px',
38390                                 'padding-right' : '10px',
38391                                 'padding-top' : '10px' 
38392                             }
38393                             
38394                         }, Roo.id());
38395                                 this.ds.load({});
38396                     }
38397                 },
38398                 autoWidth : true,
38399                 monitorWindowResize : false,
38400                 cellrenderer : function(v,x,r)
38401                 {
38402                     return v;
38403                 },
38404                 sm : {
38405                     xtype: 'CellSelectionModel',
38406                     xns: Roo.grid
38407                 },
38408                 dataSource : {
38409                     xtype: 'Store',
38410                     xns: Roo.data,
38411                     listeners : {
38412                         beforeload : function (_self, options)
38413                         {
38414                             options.params = options.params || {};
38415                             options.params._month = _this.monthField.getValue();
38416                             options.params.limit = 9999;
38417                             options.params['sort'] = 'when_dt';    
38418                             options.params['dir'] = 'ASC';    
38419                             this.proxy.loadResponse = this.loadResponse;
38420                             Roo.log("load?");
38421                             //this.addColumns();
38422                         },
38423                         load : function (_self, records, options)
38424                         {
38425                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
38426                                 // if you click on the translation.. you can edit it...
38427                                 var el = Roo.get(this);
38428                                 var id = el.dom.getAttribute('data-id');
38429                                 var d = el.dom.getAttribute('data-date');
38430                                 var t = el.dom.getAttribute('data-time');
38431                                 //var id = this.child('span').dom.textContent;
38432                                 
38433                                 //Roo.log(this);
38434                                 Pman.Dialog.CourseCalendar.show({
38435                                     id : id,
38436                                     when_d : d,
38437                                     when_t : t,
38438                                     productitem_active : id ? 1 : 0
38439                                 }, function() {
38440                                     _this.grid.ds.load({});
38441                                 });
38442                            
38443                            });
38444                            
38445                            _this.panel.fireEvent('resize', [ '', '' ]);
38446                         }
38447                     },
38448                     loadResponse : function(o, success, response){
38449                             // this is overridden on before load..
38450                             
38451                             Roo.log("our code?");       
38452                             //Roo.log(success);
38453                             //Roo.log(response)
38454                             delete this.activeRequest;
38455                             if(!success){
38456                                 this.fireEvent("loadexception", this, o, response);
38457                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
38458                                 return;
38459                             }
38460                             var result;
38461                             try {
38462                                 result = o.reader.read(response);
38463                             }catch(e){
38464                                 Roo.log("load exception?");
38465                                 this.fireEvent("loadexception", this, o, response, e);
38466                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
38467                                 return;
38468                             }
38469                             Roo.log("ready...");        
38470                             // loop through result.records;
38471                             // and set this.tdate[date] = [] << array of records..
38472                             _this.tdata  = {};
38473                             Roo.each(result.records, function(r){
38474                                 //Roo.log(r.data);
38475                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
38476                                     _this.tdata[r.data.when_dt.format('j')] = [];
38477                                 }
38478                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
38479                             });
38480                             
38481                             //Roo.log(_this.tdata);
38482                             
38483                             result.records = [];
38484                             result.totalRecords = 6;
38485                     
38486                             // let's generate some duumy records for the rows.
38487                             //var st = _this.dateField.getValue();
38488                             
38489                             // work out monday..
38490                             //st = st.add(Date.DAY, -1 * st.format('w'));
38491                             
38492                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
38493                             
38494                             var firstOfMonth = date.getFirstDayOfMonth();
38495                             var days = date.getDaysInMonth();
38496                             var d = 1;
38497                             var firstAdded = false;
38498                             for (var i = 0; i < result.totalRecords ; i++) {
38499                                 //var d= st.add(Date.DAY, i);
38500                                 var row = {};
38501                                 var added = 0;
38502                                 for(var w = 0 ; w < 7 ; w++){
38503                                     if(!firstAdded && firstOfMonth != w){
38504                                         continue;
38505                                     }
38506                                     if(d > days){
38507                                         continue;
38508                                     }
38509                                     firstAdded = true;
38510                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
38511                                     row['weekday'+w] = String.format(
38512                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
38513                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
38514                                                     d,
38515                                                     date.format('Y-m-')+dd
38516                                                 );
38517                                     added++;
38518                                     if(typeof(_this.tdata[d]) != 'undefined'){
38519                                         Roo.each(_this.tdata[d], function(r){
38520                                             var is_sub = '';
38521                                             var deactive = '';
38522                                             var id = r.id;
38523                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
38524                                             if(r.parent_id*1>0){
38525                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
38526                                                 id = r.parent_id;
38527                                             }
38528                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
38529                                                 deactive = 'de-act-link';
38530                                             }
38531                                             
38532                                             row['weekday'+w] += String.format(
38533                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
38534                                                     id, //0
38535                                                     r.product_id_name, //1
38536                                                     r.when_dt.format('h:ia'), //2
38537                                                     is_sub, //3
38538                                                     deactive, //4
38539                                                     desc // 5
38540                                             );
38541                                         });
38542                                     }
38543                                     d++;
38544                                 }
38545                                 
38546                                 // only do this if something added..
38547                                 if(added > 0){ 
38548                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
38549                                 }
38550                                 
38551                                 
38552                                 // push it twice. (second one with an hour..
38553                                 
38554                             }
38555                             //Roo.log(result);
38556                             this.fireEvent("load", this, o, o.request.arg);
38557                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
38558                         },
38559                     sortInfo : {field: 'when_dt', direction : 'ASC' },
38560                     proxy : {
38561                         xtype: 'HttpProxy',
38562                         xns: Roo.data,
38563                         method : 'GET',
38564                         url : baseURL + '/Roo/Shop_course.php'
38565                     },
38566                     reader : {
38567                         xtype: 'JsonReader',
38568                         xns: Roo.data,
38569                         id : 'id',
38570                         fields : [
38571                             {
38572                                 'name': 'id',
38573                                 'type': 'int'
38574                             },
38575                             {
38576                                 'name': 'when_dt',
38577                                 'type': 'string'
38578                             },
38579                             {
38580                                 'name': 'end_dt',
38581                                 'type': 'string'
38582                             },
38583                             {
38584                                 'name': 'parent_id',
38585                                 'type': 'int'
38586                             },
38587                             {
38588                                 'name': 'product_id',
38589                                 'type': 'int'
38590                             },
38591                             {
38592                                 'name': 'productitem_id',
38593                                 'type': 'int'
38594                             },
38595                             {
38596                                 'name': 'guid',
38597                                 'type': 'int'
38598                             }
38599                         ]
38600                     }
38601                 },
38602                 toolbar : {
38603                     xtype: 'Toolbar',
38604                     xns: Roo,
38605                     items : [
38606                         {
38607                             xtype: 'Button',
38608                             xns: Roo.Toolbar,
38609                             listeners : {
38610                                 click : function (_self, e)
38611                                 {
38612                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
38613                                     sd.setMonth(sd.getMonth()-1);
38614                                     _this.monthField.setValue(sd.format('Y-m-d'));
38615                                     _this.grid.ds.load({});
38616                                 }
38617                             },
38618                             text : "Back"
38619                         },
38620                         {
38621                             xtype: 'Separator',
38622                             xns: Roo.Toolbar
38623                         },
38624                         {
38625                             xtype: 'MonthField',
38626                             xns: Roo.form,
38627                             listeners : {
38628                                 render : function (_self)
38629                                 {
38630                                     _this.monthField = _self;
38631                                    // _this.monthField.set  today
38632                                 },
38633                                 select : function (combo, date)
38634                                 {
38635                                     _this.grid.ds.load({});
38636                                 }
38637                             },
38638                             value : (function() { return new Date(); })()
38639                         },
38640                         {
38641                             xtype: 'Separator',
38642                             xns: Roo.Toolbar
38643                         },
38644                         {
38645                             xtype: 'TextItem',
38646                             xns: Roo.Toolbar,
38647                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
38648                         },
38649                         {
38650                             xtype: 'Fill',
38651                             xns: Roo.Toolbar
38652                         },
38653                         {
38654                             xtype: 'Button',
38655                             xns: Roo.Toolbar,
38656                             listeners : {
38657                                 click : function (_self, e)
38658                                 {
38659                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
38660                                     sd.setMonth(sd.getMonth()+1);
38661                                     _this.monthField.setValue(sd.format('Y-m-d'));
38662                                     _this.grid.ds.load({});
38663                                 }
38664                             },
38665                             text : "Next"
38666                         }
38667                     ]
38668                 },
38669                  
38670             }
38671         };
38672         
38673         *//*
38674  * Based on:
38675  * Ext JS Library 1.1.1
38676  * Copyright(c) 2006-2007, Ext JS, LLC.
38677  *
38678  * Originally Released Under LGPL - original licence link has changed is not relivant.
38679  *
38680  * Fork - LGPL
38681  * <script type="text/javascript">
38682  */
38683  
38684 /**
38685  * @class Roo.LoadMask
38686  * A simple utility class for generically masking elements while loading data.  If the element being masked has
38687  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
38688  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
38689  * element's UpdateManager load indicator and will be destroyed after the initial load.
38690  * @constructor
38691  * Create a new LoadMask
38692  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
38693  * @param {Object} config The config object
38694  */
38695 Roo.LoadMask = function(el, config){
38696     this.el = Roo.get(el);
38697     Roo.apply(this, config);
38698     if(this.store){
38699         this.store.on('beforeload', this.onBeforeLoad, this);
38700         this.store.on('load', this.onLoad, this);
38701         this.store.on('loadexception', this.onLoadException, this);
38702         this.removeMask = false;
38703     }else{
38704         var um = this.el.getUpdateManager();
38705         um.showLoadIndicator = false; // disable the default indicator
38706         um.on('beforeupdate', this.onBeforeLoad, this);
38707         um.on('update', this.onLoad, this);
38708         um.on('failure', this.onLoad, this);
38709         this.removeMask = true;
38710     }
38711 };
38712
38713 Roo.LoadMask.prototype = {
38714     /**
38715      * @cfg {Boolean} removeMask
38716      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
38717      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
38718      */
38719     /**
38720      * @cfg {String} msg
38721      * The text to display in a centered loading message box (defaults to 'Loading...')
38722      */
38723     msg : 'Loading...',
38724     /**
38725      * @cfg {String} msgCls
38726      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
38727      */
38728     msgCls : 'x-mask-loading',
38729
38730     /**
38731      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
38732      * @type Boolean
38733      */
38734     disabled: false,
38735
38736     /**
38737      * Disables the mask to prevent it from being displayed
38738      */
38739     disable : function(){
38740        this.disabled = true;
38741     },
38742
38743     /**
38744      * Enables the mask so that it can be displayed
38745      */
38746     enable : function(){
38747         this.disabled = false;
38748     },
38749     
38750     onLoadException : function()
38751     {
38752         Roo.log(arguments);
38753         
38754         if (typeof(arguments[3]) != 'undefined') {
38755             Roo.MessageBox.alert("Error loading",arguments[3]);
38756         } 
38757         /*
38758         try {
38759             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
38760                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
38761             }   
38762         } catch(e) {
38763             
38764         }
38765         */
38766     
38767         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
38768     },
38769     // private
38770     onLoad : function()
38771     {
38772         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
38773     },
38774
38775     // private
38776     onBeforeLoad : function(){
38777         if(!this.disabled){
38778             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
38779         }
38780     },
38781
38782     // private
38783     destroy : function(){
38784         if(this.store){
38785             this.store.un('beforeload', this.onBeforeLoad, this);
38786             this.store.un('load', this.onLoad, this);
38787             this.store.un('loadexception', this.onLoadException, this);
38788         }else{
38789             var um = this.el.getUpdateManager();
38790             um.un('beforeupdate', this.onBeforeLoad, this);
38791             um.un('update', this.onLoad, this);
38792             um.un('failure', this.onLoad, this);
38793         }
38794     }
38795 };/*
38796  * Based on:
38797  * Ext JS Library 1.1.1
38798  * Copyright(c) 2006-2007, Ext JS, LLC.
38799  *
38800  * Originally Released Under LGPL - original licence link has changed is not relivant.
38801  *
38802  * Fork - LGPL
38803  * <script type="text/javascript">
38804  */
38805
38806
38807 /**
38808  * @class Roo.XTemplate
38809  * @extends Roo.Template
38810  * Provides a template that can have nested templates for loops or conditionals. The syntax is:
38811 <pre><code>
38812 var t = new Roo.XTemplate(
38813         '&lt;select name="{name}"&gt;',
38814                 '&lt;tpl for="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
38815         '&lt;/select&gt;'
38816 );
38817  
38818 // then append, applying the master template values
38819  </code></pre>
38820  *
38821  * Supported features:
38822  *
38823  *  Tags:
38824
38825 <pre><code>
38826       {a_variable} - output encoded.
38827       {a_variable.format:("Y-m-d")} - call a method on the variable
38828       {a_variable:raw} - unencoded output
38829       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
38830       {a_variable:this.method_on_template(...)} - call a method on the template object.
38831  
38832 </code></pre>
38833  *  The tpl tag:
38834 <pre><code>
38835         &lt;tpl for="a_variable or condition.."&gt;&lt;/tpl&gt;
38836         &lt;tpl if="a_variable or condition"&gt;&lt;/tpl&gt;
38837         &lt;tpl exec="some javascript"&gt;&lt;/tpl&gt;
38838         &lt;tpl name="named_template"&gt;&lt;/tpl&gt; (experimental)
38839   
38840         &lt;tpl for="."&gt;&lt;/tpl&gt; - just iterate the property..
38841         &lt;tpl for=".."&gt;&lt;/tpl&gt; - iterates with the parent (probably the template) 
38842 </code></pre>
38843  *      
38844  */
38845 Roo.XTemplate = function()
38846 {
38847     Roo.XTemplate.superclass.constructor.apply(this, arguments);
38848     if (this.html) {
38849         this.compile();
38850     }
38851 };
38852
38853
38854 Roo.extend(Roo.XTemplate, Roo.Template, {
38855
38856     /**
38857      * The various sub templates
38858      */
38859     tpls : false,
38860     /**
38861      *
38862      * basic tag replacing syntax
38863      * WORD:WORD()
38864      *
38865      * // you can fake an object call by doing this
38866      *  x.t:(test,tesT) 
38867      * 
38868      */
38869     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
38870
38871     /**
38872      * compile the template
38873      *
38874      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
38875      *
38876      */
38877     compile: function()
38878     {
38879         var s = this.html;
38880      
38881         s = ['<tpl>', s, '</tpl>'].join('');
38882     
38883         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
38884             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
38885             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
38886             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
38887             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
38888             m,
38889             id     = 0,
38890             tpls   = [];
38891     
38892         while(true == !!(m = s.match(re))){
38893             var forMatch   = m[0].match(nameRe),
38894                 ifMatch   = m[0].match(ifRe),
38895                 execMatch   = m[0].match(execRe),
38896                 namedMatch   = m[0].match(namedRe),
38897                 
38898                 exp  = null, 
38899                 fn   = null,
38900                 exec = null,
38901                 name = forMatch && forMatch[1] ? forMatch[1] : '';
38902                 
38903             if (ifMatch) {
38904                 // if - puts fn into test..
38905                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
38906                 if(exp){
38907                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
38908                 }
38909             }
38910             
38911             if (execMatch) {
38912                 // exec - calls a function... returns empty if true is  returned.
38913                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
38914                 if(exp){
38915                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
38916                 }
38917             }
38918             
38919             
38920             if (name) {
38921                 // for = 
38922                 switch(name){
38923                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
38924                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
38925                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
38926                 }
38927             }
38928             var uid = namedMatch ? namedMatch[1] : id;
38929             
38930             
38931             tpls.push({
38932                 id:     namedMatch ? namedMatch[1] : id,
38933                 target: name,
38934                 exec:   exec,
38935                 test:   fn,
38936                 body:   m[1] || ''
38937             });
38938             if (namedMatch) {
38939                 s = s.replace(m[0], '');
38940             } else { 
38941                 s = s.replace(m[0], '{xtpl'+ id + '}');
38942             }
38943             ++id;
38944         }
38945         this.tpls = [];
38946         for(var i = tpls.length-1; i >= 0; --i){
38947             this.compileTpl(tpls[i]);
38948             this.tpls[tpls[i].id] = tpls[i];
38949         }
38950         this.master = tpls[tpls.length-1];
38951         return this;
38952     },
38953     /**
38954      * same as applyTemplate, except it's done to one of the subTemplates
38955      * when using named templates, you can do:
38956      *
38957      * var str = pl.applySubTemplate('your-name', values);
38958      *
38959      * 
38960      * @param {Number} id of the template
38961      * @param {Object} values to apply to template
38962      * @param {Object} parent (normaly the instance of this object)
38963      */
38964     applySubTemplate : function(id, values, parent)
38965     {
38966         
38967         
38968         var t = this.tpls[id];
38969         
38970         
38971         try { 
38972             if(t.test && !t.test.call(this, values, parent)){
38973                 return '';
38974             }
38975         } catch(e) {
38976             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
38977             Roo.log(e.toString());
38978             Roo.log(t.test);
38979             return ''
38980         }
38981         try { 
38982             
38983             if(t.exec && t.exec.call(this, values, parent)){
38984                 return '';
38985             }
38986         } catch(e) {
38987             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
38988             Roo.log(e.toString());
38989             Roo.log(t.exec);
38990             return ''
38991         }
38992         try {
38993             var vs = t.target ? t.target.call(this, values, parent) : values;
38994             parent = t.target ? values : parent;
38995             if(t.target && vs instanceof Array){
38996                 var buf = [];
38997                 for(var i = 0, len = vs.length; i < len; i++){
38998                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
38999                 }
39000                 return buf.join('');
39001             }
39002             return t.compiled.call(this, vs, parent);
39003         } catch (e) {
39004             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
39005             Roo.log(e.toString());
39006             Roo.log(t.compiled);
39007             return '';
39008         }
39009     },
39010
39011     compileTpl : function(tpl)
39012     {
39013         var fm = Roo.util.Format;
39014         var useF = this.disableFormats !== true;
39015         var sep = Roo.isGecko ? "+" : ",";
39016         var undef = function(str) {
39017             Roo.log("Property not found :"  + str);
39018             return '';
39019         };
39020         
39021         var fn = function(m, name, format, args)
39022         {
39023             //Roo.log(arguments);
39024             args = args ? args.replace(/\\'/g,"'") : args;
39025             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
39026             if (typeof(format) == 'undefined') {
39027                 format= 'htmlEncode';
39028             }
39029             if (format == 'raw' ) {
39030                 format = false;
39031             }
39032             
39033             if(name.substr(0, 4) == 'xtpl'){
39034                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
39035             }
39036             
39037             // build an array of options to determine if value is undefined..
39038             
39039             // basically get 'xxxx.yyyy' then do
39040             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
39041             //    (function () { Roo.log("Property not found"); return ''; })() :
39042             //    ......
39043             
39044             var udef_ar = [];
39045             var lookfor = '';
39046             Roo.each(name.split('.'), function(st) {
39047                 lookfor += (lookfor.length ? '.': '') + st;
39048                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
39049             });
39050             
39051             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
39052             
39053             
39054             if(format && useF){
39055                 
39056                 args = args ? ',' + args : "";
39057                  
39058                 if(format.substr(0, 5) != "this."){
39059                     format = "fm." + format + '(';
39060                 }else{
39061                     format = 'this.call("'+ format.substr(5) + '", ';
39062                     args = ", values";
39063                 }
39064                 
39065                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
39066             }
39067              
39068             if (args.length) {
39069                 // called with xxyx.yuu:(test,test)
39070                 // change to ()
39071                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
39072             }
39073             // raw.. - :raw modifier..
39074             return "'"+ sep + udef_st  + name + ")"+sep+"'";
39075             
39076         };
39077         var body;
39078         // branched to use + in gecko and [].join() in others
39079         if(Roo.isGecko){
39080             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
39081                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
39082                     "';};};";
39083         }else{
39084             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
39085             body.push(tpl.body.replace(/(\r\n|\n)/g,
39086                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
39087             body.push("'].join('');};};");
39088             body = body.join('');
39089         }
39090         
39091         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
39092        
39093         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
39094         eval(body);
39095         
39096         return this;
39097     },
39098
39099     applyTemplate : function(values){
39100         return this.master.compiled.call(this, values, {});
39101         //var s = this.subs;
39102     },
39103
39104     apply : function(){
39105         return this.applyTemplate.apply(this, arguments);
39106     }
39107
39108  });
39109
39110 Roo.XTemplate.from = function(el){
39111     el = Roo.getDom(el);
39112     return new Roo.XTemplate(el.value || el.innerHTML);
39113 };