dd08e9df7d5ac93a681b2e1657281795d59a236f
[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      * Gets the number of cached records.
790      * <p>
791      * <em>If using paging, this may not be the total size of the dataset. If the data object
792      * used by the Reader contains the dataset size, then the getTotalCount() function returns
793      * the data set size</em>
794      */
795     getCount : function(){
796         return this.data.length || 0;
797     },
798
799     /**
800      * Gets the total number of records in the dataset as returned by the server.
801      * <p>
802      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
803      * the dataset size</em>
804      */
805     getTotalCount : function(){
806         return this.totalLength || 0;
807     },
808
809     /**
810      * Returns the sort state of the Store as an object with two properties:
811      * <pre><code>
812  field {String} The name of the field by which the Records are sorted
813  direction {String} The sort order, "ASC" or "DESC"
814      * </code></pre>
815      */
816     getSortState : function(){
817         return this.sortInfo;
818     },
819
820     // private
821     applySort : function(){
822         if(this.sortInfo && !this.remoteSort){
823             var s = this.sortInfo, f = s.field;
824             var st = this.fields.get(f).sortType;
825             var fn = function(r1, r2){
826                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
827                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
828             };
829             this.data.sort(s.direction, fn);
830             if(this.snapshot && this.snapshot != this.data){
831                 this.snapshot.sort(s.direction, fn);
832             }
833         }
834     },
835
836     /**
837      * Sets the default sort column and order to be used by the next load operation.
838      * @param {String} fieldName The name of the field to sort by.
839      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
840      */
841     setDefaultSort : function(field, dir){
842         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
843     },
844
845     /**
846      * Sort the Records.
847      * If remote sorting is used, the sort is performed on the server, and the cache is
848      * reloaded. If local sorting is used, the cache is sorted internally.
849      * @param {String} fieldName The name of the field to sort by.
850      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
851      */
852     sort : function(fieldName, dir){
853         var f = this.fields.get(fieldName);
854         if(!dir){
855             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
856             
857             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
858                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
859             }else{
860                 dir = f.sortDir;
861             }
862         }
863         this.sortToggle[f.name] = dir;
864         this.sortInfo = {field: f.name, direction: dir};
865         if(!this.remoteSort){
866             this.applySort();
867             this.fireEvent("datachanged", this);
868         }else{
869             this.load(this.lastOptions);
870         }
871     },
872
873     /**
874      * Calls the specified function for each of the Records in the cache.
875      * @param {Function} fn The function to call. The Record is passed as the first parameter.
876      * Returning <em>false</em> aborts and exits the iteration.
877      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
878      */
879     each : function(fn, scope){
880         this.data.each(fn, scope);
881     },
882
883     /**
884      * Gets all records modified since the last commit.  Modified records are persisted across load operations
885      * (e.g., during paging).
886      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
887      */
888     getModifiedRecords : function(){
889         return this.modified;
890     },
891
892     // private
893     createFilterFn : function(property, value, anyMatch){
894         if(!value.exec){ // not a regex
895             value = String(value);
896             if(value.length == 0){
897                 return false;
898             }
899             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
900         }
901         return function(r){
902             return value.test(r.data[property]);
903         };
904     },
905
906     /**
907      * Sums the value of <i>property</i> for each record between start and end and returns the result.
908      * @param {String} property A field on your records
909      * @param {Number} start The record index to start at (defaults to 0)
910      * @param {Number} end The last record index to include (defaults to length - 1)
911      * @return {Number} The sum
912      */
913     sum : function(property, start, end){
914         var rs = this.data.items, v = 0;
915         start = start || 0;
916         end = (end || end === 0) ? end : rs.length-1;
917
918         for(var i = start; i <= end; i++){
919             v += (rs[i].data[property] || 0);
920         }
921         return v;
922     },
923
924     /**
925      * Filter the records by a specified property.
926      * @param {String} field A field on your records
927      * @param {String/RegExp} value Either a string that the field
928      * should start with or a RegExp to test against the field
929      * @param {Boolean} anyMatch True to match any part not just the beginning
930      */
931     filter : function(property, value, anyMatch){
932         var fn = this.createFilterFn(property, value, anyMatch);
933         return fn ? this.filterBy(fn) : this.clearFilter();
934     },
935
936     /**
937      * Filter by a function. The specified function will be called with each
938      * record in this data source. If the function returns true the record is included,
939      * otherwise it is filtered.
940      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
941      * @param {Object} scope (optional) The scope of the function (defaults to this)
942      */
943     filterBy : function(fn, scope){
944         this.snapshot = this.snapshot || this.data;
945         this.data = this.queryBy(fn, scope||this);
946         this.fireEvent("datachanged", this);
947     },
948
949     /**
950      * Query the records by a specified property.
951      * @param {String} field A field on your records
952      * @param {String/RegExp} value Either a string that the field
953      * should start with or a RegExp to test against the field
954      * @param {Boolean} anyMatch True to match any part not just the beginning
955      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
956      */
957     query : function(property, value, anyMatch){
958         var fn = this.createFilterFn(property, value, anyMatch);
959         return fn ? this.queryBy(fn) : this.data.clone();
960     },
961
962     /**
963      * Query by a function. The specified function will be called with each
964      * record in this data source. If the function returns true the record is included
965      * in the results.
966      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
967      * @param {Object} scope (optional) The scope of the function (defaults to this)
968       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
969      **/
970     queryBy : function(fn, scope){
971         var data = this.snapshot || this.data;
972         return data.filterBy(fn, scope||this);
973     },
974
975     /**
976      * Collects unique values for a particular dataIndex from this store.
977      * @param {String} dataIndex The property to collect
978      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
979      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
980      * @return {Array} An array of the unique values
981      **/
982     collect : function(dataIndex, allowNull, bypassFilter){
983         var d = (bypassFilter === true && this.snapshot) ?
984                 this.snapshot.items : this.data.items;
985         var v, sv, r = [], l = {};
986         for(var i = 0, len = d.length; i < len; i++){
987             v = d[i].data[dataIndex];
988             sv = String(v);
989             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
990                 l[sv] = true;
991                 r[r.length] = v;
992             }
993         }
994         return r;
995     },
996
997     /**
998      * Revert to a view of the Record cache with no filtering applied.
999      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
1000      */
1001     clearFilter : function(suppressEvent){
1002         if(this.snapshot && this.snapshot != this.data){
1003             this.data = this.snapshot;
1004             delete this.snapshot;
1005             if(suppressEvent !== true){
1006                 this.fireEvent("datachanged", this);
1007             }
1008         }
1009     },
1010
1011     // private
1012     afterEdit : function(record){
1013         if(this.modified.indexOf(record) == -1){
1014             this.modified.push(record);
1015         }
1016         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
1017     },
1018     
1019     // private
1020     afterReject : function(record){
1021         this.modified.remove(record);
1022         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
1023     },
1024
1025     // private
1026     afterCommit : function(record){
1027         this.modified.remove(record);
1028         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
1029     },
1030
1031     /**
1032      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
1033      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
1034      */
1035     commitChanges : function(){
1036         var m = this.modified.slice(0);
1037         this.modified = [];
1038         for(var i = 0, len = m.length; i < len; i++){
1039             m[i].commit();
1040         }
1041     },
1042
1043     /**
1044      * Cancel outstanding changes on all changed records.
1045      */
1046     rejectChanges : function(){
1047         var m = this.modified.slice(0);
1048         this.modified = [];
1049         for(var i = 0, len = m.length; i < len; i++){
1050             m[i].reject();
1051         }
1052     },
1053
1054     onMetaChange : function(meta, rtype, o){
1055         this.recordType = rtype;
1056         this.fields = rtype.prototype.fields;
1057         delete this.snapshot;
1058         this.sortInfo = meta.sortInfo || this.sortInfo;
1059         this.modified = [];
1060         this.fireEvent('metachange', this, this.reader.meta);
1061     },
1062     
1063     moveIndex : function(data, type)
1064     {
1065         var index = this.indexOf(data);
1066         
1067         var newIndex = index + type;
1068         
1069         this.remove(data);
1070         
1071         this.insert(newIndex, data);
1072         
1073     }
1074 });/*
1075  * Based on:
1076  * Ext JS Library 1.1.1
1077  * Copyright(c) 2006-2007, Ext JS, LLC.
1078  *
1079  * Originally Released Under LGPL - original licence link has changed is not relivant.
1080  *
1081  * Fork - LGPL
1082  * <script type="text/javascript">
1083  */
1084
1085 /**
1086  * @class Roo.data.SimpleStore
1087  * @extends Roo.data.Store
1088  * Small helper class to make creating Stores from Array data easier.
1089  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
1090  * @cfg {Array} fields An array of field definition objects, or field name strings.
1091  * @cfg {Array} data The multi-dimensional array of data
1092  * @constructor
1093  * @param {Object} config
1094  */
1095 Roo.data.SimpleStore = function(config){
1096     Roo.data.SimpleStore.superclass.constructor.call(this, {
1097         isLocal : true,
1098         reader: new Roo.data.ArrayReader({
1099                 id: config.id
1100             },
1101             Roo.data.Record.create(config.fields)
1102         ),
1103         proxy : new Roo.data.MemoryProxy(config.data)
1104     });
1105     this.load();
1106 };
1107 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
1108  * Based on:
1109  * Ext JS Library 1.1.1
1110  * Copyright(c) 2006-2007, Ext JS, LLC.
1111  *
1112  * Originally Released Under LGPL - original licence link has changed is not relivant.
1113  *
1114  * Fork - LGPL
1115  * <script type="text/javascript">
1116  */
1117
1118 /**
1119 /**
1120  * @extends Roo.data.Store
1121  * @class Roo.data.JsonStore
1122  * Small helper class to make creating Stores for JSON data easier. <br/>
1123 <pre><code>
1124 var store = new Roo.data.JsonStore({
1125     url: 'get-images.php',
1126     root: 'images',
1127     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
1128 });
1129 </code></pre>
1130  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
1131  * JsonReader and HttpProxy (unless inline data is provided).</b>
1132  * @cfg {Array} fields An array of field definition objects, or field name strings.
1133  * @constructor
1134  * @param {Object} config
1135  */
1136 Roo.data.JsonStore = function(c){
1137     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
1138         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
1139         reader: new Roo.data.JsonReader(c, c.fields)
1140     }));
1141 };
1142 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
1143  * Based on:
1144  * Ext JS Library 1.1.1
1145  * Copyright(c) 2006-2007, Ext JS, LLC.
1146  *
1147  * Originally Released Under LGPL - original licence link has changed is not relivant.
1148  *
1149  * Fork - LGPL
1150  * <script type="text/javascript">
1151  */
1152
1153  
1154 Roo.data.Field = function(config){
1155     if(typeof config == "string"){
1156         config = {name: config};
1157     }
1158     Roo.apply(this, config);
1159     
1160     if(!this.type){
1161         this.type = "auto";
1162     }
1163     
1164     var st = Roo.data.SortTypes;
1165     // named sortTypes are supported, here we look them up
1166     if(typeof this.sortType == "string"){
1167         this.sortType = st[this.sortType];
1168     }
1169     
1170     // set default sortType for strings and dates
1171     if(!this.sortType){
1172         switch(this.type){
1173             case "string":
1174                 this.sortType = st.asUCString;
1175                 break;
1176             case "date":
1177                 this.sortType = st.asDate;
1178                 break;
1179             default:
1180                 this.sortType = st.none;
1181         }
1182     }
1183
1184     // define once
1185     var stripRe = /[\$,%]/g;
1186
1187     // prebuilt conversion function for this field, instead of
1188     // switching every time we're reading a value
1189     if(!this.convert){
1190         var cv, dateFormat = this.dateFormat;
1191         switch(this.type){
1192             case "":
1193             case "auto":
1194             case undefined:
1195                 cv = function(v){ return v; };
1196                 break;
1197             case "string":
1198                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
1199                 break;
1200             case "int":
1201                 cv = function(v){
1202                     return v !== undefined && v !== null && v !== '' ?
1203                            parseInt(String(v).replace(stripRe, ""), 10) : '';
1204                     };
1205                 break;
1206             case "float":
1207                 cv = function(v){
1208                     return v !== undefined && v !== null && v !== '' ?
1209                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
1210                     };
1211                 break;
1212             case "bool":
1213             case "boolean":
1214                 cv = function(v){ return v === true || v === "true" || v == 1; };
1215                 break;
1216             case "date":
1217                 cv = function(v){
1218                     if(!v){
1219                         return '';
1220                     }
1221                     if(v instanceof Date){
1222                         return v;
1223                     }
1224                     if(dateFormat){
1225                         if(dateFormat == "timestamp"){
1226                             return new Date(v*1000);
1227                         }
1228                         return Date.parseDate(v, dateFormat);
1229                     }
1230                     var parsed = Date.parse(v);
1231                     return parsed ? new Date(parsed) : null;
1232                 };
1233              break;
1234             
1235         }
1236         this.convert = cv;
1237     }
1238 };
1239
1240 Roo.data.Field.prototype = {
1241     dateFormat: null,
1242     defaultValue: "",
1243     mapping: null,
1244     sortType : null,
1245     sortDir : "ASC"
1246 };/*
1247  * Based on:
1248  * Ext JS Library 1.1.1
1249  * Copyright(c) 2006-2007, Ext JS, LLC.
1250  *
1251  * Originally Released Under LGPL - original licence link has changed is not relivant.
1252  *
1253  * Fork - LGPL
1254  * <script type="text/javascript">
1255  */
1256  
1257 // Base class for reading structured data from a data source.  This class is intended to be
1258 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
1259
1260 /**
1261  * @class Roo.data.DataReader
1262  * Base class for reading structured data from a data source.  This class is intended to be
1263  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
1264  */
1265
1266 Roo.data.DataReader = function(meta, recordType){
1267     
1268     this.meta = meta;
1269     
1270     this.recordType = recordType instanceof Array ? 
1271         Roo.data.Record.create(recordType) : recordType;
1272 };
1273
1274 Roo.data.DataReader.prototype = {
1275      /**
1276      * Create an empty record
1277      * @param {Object} data (optional) - overlay some values
1278      * @return {Roo.data.Record} record created.
1279      */
1280     newRow :  function(d) {
1281         var da =  {};
1282         this.recordType.prototype.fields.each(function(c) {
1283             switch( c.type) {
1284                 case 'int' : da[c.name] = 0; break;
1285                 case 'date' : da[c.name] = new Date(); break;
1286                 case 'float' : da[c.name] = 0.0; break;
1287                 case 'boolean' : da[c.name] = false; break;
1288                 default : da[c.name] = ""; break;
1289             }
1290             
1291         });
1292         return new this.recordType(Roo.apply(da, d));
1293     }
1294     
1295 };/*
1296  * Based on:
1297  * Ext JS Library 1.1.1
1298  * Copyright(c) 2006-2007, Ext JS, LLC.
1299  *
1300  * Originally Released Under LGPL - original licence link has changed is not relivant.
1301  *
1302  * Fork - LGPL
1303  * <script type="text/javascript">
1304  */
1305
1306 /**
1307  * @class Roo.data.DataProxy
1308  * @extends Roo.data.Observable
1309  * This class is an abstract base class for implementations which provide retrieval of
1310  * unformatted data objects.<br>
1311  * <p>
1312  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
1313  * (of the appropriate type which knows how to parse the data object) to provide a block of
1314  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
1315  * <p>
1316  * Custom implementations must implement the load method as described in
1317  * {@link Roo.data.HttpProxy#load}.
1318  */
1319 Roo.data.DataProxy = function(){
1320     this.addEvents({
1321         /**
1322          * @event beforeload
1323          * Fires before a network request is made to retrieve a data object.
1324          * @param {Object} This DataProxy object.
1325          * @param {Object} params The params parameter to the load function.
1326          */
1327         beforeload : true,
1328         /**
1329          * @event load
1330          * Fires before the load method's callback is called.
1331          * @param {Object} This DataProxy object.
1332          * @param {Object} o The data object.
1333          * @param {Object} arg The callback argument object passed to the load function.
1334          */
1335         load : true,
1336         /**
1337          * @event loadexception
1338          * Fires if an Exception occurs during data retrieval.
1339          * @param {Object} This DataProxy object.
1340          * @param {Object} o The data object.
1341          * @param {Object} arg The callback argument object passed to the load function.
1342          * @param {Object} e The Exception.
1343          */
1344         loadexception : true
1345     });
1346     Roo.data.DataProxy.superclass.constructor.call(this);
1347 };
1348
1349 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
1350
1351     /**
1352      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
1353      */
1354 /*
1355  * Based on:
1356  * Ext JS Library 1.1.1
1357  * Copyright(c) 2006-2007, Ext JS, LLC.
1358  *
1359  * Originally Released Under LGPL - original licence link has changed is not relivant.
1360  *
1361  * Fork - LGPL
1362  * <script type="text/javascript">
1363  */
1364 /**
1365  * @class Roo.data.MemoryProxy
1366  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
1367  * to the Reader when its load method is called.
1368  * @constructor
1369  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
1370  */
1371 Roo.data.MemoryProxy = function(data){
1372     if (data.data) {
1373         data = data.data;
1374     }
1375     Roo.data.MemoryProxy.superclass.constructor.call(this);
1376     this.data = data;
1377 };
1378
1379 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
1380     
1381     /**
1382      * Load data from the requested source (in this case an in-memory
1383      * data object passed to the constructor), read the data object into
1384      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
1385      * process that block using the passed callback.
1386      * @param {Object} params This parameter is not used by the MemoryProxy class.
1387      * @param {Roo.data.DataReader} reader The Reader object which converts the data
1388      * object into a block of Roo.data.Records.
1389      * @param {Function} callback The function into which to pass the block of Roo.data.records.
1390      * The function must be passed <ul>
1391      * <li>The Record block object</li>
1392      * <li>The "arg" argument from the load function</li>
1393      * <li>A boolean success indicator</li>
1394      * </ul>
1395      * @param {Object} scope The scope in which to call the callback
1396      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
1397      */
1398     load : function(params, reader, callback, scope, arg){
1399         params = params || {};
1400         var result;
1401         try {
1402             result = reader.readRecords(params.data ? params.data :this.data);
1403         }catch(e){
1404             this.fireEvent("loadexception", this, arg, null, e);
1405             callback.call(scope, null, arg, false);
1406             return;
1407         }
1408         callback.call(scope, result, arg, true);
1409     },
1410     
1411     // private
1412     update : function(params, records){
1413         
1414     }
1415 });/*
1416  * Based on:
1417  * Ext JS Library 1.1.1
1418  * Copyright(c) 2006-2007, Ext JS, LLC.
1419  *
1420  * Originally Released Under LGPL - original licence link has changed is not relivant.
1421  *
1422  * Fork - LGPL
1423  * <script type="text/javascript">
1424  */
1425 /**
1426  * @class Roo.data.HttpProxy
1427  * @extends Roo.data.DataProxy
1428  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
1429  * configured to reference a certain URL.<br><br>
1430  * <p>
1431  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
1432  * from which the running page was served.<br><br>
1433  * <p>
1434  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
1435  * <p>
1436  * Be aware that to enable the browser to parse an XML document, the server must set
1437  * the Content-Type header in the HTTP response to "text/xml".
1438  * @constructor
1439  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
1440  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
1441  * will be used to make the request.
1442  */
1443 Roo.data.HttpProxy = function(conn){
1444     Roo.data.HttpProxy.superclass.constructor.call(this);
1445     // is conn a conn config or a real conn?
1446     this.conn = conn;
1447     this.useAjax = !conn || !conn.events;
1448   
1449 };
1450
1451 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
1452     // thse are take from connection...
1453     
1454     /**
1455      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
1456      */
1457     /**
1458      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
1459      * extra parameters to each request made by this object. (defaults to undefined)
1460      */
1461     /**
1462      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
1463      *  to each request made by this object. (defaults to undefined)
1464      */
1465     /**
1466      * @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)
1467      */
1468     /**
1469      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
1470      */
1471      /**
1472      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
1473      * @type Boolean
1474      */
1475   
1476
1477     /**
1478      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
1479      * @type Boolean
1480      */
1481     /**
1482      * Return the {@link Roo.data.Connection} object being used by this Proxy.
1483      * @return {Connection} The Connection object. This object may be used to subscribe to events on
1484      * a finer-grained basis than the DataProxy events.
1485      */
1486     getConnection : function(){
1487         return this.useAjax ? Roo.Ajax : this.conn;
1488     },
1489
1490     /**
1491      * Load data from the configured {@link Roo.data.Connection}, read the data object into
1492      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
1493      * process that block using the passed callback.
1494      * @param {Object} params An object containing properties which are to be used as HTTP parameters
1495      * for the request to the remote server.
1496      * @param {Roo.data.DataReader} reader The Reader object which converts the data
1497      * object into a block of Roo.data.Records.
1498      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
1499      * The function must be passed <ul>
1500      * <li>The Record block object</li>
1501      * <li>The "arg" argument from the load function</li>
1502      * <li>A boolean success indicator</li>
1503      * </ul>
1504      * @param {Object} scope The scope in which to call the callback
1505      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
1506      */
1507     load : function(params, reader, callback, scope, arg){
1508         if(this.fireEvent("beforeload", this, params) !== false){
1509             var  o = {
1510                 params : params || {},
1511                 request: {
1512                     callback : callback,
1513                     scope : scope,
1514                     arg : arg
1515                 },
1516                 reader: reader,
1517                 callback : this.loadResponse,
1518                 scope: this
1519             };
1520             if(this.useAjax){
1521                 Roo.applyIf(o, this.conn);
1522                 if(this.activeRequest){
1523                     Roo.Ajax.abort(this.activeRequest);
1524                 }
1525                 this.activeRequest = Roo.Ajax.request(o);
1526             }else{
1527                 this.conn.request(o);
1528             }
1529         }else{
1530             callback.call(scope||this, null, arg, false);
1531         }
1532     },
1533
1534     // private
1535     loadResponse : function(o, success, response){
1536         delete this.activeRequest;
1537         if(!success){
1538             this.fireEvent("loadexception", this, o, response);
1539             o.request.callback.call(o.request.scope, null, o.request.arg, false);
1540             return;
1541         }
1542         var result;
1543         try {
1544             result = o.reader.read(response);
1545         }catch(e){
1546             this.fireEvent("loadexception", this, o, response, e);
1547             o.request.callback.call(o.request.scope, null, o.request.arg, false);
1548             return;
1549         }
1550         
1551         this.fireEvent("load", this, o, o.request.arg);
1552         o.request.callback.call(o.request.scope, result, o.request.arg, true);
1553     },
1554
1555     // private
1556     update : function(dataSet){
1557
1558     },
1559
1560     // private
1561     updateResponse : function(dataSet){
1562
1563     }
1564 });/*
1565  * Based on:
1566  * Ext JS Library 1.1.1
1567  * Copyright(c) 2006-2007, Ext JS, LLC.
1568  *
1569  * Originally Released Under LGPL - original licence link has changed is not relivant.
1570  *
1571  * Fork - LGPL
1572  * <script type="text/javascript">
1573  */
1574
1575 /**
1576  * @class Roo.data.ScriptTagProxy
1577  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
1578  * other than the originating domain of the running page.<br><br>
1579  * <p>
1580  * <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
1581  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
1582  * <p>
1583  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
1584  * source code that is used as the source inside a &lt;script> tag.<br><br>
1585  * <p>
1586  * In order for the browser to process the returned data, the server must wrap the data object
1587  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
1588  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
1589  * depending on whether the callback name was passed:
1590  * <p>
1591  * <pre><code>
1592 boolean scriptTag = false;
1593 String cb = request.getParameter("callback");
1594 if (cb != null) {
1595     scriptTag = true;
1596     response.setContentType("text/javascript");
1597 } else {
1598     response.setContentType("application/x-json");
1599 }
1600 Writer out = response.getWriter();
1601 if (scriptTag) {
1602     out.write(cb + "(");
1603 }
1604 out.print(dataBlock.toJsonString());
1605 if (scriptTag) {
1606     out.write(");");
1607 }
1608 </pre></code>
1609  *
1610  * @constructor
1611  * @param {Object} config A configuration object.
1612  */
1613 Roo.data.ScriptTagProxy = function(config){
1614     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
1615     Roo.apply(this, config);
1616     this.head = document.getElementsByTagName("head")[0];
1617 };
1618
1619 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
1620
1621 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
1622     /**
1623      * @cfg {String} url The URL from which to request the data object.
1624      */
1625     /**
1626      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
1627      */
1628     timeout : 30000,
1629     /**
1630      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
1631      * the server the name of the callback function set up by the load call to process the returned data object.
1632      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
1633      * javascript output which calls this named function passing the data object as its only parameter.
1634      */
1635     callbackParam : "callback",
1636     /**
1637      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
1638      * name to the request.
1639      */
1640     nocache : true,
1641
1642     /**
1643      * Load data from the configured URL, read the data object into
1644      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
1645      * process that block using the passed callback.
1646      * @param {Object} params An object containing properties which are to be used as HTTP parameters
1647      * for the request to the remote server.
1648      * @param {Roo.data.DataReader} reader The Reader object which converts the data
1649      * object into a block of Roo.data.Records.
1650      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
1651      * The function must be passed <ul>
1652      * <li>The Record block object</li>
1653      * <li>The "arg" argument from the load function</li>
1654      * <li>A boolean success indicator</li>
1655      * </ul>
1656      * @param {Object} scope The scope in which to call the callback
1657      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
1658      */
1659     load : function(params, reader, callback, scope, arg){
1660         if(this.fireEvent("beforeload", this, params) !== false){
1661
1662             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
1663
1664             var url = this.url;
1665             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
1666             if(this.nocache){
1667                 url += "&_dc=" + (new Date().getTime());
1668             }
1669             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
1670             var trans = {
1671                 id : transId,
1672                 cb : "stcCallback"+transId,
1673                 scriptId : "stcScript"+transId,
1674                 params : params,
1675                 arg : arg,
1676                 url : url,
1677                 callback : callback,
1678                 scope : scope,
1679                 reader : reader
1680             };
1681             var conn = this;
1682
1683             window[trans.cb] = function(o){
1684                 conn.handleResponse(o, trans);
1685             };
1686
1687             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
1688
1689             if(this.autoAbort !== false){
1690                 this.abort();
1691             }
1692
1693             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
1694
1695             var script = document.createElement("script");
1696             script.setAttribute("src", url);
1697             script.setAttribute("type", "text/javascript");
1698             script.setAttribute("id", trans.scriptId);
1699             this.head.appendChild(script);
1700
1701             this.trans = trans;
1702         }else{
1703             callback.call(scope||this, null, arg, false);
1704         }
1705     },
1706
1707     // private
1708     isLoading : function(){
1709         return this.trans ? true : false;
1710     },
1711
1712     /**
1713      * Abort the current server request.
1714      */
1715     abort : function(){
1716         if(this.isLoading()){
1717             this.destroyTrans(this.trans);
1718         }
1719     },
1720
1721     // private
1722     destroyTrans : function(trans, isLoaded){
1723         this.head.removeChild(document.getElementById(trans.scriptId));
1724         clearTimeout(trans.timeoutId);
1725         if(isLoaded){
1726             window[trans.cb] = undefined;
1727             try{
1728                 delete window[trans.cb];
1729             }catch(e){}
1730         }else{
1731             // if hasn't been loaded, wait for load to remove it to prevent script error
1732             window[trans.cb] = function(){
1733                 window[trans.cb] = undefined;
1734                 try{
1735                     delete window[trans.cb];
1736                 }catch(e){}
1737             };
1738         }
1739     },
1740
1741     // private
1742     handleResponse : function(o, trans){
1743         this.trans = false;
1744         this.destroyTrans(trans, true);
1745         var result;
1746         try {
1747             result = trans.reader.readRecords(o);
1748         }catch(e){
1749             this.fireEvent("loadexception", this, o, trans.arg, e);
1750             trans.callback.call(trans.scope||window, null, trans.arg, false);
1751             return;
1752         }
1753         this.fireEvent("load", this, o, trans.arg);
1754         trans.callback.call(trans.scope||window, result, trans.arg, true);
1755     },
1756
1757     // private
1758     handleFailure : function(trans){
1759         this.trans = false;
1760         this.destroyTrans(trans, false);
1761         this.fireEvent("loadexception", this, null, trans.arg);
1762         trans.callback.call(trans.scope||window, null, trans.arg, false);
1763     }
1764 });/*
1765  * Based on:
1766  * Ext JS Library 1.1.1
1767  * Copyright(c) 2006-2007, Ext JS, LLC.
1768  *
1769  * Originally Released Under LGPL - original licence link has changed is not relivant.
1770  *
1771  * Fork - LGPL
1772  * <script type="text/javascript">
1773  */
1774
1775 /**
1776  * @class Roo.data.JsonReader
1777  * @extends Roo.data.DataReader
1778  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
1779  * based on mappings in a provided Roo.data.Record constructor.
1780  * 
1781  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
1782  * in the reply previously. 
1783  * 
1784  * <p>
1785  * Example code:
1786  * <pre><code>
1787 var RecordDef = Roo.data.Record.create([
1788     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
1789     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
1790 ]);
1791 var myReader = new Roo.data.JsonReader({
1792     totalProperty: "results",    // The property which contains the total dataset size (optional)
1793     root: "rows",                // The property which contains an Array of row objects
1794     id: "id"                     // The property within each row object that provides an ID for the record (optional)
1795 }, RecordDef);
1796 </code></pre>
1797  * <p>
1798  * This would consume a JSON file like this:
1799  * <pre><code>
1800 { 'results': 2, 'rows': [
1801     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
1802     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
1803 }
1804 </code></pre>
1805  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
1806  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
1807  * paged from the remote server.
1808  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
1809  * @cfg {String} root name of the property which contains the Array of row objects.
1810  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
1811  * @cfg {Array} fields Array of field definition objects
1812  * @constructor
1813  * Create a new JsonReader
1814  * @param {Object} meta Metadata configuration options
1815  * @param {Object} recordType Either an Array of field definition objects,
1816  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
1817  */
1818 Roo.data.JsonReader = function(meta, recordType){
1819     
1820     meta = meta || {};
1821     // set some defaults:
1822     Roo.applyIf(meta, {
1823         totalProperty: 'total',
1824         successProperty : 'success',
1825         root : 'data',
1826         id : 'id'
1827     });
1828     
1829     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
1830 };
1831 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
1832     
1833     /**
1834      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
1835      * Used by Store query builder to append _requestMeta to params.
1836      * 
1837      */
1838     metaFromRemote : false,
1839     /**
1840      * This method is only used by a DataProxy which has retrieved data from a remote server.
1841      * @param {Object} response The XHR object which contains the JSON data in its responseText.
1842      * @return {Object} data A data block which is used by an Roo.data.Store object as
1843      * a cache of Roo.data.Records.
1844      */
1845     read : function(response){
1846         var json = response.responseText;
1847        
1848         var o = /* eval:var:o */ eval("("+json+")");
1849         if(!o) {
1850             throw {message: "JsonReader.read: Json object not found"};
1851         }
1852         
1853         if(o.metaData){
1854             
1855             delete this.ef;
1856             this.metaFromRemote = true;
1857             this.meta = o.metaData;
1858             this.recordType = Roo.data.Record.create(o.metaData.fields);
1859             this.onMetaChange(this.meta, this.recordType, o);
1860         }
1861         return this.readRecords(o);
1862     },
1863
1864     // private function a store will implement
1865     onMetaChange : function(meta, recordType, o){
1866
1867     },
1868
1869     /**
1870          * @ignore
1871          */
1872     simpleAccess: function(obj, subsc) {
1873         return obj[subsc];
1874     },
1875
1876         /**
1877          * @ignore
1878          */
1879     getJsonAccessor: function(){
1880         var re = /[\[\.]/;
1881         return function(expr) {
1882             try {
1883                 return(re.test(expr))
1884                     ? new Function("obj", "return obj." + expr)
1885                     : function(obj){
1886                         return obj[expr];
1887                     };
1888             } catch(e){}
1889             return Roo.emptyFn;
1890         };
1891     }(),
1892
1893     /**
1894      * Create a data block containing Roo.data.Records from an XML document.
1895      * @param {Object} o An object which contains an Array of row objects in the property specified
1896      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
1897      * which contains the total size of the dataset.
1898      * @return {Object} data A data block which is used by an Roo.data.Store object as
1899      * a cache of Roo.data.Records.
1900      */
1901     readRecords : function(o){
1902         /**
1903          * After any data loads, the raw JSON data is available for further custom processing.
1904          * @type Object
1905          */
1906         this.o = o;
1907         var s = this.meta, Record = this.recordType,
1908             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
1909
1910 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
1911         if (!this.ef) {
1912             if(s.totalProperty) {
1913                     this.getTotal = this.getJsonAccessor(s.totalProperty);
1914                 }
1915                 if(s.successProperty) {
1916                     this.getSuccess = this.getJsonAccessor(s.successProperty);
1917                 }
1918                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
1919                 if (s.id) {
1920                         var g = this.getJsonAccessor(s.id);
1921                         this.getId = function(rec) {
1922                                 var r = g(rec);  
1923                                 return (r === undefined || r === "") ? null : r;
1924                         };
1925                 } else {
1926                         this.getId = function(){return null;};
1927                 }
1928             this.ef = [];
1929             for(var jj = 0; jj < fl; jj++){
1930                 f = fi[jj];
1931                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
1932                 this.ef[jj] = this.getJsonAccessor(map);
1933             }
1934         }
1935
1936         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
1937         if(s.totalProperty){
1938             var vt = parseInt(this.getTotal(o), 10);
1939             if(!isNaN(vt)){
1940                 totalRecords = vt;
1941             }
1942         }
1943         if(s.successProperty){
1944             var vs = this.getSuccess(o);
1945             if(vs === false || vs === 'false'){
1946                 success = false;
1947             }
1948         }
1949         var records = [];
1950         for(var i = 0; i < c; i++){
1951                 var n = root[i];
1952             var values = {};
1953             var id = this.getId(n);
1954             for(var j = 0; j < fl; j++){
1955                 f = fi[j];
1956             var v = this.ef[j](n);
1957             if (!f.convert) {
1958                 Roo.log('missing convert for ' + f.name);
1959                 Roo.log(f);
1960                 continue;
1961             }
1962             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
1963             }
1964             var record = new Record(values, id);
1965             record.json = n;
1966             records[i] = record;
1967         }
1968         return {
1969             raw : o,
1970             success : success,
1971             records : records,
1972             totalRecords : totalRecords
1973         };
1974     }
1975 });/*
1976  * Based on:
1977  * Ext JS Library 1.1.1
1978  * Copyright(c) 2006-2007, Ext JS, LLC.
1979  *
1980  * Originally Released Under LGPL - original licence link has changed is not relivant.
1981  *
1982  * Fork - LGPL
1983  * <script type="text/javascript">
1984  */
1985
1986 /**
1987  * @class Roo.data.XmlReader
1988  * @extends Roo.data.DataReader
1989  * Data reader class to create an Array of {@link Roo.data.Record} objects from an XML document
1990  * based on mappings in a provided Roo.data.Record constructor.<br><br>
1991  * <p>
1992  * <em>Note that in order for the browser to parse a returned XML document, the Content-Type
1993  * header in the HTTP response must be set to "text/xml".</em>
1994  * <p>
1995  * Example code:
1996  * <pre><code>
1997 var RecordDef = Roo.data.Record.create([
1998    {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
1999    {name: 'occupation'}                 // This field will use "occupation" as the mapping.
2000 ]);
2001 var myReader = new Roo.data.XmlReader({
2002    totalRecords: "results", // The element which contains the total dataset size (optional)
2003    record: "row",           // The repeated element which contains row information
2004    id: "id"                 // The element within the row that provides an ID for the record (optional)
2005 }, RecordDef);
2006 </code></pre>
2007  * <p>
2008  * This would consume an XML file like this:
2009  * <pre><code>
2010 &lt;?xml?>
2011 &lt;dataset>
2012  &lt;results>2&lt;/results>
2013  &lt;row>
2014    &lt;id>1&lt;/id>
2015    &lt;name>Bill&lt;/name>
2016    &lt;occupation>Gardener&lt;/occupation>
2017  &lt;/row>
2018  &lt;row>
2019    &lt;id>2&lt;/id>
2020    &lt;name>Ben&lt;/name>
2021    &lt;occupation>Horticulturalist&lt;/occupation>
2022  &lt;/row>
2023 &lt;/dataset>
2024 </code></pre>
2025  * @cfg {String} totalRecords The DomQuery path from which to retrieve the total number of records
2026  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
2027  * paged from the remote server.
2028  * @cfg {String} record The DomQuery path to the repeated element which contains record information.
2029  * @cfg {String} success The DomQuery path to the success attribute used by forms.
2030  * @cfg {String} id The DomQuery path relative from the record element to the element that contains
2031  * a record identifier value.
2032  * @constructor
2033  * Create a new XmlReader
2034  * @param {Object} meta Metadata configuration options
2035  * @param {Mixed} recordType The definition of the data record type to produce.  This can be either a valid
2036  * Record subclass created with {@link Roo.data.Record#create}, or an array of objects with which to call
2037  * Roo.data.Record.create.  See the {@link Roo.data.Record} class for more details.
2038  */
2039 Roo.data.XmlReader = function(meta, recordType){
2040     meta = meta || {};
2041     Roo.data.XmlReader.superclass.constructor.call(this, meta, recordType||meta.fields);
2042 };
2043 Roo.extend(Roo.data.XmlReader, Roo.data.DataReader, {
2044     /**
2045      * This method is only used by a DataProxy which has retrieved data from a remote server.
2046          * @param {Object} response The XHR object which contains the parsed XML document.  The response is expected
2047          * to contain a method called 'responseXML' that returns an XML document object.
2048      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
2049      * a cache of Roo.data.Records.
2050      */
2051     read : function(response){
2052         var doc = response.responseXML;
2053         if(!doc) {
2054             throw {message: "XmlReader.read: XML Document not available"};
2055         }
2056         return this.readRecords(doc);
2057     },
2058
2059     /**
2060      * Create a data block containing Roo.data.Records from an XML document.
2061          * @param {Object} doc A parsed XML document.
2062      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
2063      * a cache of Roo.data.Records.
2064      */
2065     readRecords : function(doc){
2066         /**
2067          * After any data loads/reads, the raw XML Document is available for further custom processing.
2068          * @type XMLDocument
2069          */
2070         this.xmlData = doc;
2071         var root = doc.documentElement || doc;
2072         var q = Roo.DomQuery;
2073         var recordType = this.recordType, fields = recordType.prototype.fields;
2074         var sid = this.meta.id;
2075         var totalRecords = 0, success = true;
2076         if(this.meta.totalRecords){
2077             totalRecords = q.selectNumber(this.meta.totalRecords, root, 0);
2078         }
2079         
2080         if(this.meta.success){
2081             var sv = q.selectValue(this.meta.success, root, true);
2082             success = sv !== false && sv !== 'false';
2083         }
2084         var records = [];
2085         var ns = q.select(this.meta.record, root);
2086         for(var i = 0, len = ns.length; i < len; i++) {
2087                 var n = ns[i];
2088                 var values = {};
2089                 var id = sid ? q.selectValue(sid, n) : undefined;
2090                 for(var j = 0, jlen = fields.length; j < jlen; j++){
2091                     var f = fields.items[j];
2092                 var v = q.selectValue(f.mapping || f.name, n, f.defaultValue);
2093                     v = f.convert(v);
2094                     values[f.name] = v;
2095                 }
2096                 var record = new recordType(values, id);
2097                 record.node = n;
2098                 records[records.length] = record;
2099             }
2100
2101             return {
2102                 success : success,
2103                 records : records,
2104                 totalRecords : totalRecords || records.length
2105             };
2106     }
2107 });/*
2108  * Based on:
2109  * Ext JS Library 1.1.1
2110  * Copyright(c) 2006-2007, Ext JS, LLC.
2111  *
2112  * Originally Released Under LGPL - original licence link has changed is not relivant.
2113  *
2114  * Fork - LGPL
2115  * <script type="text/javascript">
2116  */
2117
2118 /**
2119  * @class Roo.data.ArrayReader
2120  * @extends Roo.data.DataReader
2121  * Data reader class to create an Array of Roo.data.Record objects from an Array.
2122  * Each element of that Array represents a row of data fields. The
2123  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
2124  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
2125  * <p>
2126  * Example code:.
2127  * <pre><code>
2128 var RecordDef = Roo.data.Record.create([
2129     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
2130     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
2131 ]);
2132 var myReader = new Roo.data.ArrayReader({
2133     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
2134 }, RecordDef);
2135 </code></pre>
2136  * <p>
2137  * This would consume an Array like this:
2138  * <pre><code>
2139 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
2140   </code></pre>
2141  
2142  * @constructor
2143  * Create a new JsonReader
2144  * @param {Object} meta Metadata configuration options.
2145  * @param {Object|Array} recordType Either an Array of field definition objects
2146  * 
2147  * @cfg {Array} fields Array of field definition objects
2148  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
2149  * as specified to {@link Roo.data.Record#create},
2150  * or an {@link Roo.data.Record} object
2151  *
2152  * 
2153  * created using {@link Roo.data.Record#create}.
2154  */
2155 Roo.data.ArrayReader = function(meta, recordType){
2156     
2157      
2158     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
2159 };
2160
2161 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
2162     /**
2163      * Create a data block containing Roo.data.Records from an XML document.
2164      * @param {Object} o An Array of row objects which represents the dataset.
2165      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
2166      * a cache of Roo.data.Records.
2167      */
2168     readRecords : function(o){
2169         var sid = this.meta ? this.meta.id : null;
2170         var recordType = this.recordType, fields = recordType.prototype.fields;
2171         var records = [];
2172         var root = o;
2173             for(var i = 0; i < root.length; i++){
2174                     var n = root[i];
2175                 var values = {};
2176                 var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
2177                 for(var j = 0, jlen = fields.length; j < jlen; j++){
2178                 var f = fields.items[j];
2179                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
2180                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
2181                 v = f.convert(v);
2182                 values[f.name] = v;
2183             }
2184                 var record = new recordType(values, id);
2185                 record.json = n;
2186                 records[records.length] = record;
2187             }
2188             return {
2189                 records : records,
2190                 totalRecords : records.length
2191             };
2192     }
2193 });/*
2194  * Based on:
2195  * Ext JS Library 1.1.1
2196  * Copyright(c) 2006-2007, Ext JS, LLC.
2197  *
2198  * Originally Released Under LGPL - original licence link has changed is not relivant.
2199  *
2200  * Fork - LGPL
2201  * <script type="text/javascript">
2202  */
2203
2204
2205 /**
2206  * @class Roo.data.Tree
2207  * @extends Roo.util.Observable
2208  * Represents a tree data structure and bubbles all the events for its nodes. The nodes
2209  * in the tree have most standard DOM functionality.
2210  * @constructor
2211  * @param {Node} root (optional) The root node
2212  */
2213 Roo.data.Tree = function(root){
2214    this.nodeHash = {};
2215    /**
2216     * The root node for this tree
2217     * @type Node
2218     */
2219    this.root = null;
2220    if(root){
2221        this.setRootNode(root);
2222    }
2223    this.addEvents({
2224        /**
2225         * @event append
2226         * Fires when a new child node is appended to a node in this tree.
2227         * @param {Tree} tree The owner tree
2228         * @param {Node} parent The parent node
2229         * @param {Node} node The newly appended node
2230         * @param {Number} index The index of the newly appended node
2231         */
2232        "append" : true,
2233        /**
2234         * @event remove
2235         * Fires when a child node is removed from a node in this tree.
2236         * @param {Tree} tree The owner tree
2237         * @param {Node} parent The parent node
2238         * @param {Node} node The child node removed
2239         */
2240        "remove" : true,
2241        /**
2242         * @event move
2243         * Fires when a node is moved to a new location in the tree
2244         * @param {Tree} tree The owner tree
2245         * @param {Node} node The node moved
2246         * @param {Node} oldParent The old parent of this node
2247         * @param {Node} newParent The new parent of this node
2248         * @param {Number} index The index it was moved to
2249         */
2250        "move" : true,
2251        /**
2252         * @event insert
2253         * Fires when a new child node is inserted in a node in this tree.
2254         * @param {Tree} tree The owner tree
2255         * @param {Node} parent The parent node
2256         * @param {Node} node The child node inserted
2257         * @param {Node} refNode The child node the node was inserted before
2258         */
2259        "insert" : true,
2260        /**
2261         * @event beforeappend
2262         * Fires before a new child is appended to a node in this tree, return false to cancel the append.
2263         * @param {Tree} tree The owner tree
2264         * @param {Node} parent The parent node
2265         * @param {Node} node The child node to be appended
2266         */
2267        "beforeappend" : true,
2268        /**
2269         * @event beforeremove
2270         * Fires before a child is removed from a node in this tree, return false to cancel the remove.
2271         * @param {Tree} tree The owner tree
2272         * @param {Node} parent The parent node
2273         * @param {Node} node The child node to be removed
2274         */
2275        "beforeremove" : true,
2276        /**
2277         * @event beforemove
2278         * Fires before a node is moved to a new location in the tree. Return false to cancel the move.
2279         * @param {Tree} tree The owner tree
2280         * @param {Node} node The node being moved
2281         * @param {Node} oldParent The parent of the node
2282         * @param {Node} newParent The new parent the node is moving to
2283         * @param {Number} index The index it is being moved to
2284         */
2285        "beforemove" : true,
2286        /**
2287         * @event beforeinsert
2288         * Fires before a new child is inserted in a node in this tree, return false to cancel the insert.
2289         * @param {Tree} tree The owner tree
2290         * @param {Node} parent The parent node
2291         * @param {Node} node The child node to be inserted
2292         * @param {Node} refNode The child node the node is being inserted before
2293         */
2294        "beforeinsert" : true
2295    });
2296
2297     Roo.data.Tree.superclass.constructor.call(this);
2298 };
2299
2300 Roo.extend(Roo.data.Tree, Roo.util.Observable, {
2301     pathSeparator: "/",
2302
2303     proxyNodeEvent : function(){
2304         return this.fireEvent.apply(this, arguments);
2305     },
2306
2307     /**
2308      * Returns the root node for this tree.
2309      * @return {Node}
2310      */
2311     getRootNode : function(){
2312         return this.root;
2313     },
2314
2315     /**
2316      * Sets the root node for this tree.
2317      * @param {Node} node
2318      * @return {Node}
2319      */
2320     setRootNode : function(node){
2321         this.root = node;
2322         node.ownerTree = this;
2323         node.isRoot = true;
2324         this.registerNode(node);
2325         return node;
2326     },
2327
2328     /**
2329      * Gets a node in this tree by its id.
2330      * @param {String} id
2331      * @return {Node}
2332      */
2333     getNodeById : function(id){
2334         return this.nodeHash[id];
2335     },
2336
2337     registerNode : function(node){
2338         this.nodeHash[node.id] = node;
2339     },
2340
2341     unregisterNode : function(node){
2342         delete this.nodeHash[node.id];
2343     },
2344
2345     toString : function(){
2346         return "[Tree"+(this.id?" "+this.id:"")+"]";
2347     }
2348 });
2349
2350 /**
2351  * @class Roo.data.Node
2352  * @extends Roo.util.Observable
2353  * @cfg {Boolean} leaf true if this node is a leaf and does not have children
2354  * @cfg {String} id The id for this node. If one is not specified, one is generated.
2355  * @constructor
2356  * @param {Object} attributes The attributes/config for the node
2357  */
2358 Roo.data.Node = function(attributes){
2359     /**
2360      * The attributes supplied for the node. You can use this property to access any custom attributes you supplied.
2361      * @type {Object}
2362      */
2363     this.attributes = attributes || {};
2364     this.leaf = this.attributes.leaf;
2365     /**
2366      * The node id. @type String
2367      */
2368     this.id = this.attributes.id;
2369     if(!this.id){
2370         this.id = Roo.id(null, "ynode-");
2371         this.attributes.id = this.id;
2372     }
2373      
2374     
2375     /**
2376      * All child nodes of this node. @type Array
2377      */
2378     this.childNodes = [];
2379     if(!this.childNodes.indexOf){ // indexOf is a must
2380         this.childNodes.indexOf = function(o){
2381             for(var i = 0, len = this.length; i < len; i++){
2382                 if(this[i] == o) {
2383                     return i;
2384                 }
2385             }
2386             return -1;
2387         };
2388     }
2389     /**
2390      * The parent node for this node. @type Node
2391      */
2392     this.parentNode = null;
2393     /**
2394      * The first direct child node of this node, or null if this node has no child nodes. @type Node
2395      */
2396     this.firstChild = null;
2397     /**
2398      * The last direct child node of this node, or null if this node has no child nodes. @type Node
2399      */
2400     this.lastChild = null;
2401     /**
2402      * The node immediately preceding this node in the tree, or null if there is no sibling node. @type Node
2403      */
2404     this.previousSibling = null;
2405     /**
2406      * The node immediately following this node in the tree, or null if there is no sibling node. @type Node
2407      */
2408     this.nextSibling = null;
2409
2410     this.addEvents({
2411        /**
2412         * @event append
2413         * Fires when a new child node is appended
2414         * @param {Tree} tree The owner tree
2415         * @param {Node} this This node
2416         * @param {Node} node The newly appended node
2417         * @param {Number} index The index of the newly appended node
2418         */
2419        "append" : true,
2420        /**
2421         * @event remove
2422         * Fires when a child node is removed
2423         * @param {Tree} tree The owner tree
2424         * @param {Node} this This node
2425         * @param {Node} node The removed node
2426         */
2427        "remove" : true,
2428        /**
2429         * @event move
2430         * Fires when this node is moved to a new location in the tree
2431         * @param {Tree} tree The owner tree
2432         * @param {Node} this This node
2433         * @param {Node} oldParent The old parent of this node
2434         * @param {Node} newParent The new parent of this node
2435         * @param {Number} index The index it was moved to
2436         */
2437        "move" : true,
2438        /**
2439         * @event insert
2440         * Fires when a new child node is inserted.
2441         * @param {Tree} tree The owner tree
2442         * @param {Node} this This node
2443         * @param {Node} node The child node inserted
2444         * @param {Node} refNode The child node the node was inserted before
2445         */
2446        "insert" : true,
2447        /**
2448         * @event beforeappend
2449         * Fires before a new child is appended, return false to cancel the append.
2450         * @param {Tree} tree The owner tree
2451         * @param {Node} this This node
2452         * @param {Node} node The child node to be appended
2453         */
2454        "beforeappend" : true,
2455        /**
2456         * @event beforeremove
2457         * Fires before a child is removed, return false to cancel the remove.
2458         * @param {Tree} tree The owner tree
2459         * @param {Node} this This node
2460         * @param {Node} node The child node to be removed
2461         */
2462        "beforeremove" : true,
2463        /**
2464         * @event beforemove
2465         * Fires before this node is moved to a new location in the tree. Return false to cancel the move.
2466         * @param {Tree} tree The owner tree
2467         * @param {Node} this This node
2468         * @param {Node} oldParent The parent of this node
2469         * @param {Node} newParent The new parent this node is moving to
2470         * @param {Number} index The index it is being moved to
2471         */
2472        "beforemove" : true,
2473        /**
2474         * @event beforeinsert
2475         * Fires before a new child is inserted, return false to cancel the insert.
2476         * @param {Tree} tree The owner tree
2477         * @param {Node} this This node
2478         * @param {Node} node The child node to be inserted
2479         * @param {Node} refNode The child node the node is being inserted before
2480         */
2481        "beforeinsert" : true
2482    });
2483     this.listeners = this.attributes.listeners;
2484     Roo.data.Node.superclass.constructor.call(this);
2485 };
2486
2487 Roo.extend(Roo.data.Node, Roo.util.Observable, {
2488     fireEvent : function(evtName){
2489         // first do standard event for this node
2490         if(Roo.data.Node.superclass.fireEvent.apply(this, arguments) === false){
2491             return false;
2492         }
2493         // then bubble it up to the tree if the event wasn't cancelled
2494         var ot = this.getOwnerTree();
2495         if(ot){
2496             if(ot.proxyNodeEvent.apply(ot, arguments) === false){
2497                 return false;
2498             }
2499         }
2500         return true;
2501     },
2502
2503     /**
2504      * Returns true if this node is a leaf
2505      * @return {Boolean}
2506      */
2507     isLeaf : function(){
2508         return this.leaf === true;
2509     },
2510
2511     // private
2512     setFirstChild : function(node){
2513         this.firstChild = node;
2514     },
2515
2516     //private
2517     setLastChild : function(node){
2518         this.lastChild = node;
2519     },
2520
2521
2522     /**
2523      * Returns true if this node is the last child of its parent
2524      * @return {Boolean}
2525      */
2526     isLast : function(){
2527        return (!this.parentNode ? true : this.parentNode.lastChild == this);
2528     },
2529
2530     /**
2531      * Returns true if this node is the first child of its parent
2532      * @return {Boolean}
2533      */
2534     isFirst : function(){
2535        return (!this.parentNode ? true : this.parentNode.firstChild == this);
2536     },
2537
2538     hasChildNodes : function(){
2539         return !this.isLeaf() && this.childNodes.length > 0;
2540     },
2541
2542     /**
2543      * Insert node(s) as the last child node of this node.
2544      * @param {Node/Array} node The node or Array of nodes to append
2545      * @return {Node} The appended node if single append, or null if an array was passed
2546      */
2547     appendChild : function(node){
2548         var multi = false;
2549         if(node instanceof Array){
2550             multi = node;
2551         }else if(arguments.length > 1){
2552             multi = arguments;
2553         }
2554         
2555         // if passed an array or multiple args do them one by one
2556         if(multi){
2557             for(var i = 0, len = multi.length; i < len; i++) {
2558                 this.appendChild(multi[i]);
2559             }
2560         }else{
2561             if(this.fireEvent("beforeappend", this.ownerTree, this, node) === false){
2562                 return false;
2563             }
2564             var index = this.childNodes.length;
2565             var oldParent = node.parentNode;
2566             // it's a move, make sure we move it cleanly
2567             if(oldParent){
2568                 if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index) === false){
2569                     return false;
2570                 }
2571                 oldParent.removeChild(node);
2572             }
2573             
2574             index = this.childNodes.length;
2575             if(index == 0){
2576                 this.setFirstChild(node);
2577             }
2578             this.childNodes.push(node);
2579             node.parentNode = this;
2580             var ps = this.childNodes[index-1];
2581             if(ps){
2582                 node.previousSibling = ps;
2583                 ps.nextSibling = node;
2584             }else{
2585                 node.previousSibling = null;
2586             }
2587             node.nextSibling = null;
2588             this.setLastChild(node);
2589             node.setOwnerTree(this.getOwnerTree());
2590             this.fireEvent("append", this.ownerTree, this, node, index);
2591             if(this.ownerTree) {
2592                 this.ownerTree.fireEvent("appendnode", this, node, index);
2593             }
2594             if(oldParent){
2595                 node.fireEvent("move", this.ownerTree, node, oldParent, this, index);
2596             }
2597             return node;
2598         }
2599     },
2600
2601     /**
2602      * Removes a child node from this node.
2603      * @param {Node} node The node to remove
2604      * @return {Node} The removed node
2605      */
2606     removeChild : function(node){
2607         var index = this.childNodes.indexOf(node);
2608         if(index == -1){
2609             return false;
2610         }
2611         if(this.fireEvent("beforeremove", this.ownerTree, this, node) === false){
2612             return false;
2613         }
2614
2615         // remove it from childNodes collection
2616         this.childNodes.splice(index, 1);
2617
2618         // update siblings
2619         if(node.previousSibling){
2620             node.previousSibling.nextSibling = node.nextSibling;
2621         }
2622         if(node.nextSibling){
2623             node.nextSibling.previousSibling = node.previousSibling;
2624         }
2625
2626         // update child refs
2627         if(this.firstChild == node){
2628             this.setFirstChild(node.nextSibling);
2629         }
2630         if(this.lastChild == node){
2631             this.setLastChild(node.previousSibling);
2632         }
2633
2634         node.setOwnerTree(null);
2635         // clear any references from the node
2636         node.parentNode = null;
2637         node.previousSibling = null;
2638         node.nextSibling = null;
2639         this.fireEvent("remove", this.ownerTree, this, node);
2640         return node;
2641     },
2642
2643     /**
2644      * Inserts the first node before the second node in this nodes childNodes collection.
2645      * @param {Node} node The node to insert
2646      * @param {Node} refNode The node to insert before (if null the node is appended)
2647      * @return {Node} The inserted node
2648      */
2649     insertBefore : function(node, refNode){
2650         if(!refNode){ // like standard Dom, refNode can be null for append
2651             return this.appendChild(node);
2652         }
2653         // nothing to do
2654         if(node == refNode){
2655             return false;
2656         }
2657
2658         if(this.fireEvent("beforeinsert", this.ownerTree, this, node, refNode) === false){
2659             return false;
2660         }
2661         var index = this.childNodes.indexOf(refNode);
2662         var oldParent = node.parentNode;
2663         var refIndex = index;
2664
2665         // when moving internally, indexes will change after remove
2666         if(oldParent == this && this.childNodes.indexOf(node) < index){
2667             refIndex--;
2668         }
2669
2670         // it's a move, make sure we move it cleanly
2671         if(oldParent){
2672             if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index, refNode) === false){
2673                 return false;
2674             }
2675             oldParent.removeChild(node);
2676         }
2677         if(refIndex == 0){
2678             this.setFirstChild(node);
2679         }
2680         this.childNodes.splice(refIndex, 0, node);
2681         node.parentNode = this;
2682         var ps = this.childNodes[refIndex-1];
2683         if(ps){
2684             node.previousSibling = ps;
2685             ps.nextSibling = node;
2686         }else{
2687             node.previousSibling = null;
2688         }
2689         node.nextSibling = refNode;
2690         refNode.previousSibling = node;
2691         node.setOwnerTree(this.getOwnerTree());
2692         this.fireEvent("insert", this.ownerTree, this, node, refNode);
2693         if(oldParent){
2694             node.fireEvent("move", this.ownerTree, node, oldParent, this, refIndex, refNode);
2695         }
2696         return node;
2697     },
2698
2699     /**
2700      * Returns the child node at the specified index.
2701      * @param {Number} index
2702      * @return {Node}
2703      */
2704     item : function(index){
2705         return this.childNodes[index];
2706     },
2707
2708     /**
2709      * Replaces one child node in this node with another.
2710      * @param {Node} newChild The replacement node
2711      * @param {Node} oldChild The node to replace
2712      * @return {Node} The replaced node
2713      */
2714     replaceChild : function(newChild, oldChild){
2715         this.insertBefore(newChild, oldChild);
2716         this.removeChild(oldChild);
2717         return oldChild;
2718     },
2719
2720     /**
2721      * Returns the index of a child node
2722      * @param {Node} node
2723      * @return {Number} The index of the node or -1 if it was not found
2724      */
2725     indexOf : function(child){
2726         return this.childNodes.indexOf(child);
2727     },
2728
2729     /**
2730      * Returns the tree this node is in.
2731      * @return {Tree}
2732      */
2733     getOwnerTree : function(){
2734         // if it doesn't have one, look for one
2735         if(!this.ownerTree){
2736             var p = this;
2737             while(p){
2738                 if(p.ownerTree){
2739                     this.ownerTree = p.ownerTree;
2740                     break;
2741                 }
2742                 p = p.parentNode;
2743             }
2744         }
2745         return this.ownerTree;
2746     },
2747
2748     /**
2749      * Returns depth of this node (the root node has a depth of 0)
2750      * @return {Number}
2751      */
2752     getDepth : function(){
2753         var depth = 0;
2754         var p = this;
2755         while(p.parentNode){
2756             ++depth;
2757             p = p.parentNode;
2758         }
2759         return depth;
2760     },
2761
2762     // private
2763     setOwnerTree : function(tree){
2764         // if it's move, we need to update everyone
2765         if(tree != this.ownerTree){
2766             if(this.ownerTree){
2767                 this.ownerTree.unregisterNode(this);
2768             }
2769             this.ownerTree = tree;
2770             var cs = this.childNodes;
2771             for(var i = 0, len = cs.length; i < len; i++) {
2772                 cs[i].setOwnerTree(tree);
2773             }
2774             if(tree){
2775                 tree.registerNode(this);
2776             }
2777         }
2778     },
2779
2780     /**
2781      * Returns the path for this node. The path can be used to expand or select this node programmatically.
2782      * @param {String} attr (optional) The attr to use for the path (defaults to the node's id)
2783      * @return {String} The path
2784      */
2785     getPath : function(attr){
2786         attr = attr || "id";
2787         var p = this.parentNode;
2788         var b = [this.attributes[attr]];
2789         while(p){
2790             b.unshift(p.attributes[attr]);
2791             p = p.parentNode;
2792         }
2793         var sep = this.getOwnerTree().pathSeparator;
2794         return sep + b.join(sep);
2795     },
2796
2797     /**
2798      * Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
2799      * function call will be the scope provided or the current node. The arguments to the function
2800      * will be the args provided or the current node. If the function returns false at any point,
2801      * the bubble is stopped.
2802      * @param {Function} fn The function to call
2803      * @param {Object} scope (optional) The scope of the function (defaults to current node)
2804      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
2805      */
2806     bubble : function(fn, scope, args){
2807         var p = this;
2808         while(p){
2809             if(fn.call(scope || p, args || p) === false){
2810                 break;
2811             }
2812             p = p.parentNode;
2813         }
2814     },
2815
2816     /**
2817      * Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
2818      * function call will be the scope provided or the current node. The arguments to the function
2819      * will be the args provided or the current node. If the function returns false at any point,
2820      * the cascade is stopped on that branch.
2821      * @param {Function} fn The function to call
2822      * @param {Object} scope (optional) The scope of the function (defaults to current node)
2823      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
2824      */
2825     cascade : function(fn, scope, args){
2826         if(fn.call(scope || this, args || this) !== false){
2827             var cs = this.childNodes;
2828             for(var i = 0, len = cs.length; i < len; i++) {
2829                 cs[i].cascade(fn, scope, args);
2830             }
2831         }
2832     },
2833
2834     /**
2835      * Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of
2836      * function call will be the scope provided or the current node. The arguments to the function
2837      * will be the args provided or the current node. If the function returns false at any point,
2838      * the iteration stops.
2839      * @param {Function} fn The function to call
2840      * @param {Object} scope (optional) The scope of the function (defaults to current node)
2841      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
2842      */
2843     eachChild : function(fn, scope, args){
2844         var cs = this.childNodes;
2845         for(var i = 0, len = cs.length; i < len; i++) {
2846                 if(fn.call(scope || this, args || cs[i]) === false){
2847                     break;
2848                 }
2849         }
2850     },
2851
2852     /**
2853      * Finds the first child that has the attribute with the specified value.
2854      * @param {String} attribute The attribute name
2855      * @param {Mixed} value The value to search for
2856      * @return {Node} The found child or null if none was found
2857      */
2858     findChild : function(attribute, value){
2859         var cs = this.childNodes;
2860         for(var i = 0, len = cs.length; i < len; i++) {
2861                 if(cs[i].attributes[attribute] == value){
2862                     return cs[i];
2863                 }
2864         }
2865         return null;
2866     },
2867
2868     /**
2869      * Finds the first child by a custom function. The child matches if the function passed
2870      * returns true.
2871      * @param {Function} fn
2872      * @param {Object} scope (optional)
2873      * @return {Node} The found child or null if none was found
2874      */
2875     findChildBy : function(fn, scope){
2876         var cs = this.childNodes;
2877         for(var i = 0, len = cs.length; i < len; i++) {
2878                 if(fn.call(scope||cs[i], cs[i]) === true){
2879                     return cs[i];
2880                 }
2881         }
2882         return null;
2883     },
2884
2885     /**
2886      * Sorts this nodes children using the supplied sort function
2887      * @param {Function} fn
2888      * @param {Object} scope (optional)
2889      */
2890     sort : function(fn, scope){
2891         var cs = this.childNodes;
2892         var len = cs.length;
2893         if(len > 0){
2894             var sortFn = scope ? function(){fn.apply(scope, arguments);} : fn;
2895             cs.sort(sortFn);
2896             for(var i = 0; i < len; i++){
2897                 var n = cs[i];
2898                 n.previousSibling = cs[i-1];
2899                 n.nextSibling = cs[i+1];
2900                 if(i == 0){
2901                     this.setFirstChild(n);
2902                 }
2903                 if(i == len-1){
2904                     this.setLastChild(n);
2905                 }
2906             }
2907         }
2908     },
2909
2910     /**
2911      * Returns true if this node is an ancestor (at any point) of the passed node.
2912      * @param {Node} node
2913      * @return {Boolean}
2914      */
2915     contains : function(node){
2916         return node.isAncestor(this);
2917     },
2918
2919     /**
2920      * Returns true if the passed node is an ancestor (at any point) of this node.
2921      * @param {Node} node
2922      * @return {Boolean}
2923      */
2924     isAncestor : function(node){
2925         var p = this.parentNode;
2926         while(p){
2927             if(p == node){
2928                 return true;
2929             }
2930             p = p.parentNode;
2931         }
2932         return false;
2933     },
2934
2935     toString : function(){
2936         return "[Node"+(this.id?" "+this.id:"")+"]";
2937     }
2938 });/*
2939  * Based on:
2940  * Ext JS Library 1.1.1
2941  * Copyright(c) 2006-2007, Ext JS, LLC.
2942  *
2943  * Originally Released Under LGPL - original licence link has changed is not relivant.
2944  *
2945  * Fork - LGPL
2946  * <script type="text/javascript">
2947  */
2948  (function(){ 
2949 /**
2950  * @class Roo.Layer
2951  * @extends Roo.Element
2952  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
2953  * automatic maintaining of shadow/shim positions.
2954  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
2955  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
2956  * you can pass a string with a CSS class name. False turns off the shadow.
2957  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
2958  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
2959  * @cfg {String} cls CSS class to add to the element
2960  * @cfg {Number} zindex Starting z-index (defaults to 11000)
2961  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
2962  * @constructor
2963  * @param {Object} config An object with config options.
2964  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
2965  */
2966
2967 Roo.Layer = function(config, existingEl){
2968     config = config || {};
2969     var dh = Roo.DomHelper;
2970     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
2971     if(existingEl){
2972         this.dom = Roo.getDom(existingEl);
2973     }
2974     if(!this.dom){
2975         var o = config.dh || {tag: "div", cls: "x-layer"};
2976         this.dom = dh.append(pel, o);
2977     }
2978     if(config.cls){
2979         this.addClass(config.cls);
2980     }
2981     this.constrain = config.constrain !== false;
2982     this.visibilityMode = Roo.Element.VISIBILITY;
2983     if(config.id){
2984         this.id = this.dom.id = config.id;
2985     }else{
2986         this.id = Roo.id(this.dom);
2987     }
2988     this.zindex = config.zindex || this.getZIndex();
2989     this.position("absolute", this.zindex);
2990     if(config.shadow){
2991         this.shadowOffset = config.shadowOffset || 4;
2992         this.shadow = new Roo.Shadow({
2993             offset : this.shadowOffset,
2994             mode : config.shadow
2995         });
2996     }else{
2997         this.shadowOffset = 0;
2998     }
2999     this.useShim = config.shim !== false && Roo.useShims;
3000     this.useDisplay = config.useDisplay;
3001     this.hide();
3002 };
3003
3004 var supr = Roo.Element.prototype;
3005
3006 // shims are shared among layer to keep from having 100 iframes
3007 var shims = [];
3008
3009 Roo.extend(Roo.Layer, Roo.Element, {
3010
3011     getZIndex : function(){
3012         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
3013     },
3014
3015     getShim : function(){
3016         if(!this.useShim){
3017             return null;
3018         }
3019         if(this.shim){
3020             return this.shim;
3021         }
3022         var shim = shims.shift();
3023         if(!shim){
3024             shim = this.createShim();
3025             shim.enableDisplayMode('block');
3026             shim.dom.style.display = 'none';
3027             shim.dom.style.visibility = 'visible';
3028         }
3029         var pn = this.dom.parentNode;
3030         if(shim.dom.parentNode != pn){
3031             pn.insertBefore(shim.dom, this.dom);
3032         }
3033         shim.setStyle('z-index', this.getZIndex()-2);
3034         this.shim = shim;
3035         return shim;
3036     },
3037
3038     hideShim : function(){
3039         if(this.shim){
3040             this.shim.setDisplayed(false);
3041             shims.push(this.shim);
3042             delete this.shim;
3043         }
3044     },
3045
3046     disableShadow : function(){
3047         if(this.shadow){
3048             this.shadowDisabled = true;
3049             this.shadow.hide();
3050             this.lastShadowOffset = this.shadowOffset;
3051             this.shadowOffset = 0;
3052         }
3053     },
3054
3055     enableShadow : function(show){
3056         if(this.shadow){
3057             this.shadowDisabled = false;
3058             this.shadowOffset = this.lastShadowOffset;
3059             delete this.lastShadowOffset;
3060             if(show){
3061                 this.sync(true);
3062             }
3063         }
3064     },
3065
3066     // private
3067     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
3068     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
3069     sync : function(doShow){
3070         var sw = this.shadow;
3071         if(!this.updating && this.isVisible() && (sw || this.useShim)){
3072             var sh = this.getShim();
3073
3074             var w = this.getWidth(),
3075                 h = this.getHeight();
3076
3077             var l = this.getLeft(true),
3078                 t = this.getTop(true);
3079
3080             if(sw && !this.shadowDisabled){
3081                 if(doShow && !sw.isVisible()){
3082                     sw.show(this);
3083                 }else{
3084                     sw.realign(l, t, w, h);
3085                 }
3086                 if(sh){
3087                     if(doShow){
3088                        sh.show();
3089                     }
3090                     // fit the shim behind the shadow, so it is shimmed too
3091                     var a = sw.adjusts, s = sh.dom.style;
3092                     s.left = (Math.min(l, l+a.l))+"px";
3093                     s.top = (Math.min(t, t+a.t))+"px";
3094                     s.width = (w+a.w)+"px";
3095                     s.height = (h+a.h)+"px";
3096                 }
3097             }else if(sh){
3098                 if(doShow){
3099                    sh.show();
3100                 }
3101                 sh.setSize(w, h);
3102                 sh.setLeftTop(l, t);
3103             }
3104             
3105         }
3106     },
3107
3108     // private
3109     destroy : function(){
3110         this.hideShim();
3111         if(this.shadow){
3112             this.shadow.hide();
3113         }
3114         this.removeAllListeners();
3115         var pn = this.dom.parentNode;
3116         if(pn){
3117             pn.removeChild(this.dom);
3118         }
3119         Roo.Element.uncache(this.id);
3120     },
3121
3122     remove : function(){
3123         this.destroy();
3124     },
3125
3126     // private
3127     beginUpdate : function(){
3128         this.updating = true;
3129     },
3130
3131     // private
3132     endUpdate : function(){
3133         this.updating = false;
3134         this.sync(true);
3135     },
3136
3137     // private
3138     hideUnders : function(negOffset){
3139         if(this.shadow){
3140             this.shadow.hide();
3141         }
3142         this.hideShim();
3143     },
3144
3145     // private
3146     constrainXY : function(){
3147         if(this.constrain){
3148             var vw = Roo.lib.Dom.getViewWidth(),
3149                 vh = Roo.lib.Dom.getViewHeight();
3150             var s = Roo.get(document).getScroll();
3151
3152             var xy = this.getXY();
3153             var x = xy[0], y = xy[1];   
3154             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
3155             // only move it if it needs it
3156             var moved = false;
3157             // first validate right/bottom
3158             if((x + w) > vw+s.left){
3159                 x = vw - w - this.shadowOffset;
3160                 moved = true;
3161             }
3162             if((y + h) > vh+s.top){
3163                 y = vh - h - this.shadowOffset;
3164                 moved = true;
3165             }
3166             // then make sure top/left isn't negative
3167             if(x < s.left){
3168                 x = s.left;
3169                 moved = true;
3170             }
3171             if(y < s.top){
3172                 y = s.top;
3173                 moved = true;
3174             }
3175             if(moved){
3176                 if(this.avoidY){
3177                     var ay = this.avoidY;
3178                     if(y <= ay && (y+h) >= ay){
3179                         y = ay-h-5;   
3180                     }
3181                 }
3182                 xy = [x, y];
3183                 this.storeXY(xy);
3184                 supr.setXY.call(this, xy);
3185                 this.sync();
3186             }
3187         }
3188     },
3189
3190     isVisible : function(){
3191         return this.visible;    
3192     },
3193
3194     // private
3195     showAction : function(){
3196         this.visible = true; // track visibility to prevent getStyle calls
3197         if(this.useDisplay === true){
3198             this.setDisplayed("");
3199         }else if(this.lastXY){
3200             supr.setXY.call(this, this.lastXY);
3201         }else if(this.lastLT){
3202             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
3203         }
3204     },
3205
3206     // private
3207     hideAction : function(){
3208         this.visible = false;
3209         if(this.useDisplay === true){
3210             this.setDisplayed(false);
3211         }else{
3212             this.setLeftTop(-10000,-10000);
3213         }
3214     },
3215
3216     // overridden Element method
3217     setVisible : function(v, a, d, c, e){
3218         if(v){
3219             this.showAction();
3220         }
3221         if(a && v){
3222             var cb = function(){
3223                 this.sync(true);
3224                 if(c){
3225                     c();
3226                 }
3227             }.createDelegate(this);
3228             supr.setVisible.call(this, true, true, d, cb, e);
3229         }else{
3230             if(!v){
3231                 this.hideUnders(true);
3232             }
3233             var cb = c;
3234             if(a){
3235                 cb = function(){
3236                     this.hideAction();
3237                     if(c){
3238                         c();
3239                     }
3240                 }.createDelegate(this);
3241             }
3242             supr.setVisible.call(this, v, a, d, cb, e);
3243             if(v){
3244                 this.sync(true);
3245             }else if(!a){
3246                 this.hideAction();
3247             }
3248         }
3249     },
3250
3251     storeXY : function(xy){
3252         delete this.lastLT;
3253         this.lastXY = xy;
3254     },
3255
3256     storeLeftTop : function(left, top){
3257         delete this.lastXY;
3258         this.lastLT = [left, top];
3259     },
3260
3261     // private
3262     beforeFx : function(){
3263         this.beforeAction();
3264         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
3265     },
3266
3267     // private
3268     afterFx : function(){
3269         Roo.Layer.superclass.afterFx.apply(this, arguments);
3270         this.sync(this.isVisible());
3271     },
3272
3273     // private
3274     beforeAction : function(){
3275         if(!this.updating && this.shadow){
3276             this.shadow.hide();
3277         }
3278     },
3279
3280     // overridden Element method
3281     setLeft : function(left){
3282         this.storeLeftTop(left, this.getTop(true));
3283         supr.setLeft.apply(this, arguments);
3284         this.sync();
3285     },
3286
3287     setTop : function(top){
3288         this.storeLeftTop(this.getLeft(true), top);
3289         supr.setTop.apply(this, arguments);
3290         this.sync();
3291     },
3292
3293     setLeftTop : function(left, top){
3294         this.storeLeftTop(left, top);
3295         supr.setLeftTop.apply(this, arguments);
3296         this.sync();
3297     },
3298
3299     setXY : function(xy, a, d, c, e){
3300         this.fixDisplay();
3301         this.beforeAction();
3302         this.storeXY(xy);
3303         var cb = this.createCB(c);
3304         supr.setXY.call(this, xy, a, d, cb, e);
3305         if(!a){
3306             cb();
3307         }
3308     },
3309
3310     // private
3311     createCB : function(c){
3312         var el = this;
3313         return function(){
3314             el.constrainXY();
3315             el.sync(true);
3316             if(c){
3317                 c();
3318             }
3319         };
3320     },
3321
3322     // overridden Element method
3323     setX : function(x, a, d, c, e){
3324         this.setXY([x, this.getY()], a, d, c, e);
3325     },
3326
3327     // overridden Element method
3328     setY : function(y, a, d, c, e){
3329         this.setXY([this.getX(), y], a, d, c, e);
3330     },
3331
3332     // overridden Element method
3333     setSize : function(w, h, a, d, c, e){
3334         this.beforeAction();
3335         var cb = this.createCB(c);
3336         supr.setSize.call(this, w, h, a, d, cb, e);
3337         if(!a){
3338             cb();
3339         }
3340     },
3341
3342     // overridden Element method
3343     setWidth : function(w, a, d, c, e){
3344         this.beforeAction();
3345         var cb = this.createCB(c);
3346         supr.setWidth.call(this, w, a, d, cb, e);
3347         if(!a){
3348             cb();
3349         }
3350     },
3351
3352     // overridden Element method
3353     setHeight : function(h, a, d, c, e){
3354         this.beforeAction();
3355         var cb = this.createCB(c);
3356         supr.setHeight.call(this, h, a, d, cb, e);
3357         if(!a){
3358             cb();
3359         }
3360     },
3361
3362     // overridden Element method
3363     setBounds : function(x, y, w, h, a, d, c, e){
3364         this.beforeAction();
3365         var cb = this.createCB(c);
3366         if(!a){
3367             this.storeXY([x, y]);
3368             supr.setXY.call(this, [x, y]);
3369             supr.setSize.call(this, w, h, a, d, cb, e);
3370             cb();
3371         }else{
3372             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
3373         }
3374         return this;
3375     },
3376     
3377     /**
3378      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
3379      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
3380      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
3381      * @param {Number} zindex The new z-index to set
3382      * @return {this} The Layer
3383      */
3384     setZIndex : function(zindex){
3385         this.zindex = zindex;
3386         this.setStyle("z-index", zindex + 2);
3387         if(this.shadow){
3388             this.shadow.setZIndex(zindex + 1);
3389         }
3390         if(this.shim){
3391             this.shim.setStyle("z-index", zindex);
3392         }
3393     }
3394 });
3395 })();/*
3396  * Based on:
3397  * Ext JS Library 1.1.1
3398  * Copyright(c) 2006-2007, Ext JS, LLC.
3399  *
3400  * Originally Released Under LGPL - original licence link has changed is not relivant.
3401  *
3402  * Fork - LGPL
3403  * <script type="text/javascript">
3404  */
3405
3406
3407 /**
3408  * @class Roo.Shadow
3409  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
3410  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
3411  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
3412  * @constructor
3413  * Create a new Shadow
3414  * @param {Object} config The config object
3415  */
3416 Roo.Shadow = function(config){
3417     Roo.apply(this, config);
3418     if(typeof this.mode != "string"){
3419         this.mode = this.defaultMode;
3420     }
3421     var o = this.offset, a = {h: 0};
3422     var rad = Math.floor(this.offset/2);
3423     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
3424         case "drop":
3425             a.w = 0;
3426             a.l = a.t = o;
3427             a.t -= 1;
3428             if(Roo.isIE){
3429                 a.l -= this.offset + rad;
3430                 a.t -= this.offset + rad;
3431                 a.w -= rad;
3432                 a.h -= rad;
3433                 a.t += 1;
3434             }
3435         break;
3436         case "sides":
3437             a.w = (o*2);
3438             a.l = -o;
3439             a.t = o-1;
3440             if(Roo.isIE){
3441                 a.l -= (this.offset - rad);
3442                 a.t -= this.offset + rad;
3443                 a.l += 1;
3444                 a.w -= (this.offset - rad)*2;
3445                 a.w -= rad + 1;
3446                 a.h -= 1;
3447             }
3448         break;
3449         case "frame":
3450             a.w = a.h = (o*2);
3451             a.l = a.t = -o;
3452             a.t += 1;
3453             a.h -= 2;
3454             if(Roo.isIE){
3455                 a.l -= (this.offset - rad);
3456                 a.t -= (this.offset - rad);
3457                 a.l += 1;
3458                 a.w -= (this.offset + rad + 1);
3459                 a.h -= (this.offset + rad);
3460                 a.h += 1;
3461             }
3462         break;
3463     };
3464
3465     this.adjusts = a;
3466 };
3467
3468 Roo.Shadow.prototype = {
3469     /**
3470      * @cfg {String} mode
3471      * The shadow display mode.  Supports the following options:<br />
3472      * sides: Shadow displays on both sides and bottom only<br />
3473      * frame: Shadow displays equally on all four sides<br />
3474      * drop: Traditional bottom-right drop shadow (default)
3475      */
3476     /**
3477      * @cfg {String} offset
3478      * The number of pixels to offset the shadow from the element (defaults to 4)
3479      */
3480     offset: 4,
3481
3482     // private
3483     defaultMode: "drop",
3484
3485     /**
3486      * Displays the shadow under the target element
3487      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
3488      */
3489     show : function(target){
3490         target = Roo.get(target);
3491         if(!this.el){
3492             this.el = Roo.Shadow.Pool.pull();
3493             if(this.el.dom.nextSibling != target.dom){
3494                 this.el.insertBefore(target);
3495             }
3496         }
3497         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
3498         if(Roo.isIE){
3499             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
3500         }
3501         this.realign(
3502             target.getLeft(true),
3503             target.getTop(true),
3504             target.getWidth(),
3505             target.getHeight()
3506         );
3507         this.el.dom.style.display = "block";
3508     },
3509
3510     /**
3511      * Returns true if the shadow is visible, else false
3512      */
3513     isVisible : function(){
3514         return this.el ? true : false;  
3515     },
3516
3517     /**
3518      * Direct alignment when values are already available. Show must be called at least once before
3519      * calling this method to ensure it is initialized.
3520      * @param {Number} left The target element left position
3521      * @param {Number} top The target element top position
3522      * @param {Number} width The target element width
3523      * @param {Number} height The target element height
3524      */
3525     realign : function(l, t, w, h){
3526         if(!this.el){
3527             return;
3528         }
3529         var a = this.adjusts, d = this.el.dom, s = d.style;
3530         var iea = 0;
3531         s.left = (l+a.l)+"px";
3532         s.top = (t+a.t)+"px";
3533         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
3534  
3535         if(s.width != sws || s.height != shs){
3536             s.width = sws;
3537             s.height = shs;
3538             if(!Roo.isIE){
3539                 var cn = d.childNodes;
3540                 var sww = Math.max(0, (sw-12))+"px";
3541                 cn[0].childNodes[1].style.width = sww;
3542                 cn[1].childNodes[1].style.width = sww;
3543                 cn[2].childNodes[1].style.width = sww;
3544                 cn[1].style.height = Math.max(0, (sh-12))+"px";
3545             }
3546         }
3547     },
3548
3549     /**
3550      * Hides this shadow
3551      */
3552     hide : function(){
3553         if(this.el){
3554             this.el.dom.style.display = "none";
3555             Roo.Shadow.Pool.push(this.el);
3556             delete this.el;
3557         }
3558     },
3559
3560     /**
3561      * Adjust the z-index of this shadow
3562      * @param {Number} zindex The new z-index
3563      */
3564     setZIndex : function(z){
3565         this.zIndex = z;
3566         if(this.el){
3567             this.el.setStyle("z-index", z);
3568         }
3569     }
3570 };
3571
3572 // Private utility class that manages the internal Shadow cache
3573 Roo.Shadow.Pool = function(){
3574     var p = [];
3575     var markup = Roo.isIE ?
3576                  '<div class="x-ie-shadow"></div>' :
3577                  '<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>';
3578     return {
3579         pull : function(){
3580             var sh = p.shift();
3581             if(!sh){
3582                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
3583                 sh.autoBoxAdjust = false;
3584             }
3585             return sh;
3586         },
3587
3588         push : function(sh){
3589             p.push(sh);
3590         }
3591     };
3592 }();/*
3593  * Based on:
3594  * Ext JS Library 1.1.1
3595  * Copyright(c) 2006-2007, Ext JS, LLC.
3596  *
3597  * Originally Released Under LGPL - original licence link has changed is not relivant.
3598  *
3599  * Fork - LGPL
3600  * <script type="text/javascript">
3601  */
3602
3603
3604 /**
3605  * @class Roo.SplitBar
3606  * @extends Roo.util.Observable
3607  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
3608  * <br><br>
3609  * Usage:
3610  * <pre><code>
3611 var split = new Roo.SplitBar("elementToDrag", "elementToSize",
3612                    Roo.SplitBar.HORIZONTAL, Roo.SplitBar.LEFT);
3613 split.setAdapter(new Roo.SplitBar.AbsoluteLayoutAdapter("container"));
3614 split.minSize = 100;
3615 split.maxSize = 600;
3616 split.animate = true;
3617 split.on('moved', splitterMoved);
3618 </code></pre>
3619  * @constructor
3620  * Create a new SplitBar
3621  * @param {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
3622  * @param {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
3623  * @param {Number} orientation (optional) Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
3624  * @param {Number} placement (optional) Either Roo.SplitBar.LEFT or Roo.SplitBar.RIGHT for horizontal or  
3625                         Roo.SplitBar.TOP or Roo.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
3626                         position of the SplitBar).
3627  */
3628 Roo.SplitBar = function(dragElement, resizingElement, orientation, placement, existingProxy){
3629     
3630     /** @private */
3631     this.el = Roo.get(dragElement, true);
3632     this.el.dom.unselectable = "on";
3633     /** @private */
3634     this.resizingEl = Roo.get(resizingElement, true);
3635
3636     /**
3637      * @private
3638      * The orientation of the split. Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
3639      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
3640      * @type Number
3641      */
3642     this.orientation = orientation || Roo.SplitBar.HORIZONTAL;
3643     
3644     /**
3645      * The minimum size of the resizing element. (Defaults to 0)
3646      * @type Number
3647      */
3648     this.minSize = 0;
3649     
3650     /**
3651      * The maximum size of the resizing element. (Defaults to 2000)
3652      * @type Number
3653      */
3654     this.maxSize = 2000;
3655     
3656     /**
3657      * Whether to animate the transition to the new size
3658      * @type Boolean
3659      */
3660     this.animate = false;
3661     
3662     /**
3663      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
3664      * @type Boolean
3665      */
3666     this.useShim = false;
3667     
3668     /** @private */
3669     this.shim = null;
3670     
3671     if(!existingProxy){
3672         /** @private */
3673         this.proxy = Roo.SplitBar.createProxy(this.orientation);
3674     }else{
3675         this.proxy = Roo.get(existingProxy).dom;
3676     }
3677     /** @private */
3678     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
3679     
3680     /** @private */
3681     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
3682     
3683     /** @private */
3684     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
3685     
3686     /** @private */
3687     this.dragSpecs = {};
3688     
3689     /**
3690      * @private The adapter to use to positon and resize elements
3691      */
3692     this.adapter = new Roo.SplitBar.BasicLayoutAdapter();
3693     this.adapter.init(this);
3694     
3695     if(this.orientation == Roo.SplitBar.HORIZONTAL){
3696         /** @private */
3697         this.placement = placement || (this.el.getX() > this.resizingEl.getX() ? Roo.SplitBar.LEFT : Roo.SplitBar.RIGHT);
3698         this.el.addClass("x-splitbar-h");
3699     }else{
3700         /** @private */
3701         this.placement = placement || (this.el.getY() > this.resizingEl.getY() ? Roo.SplitBar.TOP : Roo.SplitBar.BOTTOM);
3702         this.el.addClass("x-splitbar-v");
3703     }
3704     
3705     this.addEvents({
3706         /**
3707          * @event resize
3708          * Fires when the splitter is moved (alias for {@link #event-moved})
3709          * @param {Roo.SplitBar} this
3710          * @param {Number} newSize the new width or height
3711          */
3712         "resize" : true,
3713         /**
3714          * @event moved
3715          * Fires when the splitter is moved
3716          * @param {Roo.SplitBar} this
3717          * @param {Number} newSize the new width or height
3718          */
3719         "moved" : true,
3720         /**
3721          * @event beforeresize
3722          * Fires before the splitter is dragged
3723          * @param {Roo.SplitBar} this
3724          */
3725         "beforeresize" : true,
3726
3727         "beforeapply" : true
3728     });
3729
3730     Roo.util.Observable.call(this);
3731 };
3732
3733 Roo.extend(Roo.SplitBar, Roo.util.Observable, {
3734     onStartProxyDrag : function(x, y){
3735         this.fireEvent("beforeresize", this);
3736         if(!this.overlay){
3737             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "x-drag-overlay", html: "&#160;"}, true);
3738             o.unselectable();
3739             o.enableDisplayMode("block");
3740             // all splitbars share the same overlay
3741             Roo.SplitBar.prototype.overlay = o;
3742         }
3743         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
3744         this.overlay.show();
3745         Roo.get(this.proxy).setDisplayed("block");
3746         var size = this.adapter.getElementSize(this);
3747         this.activeMinSize = this.getMinimumSize();;
3748         this.activeMaxSize = this.getMaximumSize();;
3749         var c1 = size - this.activeMinSize;
3750         var c2 = Math.max(this.activeMaxSize - size, 0);
3751         if(this.orientation == Roo.SplitBar.HORIZONTAL){
3752             this.dd.resetConstraints();
3753             this.dd.setXConstraint(
3754                 this.placement == Roo.SplitBar.LEFT ? c1 : c2, 
3755                 this.placement == Roo.SplitBar.LEFT ? c2 : c1
3756             );
3757             this.dd.setYConstraint(0, 0);
3758         }else{
3759             this.dd.resetConstraints();
3760             this.dd.setXConstraint(0, 0);
3761             this.dd.setYConstraint(
3762                 this.placement == Roo.SplitBar.TOP ? c1 : c2, 
3763                 this.placement == Roo.SplitBar.TOP ? c2 : c1
3764             );
3765          }
3766         this.dragSpecs.startSize = size;
3767         this.dragSpecs.startPoint = [x, y];
3768         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
3769     },
3770     
3771     /** 
3772      * @private Called after the drag operation by the DDProxy
3773      */
3774     onEndProxyDrag : function(e){
3775         Roo.get(this.proxy).setDisplayed(false);
3776         var endPoint = Roo.lib.Event.getXY(e);
3777         if(this.overlay){
3778             this.overlay.hide();
3779         }
3780         var newSize;
3781         if(this.orientation == Roo.SplitBar.HORIZONTAL){
3782             newSize = this.dragSpecs.startSize + 
3783                 (this.placement == Roo.SplitBar.LEFT ?
3784                     endPoint[0] - this.dragSpecs.startPoint[0] :
3785                     this.dragSpecs.startPoint[0] - endPoint[0]
3786                 );
3787         }else{
3788             newSize = this.dragSpecs.startSize + 
3789                 (this.placement == Roo.SplitBar.TOP ?
3790                     endPoint[1] - this.dragSpecs.startPoint[1] :
3791                     this.dragSpecs.startPoint[1] - endPoint[1]
3792                 );
3793         }
3794         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
3795         if(newSize != this.dragSpecs.startSize){
3796             if(this.fireEvent('beforeapply', this, newSize) !== false){
3797                 this.adapter.setElementSize(this, newSize);
3798                 this.fireEvent("moved", this, newSize);
3799                 this.fireEvent("resize", this, newSize);
3800             }
3801         }
3802     },
3803     
3804     /**
3805      * Get the adapter this SplitBar uses
3806      * @return The adapter object
3807      */
3808     getAdapter : function(){
3809         return this.adapter;
3810     },
3811     
3812     /**
3813      * Set the adapter this SplitBar uses
3814      * @param {Object} adapter A SplitBar adapter object
3815      */
3816     setAdapter : function(adapter){
3817         this.adapter = adapter;
3818         this.adapter.init(this);
3819     },
3820     
3821     /**
3822      * Gets the minimum size for the resizing element
3823      * @return {Number} The minimum size
3824      */
3825     getMinimumSize : function(){
3826         return this.minSize;
3827     },
3828     
3829     /**
3830      * Sets the minimum size for the resizing element
3831      * @param {Number} minSize The minimum size
3832      */
3833     setMinimumSize : function(minSize){
3834         this.minSize = minSize;
3835     },
3836     
3837     /**
3838      * Gets the maximum size for the resizing element
3839      * @return {Number} The maximum size
3840      */
3841     getMaximumSize : function(){
3842         return this.maxSize;
3843     },
3844     
3845     /**
3846      * Sets the maximum size for the resizing element
3847      * @param {Number} maxSize The maximum size
3848      */
3849     setMaximumSize : function(maxSize){
3850         this.maxSize = maxSize;
3851     },
3852     
3853     /**
3854      * Sets the initialize size for the resizing element
3855      * @param {Number} size The initial size
3856      */
3857     setCurrentSize : function(size){
3858         var oldAnimate = this.animate;
3859         this.animate = false;
3860         this.adapter.setElementSize(this, size);
3861         this.animate = oldAnimate;
3862     },
3863     
3864     /**
3865      * Destroy this splitbar. 
3866      * @param {Boolean} removeEl True to remove the element
3867      */
3868     destroy : function(removeEl){
3869         if(this.shim){
3870             this.shim.remove();
3871         }
3872         this.dd.unreg();
3873         this.proxy.parentNode.removeChild(this.proxy);
3874         if(removeEl){
3875             this.el.remove();
3876         }
3877     }
3878 });
3879
3880 /**
3881  * @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.
3882  */
3883 Roo.SplitBar.createProxy = function(dir){
3884     var proxy = new Roo.Element(document.createElement("div"));
3885     proxy.unselectable();
3886     var cls = 'x-splitbar-proxy';
3887     proxy.addClass(cls + ' ' + (dir == Roo.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
3888     document.body.appendChild(proxy.dom);
3889     return proxy.dom;
3890 };
3891
3892 /** 
3893  * @class Roo.SplitBar.BasicLayoutAdapter
3894  * Default Adapter. It assumes the splitter and resizing element are not positioned
3895  * elements and only gets/sets the width of the element. Generally used for table based layouts.
3896  */
3897 Roo.SplitBar.BasicLayoutAdapter = function(){
3898 };
3899
3900 Roo.SplitBar.BasicLayoutAdapter.prototype = {
3901     // do nothing for now
3902     init : function(s){
3903     
3904     },
3905     /**
3906      * Called before drag operations to get the current size of the resizing element. 
3907      * @param {Roo.SplitBar} s The SplitBar using this adapter
3908      */
3909      getElementSize : function(s){
3910         if(s.orientation == Roo.SplitBar.HORIZONTAL){
3911             return s.resizingEl.getWidth();
3912         }else{
3913             return s.resizingEl.getHeight();
3914         }
3915     },
3916     
3917     /**
3918      * Called after drag operations to set the size of the resizing element.
3919      * @param {Roo.SplitBar} s The SplitBar using this adapter
3920      * @param {Number} newSize The new size to set
3921      * @param {Function} onComplete A function to be invoked when resizing is complete
3922      */
3923     setElementSize : function(s, newSize, onComplete){
3924         if(s.orientation == Roo.SplitBar.HORIZONTAL){
3925             if(!s.animate){
3926                 s.resizingEl.setWidth(newSize);
3927                 if(onComplete){
3928                     onComplete(s, newSize);
3929                 }
3930             }else{
3931                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
3932             }
3933         }else{
3934             
3935             if(!s.animate){
3936                 s.resizingEl.setHeight(newSize);
3937                 if(onComplete){
3938                     onComplete(s, newSize);
3939                 }
3940             }else{
3941                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
3942             }
3943         }
3944     }
3945 };
3946
3947 /** 
3948  *@class Roo.SplitBar.AbsoluteLayoutAdapter
3949  * @extends Roo.SplitBar.BasicLayoutAdapter
3950  * Adapter that  moves the splitter element to align with the resized sizing element. 
3951  * Used with an absolute positioned SplitBar.
3952  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
3953  * document.body, make sure you assign an id to the body element.
3954  */
3955 Roo.SplitBar.AbsoluteLayoutAdapter = function(container){
3956     this.basic = new Roo.SplitBar.BasicLayoutAdapter();
3957     this.container = Roo.get(container);
3958 };
3959
3960 Roo.SplitBar.AbsoluteLayoutAdapter.prototype = {
3961     init : function(s){
3962         this.basic.init(s);
3963     },
3964     
3965     getElementSize : function(s){
3966         return this.basic.getElementSize(s);
3967     },
3968     
3969     setElementSize : function(s, newSize, onComplete){
3970         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
3971     },
3972     
3973     moveSplitter : function(s){
3974         var yes = Roo.SplitBar;
3975         switch(s.placement){
3976             case yes.LEFT:
3977                 s.el.setX(s.resizingEl.getRight());
3978                 break;
3979             case yes.RIGHT:
3980                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
3981                 break;
3982             case yes.TOP:
3983                 s.el.setY(s.resizingEl.getBottom());
3984                 break;
3985             case yes.BOTTOM:
3986                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
3987                 break;
3988         }
3989     }
3990 };
3991
3992 /**
3993  * Orientation constant - Create a vertical SplitBar
3994  * @static
3995  * @type Number
3996  */
3997 Roo.SplitBar.VERTICAL = 1;
3998
3999 /**
4000  * Orientation constant - Create a horizontal SplitBar
4001  * @static
4002  * @type Number
4003  */
4004 Roo.SplitBar.HORIZONTAL = 2;
4005
4006 /**
4007  * Placement constant - The resizing element is to the left of the splitter element
4008  * @static
4009  * @type Number
4010  */
4011 Roo.SplitBar.LEFT = 1;
4012
4013 /**
4014  * Placement constant - The resizing element is to the right of the splitter element
4015  * @static
4016  * @type Number
4017  */
4018 Roo.SplitBar.RIGHT = 2;
4019
4020 /**
4021  * Placement constant - The resizing element is positioned above the splitter element
4022  * @static
4023  * @type Number
4024  */
4025 Roo.SplitBar.TOP = 3;
4026
4027 /**
4028  * Placement constant - The resizing element is positioned under splitter element
4029  * @static
4030  * @type Number
4031  */
4032 Roo.SplitBar.BOTTOM = 4;
4033 /*
4034  * Based on:
4035  * Ext JS Library 1.1.1
4036  * Copyright(c) 2006-2007, Ext JS, LLC.
4037  *
4038  * Originally Released Under LGPL - original licence link has changed is not relivant.
4039  *
4040  * Fork - LGPL
4041  * <script type="text/javascript">
4042  */
4043
4044 /**
4045  * @class Roo.View
4046  * @extends Roo.util.Observable
4047  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
4048  * This class also supports single and multi selection modes. <br>
4049  * Create a data model bound view:
4050  <pre><code>
4051  var store = new Roo.data.Store(...);
4052
4053  var view = new Roo.View({
4054     el : "my-element",
4055     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
4056  
4057     singleSelect: true,
4058     selectedClass: "ydataview-selected",
4059     store: store
4060  });
4061
4062  // listen for node click?
4063  view.on("click", function(vw, index, node, e){
4064  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
4065  });
4066
4067  // load XML data
4068  dataModel.load("foobar.xml");
4069  </code></pre>
4070  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
4071  * <br><br>
4072  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
4073  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
4074  * 
4075  * Note: old style constructor is still suported (container, template, config)
4076  * 
4077  * @constructor
4078  * Create a new View
4079  * @param {Object} config The config object
4080  * 
4081  */
4082 Roo.View = function(config, depreciated_tpl, depreciated_config){
4083     
4084     this.parent = false;
4085     
4086     if (typeof(depreciated_tpl) == 'undefined') {
4087         // new way.. - universal constructor.
4088         Roo.apply(this, config);
4089         this.el  = Roo.get(this.el);
4090     } else {
4091         // old format..
4092         this.el  = Roo.get(config);
4093         this.tpl = depreciated_tpl;
4094         Roo.apply(this, depreciated_config);
4095     }
4096     this.wrapEl  = this.el.wrap().wrap();
4097     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
4098     
4099     
4100     if(typeof(this.tpl) == "string"){
4101         this.tpl = new Roo.Template(this.tpl);
4102     } else {
4103         // support xtype ctors..
4104         this.tpl = new Roo.factory(this.tpl, Roo);
4105     }
4106     
4107     
4108     this.tpl.compile();
4109     
4110     /** @private */
4111     this.addEvents({
4112         /**
4113          * @event beforeclick
4114          * Fires before a click is processed. Returns false to cancel the default action.
4115          * @param {Roo.View} this
4116          * @param {Number} index The index of the target node
4117          * @param {HTMLElement} node The target node
4118          * @param {Roo.EventObject} e The raw event object
4119          */
4120             "beforeclick" : true,
4121         /**
4122          * @event click
4123          * Fires when a template node is clicked.
4124          * @param {Roo.View} this
4125          * @param {Number} index The index of the target node
4126          * @param {HTMLElement} node The target node
4127          * @param {Roo.EventObject} e The raw event object
4128          */
4129             "click" : true,
4130         /**
4131          * @event dblclick
4132          * Fires when a template node is double clicked.
4133          * @param {Roo.View} this
4134          * @param {Number} index The index of the target node
4135          * @param {HTMLElement} node The target node
4136          * @param {Roo.EventObject} e The raw event object
4137          */
4138             "dblclick" : true,
4139         /**
4140          * @event contextmenu
4141          * Fires when a template node is right clicked.
4142          * @param {Roo.View} this
4143          * @param {Number} index The index of the target node
4144          * @param {HTMLElement} node The target node
4145          * @param {Roo.EventObject} e The raw event object
4146          */
4147             "contextmenu" : true,
4148         /**
4149          * @event selectionchange
4150          * Fires when the selected nodes change.
4151          * @param {Roo.View} this
4152          * @param {Array} selections Array of the selected nodes
4153          */
4154             "selectionchange" : true,
4155     
4156         /**
4157          * @event beforeselect
4158          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
4159          * @param {Roo.View} this
4160          * @param {HTMLElement} node The node to be selected
4161          * @param {Array} selections Array of currently selected nodes
4162          */
4163             "beforeselect" : true,
4164         /**
4165          * @event preparedata
4166          * Fires on every row to render, to allow you to change the data.
4167          * @param {Roo.View} this
4168          * @param {Object} data to be rendered (change this)
4169          */
4170           "preparedata" : true
4171           
4172           
4173         });
4174
4175
4176
4177     this.el.on({
4178         "click": this.onClick,
4179         "dblclick": this.onDblClick,
4180         "contextmenu": this.onContextMenu,
4181         scope:this
4182     });
4183
4184     this.selections = [];
4185     this.nodes = [];
4186     this.cmp = new Roo.CompositeElementLite([]);
4187     if(this.store){
4188         this.store = Roo.factory(this.store, Roo.data);
4189         this.setStore(this.store, true);
4190     }
4191     
4192     if ( this.footer && this.footer.xtype) {
4193            
4194          var fctr = this.wrapEl.appendChild(document.createElement("div"));
4195         
4196         this.footer.dataSource = this.store;
4197         this.footer.container = fctr;
4198         this.footer = Roo.factory(this.footer, Roo);
4199         fctr.insertFirst(this.el);
4200         
4201         // this is a bit insane - as the paging toolbar seems to detach the el..
4202 //        dom.parentNode.parentNode.parentNode
4203          // they get detached?
4204     }
4205     
4206     
4207     Roo.View.superclass.constructor.call(this);
4208     
4209     
4210 };
4211
4212 Roo.extend(Roo.View, Roo.util.Observable, {
4213     
4214      /**
4215      * @cfg {Roo.data.Store} store Data store to load data from.
4216      */
4217     store : false,
4218     
4219     /**
4220      * @cfg {String|Roo.Element} el The container element.
4221      */
4222     el : '',
4223     
4224     /**
4225      * @cfg {String|Roo.Template} tpl The template used by this View 
4226      */
4227     tpl : false,
4228     /**
4229      * @cfg {String} dataName the named area of the template to use as the data area
4230      *                          Works with domtemplates roo-name="name"
4231      */
4232     dataName: false,
4233     /**
4234      * @cfg {String} selectedClass The css class to add to selected nodes
4235      */
4236     selectedClass : "x-view-selected",
4237      /**
4238      * @cfg {String} emptyText The empty text to show when nothing is loaded.
4239      */
4240     emptyText : "",
4241     
4242     /**
4243      * @cfg {String} text to display on mask (default Loading)
4244      */
4245     mask : false,
4246     /**
4247      * @cfg {Boolean} multiSelect Allow multiple selection
4248      */
4249     multiSelect : false,
4250     /**
4251      * @cfg {Boolean} singleSelect Allow single selection
4252      */
4253     singleSelect:  false,
4254     
4255     /**
4256      * @cfg {Boolean} toggleSelect - selecting 
4257      */
4258     toggleSelect : false,
4259     
4260     /**
4261      * @cfg {Boolean} tickable - selecting 
4262      */
4263     tickable : false,
4264     
4265     /**
4266      * Returns the element this view is bound to.
4267      * @return {Roo.Element}
4268      */
4269     getEl : function(){
4270         return this.wrapEl;
4271     },
4272     
4273     
4274
4275     /**
4276      * Refreshes the view. - called by datachanged on the store. - do not call directly.
4277      */
4278     refresh : function(){
4279         //Roo.log('refresh');
4280         var t = this.tpl;
4281         
4282         // if we are using something like 'domtemplate', then
4283         // the what gets used is:
4284         // t.applySubtemplate(NAME, data, wrapping data..)
4285         // the outer template then get' applied with
4286         //     the store 'extra data'
4287         // and the body get's added to the
4288         //      roo-name="data" node?
4289         //      <span class='roo-tpl-{name}'></span> ?????
4290         
4291         
4292         
4293         this.clearSelections();
4294         this.el.update("");
4295         var html = [];
4296         var records = this.store.getRange();
4297         if(records.length < 1) {
4298             
4299             // is this valid??  = should it render a template??
4300             
4301             this.el.update(this.emptyText);
4302             return;
4303         }
4304         var el = this.el;
4305         if (this.dataName) {
4306             this.el.update(t.apply(this.store.meta)); //????
4307             el = this.el.child('.roo-tpl-' + this.dataName);
4308         }
4309         
4310         for(var i = 0, len = records.length; i < len; i++){
4311             var data = this.prepareData(records[i].data, i, records[i]);
4312             this.fireEvent("preparedata", this, data, i, records[i]);
4313             
4314             var d = Roo.apply({}, data);
4315             
4316             if(this.tickable){
4317                 Roo.apply(d, {'roo-id' : Roo.id()});
4318                 
4319                 var _this = this;
4320             
4321                 Roo.each(this.parent.item, function(item){
4322                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
4323                         return;
4324                     }
4325                     Roo.apply(d, {'roo-data-checked' : 'checked'});
4326                 });
4327             }
4328             
4329             html[html.length] = Roo.util.Format.trim(
4330                 this.dataName ?
4331                     t.applySubtemplate(this.dataName, d, this.store.meta) :
4332                     t.apply(d)
4333             );
4334         }
4335         
4336         
4337         
4338         el.update(html.join(""));
4339         this.nodes = el.dom.childNodes;
4340         this.updateIndexes(0);
4341     },
4342     
4343
4344     /**
4345      * Function to override to reformat the data that is sent to
4346      * the template for each node.
4347      * DEPRICATED - use the preparedata event handler.
4348      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
4349      * a JSON object for an UpdateManager bound view).
4350      */
4351     prepareData : function(data, index, record)
4352     {
4353         this.fireEvent("preparedata", this, data, index, record);
4354         return data;
4355     },
4356
4357     onUpdate : function(ds, record){
4358         // Roo.log('on update');   
4359         this.clearSelections();
4360         var index = this.store.indexOf(record);
4361         var n = this.nodes[index];
4362         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
4363         n.parentNode.removeChild(n);
4364         this.updateIndexes(index, index);
4365     },
4366
4367     
4368     
4369 // --------- FIXME     
4370     onAdd : function(ds, records, index)
4371     {
4372         //Roo.log(['on Add', ds, records, index] );        
4373         this.clearSelections();
4374         if(this.nodes.length == 0){
4375             this.refresh();
4376             return;
4377         }
4378         var n = this.nodes[index];
4379         for(var i = 0, len = records.length; i < len; i++){
4380             var d = this.prepareData(records[i].data, i, records[i]);
4381             if(n){
4382                 this.tpl.insertBefore(n, d);
4383             }else{
4384                 
4385                 this.tpl.append(this.el, d);
4386             }
4387         }
4388         this.updateIndexes(index);
4389     },
4390
4391     onRemove : function(ds, record, index){
4392        // Roo.log('onRemove');
4393         this.clearSelections();
4394         var el = this.dataName  ?
4395             this.el.child('.roo-tpl-' + this.dataName) :
4396             this.el; 
4397         
4398         el.dom.removeChild(this.nodes[index]);
4399         this.updateIndexes(index);
4400     },
4401
4402     /**
4403      * Refresh an individual node.
4404      * @param {Number} index
4405      */
4406     refreshNode : function(index){
4407         this.onUpdate(this.store, this.store.getAt(index));
4408     },
4409
4410     updateIndexes : function(startIndex, endIndex){
4411         var ns = this.nodes;
4412         startIndex = startIndex || 0;
4413         endIndex = endIndex || ns.length - 1;
4414         for(var i = startIndex; i <= endIndex; i++){
4415             ns[i].nodeIndex = i;
4416         }
4417     },
4418
4419     /**
4420      * Changes the data store this view uses and refresh the view.
4421      * @param {Store} store
4422      */
4423     setStore : function(store, initial){
4424         if(!initial && this.store){
4425             this.store.un("datachanged", this.refresh);
4426             this.store.un("add", this.onAdd);
4427             this.store.un("remove", this.onRemove);
4428             this.store.un("update", this.onUpdate);
4429             this.store.un("clear", this.refresh);
4430             this.store.un("beforeload", this.onBeforeLoad);
4431             this.store.un("load", this.onLoad);
4432             this.store.un("loadexception", this.onLoad);
4433         }
4434         if(store){
4435           
4436             store.on("datachanged", this.refresh, this);
4437             store.on("add", this.onAdd, this);
4438             store.on("remove", this.onRemove, this);
4439             store.on("update", this.onUpdate, this);
4440             store.on("clear", this.refresh, this);
4441             store.on("beforeload", this.onBeforeLoad, this);
4442             store.on("load", this.onLoad, this);
4443             store.on("loadexception", this.onLoad, this);
4444         }
4445         
4446         if(store){
4447             this.refresh();
4448         }
4449     },
4450     /**
4451      * onbeforeLoad - masks the loading area.
4452      *
4453      */
4454     onBeforeLoad : function(store,opts)
4455     {
4456          //Roo.log('onBeforeLoad');   
4457         if (!opts.add) {
4458             this.el.update("");
4459         }
4460         this.el.mask(this.mask ? this.mask : "Loading" ); 
4461     },
4462     onLoad : function ()
4463     {
4464         this.el.unmask();
4465     },
4466     
4467
4468     /**
4469      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
4470      * @param {HTMLElement} node
4471      * @return {HTMLElement} The template node
4472      */
4473     findItemFromChild : function(node){
4474         var el = this.dataName  ?
4475             this.el.child('.roo-tpl-' + this.dataName,true) :
4476             this.el.dom; 
4477         
4478         if(!node || node.parentNode == el){
4479                     return node;
4480             }
4481             var p = node.parentNode;
4482             while(p && p != el){
4483             if(p.parentNode == el){
4484                 return p;
4485             }
4486             p = p.parentNode;
4487         }
4488             return null;
4489     },
4490
4491     /** @ignore */
4492     onClick : function(e){
4493         var item = this.findItemFromChild(e.getTarget());
4494         if(item){
4495             var index = this.indexOf(item);
4496             if(this.onItemClick(item, index, e) !== false){
4497                 this.fireEvent("click", this, index, item, e);
4498             }
4499         }else{
4500             this.clearSelections();
4501         }
4502     },
4503
4504     /** @ignore */
4505     onContextMenu : function(e){
4506         var item = this.findItemFromChild(e.getTarget());
4507         if(item){
4508             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
4509         }
4510     },
4511
4512     /** @ignore */
4513     onDblClick : function(e){
4514         var item = this.findItemFromChild(e.getTarget());
4515         if(item){
4516             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
4517         }
4518     },
4519
4520     onItemClick : function(item, index, e)
4521     {
4522         if(this.fireEvent("beforeclick", this, index, item, e) === false){
4523             return false;
4524         }
4525         if (this.toggleSelect) {
4526             var m = this.isSelected(item) ? 'unselect' : 'select';
4527             //Roo.log(m);
4528             var _t = this;
4529             _t[m](item, true, false);
4530             return true;
4531         }
4532         if(this.multiSelect || this.singleSelect){
4533             if(this.multiSelect && e.shiftKey && this.lastSelection){
4534                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
4535             }else{
4536                 this.select(item, this.multiSelect && e.ctrlKey);
4537                 this.lastSelection = item;
4538             }
4539             
4540             if(!this.tickable){
4541                 e.preventDefault();
4542             }
4543             
4544         }
4545         return true;
4546     },
4547
4548     /**
4549      * Get the number of selected nodes.
4550      * @return {Number}
4551      */
4552     getSelectionCount : function(){
4553         return this.selections.length;
4554     },
4555
4556     /**
4557      * Get the currently selected nodes.
4558      * @return {Array} An array of HTMLElements
4559      */
4560     getSelectedNodes : function(){
4561         return this.selections;
4562     },
4563
4564     /**
4565      * Get the indexes of the selected nodes.
4566      * @return {Array}
4567      */
4568     getSelectedIndexes : function(){
4569         var indexes = [], s = this.selections;
4570         for(var i = 0, len = s.length; i < len; i++){
4571             indexes.push(s[i].nodeIndex);
4572         }
4573         return indexes;
4574     },
4575
4576     /**
4577      * Clear all selections
4578      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
4579      */
4580     clearSelections : function(suppressEvent){
4581         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
4582             this.cmp.elements = this.selections;
4583             this.cmp.removeClass(this.selectedClass);
4584             this.selections = [];
4585             if(!suppressEvent){
4586                 this.fireEvent("selectionchange", this, this.selections);
4587             }
4588         }
4589     },
4590
4591     /**
4592      * Returns true if the passed node is selected
4593      * @param {HTMLElement/Number} node The node or node index
4594      * @return {Boolean}
4595      */
4596     isSelected : function(node){
4597         var s = this.selections;
4598         if(s.length < 1){
4599             return false;
4600         }
4601         node = this.getNode(node);
4602         return s.indexOf(node) !== -1;
4603     },
4604
4605     /**
4606      * Selects nodes.
4607      * @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
4608      * @param {Boolean} keepExisting (optional) true to keep existing selections
4609      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
4610      */
4611     select : function(nodeInfo, keepExisting, suppressEvent){
4612         if(nodeInfo instanceof Array){
4613             if(!keepExisting){
4614                 this.clearSelections(true);
4615             }
4616             for(var i = 0, len = nodeInfo.length; i < len; i++){
4617                 this.select(nodeInfo[i], true, true);
4618             }
4619             return;
4620         } 
4621         var node = this.getNode(nodeInfo);
4622         if(!node || this.isSelected(node)){
4623             return; // already selected.
4624         }
4625         if(!keepExisting){
4626             this.clearSelections(true);
4627         }
4628         
4629         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
4630             Roo.fly(node).addClass(this.selectedClass);
4631             this.selections.push(node);
4632             if(!suppressEvent){
4633                 this.fireEvent("selectionchange", this, this.selections);
4634             }
4635         }
4636         
4637         
4638     },
4639       /**
4640      * Unselects nodes.
4641      * @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
4642      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
4643      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
4644      */
4645     unselect : function(nodeInfo, keepExisting, suppressEvent)
4646     {
4647         if(nodeInfo instanceof Array){
4648             Roo.each(this.selections, function(s) {
4649                 this.unselect(s, nodeInfo);
4650             }, this);
4651             return;
4652         }
4653         var node = this.getNode(nodeInfo);
4654         if(!node || !this.isSelected(node)){
4655             //Roo.log("not selected");
4656             return; // not selected.
4657         }
4658         // fireevent???
4659         var ns = [];
4660         Roo.each(this.selections, function(s) {
4661             if (s == node ) {
4662                 Roo.fly(node).removeClass(this.selectedClass);
4663
4664                 return;
4665             }
4666             ns.push(s);
4667         },this);
4668         
4669         this.selections= ns;
4670         this.fireEvent("selectionchange", this, this.selections);
4671     },
4672
4673     /**
4674      * Gets a template node.
4675      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
4676      * @return {HTMLElement} The node or null if it wasn't found
4677      */
4678     getNode : function(nodeInfo){
4679         if(typeof nodeInfo == "string"){
4680             return document.getElementById(nodeInfo);
4681         }else if(typeof nodeInfo == "number"){
4682             return this.nodes[nodeInfo];
4683         }
4684         return nodeInfo;
4685     },
4686
4687     /**
4688      * Gets a range template nodes.
4689      * @param {Number} startIndex
4690      * @param {Number} endIndex
4691      * @return {Array} An array of nodes
4692      */
4693     getNodes : function(start, end){
4694         var ns = this.nodes;
4695         start = start || 0;
4696         end = typeof end == "undefined" ? ns.length - 1 : end;
4697         var nodes = [];
4698         if(start <= end){
4699             for(var i = start; i <= end; i++){
4700                 nodes.push(ns[i]);
4701             }
4702         } else{
4703             for(var i = start; i >= end; i--){
4704                 nodes.push(ns[i]);
4705             }
4706         }
4707         return nodes;
4708     },
4709
4710     /**
4711      * Finds the index of the passed node
4712      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
4713      * @return {Number} The index of the node or -1
4714      */
4715     indexOf : function(node){
4716         node = this.getNode(node);
4717         if(typeof node.nodeIndex == "number"){
4718             return node.nodeIndex;
4719         }
4720         var ns = this.nodes;
4721         for(var i = 0, len = ns.length; i < len; i++){
4722             if(ns[i] == node){
4723                 return i;
4724             }
4725         }
4726         return -1;
4727     }
4728 });
4729 /*
4730  * Based on:
4731  * Ext JS Library 1.1.1
4732  * Copyright(c) 2006-2007, Ext JS, LLC.
4733  *
4734  * Originally Released Under LGPL - original licence link has changed is not relivant.
4735  *
4736  * Fork - LGPL
4737  * <script type="text/javascript">
4738  */
4739
4740 /**
4741  * @class Roo.JsonView
4742  * @extends Roo.View
4743  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
4744 <pre><code>
4745 var view = new Roo.JsonView({
4746     container: "my-element",
4747     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
4748     multiSelect: true, 
4749     jsonRoot: "data" 
4750 });
4751
4752 // listen for node click?
4753 view.on("click", function(vw, index, node, e){
4754     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
4755 });
4756
4757 // direct load of JSON data
4758 view.load("foobar.php");
4759
4760 // Example from my blog list
4761 var tpl = new Roo.Template(
4762     '&lt;div class="entry"&gt;' +
4763     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
4764     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
4765     "&lt;/div&gt;&lt;hr /&gt;"
4766 );
4767
4768 var moreView = new Roo.JsonView({
4769     container :  "entry-list", 
4770     template : tpl,
4771     jsonRoot: "posts"
4772 });
4773 moreView.on("beforerender", this.sortEntries, this);
4774 moreView.load({
4775     url: "/blog/get-posts.php",
4776     params: "allposts=true",
4777     text: "Loading Blog Entries..."
4778 });
4779 </code></pre>
4780
4781 * Note: old code is supported with arguments : (container, template, config)
4782
4783
4784  * @constructor
4785  * Create a new JsonView
4786  * 
4787  * @param {Object} config The config object
4788  * 
4789  */
4790 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
4791     
4792     
4793     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
4794
4795     var um = this.el.getUpdateManager();
4796     um.setRenderer(this);
4797     um.on("update", this.onLoad, this);
4798     um.on("failure", this.onLoadException, this);
4799
4800     /**
4801      * @event beforerender
4802      * Fires before rendering of the downloaded JSON data.
4803      * @param {Roo.JsonView} this
4804      * @param {Object} data The JSON data loaded
4805      */
4806     /**
4807      * @event load
4808      * Fires when data is loaded.
4809      * @param {Roo.JsonView} this
4810      * @param {Object} data The JSON data loaded
4811      * @param {Object} response The raw Connect response object
4812      */
4813     /**
4814      * @event loadexception
4815      * Fires when loading fails.
4816      * @param {Roo.JsonView} this
4817      * @param {Object} response The raw Connect response object
4818      */
4819     this.addEvents({
4820         'beforerender' : true,
4821         'load' : true,
4822         'loadexception' : true
4823     });
4824 };
4825 Roo.extend(Roo.JsonView, Roo.View, {
4826     /**
4827      * @type {String} The root property in the loaded JSON object that contains the data
4828      */
4829     jsonRoot : "",
4830
4831     /**
4832      * Refreshes the view.
4833      */
4834     refresh : function(){
4835         this.clearSelections();
4836         this.el.update("");
4837         var html = [];
4838         var o = this.jsonData;
4839         if(o && o.length > 0){
4840             for(var i = 0, len = o.length; i < len; i++){
4841                 var data = this.prepareData(o[i], i, o);
4842                 html[html.length] = this.tpl.apply(data);
4843             }
4844         }else{
4845             html.push(this.emptyText);
4846         }
4847         this.el.update(html.join(""));
4848         this.nodes = this.el.dom.childNodes;
4849         this.updateIndexes(0);
4850     },
4851
4852     /**
4853      * 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.
4854      * @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:
4855      <pre><code>
4856      view.load({
4857          url: "your-url.php",
4858          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
4859          callback: yourFunction,
4860          scope: yourObject, //(optional scope)
4861          discardUrl: false,
4862          nocache: false,
4863          text: "Loading...",
4864          timeout: 30,
4865          scripts: false
4866      });
4867      </code></pre>
4868      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
4869      * 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.
4870      * @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}
4871      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
4872      * @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.
4873      */
4874     load : function(){
4875         var um = this.el.getUpdateManager();
4876         um.update.apply(um, arguments);
4877     },
4878
4879     // note - render is a standard framework call...
4880     // using it for the response is really flaky... - it's called by UpdateManager normally, except when called by the XComponent/addXtype.
4881     render : function(el, response){
4882         
4883         this.clearSelections();
4884         this.el.update("");
4885         var o;
4886         try{
4887             if (response != '') {
4888                 o = Roo.util.JSON.decode(response.responseText);
4889                 if(this.jsonRoot){
4890                     
4891                     o = o[this.jsonRoot];
4892                 }
4893             }
4894         } catch(e){
4895         }
4896         /**
4897          * The current JSON data or null
4898          */
4899         this.jsonData = o;
4900         this.beforeRender();
4901         this.refresh();
4902     },
4903
4904 /**
4905  * Get the number of records in the current JSON dataset
4906  * @return {Number}
4907  */
4908     getCount : function(){
4909         return this.jsonData ? this.jsonData.length : 0;
4910     },
4911
4912 /**
4913  * Returns the JSON object for the specified node(s)
4914  * @param {HTMLElement/Array} node The node or an array of nodes
4915  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
4916  * you get the JSON object for the node
4917  */
4918     getNodeData : function(node){
4919         if(node instanceof Array){
4920             var data = [];
4921             for(var i = 0, len = node.length; i < len; i++){
4922                 data.push(this.getNodeData(node[i]));
4923             }
4924             return data;
4925         }
4926         return this.jsonData[this.indexOf(node)] || null;
4927     },
4928
4929     beforeRender : function(){
4930         this.snapshot = this.jsonData;
4931         if(this.sortInfo){
4932             this.sort.apply(this, this.sortInfo);
4933         }
4934         this.fireEvent("beforerender", this, this.jsonData);
4935     },
4936
4937     onLoad : function(el, o){
4938         this.fireEvent("load", this, this.jsonData, o);
4939     },
4940
4941     onLoadException : function(el, o){
4942         this.fireEvent("loadexception", this, o);
4943     },
4944
4945 /**
4946  * Filter the data by a specific property.
4947  * @param {String} property A property on your JSON objects
4948  * @param {String/RegExp} value Either string that the property values
4949  * should start with, or a RegExp to test against the property
4950  */
4951     filter : function(property, value){
4952         if(this.jsonData){
4953             var data = [];
4954             var ss = this.snapshot;
4955             if(typeof value == "string"){
4956                 var vlen = value.length;
4957                 if(vlen == 0){
4958                     this.clearFilter();
4959                     return;
4960                 }
4961                 value = value.toLowerCase();
4962                 for(var i = 0, len = ss.length; i < len; i++){
4963                     var o = ss[i];
4964                     if(o[property].substr(0, vlen).toLowerCase() == value){
4965                         data.push(o);
4966                     }
4967                 }
4968             } else if(value.exec){ // regex?
4969                 for(var i = 0, len = ss.length; i < len; i++){
4970                     var o = ss[i];
4971                     if(value.test(o[property])){
4972                         data.push(o);
4973                     }
4974                 }
4975             } else{
4976                 return;
4977             }
4978             this.jsonData = data;
4979             this.refresh();
4980         }
4981     },
4982
4983 /**
4984  * Filter by a function. The passed function will be called with each
4985  * object in the current dataset. If the function returns true the value is kept,
4986  * otherwise it is filtered.
4987  * @param {Function} fn
4988  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
4989  */
4990     filterBy : function(fn, scope){
4991         if(this.jsonData){
4992             var data = [];
4993             var ss = this.snapshot;
4994             for(var i = 0, len = ss.length; i < len; i++){
4995                 var o = ss[i];
4996                 if(fn.call(scope || this, o)){
4997                     data.push(o);
4998                 }
4999             }
5000             this.jsonData = data;
5001             this.refresh();
5002         }
5003     },
5004
5005 /**
5006  * Clears the current filter.
5007  */
5008     clearFilter : function(){
5009         if(this.snapshot && this.jsonData != this.snapshot){
5010             this.jsonData = this.snapshot;
5011             this.refresh();
5012         }
5013     },
5014
5015
5016 /**
5017  * Sorts the data for this view and refreshes it.
5018  * @param {String} property A property on your JSON objects to sort on
5019  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
5020  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
5021  */
5022     sort : function(property, dir, sortType){
5023         this.sortInfo = Array.prototype.slice.call(arguments, 0);
5024         if(this.jsonData){
5025             var p = property;
5026             var dsc = dir && dir.toLowerCase() == "desc";
5027             var f = function(o1, o2){
5028                 var v1 = sortType ? sortType(o1[p]) : o1[p];
5029                 var v2 = sortType ? sortType(o2[p]) : o2[p];
5030                 ;
5031                 if(v1 < v2){
5032                     return dsc ? +1 : -1;
5033                 } else if(v1 > v2){
5034                     return dsc ? -1 : +1;
5035                 } else{
5036                     return 0;
5037                 }
5038             };
5039             this.jsonData.sort(f);
5040             this.refresh();
5041             if(this.jsonData != this.snapshot){
5042                 this.snapshot.sort(f);
5043             }
5044         }
5045     }
5046 });/*
5047  * Based on:
5048  * Ext JS Library 1.1.1
5049  * Copyright(c) 2006-2007, Ext JS, LLC.
5050  *
5051  * Originally Released Under LGPL - original licence link has changed is not relivant.
5052  *
5053  * Fork - LGPL
5054  * <script type="text/javascript">
5055  */
5056  
5057
5058 /**
5059  * @class Roo.ColorPalette
5060  * @extends Roo.Component
5061  * Simple color palette class for choosing colors.  The palette can be rendered to any container.<br />
5062  * Here's an example of typical usage:
5063  * <pre><code>
5064 var cp = new Roo.ColorPalette({value:'993300'});  // initial selected color
5065 cp.render('my-div');
5066
5067 cp.on('select', function(palette, selColor){
5068     // do something with selColor
5069 });
5070 </code></pre>
5071  * @constructor
5072  * Create a new ColorPalette
5073  * @param {Object} config The config object
5074  */
5075 Roo.ColorPalette = function(config){
5076     Roo.ColorPalette.superclass.constructor.call(this, config);
5077     this.addEvents({
5078         /**
5079              * @event select
5080              * Fires when a color is selected
5081              * @param {ColorPalette} this
5082              * @param {String} color The 6-digit color hex code (without the # symbol)
5083              */
5084         select: true
5085     });
5086
5087     if(this.handler){
5088         this.on("select", this.handler, this.scope, true);
5089     }
5090 };
5091 Roo.extend(Roo.ColorPalette, Roo.Component, {
5092     /**
5093      * @cfg {String} itemCls
5094      * The CSS class to apply to the containing element (defaults to "x-color-palette")
5095      */
5096     itemCls : "x-color-palette",
5097     /**
5098      * @cfg {String} value
5099      * The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that
5100      * the hex codes are case-sensitive.
5101      */
5102     value : null,
5103     clickEvent:'click',
5104     // private
5105     ctype: "Roo.ColorPalette",
5106
5107     /**
5108      * @cfg {Boolean} allowReselect If set to true then reselecting a color that is already selected fires the selection event
5109      */
5110     allowReselect : false,
5111
5112     /**
5113      * <p>An array of 6-digit color hex code strings (without the # symbol).  This array can contain any number
5114      * of colors, and each hex code should be unique.  The width of the palette is controlled via CSS by adjusting
5115      * the width property of the 'x-color-palette' class (or assigning a custom class), so you can balance the number
5116      * of colors with the width setting until the box is symmetrical.</p>
5117      * <p>You can override individual colors if needed:</p>
5118      * <pre><code>
5119 var cp = new Roo.ColorPalette();
5120 cp.colors[0] = "FF0000";  // change the first box to red
5121 </code></pre>
5122
5123 Or you can provide a custom array of your own for complete control:
5124 <pre><code>
5125 var cp = new Roo.ColorPalette();
5126 cp.colors = ["000000", "993300", "333300"];
5127 </code></pre>
5128      * @type Array
5129      */
5130     colors : [
5131         "000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333",
5132         "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080",
5133         "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696",
5134         "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0",
5135         "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"
5136     ],
5137
5138     // private
5139     onRender : function(container, position){
5140         var t = new Roo.MasterTemplate(
5141             '<tpl><a href="#" class="color-{0}" hidefocus="on"><em><span style="background:#{0}" unselectable="on">&#160;</span></em></a></tpl>'
5142         );
5143         var c = this.colors;
5144         for(var i = 0, len = c.length; i < len; i++){
5145             t.add([c[i]]);
5146         }
5147         var el = document.createElement("div");
5148         el.className = this.itemCls;
5149         t.overwrite(el);
5150         container.dom.insertBefore(el, position);
5151         this.el = Roo.get(el);
5152         this.el.on(this.clickEvent, this.handleClick,  this, {delegate: "a"});
5153         if(this.clickEvent != 'click'){
5154             this.el.on('click', Roo.emptyFn,  this, {delegate: "a", preventDefault:true});
5155         }
5156     },
5157
5158     // private
5159     afterRender : function(){
5160         Roo.ColorPalette.superclass.afterRender.call(this);
5161         if(this.value){
5162             var s = this.value;
5163             this.value = null;
5164             this.select(s);
5165         }
5166     },
5167
5168     // private
5169     handleClick : function(e, t){
5170         e.preventDefault();
5171         if(!this.disabled){
5172             var c = t.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
5173             this.select(c.toUpperCase());
5174         }
5175     },
5176
5177     /**
5178      * Selects the specified color in the palette (fires the select event)
5179      * @param {String} color A valid 6-digit color hex code (# will be stripped if included)
5180      */
5181     select : function(color){
5182         color = color.replace("#", "");
5183         if(color != this.value || this.allowReselect){
5184             var el = this.el;
5185             if(this.value){
5186                 el.child("a.color-"+this.value).removeClass("x-color-palette-sel");
5187             }
5188             el.child("a.color-"+color).addClass("x-color-palette-sel");
5189             this.value = color;
5190             this.fireEvent("select", this, color);
5191         }
5192     }
5193 });/*
5194  * Based on:
5195  * Ext JS Library 1.1.1
5196  * Copyright(c) 2006-2007, Ext JS, LLC.
5197  *
5198  * Originally Released Under LGPL - original licence link has changed is not relivant.
5199  *
5200  * Fork - LGPL
5201  * <script type="text/javascript">
5202  */
5203  
5204 /**
5205  * @class Roo.DatePicker
5206  * @extends Roo.Component
5207  * Simple date picker class.
5208  * @constructor
5209  * Create a new DatePicker
5210  * @param {Object} config The config object
5211  */
5212 Roo.DatePicker = function(config){
5213     Roo.DatePicker.superclass.constructor.call(this, config);
5214
5215     this.value = config && config.value ?
5216                  config.value.clearTime() : new Date().clearTime();
5217
5218     this.addEvents({
5219         /**
5220              * @event select
5221              * Fires when a date is selected
5222              * @param {DatePicker} this
5223              * @param {Date} date The selected date
5224              */
5225         'select': true,
5226         /**
5227              * @event monthchange
5228              * Fires when the displayed month changes 
5229              * @param {DatePicker} this
5230              * @param {Date} date The selected month
5231              */
5232         'monthchange': true
5233     });
5234
5235     if(this.handler){
5236         this.on("select", this.handler,  this.scope || this);
5237     }
5238     // build the disabledDatesRE
5239     if(!this.disabledDatesRE && this.disabledDates){
5240         var dd = this.disabledDates;
5241         var re = "(?:";
5242         for(var i = 0; i < dd.length; i++){
5243             re += dd[i];
5244             if(i != dd.length-1) {
5245                 re += "|";
5246             }
5247         }
5248         this.disabledDatesRE = new RegExp(re + ")");
5249     }
5250 };
5251
5252 Roo.extend(Roo.DatePicker, Roo.Component, {
5253     /**
5254      * @cfg {String} todayText
5255      * The text to display on the button that selects the current date (defaults to "Today")
5256      */
5257     todayText : "Today",
5258     /**
5259      * @cfg {String} okText
5260      * The text to display on the ok button
5261      */
5262     okText : "&#160;OK&#160;", // &#160; to give the user extra clicking room
5263     /**
5264      * @cfg {String} cancelText
5265      * The text to display on the cancel button
5266      */
5267     cancelText : "Cancel",
5268     /**
5269      * @cfg {String} todayTip
5270      * The tooltip to display for the button that selects the current date (defaults to "{current date} (Spacebar)")
5271      */
5272     todayTip : "{0} (Spacebar)",
5273     /**
5274      * @cfg {Date} minDate
5275      * Minimum allowable date (JavaScript date object, defaults to null)
5276      */
5277     minDate : null,
5278     /**
5279      * @cfg {Date} maxDate
5280      * Maximum allowable date (JavaScript date object, defaults to null)
5281      */
5282     maxDate : null,
5283     /**
5284      * @cfg {String} minText
5285      * The error text to display if the minDate validation fails (defaults to "This date is before the minimum date")
5286      */
5287     minText : "This date is before the minimum date",
5288     /**
5289      * @cfg {String} maxText
5290      * The error text to display if the maxDate validation fails (defaults to "This date is after the maximum date")
5291      */
5292     maxText : "This date is after the maximum date",
5293     /**
5294      * @cfg {String} format
5295      * The default date format string which can be overriden for localization support.  The format must be
5296      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
5297      */
5298     format : "m/d/y",
5299     /**
5300      * @cfg {Array} disabledDays
5301      * An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
5302      */
5303     disabledDays : null,
5304     /**
5305      * @cfg {String} disabledDaysText
5306      * The tooltip to display when the date falls on a disabled day (defaults to "")
5307      */
5308     disabledDaysText : "",
5309     /**
5310      * @cfg {RegExp} disabledDatesRE
5311      * JavaScript regular expression used to disable a pattern of dates (defaults to null)
5312      */
5313     disabledDatesRE : null,
5314     /**
5315      * @cfg {String} disabledDatesText
5316      * The tooltip text to display when the date falls on a disabled date (defaults to "")
5317      */
5318     disabledDatesText : "",
5319     /**
5320      * @cfg {Boolean} constrainToViewport
5321      * True to constrain the date picker to the viewport (defaults to true)
5322      */
5323     constrainToViewport : true,
5324     /**
5325      * @cfg {Array} monthNames
5326      * An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)
5327      */
5328     monthNames : Date.monthNames,
5329     /**
5330      * @cfg {Array} dayNames
5331      * An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)
5332      */
5333     dayNames : Date.dayNames,
5334     /**
5335      * @cfg {String} nextText
5336      * The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')
5337      */
5338     nextText: 'Next Month (Control+Right)',
5339     /**
5340      * @cfg {String} prevText
5341      * The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')
5342      */
5343     prevText: 'Previous Month (Control+Left)',
5344     /**
5345      * @cfg {String} monthYearText
5346      * The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')
5347      */
5348     monthYearText: 'Choose a month (Control+Up/Down to move years)',
5349     /**
5350      * @cfg {Number} startDay
5351      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
5352      */
5353     startDay : 0,
5354     /**
5355      * @cfg {Bool} showClear
5356      * Show a clear button (usefull for date form elements that can be blank.)
5357      */
5358     
5359     showClear: false,
5360     
5361     /**
5362      * Sets the value of the date field
5363      * @param {Date} value The date to set
5364      */
5365     setValue : function(value){
5366         var old = this.value;
5367         
5368         if (typeof(value) == 'string') {
5369          
5370             value = Date.parseDate(value, this.format);
5371         }
5372         if (!value) {
5373             value = new Date();
5374         }
5375         
5376         this.value = value.clearTime(true);
5377         if(this.el){
5378             this.update(this.value);
5379         }
5380     },
5381
5382     /**
5383      * Gets the current selected value of the date field
5384      * @return {Date} The selected date
5385      */
5386     getValue : function(){
5387         return this.value;
5388     },
5389
5390     // private
5391     focus : function(){
5392         if(this.el){
5393             this.update(this.activeDate);
5394         }
5395     },
5396
5397     // privateval
5398     onRender : function(container, position){
5399         
5400         var m = [
5401              '<table cellspacing="0">',
5402                 '<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>',
5403                 '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'];
5404         var dn = this.dayNames;
5405         for(var i = 0; i < 7; i++){
5406             var d = this.startDay+i;
5407             if(d > 6){
5408                 d = d-7;
5409             }
5410             m.push("<th><span>", dn[d].substr(0,1), "</span></th>");
5411         }
5412         m[m.length] = "</tr></thead><tbody><tr>";
5413         for(var i = 0; i < 42; i++) {
5414             if(i % 7 == 0 && i != 0){
5415                 m[m.length] = "</tr><tr>";
5416             }
5417             m[m.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>';
5418         }
5419         m[m.length] = '</tr></tbody></table></td></tr><tr>'+
5420             '<td colspan="3" class="x-date-bottom" align="center"></td></tr></table><div class="x-date-mp"></div>';
5421
5422         var el = document.createElement("div");
5423         el.className = "x-date-picker";
5424         el.innerHTML = m.join("");
5425
5426         container.dom.insertBefore(el, position);
5427
5428         this.el = Roo.get(el);
5429         this.eventEl = Roo.get(el.firstChild);
5430
5431         new Roo.util.ClickRepeater(this.el.child("td.x-date-left a"), {
5432             handler: this.showPrevMonth,
5433             scope: this,
5434             preventDefault:true,
5435             stopDefault:true
5436         });
5437
5438         new Roo.util.ClickRepeater(this.el.child("td.x-date-right a"), {
5439             handler: this.showNextMonth,
5440             scope: this,
5441             preventDefault:true,
5442             stopDefault:true
5443         });
5444
5445         this.eventEl.on("mousewheel", this.handleMouseWheel,  this);
5446
5447         this.monthPicker = this.el.down('div.x-date-mp');
5448         this.monthPicker.enableDisplayMode('block');
5449         
5450         var kn = new Roo.KeyNav(this.eventEl, {
5451             "left" : function(e){
5452                 e.ctrlKey ?
5453                     this.showPrevMonth() :
5454                     this.update(this.activeDate.add("d", -1));
5455             },
5456
5457             "right" : function(e){
5458                 e.ctrlKey ?
5459                     this.showNextMonth() :
5460                     this.update(this.activeDate.add("d", 1));
5461             },
5462
5463             "up" : function(e){
5464                 e.ctrlKey ?
5465                     this.showNextYear() :
5466                     this.update(this.activeDate.add("d", -7));
5467             },
5468
5469             "down" : function(e){
5470                 e.ctrlKey ?
5471                     this.showPrevYear() :
5472                     this.update(this.activeDate.add("d", 7));
5473             },
5474
5475             "pageUp" : function(e){
5476                 this.showNextMonth();
5477             },
5478
5479             "pageDown" : function(e){
5480                 this.showPrevMonth();
5481             },
5482
5483             "enter" : function(e){
5484                 e.stopPropagation();
5485                 return true;
5486             },
5487
5488             scope : this
5489         });
5490
5491         this.eventEl.on("click", this.handleDateClick,  this, {delegate: "a.x-date-date"});
5492
5493         this.eventEl.addKeyListener(Roo.EventObject.SPACE, this.selectToday,  this);
5494
5495         this.el.unselectable();
5496         
5497         this.cells = this.el.select("table.x-date-inner tbody td");
5498         this.textNodes = this.el.query("table.x-date-inner tbody span");
5499
5500         this.mbtn = new Roo.Button(this.el.child("td.x-date-middle", true), {
5501             text: "&#160;",
5502             tooltip: this.monthYearText
5503         });
5504
5505         this.mbtn.on('click', this.showMonthPicker, this);
5506         this.mbtn.el.child(this.mbtn.menuClassTarget).addClass("x-btn-with-menu");
5507
5508
5509         var today = (new Date()).dateFormat(this.format);
5510         
5511         var baseTb = new Roo.Toolbar(this.el.child("td.x-date-bottom", true));
5512         if (this.showClear) {
5513             baseTb.add( new Roo.Toolbar.Fill());
5514         }
5515         baseTb.add({
5516             text: String.format(this.todayText, today),
5517             tooltip: String.format(this.todayTip, today),
5518             handler: this.selectToday,
5519             scope: this
5520         });
5521         
5522         //var todayBtn = new Roo.Button(this.el.child("td.x-date-bottom", true), {
5523             
5524         //});
5525         if (this.showClear) {
5526             
5527             baseTb.add( new Roo.Toolbar.Fill());
5528             baseTb.add({
5529                 text: '&#160;',
5530                 cls: 'x-btn-icon x-btn-clear',
5531                 handler: function() {
5532                     //this.value = '';
5533                     this.fireEvent("select", this, '');
5534                 },
5535                 scope: this
5536             });
5537         }
5538         
5539         
5540         if(Roo.isIE){
5541             this.el.repaint();
5542         }
5543         this.update(this.value);
5544     },
5545
5546     createMonthPicker : function(){
5547         if(!this.monthPicker.dom.firstChild){
5548             var buf = ['<table border="0" cellspacing="0">'];
5549             for(var i = 0; i < 6; i++){
5550                 buf.push(
5551                     '<tr><td class="x-date-mp-month"><a href="#">', this.monthNames[i].substr(0, 3), '</a></td>',
5552                     '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', this.monthNames[i+6].substr(0, 3), '</a></td>',
5553                     i == 0 ?
5554                     '<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>' :
5555                     '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>'
5556                 );
5557             }
5558             buf.push(
5559                 '<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">',
5560                     this.okText,
5561                     '</button><button type="button" class="x-date-mp-cancel">',
5562                     this.cancelText,
5563                     '</button></td></tr>',
5564                 '</table>'
5565             );
5566             this.monthPicker.update(buf.join(''));
5567             this.monthPicker.on('click', this.onMonthClick, this);
5568             this.monthPicker.on('dblclick', this.onMonthDblClick, this);
5569
5570             this.mpMonths = this.monthPicker.select('td.x-date-mp-month');
5571             this.mpYears = this.monthPicker.select('td.x-date-mp-year');
5572
5573             this.mpMonths.each(function(m, a, i){
5574                 i += 1;
5575                 if((i%2) == 0){
5576                     m.dom.xmonth = 5 + Math.round(i * .5);
5577                 }else{
5578                     m.dom.xmonth = Math.round((i-1) * .5);
5579                 }
5580             });
5581         }
5582     },
5583
5584     showMonthPicker : function(){
5585         this.createMonthPicker();
5586         var size = this.el.getSize();
5587         this.monthPicker.setSize(size);
5588         this.monthPicker.child('table').setSize(size);
5589
5590         this.mpSelMonth = (this.activeDate || this.value).getMonth();
5591         this.updateMPMonth(this.mpSelMonth);
5592         this.mpSelYear = (this.activeDate || this.value).getFullYear();
5593         this.updateMPYear(this.mpSelYear);
5594
5595         this.monthPicker.slideIn('t', {duration:.2});
5596     },
5597
5598     updateMPYear : function(y){
5599         this.mpyear = y;
5600         var ys = this.mpYears.elements;
5601         for(var i = 1; i <= 10; i++){
5602             var td = ys[i-1], y2;
5603             if((i%2) == 0){
5604                 y2 = y + Math.round(i * .5);
5605                 td.firstChild.innerHTML = y2;
5606                 td.xyear = y2;
5607             }else{
5608                 y2 = y - (5-Math.round(i * .5));
5609                 td.firstChild.innerHTML = y2;
5610                 td.xyear = y2;
5611             }
5612             this.mpYears.item(i-1)[y2 == this.mpSelYear ? 'addClass' : 'removeClass']('x-date-mp-sel');
5613         }
5614     },
5615
5616     updateMPMonth : function(sm){
5617         this.mpMonths.each(function(m, a, i){
5618             m[m.dom.xmonth == sm ? 'addClass' : 'removeClass']('x-date-mp-sel');
5619         });
5620     },
5621
5622     selectMPMonth: function(m){
5623         
5624     },
5625
5626     onMonthClick : function(e, t){
5627         e.stopEvent();
5628         var el = new Roo.Element(t), pn;
5629         if(el.is('button.x-date-mp-cancel')){
5630             this.hideMonthPicker();
5631         }
5632         else if(el.is('button.x-date-mp-ok')){
5633             this.update(new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
5634             this.hideMonthPicker();
5635         }
5636         else if(pn = el.up('td.x-date-mp-month', 2)){
5637             this.mpMonths.removeClass('x-date-mp-sel');
5638             pn.addClass('x-date-mp-sel');
5639             this.mpSelMonth = pn.dom.xmonth;
5640         }
5641         else if(pn = el.up('td.x-date-mp-year', 2)){
5642             this.mpYears.removeClass('x-date-mp-sel');
5643             pn.addClass('x-date-mp-sel');
5644             this.mpSelYear = pn.dom.xyear;
5645         }
5646         else if(el.is('a.x-date-mp-prev')){
5647             this.updateMPYear(this.mpyear-10);
5648         }
5649         else if(el.is('a.x-date-mp-next')){
5650             this.updateMPYear(this.mpyear+10);
5651         }
5652     },
5653
5654     onMonthDblClick : function(e, t){
5655         e.stopEvent();
5656         var el = new Roo.Element(t), pn;
5657         if(pn = el.up('td.x-date-mp-month', 2)){
5658             this.update(new Date(this.mpSelYear, pn.dom.xmonth, (this.activeDate || this.value).getDate()));
5659             this.hideMonthPicker();
5660         }
5661         else if(pn = el.up('td.x-date-mp-year', 2)){
5662             this.update(new Date(pn.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
5663             this.hideMonthPicker();
5664         }
5665     },
5666
5667     hideMonthPicker : function(disableAnim){
5668         if(this.monthPicker){
5669             if(disableAnim === true){
5670                 this.monthPicker.hide();
5671             }else{
5672                 this.monthPicker.slideOut('t', {duration:.2});
5673             }
5674         }
5675     },
5676
5677     // private
5678     showPrevMonth : function(e){
5679         this.update(this.activeDate.add("mo", -1));
5680     },
5681
5682     // private
5683     showNextMonth : function(e){
5684         this.update(this.activeDate.add("mo", 1));
5685     },
5686
5687     // private
5688     showPrevYear : function(){
5689         this.update(this.activeDate.add("y", -1));
5690     },
5691
5692     // private
5693     showNextYear : function(){
5694         this.update(this.activeDate.add("y", 1));
5695     },
5696
5697     // private
5698     handleMouseWheel : function(e){
5699         var delta = e.getWheelDelta();
5700         if(delta > 0){
5701             this.showPrevMonth();
5702             e.stopEvent();
5703         } else if(delta < 0){
5704             this.showNextMonth();
5705             e.stopEvent();
5706         }
5707     },
5708
5709     // private
5710     handleDateClick : function(e, t){
5711         e.stopEvent();
5712         if(t.dateValue && !Roo.fly(t.parentNode).hasClass("x-date-disabled")){
5713             this.setValue(new Date(t.dateValue));
5714             this.fireEvent("select", this, this.value);
5715         }
5716     },
5717
5718     // private
5719     selectToday : function(){
5720         this.setValue(new Date().clearTime());
5721         this.fireEvent("select", this, this.value);
5722     },
5723
5724     // private
5725     update : function(date)
5726     {
5727         var vd = this.activeDate;
5728         this.activeDate = date;
5729         if(vd && this.el){
5730             var t = date.getTime();
5731             if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
5732                 this.cells.removeClass("x-date-selected");
5733                 this.cells.each(function(c){
5734                    if(c.dom.firstChild.dateValue == t){
5735                        c.addClass("x-date-selected");
5736                        setTimeout(function(){
5737                             try{c.dom.firstChild.focus();}catch(e){}
5738                        }, 50);
5739                        return false;
5740                    }
5741                 });
5742                 return;
5743             }
5744         }
5745         
5746         var days = date.getDaysInMonth();
5747         var firstOfMonth = date.getFirstDateOfMonth();
5748         var startingPos = firstOfMonth.getDay()-this.startDay;
5749
5750         if(startingPos <= this.startDay){
5751             startingPos += 7;
5752         }
5753
5754         var pm = date.add("mo", -1);
5755         var prevStart = pm.getDaysInMonth()-startingPos;
5756
5757         var cells = this.cells.elements;
5758         var textEls = this.textNodes;
5759         days += startingPos;
5760
5761         // convert everything to numbers so it's fast
5762         var day = 86400000;
5763         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
5764         var today = new Date().clearTime().getTime();
5765         var sel = date.clearTime().getTime();
5766         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
5767         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
5768         var ddMatch = this.disabledDatesRE;
5769         var ddText = this.disabledDatesText;
5770         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
5771         var ddaysText = this.disabledDaysText;
5772         var format = this.format;
5773
5774         var setCellClass = function(cal, cell){
5775             cell.title = "";
5776             var t = d.getTime();
5777             cell.firstChild.dateValue = t;
5778             if(t == today){
5779                 cell.className += " x-date-today";
5780                 cell.title = cal.todayText;
5781             }
5782             if(t == sel){
5783                 cell.className += " x-date-selected";
5784                 setTimeout(function(){
5785                     try{cell.firstChild.focus();}catch(e){}
5786                 }, 50);
5787             }
5788             // disabling
5789             if(t < min) {
5790                 cell.className = " x-date-disabled";
5791                 cell.title = cal.minText;
5792                 return;
5793             }
5794             if(t > max) {
5795                 cell.className = " x-date-disabled";
5796                 cell.title = cal.maxText;
5797                 return;
5798             }
5799             if(ddays){
5800                 if(ddays.indexOf(d.getDay()) != -1){
5801                     cell.title = ddaysText;
5802                     cell.className = " x-date-disabled";
5803                 }
5804             }
5805             if(ddMatch && format){
5806                 var fvalue = d.dateFormat(format);
5807                 if(ddMatch.test(fvalue)){
5808                     cell.title = ddText.replace("%0", fvalue);
5809                     cell.className = " x-date-disabled";
5810                 }
5811             }
5812         };
5813
5814         var i = 0;
5815         for(; i < startingPos; i++) {
5816             textEls[i].innerHTML = (++prevStart);
5817             d.setDate(d.getDate()+1);
5818             cells[i].className = "x-date-prevday";
5819             setCellClass(this, cells[i]);
5820         }
5821         for(; i < days; i++){
5822             intDay = i - startingPos + 1;
5823             textEls[i].innerHTML = (intDay);
5824             d.setDate(d.getDate()+1);
5825             cells[i].className = "x-date-active";
5826             setCellClass(this, cells[i]);
5827         }
5828         var extraDays = 0;
5829         for(; i < 42; i++) {
5830              textEls[i].innerHTML = (++extraDays);
5831              d.setDate(d.getDate()+1);
5832              cells[i].className = "x-date-nextday";
5833              setCellClass(this, cells[i]);
5834         }
5835
5836         this.mbtn.setText(this.monthNames[date.getMonth()] + " " + date.getFullYear());
5837         this.fireEvent('monthchange', this, date);
5838         
5839         if(!this.internalRender){
5840             var main = this.el.dom.firstChild;
5841             var w = main.offsetWidth;
5842             this.el.setWidth(w + this.el.getBorderWidth("lr"));
5843             Roo.fly(main).setWidth(w);
5844             this.internalRender = true;
5845             // opera does not respect the auto grow header center column
5846             // then, after it gets a width opera refuses to recalculate
5847             // without a second pass
5848             if(Roo.isOpera && !this.secondPass){
5849                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
5850                 this.secondPass = true;
5851                 this.update.defer(10, this, [date]);
5852             }
5853         }
5854         
5855         
5856     }
5857 });        /*
5858  * Based on:
5859  * Ext JS Library 1.1.1
5860  * Copyright(c) 2006-2007, Ext JS, LLC.
5861  *
5862  * Originally Released Under LGPL - original licence link has changed is not relivant.
5863  *
5864  * Fork - LGPL
5865  * <script type="text/javascript">
5866  */
5867 /**
5868  * @class Roo.TabPanel
5869  * @extends Roo.util.Observable
5870  * A lightweight tab container.
5871  * <br><br>
5872  * Usage:
5873  * <pre><code>
5874 // basic tabs 1, built from existing content
5875 var tabs = new Roo.TabPanel("tabs1");
5876 tabs.addTab("script", "View Script");
5877 tabs.addTab("markup", "View Markup");
5878 tabs.activate("script");
5879
5880 // more advanced tabs, built from javascript
5881 var jtabs = new Roo.TabPanel("jtabs");
5882 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
5883
5884 // set up the UpdateManager
5885 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
5886 var updater = tab2.getUpdateManager();
5887 updater.setDefaultUrl("ajax1.htm");
5888 tab2.on('activate', updater.refresh, updater, true);
5889
5890 // Use setUrl for Ajax loading
5891 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
5892 tab3.setUrl("ajax2.htm", null, true);
5893
5894 // Disabled tab
5895 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
5896 tab4.disable();
5897
5898 jtabs.activate("jtabs-1");
5899  * </code></pre>
5900  * @constructor
5901  * Create a new TabPanel.
5902  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
5903  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
5904  */
5905 Roo.TabPanel = function(container, config){
5906     /**
5907     * The container element for this TabPanel.
5908     * @type Roo.Element
5909     */
5910     this.el = Roo.get(container, true);
5911     if(config){
5912         if(typeof config == "boolean"){
5913             this.tabPosition = config ? "bottom" : "top";
5914         }else{
5915             Roo.apply(this, config);
5916         }
5917     }
5918     if(this.tabPosition == "bottom"){
5919         this.bodyEl = Roo.get(this.createBody(this.el.dom));
5920         this.el.addClass("x-tabs-bottom");
5921     }
5922     this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
5923     this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
5924     this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
5925     if(Roo.isIE){
5926         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
5927     }
5928     if(this.tabPosition != "bottom"){
5929         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
5930          * @type Roo.Element
5931          */
5932         this.bodyEl = Roo.get(this.createBody(this.el.dom));
5933         this.el.addClass("x-tabs-top");
5934     }
5935     this.items = [];
5936
5937     this.bodyEl.setStyle("position", "relative");
5938
5939     this.active = null;
5940     this.activateDelegate = this.activate.createDelegate(this);
5941
5942     this.addEvents({
5943         /**
5944          * @event tabchange
5945          * Fires when the active tab changes
5946          * @param {Roo.TabPanel} this
5947          * @param {Roo.TabPanelItem} activePanel The new active tab
5948          */
5949         "tabchange": true,
5950         /**
5951          * @event beforetabchange
5952          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
5953          * @param {Roo.TabPanel} this
5954          * @param {Object} e Set cancel to true on this object to cancel the tab change
5955          * @param {Roo.TabPanelItem} tab The tab being changed to
5956          */
5957         "beforetabchange" : true
5958     });
5959
5960     Roo.EventManager.onWindowResize(this.onResize, this);
5961     this.cpad = this.el.getPadding("lr");
5962     this.hiddenCount = 0;
5963
5964
5965     // toolbar on the tabbar support...
5966     if (this.toolbar) {
5967         var tcfg = this.toolbar;
5968         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
5969         this.toolbar = new Roo.Toolbar(tcfg);
5970         if (Roo.isSafari) {
5971             var tbl = tcfg.container.child('table', true);
5972             tbl.setAttribute('width', '100%');
5973         }
5974         
5975     }
5976    
5977
5978
5979     Roo.TabPanel.superclass.constructor.call(this);
5980 };
5981
5982 Roo.extend(Roo.TabPanel, Roo.util.Observable, {
5983     /*
5984      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
5985      */
5986     tabPosition : "top",
5987     /*
5988      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
5989      */
5990     currentTabWidth : 0,
5991     /*
5992      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
5993      */
5994     minTabWidth : 40,
5995     /*
5996      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
5997      */
5998     maxTabWidth : 250,
5999     /*
6000      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
6001      */
6002     preferredTabWidth : 175,
6003     /*
6004      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
6005      */
6006     resizeTabs : false,
6007     /*
6008      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
6009      */
6010     monitorResize : true,
6011     /*
6012      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
6013      */
6014     toolbar : false,
6015
6016     /**
6017      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
6018      * @param {String} id The id of the div to use <b>or create</b>
6019      * @param {String} text The text for the tab
6020      * @param {String} content (optional) Content to put in the TabPanelItem body
6021      * @param {Boolean} closable (optional) True to create a close icon on the tab
6022      * @return {Roo.TabPanelItem} The created TabPanelItem
6023      */
6024     addTab : function(id, text, content, closable){
6025         var item = new Roo.TabPanelItem(this, id, text, closable);
6026         this.addTabItem(item);
6027         if(content){
6028             item.setContent(content);
6029         }
6030         return item;
6031     },
6032
6033     /**
6034      * Returns the {@link Roo.TabPanelItem} with the specified id/index
6035      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
6036      * @return {Roo.TabPanelItem}
6037      */
6038     getTab : function(id){
6039         return this.items[id];
6040     },
6041
6042     /**
6043      * Hides the {@link Roo.TabPanelItem} with the specified id/index
6044      * @param {String/Number} id The id or index of the TabPanelItem to hide.
6045      */
6046     hideTab : function(id){
6047         var t = this.items[id];
6048         if(!t.isHidden()){
6049            t.setHidden(true);
6050            this.hiddenCount++;
6051            this.autoSizeTabs();
6052         }
6053     },
6054
6055     /**
6056      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
6057      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
6058      */
6059     unhideTab : function(id){
6060         var t = this.items[id];
6061         if(t.isHidden()){
6062            t.setHidden(false);
6063            this.hiddenCount--;
6064            this.autoSizeTabs();
6065         }
6066     },
6067
6068     /**
6069      * Adds an existing {@link Roo.TabPanelItem}.
6070      * @param {Roo.TabPanelItem} item The TabPanelItem to add
6071      */
6072     addTabItem : function(item){
6073         this.items[item.id] = item;
6074         this.items.push(item);
6075         if(this.resizeTabs){
6076            item.setWidth(this.currentTabWidth || this.preferredTabWidth);
6077            this.autoSizeTabs();
6078         }else{
6079             item.autoSize();
6080         }
6081     },
6082
6083     /**
6084      * Removes a {@link Roo.TabPanelItem}.
6085      * @param {String/Number} id The id or index of the TabPanelItem to remove.
6086      */
6087     removeTab : function(id){
6088         var items = this.items;
6089         var tab = items[id];
6090         if(!tab) { return; }
6091         var index = items.indexOf(tab);
6092         if(this.active == tab && items.length > 1){
6093             var newTab = this.getNextAvailable(index);
6094             if(newTab) {
6095                 newTab.activate();
6096             }
6097         }
6098         this.stripEl.dom.removeChild(tab.pnode.dom);
6099         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
6100             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
6101         }
6102         items.splice(index, 1);
6103         delete this.items[tab.id];
6104         tab.fireEvent("close", tab);
6105         tab.purgeListeners();
6106         this.autoSizeTabs();
6107     },
6108
6109     getNextAvailable : function(start){
6110         var items = this.items;
6111         var index = start;
6112         // look for a next tab that will slide over to
6113         // replace the one being removed
6114         while(index < items.length){
6115             var item = items[++index];
6116             if(item && !item.isHidden()){
6117                 return item;
6118             }
6119         }
6120         // if one isn't found select the previous tab (on the left)
6121         index = start;
6122         while(index >= 0){
6123             var item = items[--index];
6124             if(item && !item.isHidden()){
6125                 return item;
6126             }
6127         }
6128         return null;
6129     },
6130
6131     /**
6132      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
6133      * @param {String/Number} id The id or index of the TabPanelItem to disable.
6134      */
6135     disableTab : function(id){
6136         var tab = this.items[id];
6137         if(tab && this.active != tab){
6138             tab.disable();
6139         }
6140     },
6141
6142     /**
6143      * Enables a {@link Roo.TabPanelItem} that is disabled.
6144      * @param {String/Number} id The id or index of the TabPanelItem to enable.
6145      */
6146     enableTab : function(id){
6147         var tab = this.items[id];
6148         tab.enable();
6149     },
6150
6151     /**
6152      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
6153      * @param {String/Number} id The id or index of the TabPanelItem to activate.
6154      * @return {Roo.TabPanelItem} The TabPanelItem.
6155      */
6156     activate : function(id){
6157         var tab = this.items[id];
6158         if(!tab){
6159             return null;
6160         }
6161         if(tab == this.active || tab.disabled){
6162             return tab;
6163         }
6164         var e = {};
6165         this.fireEvent("beforetabchange", this, e, tab);
6166         if(e.cancel !== true && !tab.disabled){
6167             if(this.active){
6168                 this.active.hide();
6169             }
6170             this.active = this.items[id];
6171             this.active.show();
6172             this.fireEvent("tabchange", this, this.active);
6173         }
6174         return tab;
6175     },
6176
6177     /**
6178      * Gets the active {@link Roo.TabPanelItem}.
6179      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
6180      */
6181     getActiveTab : function(){
6182         return this.active;
6183     },
6184
6185     /**
6186      * Updates the tab body element to fit the height of the container element
6187      * for overflow scrolling
6188      * @param {Number} targetHeight (optional) Override the starting height from the elements height
6189      */
6190     syncHeight : function(targetHeight){
6191         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
6192         var bm = this.bodyEl.getMargins();
6193         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
6194         this.bodyEl.setHeight(newHeight);
6195         return newHeight;
6196     },
6197
6198     onResize : function(){
6199         if(this.monitorResize){
6200             this.autoSizeTabs();
6201         }
6202     },
6203
6204     /**
6205      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
6206      */
6207     beginUpdate : function(){
6208         this.updating = true;
6209     },
6210
6211     /**
6212      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
6213      */
6214     endUpdate : function(){
6215         this.updating = false;
6216         this.autoSizeTabs();
6217     },
6218
6219     /**
6220      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
6221      */
6222     autoSizeTabs : function(){
6223         var count = this.items.length;
6224         var vcount = count - this.hiddenCount;
6225         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
6226             return;
6227         }
6228         var w = Math.max(this.el.getWidth() - this.cpad, 10);
6229         var availWidth = Math.floor(w / vcount);
6230         var b = this.stripBody;
6231         if(b.getWidth() > w){
6232             var tabs = this.items;
6233             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
6234             if(availWidth < this.minTabWidth){
6235                 /*if(!this.sleft){    // incomplete scrolling code
6236                     this.createScrollButtons();
6237                 }
6238                 this.showScroll();
6239                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
6240             }
6241         }else{
6242             if(this.currentTabWidth < this.preferredTabWidth){
6243                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
6244             }
6245         }
6246     },
6247
6248     /**
6249      * Returns the number of tabs in this TabPanel.
6250      * @return {Number}
6251      */
6252      getCount : function(){
6253          return this.items.length;
6254      },
6255
6256     /**
6257      * Resizes all the tabs to the passed width
6258      * @param {Number} The new width
6259      */
6260     setTabWidth : function(width){
6261         this.currentTabWidth = width;
6262         for(var i = 0, len = this.items.length; i < len; i++) {
6263                 if(!this.items[i].isHidden()) {
6264                 this.items[i].setWidth(width);
6265             }
6266         }
6267     },
6268
6269     /**
6270      * Destroys this TabPanel
6271      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
6272      */
6273     destroy : function(removeEl){
6274         Roo.EventManager.removeResizeListener(this.onResize, this);
6275         for(var i = 0, len = this.items.length; i < len; i++){
6276             this.items[i].purgeListeners();
6277         }
6278         if(removeEl === true){
6279             this.el.update("");
6280             this.el.remove();
6281         }
6282     }
6283 });
6284
6285 /**
6286  * @class Roo.TabPanelItem
6287  * @extends Roo.util.Observable
6288  * Represents an individual item (tab plus body) in a TabPanel.
6289  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
6290  * @param {String} id The id of this TabPanelItem
6291  * @param {String} text The text for the tab of this TabPanelItem
6292  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
6293  */
6294 Roo.TabPanelItem = function(tabPanel, id, text, closable){
6295     /**
6296      * The {@link Roo.TabPanel} this TabPanelItem belongs to
6297      * @type Roo.TabPanel
6298      */
6299     this.tabPanel = tabPanel;
6300     /**
6301      * The id for this TabPanelItem
6302      * @type String
6303      */
6304     this.id = id;
6305     /** @private */
6306     this.disabled = false;
6307     /** @private */
6308     this.text = text;
6309     /** @private */
6310     this.loaded = false;
6311     this.closable = closable;
6312
6313     /**
6314      * The body element for this TabPanelItem.
6315      * @type Roo.Element
6316      */
6317     this.bodyEl = Roo.get(tabPanel.createItemBody(tabPanel.bodyEl.dom, id));
6318     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
6319     this.bodyEl.setStyle("display", "block");
6320     this.bodyEl.setStyle("zoom", "1");
6321     this.hideAction();
6322
6323     var els = tabPanel.createStripElements(tabPanel.stripEl.dom, text, closable);
6324     /** @private */
6325     this.el = Roo.get(els.el, true);
6326     this.inner = Roo.get(els.inner, true);
6327     this.textEl = Roo.get(this.el.dom.firstChild.firstChild.firstChild, true);
6328     this.pnode = Roo.get(els.el.parentNode, true);
6329     this.el.on("mousedown", this.onTabMouseDown, this);
6330     this.el.on("click", this.onTabClick, this);
6331     /** @private */
6332     if(closable){
6333         var c = Roo.get(els.close, true);
6334         c.dom.title = this.closeText;
6335         c.addClassOnOver("close-over");
6336         c.on("click", this.closeClick, this);
6337      }
6338
6339     this.addEvents({
6340          /**
6341          * @event activate
6342          * Fires when this tab becomes the active tab.
6343          * @param {Roo.TabPanel} tabPanel The parent TabPanel
6344          * @param {Roo.TabPanelItem} this
6345          */
6346         "activate": true,
6347         /**
6348          * @event beforeclose
6349          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
6350          * @param {Roo.TabPanelItem} this
6351          * @param {Object} e Set cancel to true on this object to cancel the close.
6352          */
6353         "beforeclose": true,
6354         /**
6355          * @event close
6356          * Fires when this tab is closed.
6357          * @param {Roo.TabPanelItem} this
6358          */
6359          "close": true,
6360         /**
6361          * @event deactivate
6362          * Fires when this tab is no longer the active tab.
6363          * @param {Roo.TabPanel} tabPanel The parent TabPanel
6364          * @param {Roo.TabPanelItem} this
6365          */
6366          "deactivate" : true
6367     });
6368     this.hidden = false;
6369
6370     Roo.TabPanelItem.superclass.constructor.call(this);
6371 };
6372
6373 Roo.extend(Roo.TabPanelItem, Roo.util.Observable, {
6374     purgeListeners : function(){
6375        Roo.util.Observable.prototype.purgeListeners.call(this);
6376        this.el.removeAllListeners();
6377     },
6378     /**
6379      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
6380      */
6381     show : function(){
6382         this.pnode.addClass("on");
6383         this.showAction();
6384         if(Roo.isOpera){
6385             this.tabPanel.stripWrap.repaint();
6386         }
6387         this.fireEvent("activate", this.tabPanel, this);
6388     },
6389
6390     /**
6391      * Returns true if this tab is the active tab.
6392      * @return {Boolean}
6393      */
6394     isActive : function(){
6395         return this.tabPanel.getActiveTab() == this;
6396     },
6397
6398     /**
6399      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
6400      */
6401     hide : function(){
6402         this.pnode.removeClass("on");
6403         this.hideAction();
6404         this.fireEvent("deactivate", this.tabPanel, this);
6405     },
6406
6407     hideAction : function(){
6408         this.bodyEl.hide();
6409         this.bodyEl.setStyle("position", "absolute");
6410         this.bodyEl.setLeft("-20000px");
6411         this.bodyEl.setTop("-20000px");
6412     },
6413
6414     showAction : function(){
6415         this.bodyEl.setStyle("position", "relative");
6416         this.bodyEl.setTop("");
6417         this.bodyEl.setLeft("");
6418         this.bodyEl.show();
6419     },
6420
6421     /**
6422      * Set the tooltip for the tab.
6423      * @param {String} tooltip The tab's tooltip
6424      */
6425     setTooltip : function(text){
6426         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
6427             this.textEl.dom.qtip = text;
6428             this.textEl.dom.removeAttribute('title');
6429         }else{
6430             this.textEl.dom.title = text;
6431         }
6432     },
6433
6434     onTabClick : function(e){
6435         e.preventDefault();
6436         this.tabPanel.activate(this.id);
6437     },
6438
6439     onTabMouseDown : function(e){
6440         e.preventDefault();
6441         this.tabPanel.activate(this.id);
6442     },
6443
6444     getWidth : function(){
6445         return this.inner.getWidth();
6446     },
6447
6448     setWidth : function(width){
6449         var iwidth = width - this.pnode.getPadding("lr");
6450         this.inner.setWidth(iwidth);
6451         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
6452         this.pnode.setWidth(width);
6453     },
6454
6455     /**
6456      * Show or hide the tab
6457      * @param {Boolean} hidden True to hide or false to show.
6458      */
6459     setHidden : function(hidden){
6460         this.hidden = hidden;
6461         this.pnode.setStyle("display", hidden ? "none" : "");
6462     },
6463
6464     /**
6465      * Returns true if this tab is "hidden"
6466      * @return {Boolean}
6467      */
6468     isHidden : function(){
6469         return this.hidden;
6470     },
6471
6472     /**
6473      * Returns the text for this tab
6474      * @return {String}
6475      */
6476     getText : function(){
6477         return this.text;
6478     },
6479
6480     autoSize : function(){
6481         //this.el.beginMeasure();
6482         this.textEl.setWidth(1);
6483         /*
6484          *  #2804 [new] Tabs in Roojs
6485          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
6486          */
6487         this.setWidth(this.textEl.dom.scrollWidth+this.pnode.getPadding("lr")+this.inner.getPadding("lr") + 2);
6488         //this.el.endMeasure();
6489     },
6490
6491     /**
6492      * Sets the text for the tab (Note: this also sets the tooltip text)
6493      * @param {String} text The tab's text and tooltip
6494      */
6495     setText : function(text){
6496         this.text = text;
6497         this.textEl.update(text);
6498         this.setTooltip(text);
6499         if(!this.tabPanel.resizeTabs){
6500             this.autoSize();
6501         }
6502     },
6503     /**
6504      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
6505      */
6506     activate : function(){
6507         this.tabPanel.activate(this.id);
6508     },
6509
6510     /**
6511      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
6512      */
6513     disable : function(){
6514         if(this.tabPanel.active != this){
6515             this.disabled = true;
6516             this.pnode.addClass("disabled");
6517         }
6518     },
6519
6520     /**
6521      * Enables this TabPanelItem if it was previously disabled.
6522      */
6523     enable : function(){
6524         this.disabled = false;
6525         this.pnode.removeClass("disabled");
6526     },
6527
6528     /**
6529      * Sets the content for this TabPanelItem.
6530      * @param {String} content The content
6531      * @param {Boolean} loadScripts true to look for and load scripts
6532      */
6533     setContent : function(content, loadScripts){
6534         this.bodyEl.update(content, loadScripts);
6535     },
6536
6537     /**
6538      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
6539      * @return {Roo.UpdateManager} The UpdateManager
6540      */
6541     getUpdateManager : function(){
6542         return this.bodyEl.getUpdateManager();
6543     },
6544
6545     /**
6546      * Set a URL to be used to load the content for this TabPanelItem.
6547      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
6548      * @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)
6549      * @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)
6550      * @return {Roo.UpdateManager} The UpdateManager
6551      */
6552     setUrl : function(url, params, loadOnce){
6553         if(this.refreshDelegate){
6554             this.un('activate', this.refreshDelegate);
6555         }
6556         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
6557         this.on("activate", this.refreshDelegate);
6558         return this.bodyEl.getUpdateManager();
6559     },
6560
6561     /** @private */
6562     _handleRefresh : function(url, params, loadOnce){
6563         if(!loadOnce || !this.loaded){
6564             var updater = this.bodyEl.getUpdateManager();
6565             updater.update(url, params, this._setLoaded.createDelegate(this));
6566         }
6567     },
6568
6569     /**
6570      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
6571      *   Will fail silently if the setUrl method has not been called.
6572      *   This does not activate the panel, just updates its content.
6573      */
6574     refresh : function(){
6575         if(this.refreshDelegate){
6576            this.loaded = false;
6577            this.refreshDelegate();
6578         }
6579     },
6580
6581     /** @private */
6582     _setLoaded : function(){
6583         this.loaded = true;
6584     },
6585
6586     /** @private */
6587     closeClick : function(e){
6588         var o = {};
6589         e.stopEvent();
6590         this.fireEvent("beforeclose", this, o);
6591         if(o.cancel !== true){
6592             this.tabPanel.removeTab(this.id);
6593         }
6594     },
6595     /**
6596      * The text displayed in the tooltip for the close icon.
6597      * @type String
6598      */
6599     closeText : "Close this tab"
6600 });
6601
6602 /** @private */
6603 Roo.TabPanel.prototype.createStrip = function(container){
6604     var strip = document.createElement("div");
6605     strip.className = "x-tabs-wrap";
6606     container.appendChild(strip);
6607     return strip;
6608 };
6609 /** @private */
6610 Roo.TabPanel.prototype.createStripList = function(strip){
6611     // div wrapper for retard IE
6612     // returns the "tr" element.
6613     strip.innerHTML = '<div class="x-tabs-strip-wrap">'+
6614         '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
6615         '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
6616     return strip.firstChild.firstChild.firstChild.firstChild;
6617 };
6618 /** @private */
6619 Roo.TabPanel.prototype.createBody = function(container){
6620     var body = document.createElement("div");
6621     Roo.id(body, "tab-body");
6622     Roo.fly(body).addClass("x-tabs-body");
6623     container.appendChild(body);
6624     return body;
6625 };
6626 /** @private */
6627 Roo.TabPanel.prototype.createItemBody = function(bodyEl, id){
6628     var body = Roo.getDom(id);
6629     if(!body){
6630         body = document.createElement("div");
6631         body.id = id;
6632     }
6633     Roo.fly(body).addClass("x-tabs-item-body");
6634     bodyEl.insertBefore(body, bodyEl.firstChild);
6635     return body;
6636 };
6637 /** @private */
6638 Roo.TabPanel.prototype.createStripElements = function(stripEl, text, closable){
6639     var td = document.createElement("td");
6640     stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
6641     //stripEl.appendChild(td);
6642     if(closable){
6643         td.className = "x-tabs-closable";
6644         if(!this.closeTpl){
6645             this.closeTpl = new Roo.Template(
6646                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
6647                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
6648                '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
6649             );
6650         }
6651         var el = this.closeTpl.overwrite(td, {"text": text});
6652         var close = el.getElementsByTagName("div")[0];
6653         var inner = el.getElementsByTagName("em")[0];
6654         return {"el": el, "close": close, "inner": inner};
6655     } else {
6656         if(!this.tabTpl){
6657             this.tabTpl = new Roo.Template(
6658                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
6659                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
6660             );
6661         }
6662         var el = this.tabTpl.overwrite(td, {"text": text});
6663         var inner = el.getElementsByTagName("em")[0];
6664         return {"el": el, "inner": inner};
6665     }
6666 };/*
6667  * Based on:
6668  * Ext JS Library 1.1.1
6669  * Copyright(c) 2006-2007, Ext JS, LLC.
6670  *
6671  * Originally Released Under LGPL - original licence link has changed is not relivant.
6672  *
6673  * Fork - LGPL
6674  * <script type="text/javascript">
6675  */
6676
6677 /**
6678  * @class Roo.Button
6679  * @extends Roo.util.Observable
6680  * Simple Button class
6681  * @cfg {String} text The button text
6682  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
6683  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
6684  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event)
6685  * @cfg {Object} scope The scope of the handler
6686  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width)
6687  * @cfg {String/Object} tooltip The tooltip for the button - can be a string or QuickTips config object
6688  * @cfg {Boolean} hidden True to start hidden (defaults to false)
6689  * @cfg {Boolean} disabled True to start disabled (defaults to false)
6690  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
6691  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed, only
6692    applies if enableToggle = true)
6693  * @cfg {String/HTMLElement/Element} renderTo The element to append the button to
6694  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
6695   an {@link Roo.util.ClickRepeater} config object (defaults to false).
6696  * @constructor
6697  * Create a new button
6698  * @param {Object} config The config object
6699  */
6700 Roo.Button = function(renderTo, config)
6701 {
6702     if (!config) {
6703         config = renderTo;
6704         renderTo = config.renderTo || false;
6705     }
6706     
6707     Roo.apply(this, config);
6708     this.addEvents({
6709         /**
6710              * @event click
6711              * Fires when this button is clicked
6712              * @param {Button} this
6713              * @param {EventObject} e The click event
6714              */
6715             "click" : true,
6716         /**
6717              * @event toggle
6718              * Fires when the "pressed" state of this button changes (only if enableToggle = true)
6719              * @param {Button} this
6720              * @param {Boolean} pressed
6721              */
6722             "toggle" : true,
6723         /**
6724              * @event mouseover
6725              * Fires when the mouse hovers over the button
6726              * @param {Button} this
6727              * @param {Event} e The event object
6728              */
6729         'mouseover' : true,
6730         /**
6731              * @event mouseout
6732              * Fires when the mouse exits the button
6733              * @param {Button} this
6734              * @param {Event} e The event object
6735              */
6736         'mouseout': true,
6737          /**
6738              * @event render
6739              * Fires when the button is rendered
6740              * @param {Button} this
6741              */
6742         'render': true
6743     });
6744     if(this.menu){
6745         this.menu = Roo.menu.MenuMgr.get(this.menu);
6746     }
6747     // register listeners first!!  - so render can be captured..
6748     Roo.util.Observable.call(this);
6749     if(renderTo){
6750         this.render(renderTo);
6751     }
6752     
6753   
6754 };
6755
6756 Roo.extend(Roo.Button, Roo.util.Observable, {
6757     /**
6758      * 
6759      */
6760     
6761     /**
6762      * Read-only. True if this button is hidden
6763      * @type Boolean
6764      */
6765     hidden : false,
6766     /**
6767      * Read-only. True if this button is disabled
6768      * @type Boolean
6769      */
6770     disabled : false,
6771     /**
6772      * Read-only. True if this button is pressed (only if enableToggle = true)
6773      * @type Boolean
6774      */
6775     pressed : false,
6776
6777     /**
6778      * @cfg {Number} tabIndex 
6779      * The DOM tabIndex for this button (defaults to undefined)
6780      */
6781     tabIndex : undefined,
6782
6783     /**
6784      * @cfg {Boolean} enableToggle
6785      * True to enable pressed/not pressed toggling (defaults to false)
6786      */
6787     enableToggle: false,
6788     /**
6789      * @cfg {Mixed} menu
6790      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
6791      */
6792     menu : undefined,
6793     /**
6794      * @cfg {String} menuAlign
6795      * The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').
6796      */
6797     menuAlign : "tl-bl?",
6798
6799     /**
6800      * @cfg {String} iconCls
6801      * A css class which sets a background image to be used as the icon for this button (defaults to undefined).
6802      */
6803     iconCls : undefined,
6804     /**
6805      * @cfg {String} type
6806      * The button's type, corresponding to the DOM input element type attribute.  Either "submit," "reset" or "button" (default).
6807      */
6808     type : 'button',
6809
6810     // private
6811     menuClassTarget: 'tr',
6812
6813     /**
6814      * @cfg {String} clickEvent
6815      * The type of event to map to the button's event handler (defaults to 'click')
6816      */
6817     clickEvent : 'click',
6818
6819     /**
6820      * @cfg {Boolean} handleMouseEvents
6821      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
6822      */
6823     handleMouseEvents : true,
6824
6825     /**
6826      * @cfg {String} tooltipType
6827      * The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
6828      */
6829     tooltipType : 'qtip',
6830
6831     /**
6832      * @cfg {String} cls
6833      * A CSS class to apply to the button's main element.
6834      */
6835     
6836     /**
6837      * @cfg {Roo.Template} template (Optional)
6838      * An {@link Roo.Template} with which to create the Button's main element. This Template must
6839      * contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
6840      * require code modifications if required elements (e.g. a button) aren't present.
6841      */
6842
6843     // private
6844     render : function(renderTo){
6845         var btn;
6846         if(this.hideParent){
6847             this.parentEl = Roo.get(renderTo);
6848         }
6849         if(!this.dhconfig){
6850             if(!this.template){
6851                 if(!Roo.Button.buttonTemplate){
6852                     // hideous table template
6853                     Roo.Button.buttonTemplate = new Roo.Template(
6854                         '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
6855                         '<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>',
6856                         "</tr></tbody></table>");
6857                 }
6858                 this.template = Roo.Button.buttonTemplate;
6859             }
6860             btn = this.template.append(renderTo, [this.text || '&#160;', this.type], true);
6861             var btnEl = btn.child("button:first");
6862             btnEl.on('focus', this.onFocus, this);
6863             btnEl.on('blur', this.onBlur, this);
6864             if(this.cls){
6865                 btn.addClass(this.cls);
6866             }
6867             if(this.icon){
6868                 btnEl.setStyle('background-image', 'url(' +this.icon +')');
6869             }
6870             if(this.iconCls){
6871                 btnEl.addClass(this.iconCls);
6872                 if(!this.cls){
6873                     btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
6874                 }
6875             }
6876             if(this.tabIndex !== undefined){
6877                 btnEl.dom.tabIndex = this.tabIndex;
6878             }
6879             if(this.tooltip){
6880                 if(typeof this.tooltip == 'object'){
6881                     Roo.QuickTips.tips(Roo.apply({
6882                           target: btnEl.id
6883                     }, this.tooltip));
6884                 } else {
6885                     btnEl.dom[this.tooltipType] = this.tooltip;
6886                 }
6887             }
6888         }else{
6889             btn = Roo.DomHelper.append(Roo.get(renderTo).dom, this.dhconfig, true);
6890         }
6891         this.el = btn;
6892         if(this.id){
6893             this.el.dom.id = this.el.id = this.id;
6894         }
6895         if(this.menu){
6896             this.el.child(this.menuClassTarget).addClass("x-btn-with-menu");
6897             this.menu.on("show", this.onMenuShow, this);
6898             this.menu.on("hide", this.onMenuHide, this);
6899         }
6900         btn.addClass("x-btn");
6901         if(Roo.isIE && !Roo.isIE7){
6902             this.autoWidth.defer(1, this);
6903         }else{
6904             this.autoWidth();
6905         }
6906         if(this.handleMouseEvents){
6907             btn.on("mouseover", this.onMouseOver, this);
6908             btn.on("mouseout", this.onMouseOut, this);
6909             btn.on("mousedown", this.onMouseDown, this);
6910         }
6911         btn.on(this.clickEvent, this.onClick, this);
6912         //btn.on("mouseup", this.onMouseUp, this);
6913         if(this.hidden){
6914             this.hide();
6915         }
6916         if(this.disabled){
6917             this.disable();
6918         }
6919         Roo.ButtonToggleMgr.register(this);
6920         if(this.pressed){
6921             this.el.addClass("x-btn-pressed");
6922         }
6923         if(this.repeat){
6924             var repeater = new Roo.util.ClickRepeater(btn,
6925                 typeof this.repeat == "object" ? this.repeat : {}
6926             );
6927             repeater.on("click", this.onClick,  this);
6928         }
6929         
6930         this.fireEvent('render', this);
6931         
6932     },
6933     /**
6934      * Returns the button's underlying element
6935      * @return {Roo.Element} The element
6936      */
6937     getEl : function(){
6938         return this.el;  
6939     },
6940     
6941     /**
6942      * Destroys this Button and removes any listeners.
6943      */
6944     destroy : function(){
6945         Roo.ButtonToggleMgr.unregister(this);
6946         this.el.removeAllListeners();
6947         this.purgeListeners();
6948         this.el.remove();
6949     },
6950
6951     // private
6952     autoWidth : function(){
6953         if(this.el){
6954             this.el.setWidth("auto");
6955             if(Roo.isIE7 && Roo.isStrict){
6956                 var ib = this.el.child('button');
6957                 if(ib && ib.getWidth() > 20){
6958                     ib.clip();
6959                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
6960                 }
6961             }
6962             if(this.minWidth){
6963                 if(this.hidden){
6964                     this.el.beginMeasure();
6965                 }
6966                 if(this.el.getWidth() < this.minWidth){
6967                     this.el.setWidth(this.minWidth);
6968                 }
6969                 if(this.hidden){
6970                     this.el.endMeasure();
6971                 }
6972             }
6973         }
6974     },
6975
6976     /**
6977      * Assigns this button's click handler
6978      * @param {Function} handler The function to call when the button is clicked
6979      * @param {Object} scope (optional) Scope for the function passed in
6980      */
6981     setHandler : function(handler, scope){
6982         this.handler = handler;
6983         this.scope = scope;  
6984     },
6985     
6986     /**
6987      * Sets this button's text
6988      * @param {String} text The button text
6989      */
6990     setText : function(text){
6991         this.text = text;
6992         if(this.el){
6993             this.el.child("td.x-btn-center button.x-btn-text").update(text);
6994         }
6995         this.autoWidth();
6996     },
6997     
6998     /**
6999      * Gets the text for this button
7000      * @return {String} The button text
7001      */
7002     getText : function(){
7003         return this.text;  
7004     },
7005     
7006     /**
7007      * Show this button
7008      */
7009     show: function(){
7010         this.hidden = false;
7011         if(this.el){
7012             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "");
7013         }
7014     },
7015     
7016     /**
7017      * Hide this button
7018      */
7019     hide: function(){
7020         this.hidden = true;
7021         if(this.el){
7022             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "none");
7023         }
7024     },
7025     
7026     /**
7027      * Convenience function for boolean show/hide
7028      * @param {Boolean} visible True to show, false to hide
7029      */
7030     setVisible: function(visible){
7031         if(visible) {
7032             this.show();
7033         }else{
7034             this.hide();
7035         }
7036     },
7037     
7038     /**
7039      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
7040      * @param {Boolean} state (optional) Force a particular state
7041      */
7042     toggle : function(state){
7043         state = state === undefined ? !this.pressed : state;
7044         if(state != this.pressed){
7045             if(state){
7046                 this.el.addClass("x-btn-pressed");
7047                 this.pressed = true;
7048                 this.fireEvent("toggle", this, true);
7049             }else{
7050                 this.el.removeClass("x-btn-pressed");
7051                 this.pressed = false;
7052                 this.fireEvent("toggle", this, false);
7053             }
7054             if(this.toggleHandler){
7055                 this.toggleHandler.call(this.scope || this, this, state);
7056             }
7057         }
7058     },
7059     
7060     /**
7061      * Focus the button
7062      */
7063     focus : function(){
7064         this.el.child('button:first').focus();
7065     },
7066     
7067     /**
7068      * Disable this button
7069      */
7070     disable : function(){
7071         if(this.el){
7072             this.el.addClass("x-btn-disabled");
7073         }
7074         this.disabled = true;
7075     },
7076     
7077     /**
7078      * Enable this button
7079      */
7080     enable : function(){
7081         if(this.el){
7082             this.el.removeClass("x-btn-disabled");
7083         }
7084         this.disabled = false;
7085     },
7086
7087     /**
7088      * Convenience function for boolean enable/disable
7089      * @param {Boolean} enabled True to enable, false to disable
7090      */
7091     setDisabled : function(v){
7092         this[v !== true ? "enable" : "disable"]();
7093     },
7094
7095     // private
7096     onClick : function(e)
7097     {
7098         if(e){
7099             e.preventDefault();
7100         }
7101         if(e.button != 0){
7102             return;
7103         }
7104         if(!this.disabled){
7105             if(this.enableToggle){
7106                 this.toggle();
7107             }
7108             if(this.menu && !this.menu.isVisible()){
7109                 this.menu.show(this.el, this.menuAlign);
7110             }
7111             this.fireEvent("click", this, e);
7112             if(this.handler){
7113                 this.el.removeClass("x-btn-over");
7114                 this.handler.call(this.scope || this, this, e);
7115             }
7116         }
7117     },
7118     // private
7119     onMouseOver : function(e){
7120         if(!this.disabled){
7121             this.el.addClass("x-btn-over");
7122             this.fireEvent('mouseover', this, e);
7123         }
7124     },
7125     // private
7126     onMouseOut : function(e){
7127         if(!e.within(this.el,  true)){
7128             this.el.removeClass("x-btn-over");
7129             this.fireEvent('mouseout', this, e);
7130         }
7131     },
7132     // private
7133     onFocus : function(e){
7134         if(!this.disabled){
7135             this.el.addClass("x-btn-focus");
7136         }
7137     },
7138     // private
7139     onBlur : function(e){
7140         this.el.removeClass("x-btn-focus");
7141     },
7142     // private
7143     onMouseDown : function(e){
7144         if(!this.disabled && e.button == 0){
7145             this.el.addClass("x-btn-click");
7146             Roo.get(document).on('mouseup', this.onMouseUp, this);
7147         }
7148     },
7149     // private
7150     onMouseUp : function(e){
7151         if(e.button == 0){
7152             this.el.removeClass("x-btn-click");
7153             Roo.get(document).un('mouseup', this.onMouseUp, this);
7154         }
7155     },
7156     // private
7157     onMenuShow : function(e){
7158         this.el.addClass("x-btn-menu-active");
7159     },
7160     // private
7161     onMenuHide : function(e){
7162         this.el.removeClass("x-btn-menu-active");
7163     }   
7164 });
7165
7166 // Private utility class used by Button
7167 Roo.ButtonToggleMgr = function(){
7168    var groups = {};
7169    
7170    function toggleGroup(btn, state){
7171        if(state){
7172            var g = groups[btn.toggleGroup];
7173            for(var i = 0, l = g.length; i < l; i++){
7174                if(g[i] != btn){
7175                    g[i].toggle(false);
7176                }
7177            }
7178        }
7179    }
7180    
7181    return {
7182        register : function(btn){
7183            if(!btn.toggleGroup){
7184                return;
7185            }
7186            var g = groups[btn.toggleGroup];
7187            if(!g){
7188                g = groups[btn.toggleGroup] = [];
7189            }
7190            g.push(btn);
7191            btn.on("toggle", toggleGroup);
7192        },
7193        
7194        unregister : function(btn){
7195            if(!btn.toggleGroup){
7196                return;
7197            }
7198            var g = groups[btn.toggleGroup];
7199            if(g){
7200                g.remove(btn);
7201                btn.un("toggle", toggleGroup);
7202            }
7203        }
7204    };
7205 }();/*
7206  * Based on:
7207  * Ext JS Library 1.1.1
7208  * Copyright(c) 2006-2007, Ext JS, LLC.
7209  *
7210  * Originally Released Under LGPL - original licence link has changed is not relivant.
7211  *
7212  * Fork - LGPL
7213  * <script type="text/javascript">
7214  */
7215  
7216 /**
7217  * @class Roo.SplitButton
7218  * @extends Roo.Button
7219  * A split button that provides a built-in dropdown arrow that can fire an event separately from the default
7220  * click event of the button.  Typically this would be used to display a dropdown menu that provides additional
7221  * options to the primary button action, but any custom handler can provide the arrowclick implementation.
7222  * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event)
7223  * @cfg {String} arrowTooltip The title attribute of the arrow
7224  * @constructor
7225  * Create a new menu button
7226  * @param {String/HTMLElement/Element} renderTo The element to append the button to
7227  * @param {Object} config The config object
7228  */
7229 Roo.SplitButton = function(renderTo, config){
7230     Roo.SplitButton.superclass.constructor.call(this, renderTo, config);
7231     /**
7232      * @event arrowclick
7233      * Fires when this button's arrow is clicked
7234      * @param {SplitButton} this
7235      * @param {EventObject} e The click event
7236      */
7237     this.addEvents({"arrowclick":true});
7238 };
7239
7240 Roo.extend(Roo.SplitButton, Roo.Button, {
7241     render : function(renderTo){
7242         // this is one sweet looking template!
7243         var tpl = new Roo.Template(
7244             '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>',
7245             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>',
7246             '<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>',
7247             "</tbody></table></td><td>",
7248             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>',
7249             '<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>',
7250             "</tbody></table></td></tr></table>"
7251         );
7252         var btn = tpl.append(renderTo, [this.text, this.type], true);
7253         var btnEl = btn.child("button");
7254         if(this.cls){
7255             btn.addClass(this.cls);
7256         }
7257         if(this.icon){
7258             btnEl.setStyle('background-image', 'url(' +this.icon +')');
7259         }
7260         if(this.iconCls){
7261             btnEl.addClass(this.iconCls);
7262             if(!this.cls){
7263                 btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
7264             }
7265         }
7266         this.el = btn;
7267         if(this.handleMouseEvents){
7268             btn.on("mouseover", this.onMouseOver, this);
7269             btn.on("mouseout", this.onMouseOut, this);
7270             btn.on("mousedown", this.onMouseDown, this);
7271             btn.on("mouseup", this.onMouseUp, this);
7272         }
7273         btn.on(this.clickEvent, this.onClick, this);
7274         if(this.tooltip){
7275             if(typeof this.tooltip == 'object'){
7276                 Roo.QuickTips.tips(Roo.apply({
7277                       target: btnEl.id
7278                 }, this.tooltip));
7279             } else {
7280                 btnEl.dom[this.tooltipType] = this.tooltip;
7281             }
7282         }
7283         if(this.arrowTooltip){
7284             btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip;
7285         }
7286         if(this.hidden){
7287             this.hide();
7288         }
7289         if(this.disabled){
7290             this.disable();
7291         }
7292         if(this.pressed){
7293             this.el.addClass("x-btn-pressed");
7294         }
7295         if(Roo.isIE && !Roo.isIE7){
7296             this.autoWidth.defer(1, this);
7297         }else{
7298             this.autoWidth();
7299         }
7300         if(this.menu){
7301             this.menu.on("show", this.onMenuShow, this);
7302             this.menu.on("hide", this.onMenuHide, this);
7303         }
7304         this.fireEvent('render', this);
7305     },
7306
7307     // private
7308     autoWidth : function(){
7309         if(this.el){
7310             var tbl = this.el.child("table:first");
7311             var tbl2 = this.el.child("table:last");
7312             this.el.setWidth("auto");
7313             tbl.setWidth("auto");
7314             if(Roo.isIE7 && Roo.isStrict){
7315                 var ib = this.el.child('button:first');
7316                 if(ib && ib.getWidth() > 20){
7317                     ib.clip();
7318                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
7319                 }
7320             }
7321             if(this.minWidth){
7322                 if(this.hidden){
7323                     this.el.beginMeasure();
7324                 }
7325                 if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){
7326                     tbl.setWidth(this.minWidth-tbl2.getWidth());
7327                 }
7328                 if(this.hidden){
7329                     this.el.endMeasure();
7330                 }
7331             }
7332             this.el.setWidth(tbl.getWidth()+tbl2.getWidth());
7333         } 
7334     },
7335     /**
7336      * Sets this button's click handler
7337      * @param {Function} handler The function to call when the button is clicked
7338      * @param {Object} scope (optional) Scope for the function passed above
7339      */
7340     setHandler : function(handler, scope){
7341         this.handler = handler;
7342         this.scope = scope;  
7343     },
7344     
7345     /**
7346      * Sets this button's arrow click handler
7347      * @param {Function} handler The function to call when the arrow is clicked
7348      * @param {Object} scope (optional) Scope for the function passed above
7349      */
7350     setArrowHandler : function(handler, scope){
7351         this.arrowHandler = handler;
7352         this.scope = scope;  
7353     },
7354     
7355     /**
7356      * Focus the button
7357      */
7358     focus : function(){
7359         if(this.el){
7360             this.el.child("button:first").focus();
7361         }
7362     },
7363
7364     // private
7365     onClick : function(e){
7366         e.preventDefault();
7367         if(!this.disabled){
7368             if(e.getTarget(".x-btn-menu-arrow-wrap")){
7369                 if(this.menu && !this.menu.isVisible()){
7370                     this.menu.show(this.el, this.menuAlign);
7371                 }
7372                 this.fireEvent("arrowclick", this, e);
7373                 if(this.arrowHandler){
7374                     this.arrowHandler.call(this.scope || this, this, e);
7375                 }
7376             }else{
7377                 this.fireEvent("click", this, e);
7378                 if(this.handler){
7379                     this.handler.call(this.scope || this, this, e);
7380                 }
7381             }
7382         }
7383     },
7384     // private
7385     onMouseDown : function(e){
7386         if(!this.disabled){
7387             Roo.fly(e.getTarget("table")).addClass("x-btn-click");
7388         }
7389     },
7390     // private
7391     onMouseUp : function(e){
7392         Roo.fly(e.getTarget("table")).removeClass("x-btn-click");
7393     }   
7394 });
7395
7396
7397 // backwards compat
7398 Roo.MenuButton = Roo.SplitButton;/*
7399  * Based on:
7400  * Ext JS Library 1.1.1
7401  * Copyright(c) 2006-2007, Ext JS, LLC.
7402  *
7403  * Originally Released Under LGPL - original licence link has changed is not relivant.
7404  *
7405  * Fork - LGPL
7406  * <script type="text/javascript">
7407  */
7408
7409 /**
7410  * @class Roo.Toolbar
7411  * Basic Toolbar class.
7412  * @constructor
7413  * Creates a new Toolbar
7414  * @param {Object} container The config object
7415  */ 
7416 Roo.Toolbar = function(container, buttons, config)
7417 {
7418     /// old consturctor format still supported..
7419     if(container instanceof Array){ // omit the container for later rendering
7420         buttons = container;
7421         config = buttons;
7422         container = null;
7423     }
7424     if (typeof(container) == 'object' && container.xtype) {
7425         config = container;
7426         container = config.container;
7427         buttons = config.buttons || []; // not really - use items!!
7428     }
7429     var xitems = [];
7430     if (config && config.items) {
7431         xitems = config.items;
7432         delete config.items;
7433     }
7434     Roo.apply(this, config);
7435     this.buttons = buttons;
7436     
7437     if(container){
7438         this.render(container);
7439     }
7440     this.xitems = xitems;
7441     Roo.each(xitems, function(b) {
7442         this.add(b);
7443     }, this);
7444     
7445 };
7446
7447 Roo.Toolbar.prototype = {
7448     /**
7449      * @cfg {Array} items
7450      * array of button configs or elements to add (will be converted to a MixedCollection)
7451      */
7452     
7453     /**
7454      * @cfg {String/HTMLElement/Element} container
7455      * The id or element that will contain the toolbar
7456      */
7457     // private
7458     render : function(ct){
7459         this.el = Roo.get(ct);
7460         if(this.cls){
7461             this.el.addClass(this.cls);
7462         }
7463         // using a table allows for vertical alignment
7464         // 100% width is needed by Safari...
7465         this.el.update('<div class="x-toolbar x-small-editor"><table cellspacing="0"><tr></tr></table></div>');
7466         this.tr = this.el.child("tr", true);
7467         var autoId = 0;
7468         this.items = new Roo.util.MixedCollection(false, function(o){
7469             return o.id || ("item" + (++autoId));
7470         });
7471         if(this.buttons){
7472             this.add.apply(this, this.buttons);
7473             delete this.buttons;
7474         }
7475     },
7476
7477     /**
7478      * Adds element(s) to the toolbar -- this function takes a variable number of 
7479      * arguments of mixed type and adds them to the toolbar.
7480      * @param {Mixed} arg1 The following types of arguments are all valid:<br />
7481      * <ul>
7482      * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li>
7483      * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li>
7484      * <li>Field: Any form field (equivalent to {@link #addField})</li>
7485      * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li>
7486      * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}).
7487      * Note that there are a few special strings that are treated differently as explained nRoo.</li>
7488      * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li>
7489      * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li>
7490      * <li>'->': Creates a fill element (equivalent to {@link #addFill})</li>
7491      * </ul>
7492      * @param {Mixed} arg2
7493      * @param {Mixed} etc.
7494      */
7495     add : function(){
7496         var a = arguments, l = a.length;
7497         for(var i = 0; i < l; i++){
7498             this._add(a[i]);
7499         }
7500     },
7501     // private..
7502     _add : function(el) {
7503         
7504         if (el.xtype) {
7505             el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.form : Roo.Toolbar);
7506         }
7507         
7508         if (el.applyTo){ // some kind of form field
7509             return this.addField(el);
7510         } 
7511         if (el.render){ // some kind of Toolbar.Item
7512             return this.addItem(el);
7513         }
7514         if (typeof el == "string"){ // string
7515             if(el == "separator" || el == "-"){
7516                 return this.addSeparator();
7517             }
7518             if (el == " "){
7519                 return this.addSpacer();
7520             }
7521             if(el == "->"){
7522                 return this.addFill();
7523             }
7524             return this.addText(el);
7525             
7526         }
7527         if(el.tagName){ // element
7528             return this.addElement(el);
7529         }
7530         if(typeof el == "object"){ // must be button config?
7531             return this.addButton(el);
7532         }
7533         // and now what?!?!
7534         return false;
7535         
7536     },
7537     
7538     /**
7539      * Add an Xtype element
7540      * @param {Object} xtype Xtype Object
7541      * @return {Object} created Object
7542      */
7543     addxtype : function(e){
7544         return this.add(e);  
7545     },
7546     
7547     /**
7548      * Returns the Element for this toolbar.
7549      * @return {Roo.Element}
7550      */
7551     getEl : function(){
7552         return this.el;  
7553     },
7554     
7555     /**
7556      * Adds a separator
7557      * @return {Roo.Toolbar.Item} The separator item
7558      */
7559     addSeparator : function(){
7560         return this.addItem(new Roo.Toolbar.Separator());
7561     },
7562
7563     /**
7564      * Adds a spacer element
7565      * @return {Roo.Toolbar.Spacer} The spacer item
7566      */
7567     addSpacer : function(){
7568         return this.addItem(new Roo.Toolbar.Spacer());
7569     },
7570
7571     /**
7572      * Adds a fill element that forces subsequent additions to the right side of the toolbar
7573      * @return {Roo.Toolbar.Fill} The fill item
7574      */
7575     addFill : function(){
7576         return this.addItem(new Roo.Toolbar.Fill());
7577     },
7578
7579     /**
7580      * Adds any standard HTML element to the toolbar
7581      * @param {String/HTMLElement/Element} el The element or id of the element to add
7582      * @return {Roo.Toolbar.Item} The element's item
7583      */
7584     addElement : function(el){
7585         return this.addItem(new Roo.Toolbar.Item(el));
7586     },
7587     /**
7588      * Collection of items on the toolbar.. (only Toolbar Items, so use fields to retrieve fields)
7589      * @type Roo.util.MixedCollection  
7590      */
7591     items : false,
7592      
7593     /**
7594      * Adds any Toolbar.Item or subclass
7595      * @param {Roo.Toolbar.Item} item
7596      * @return {Roo.Toolbar.Item} The item
7597      */
7598     addItem : function(item){
7599         var td = this.nextBlock();
7600         item.render(td);
7601         this.items.add(item);
7602         return item;
7603     },
7604     
7605     /**
7606      * Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config.
7607      * @param {Object/Array} config A button config or array of configs
7608      * @return {Roo.Toolbar.Button/Array}
7609      */
7610     addButton : function(config){
7611         if(config instanceof Array){
7612             var buttons = [];
7613             for(var i = 0, len = config.length; i < len; i++) {
7614                 buttons.push(this.addButton(config[i]));
7615             }
7616             return buttons;
7617         }
7618         var b = config;
7619         if(!(config instanceof Roo.Toolbar.Button)){
7620             b = config.split ?
7621                 new Roo.Toolbar.SplitButton(config) :
7622                 new Roo.Toolbar.Button(config);
7623         }
7624         var td = this.nextBlock();
7625         b.render(td);
7626         this.items.add(b);
7627         return b;
7628     },
7629     
7630     /**
7631      * Adds text to the toolbar
7632      * @param {String} text The text to add
7633      * @return {Roo.Toolbar.Item} The element's item
7634      */
7635     addText : function(text){
7636         return this.addItem(new Roo.Toolbar.TextItem(text));
7637     },
7638     
7639     /**
7640      * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index.
7641      * @param {Number} index The index where the item is to be inserted
7642      * @param {Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array)} item The button, or button config object to be inserted.
7643      * @return {Roo.Toolbar.Button/Item}
7644      */
7645     insertButton : function(index, item){
7646         if(item instanceof Array){
7647             var buttons = [];
7648             for(var i = 0, len = item.length; i < len; i++) {
7649                buttons.push(this.insertButton(index + i, item[i]));
7650             }
7651             return buttons;
7652         }
7653         if (!(item instanceof Roo.Toolbar.Button)){
7654            item = new Roo.Toolbar.Button(item);
7655         }
7656         var td = document.createElement("td");
7657         this.tr.insertBefore(td, this.tr.childNodes[index]);
7658         item.render(td);
7659         this.items.insert(index, item);
7660         return item;
7661     },
7662     
7663     /**
7664      * Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config.
7665      * @param {Object} config
7666      * @return {Roo.Toolbar.Item} The element's item
7667      */
7668     addDom : function(config, returnEl){
7669         var td = this.nextBlock();
7670         Roo.DomHelper.overwrite(td, config);
7671         var ti = new Roo.Toolbar.Item(td.firstChild);
7672         ti.render(td);
7673         this.items.add(ti);
7674         return ti;
7675     },
7676
7677     /**
7678      * Collection of fields on the toolbar.. usefull for quering (value is false if there are no fields)
7679      * @type Roo.util.MixedCollection  
7680      */
7681     fields : false,
7682     
7683     /**
7684      * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).
7685      * Note: the field should not have been rendered yet. For a field that has already been
7686      * rendered, use {@link #addElement}.
7687      * @param {Roo.form.Field} field
7688      * @return {Roo.ToolbarItem}
7689      */
7690      
7691       
7692     addField : function(field) {
7693         if (!this.fields) {
7694             var autoId = 0;
7695             this.fields = new Roo.util.MixedCollection(false, function(o){
7696                 return o.id || ("item" + (++autoId));
7697             });
7698
7699         }
7700         
7701         var td = this.nextBlock();
7702         field.render(td);
7703         var ti = new Roo.Toolbar.Item(td.firstChild);
7704         ti.render(td);
7705         this.items.add(ti);
7706         this.fields.add(field);
7707         return ti;
7708     },
7709     /**
7710      * Hide the toolbar
7711      * @method hide
7712      */
7713      
7714       
7715     hide : function()
7716     {
7717         this.el.child('div').setVisibilityMode(Roo.Element.DISPLAY);
7718         this.el.child('div').hide();
7719     },
7720     /**
7721      * Show the toolbar
7722      * @method show
7723      */
7724     show : function()
7725     {
7726         this.el.child('div').show();
7727     },
7728       
7729     // private
7730     nextBlock : function(){
7731         var td = document.createElement("td");
7732         this.tr.appendChild(td);
7733         return td;
7734     },
7735
7736     // private
7737     destroy : function(){
7738         if(this.items){ // rendered?
7739             Roo.destroy.apply(Roo, this.items.items);
7740         }
7741         if(this.fields){ // rendered?
7742             Roo.destroy.apply(Roo, this.fields.items);
7743         }
7744         Roo.Element.uncache(this.el, this.tr);
7745     }
7746 };
7747
7748 /**
7749  * @class Roo.Toolbar.Item
7750  * The base class that other classes should extend in order to get some basic common toolbar item functionality.
7751  * @constructor
7752  * Creates a new Item
7753  * @param {HTMLElement} el 
7754  */
7755 Roo.Toolbar.Item = function(el){
7756     var cfg = {};
7757     if (typeof (el.xtype) != 'undefined') {
7758         cfg = el;
7759         el = cfg.el;
7760     }
7761     
7762     this.el = Roo.getDom(el);
7763     this.id = Roo.id(this.el);
7764     this.hidden = false;
7765     
7766     this.addEvents({
7767          /**
7768              * @event render
7769              * Fires when the button is rendered
7770              * @param {Button} this
7771              */
7772         'render': true
7773     });
7774     Roo.Toolbar.Item.superclass.constructor.call(this,cfg);
7775 };
7776 Roo.extend(Roo.Toolbar.Item, Roo.util.Observable, {
7777 //Roo.Toolbar.Item.prototype = {
7778     
7779     /**
7780      * Get this item's HTML Element
7781      * @return {HTMLElement}
7782      */
7783     getEl : function(){
7784        return this.el;  
7785     },
7786
7787     // private
7788     render : function(td){
7789         
7790          this.td = td;
7791         td.appendChild(this.el);
7792         
7793         this.fireEvent('render', this);
7794     },
7795     
7796     /**
7797      * Removes and destroys this item.
7798      */
7799     destroy : function(){
7800         this.td.parentNode.removeChild(this.td);
7801     },
7802     
7803     /**
7804      * Shows this item.
7805      */
7806     show: function(){
7807         this.hidden = false;
7808         this.td.style.display = "";
7809     },
7810     
7811     /**
7812      * Hides this item.
7813      */
7814     hide: function(){
7815         this.hidden = true;
7816         this.td.style.display = "none";
7817     },
7818     
7819     /**
7820      * Convenience function for boolean show/hide.
7821      * @param {Boolean} visible true to show/false to hide
7822      */
7823     setVisible: function(visible){
7824         if(visible) {
7825             this.show();
7826         }else{
7827             this.hide();
7828         }
7829     },
7830     
7831     /**
7832      * Try to focus this item.
7833      */
7834     focus : function(){
7835         Roo.fly(this.el).focus();
7836     },
7837     
7838     /**
7839      * Disables this item.
7840      */
7841     disable : function(){
7842         Roo.fly(this.td).addClass("x-item-disabled");
7843         this.disabled = true;
7844         this.el.disabled = true;
7845     },
7846     
7847     /**
7848      * Enables this item.
7849      */
7850     enable : function(){
7851         Roo.fly(this.td).removeClass("x-item-disabled");
7852         this.disabled = false;
7853         this.el.disabled = false;
7854     }
7855 });
7856
7857
7858 /**
7859  * @class Roo.Toolbar.Separator
7860  * @extends Roo.Toolbar.Item
7861  * A simple toolbar separator class
7862  * @constructor
7863  * Creates a new Separator
7864  */
7865 Roo.Toolbar.Separator = function(cfg){
7866     
7867     var s = document.createElement("span");
7868     s.className = "ytb-sep";
7869     if (cfg) {
7870         cfg.el = s;
7871     }
7872     
7873     Roo.Toolbar.Separator.superclass.constructor.call(this, cfg || s);
7874 };
7875 Roo.extend(Roo.Toolbar.Separator, Roo.Toolbar.Item, {
7876     enable:Roo.emptyFn,
7877     disable:Roo.emptyFn,
7878     focus:Roo.emptyFn
7879 });
7880
7881 /**
7882  * @class Roo.Toolbar.Spacer
7883  * @extends Roo.Toolbar.Item
7884  * A simple element that adds extra horizontal space to a toolbar.
7885  * @constructor
7886  * Creates a new Spacer
7887  */
7888 Roo.Toolbar.Spacer = function(cfg){
7889     var s = document.createElement("div");
7890     s.className = "ytb-spacer";
7891     if (cfg) {
7892         cfg.el = s;
7893     }
7894     Roo.Toolbar.Spacer.superclass.constructor.call(this, cfg || s);
7895 };
7896 Roo.extend(Roo.Toolbar.Spacer, Roo.Toolbar.Item, {
7897     enable:Roo.emptyFn,
7898     disable:Roo.emptyFn,
7899     focus:Roo.emptyFn
7900 });
7901
7902 /**
7903  * @class Roo.Toolbar.Fill
7904  * @extends Roo.Toolbar.Spacer
7905  * A simple element that adds a greedy (100% width) horizontal space to a toolbar.
7906  * @constructor
7907  * Creates a new Spacer
7908  */
7909 Roo.Toolbar.Fill = Roo.extend(Roo.Toolbar.Spacer, {
7910     // private
7911     render : function(td){
7912         td.style.width = '100%';
7913         Roo.Toolbar.Fill.superclass.render.call(this, td);
7914     }
7915 });
7916
7917 /**
7918  * @class Roo.Toolbar.TextItem
7919  * @extends Roo.Toolbar.Item
7920  * A simple class that renders text directly into a toolbar.
7921  * @constructor
7922  * Creates a new TextItem
7923  * @param {String} text
7924  */
7925 Roo.Toolbar.TextItem = function(cfg){
7926     var  text = cfg || "";
7927     if (typeof(cfg) == 'object') {
7928         text = cfg.text || "";
7929     }  else {
7930         cfg = null;
7931     }
7932     var s = document.createElement("span");
7933     s.className = "ytb-text";
7934     s.innerHTML = text;
7935     if (cfg) {
7936         cfg.el  = s;
7937     }
7938     
7939     Roo.Toolbar.TextItem.superclass.constructor.call(this, cfg ||  s);
7940 };
7941 Roo.extend(Roo.Toolbar.TextItem, Roo.Toolbar.Item, {
7942     
7943      
7944     enable:Roo.emptyFn,
7945     disable:Roo.emptyFn,
7946     focus:Roo.emptyFn
7947 });
7948
7949 /**
7950  * @class Roo.Toolbar.Button
7951  * @extends Roo.Button
7952  * A button that renders into a toolbar.
7953  * @constructor
7954  * Creates a new Button
7955  * @param {Object} config A standard {@link Roo.Button} config object
7956  */
7957 Roo.Toolbar.Button = function(config){
7958     Roo.Toolbar.Button.superclass.constructor.call(this, null, config);
7959 };
7960 Roo.extend(Roo.Toolbar.Button, Roo.Button, {
7961     render : function(td){
7962         this.td = td;
7963         Roo.Toolbar.Button.superclass.render.call(this, td);
7964     },
7965     
7966     /**
7967      * Removes and destroys this button
7968      */
7969     destroy : function(){
7970         Roo.Toolbar.Button.superclass.destroy.call(this);
7971         this.td.parentNode.removeChild(this.td);
7972     },
7973     
7974     /**
7975      * Shows this button
7976      */
7977     show: function(){
7978         this.hidden = false;
7979         this.td.style.display = "";
7980     },
7981     
7982     /**
7983      * Hides this button
7984      */
7985     hide: function(){
7986         this.hidden = true;
7987         this.td.style.display = "none";
7988     },
7989
7990     /**
7991      * Disables this item
7992      */
7993     disable : function(){
7994         Roo.fly(this.td).addClass("x-item-disabled");
7995         this.disabled = true;
7996     },
7997
7998     /**
7999      * Enables this item
8000      */
8001     enable : function(){
8002         Roo.fly(this.td).removeClass("x-item-disabled");
8003         this.disabled = false;
8004     }
8005 });
8006 // backwards compat
8007 Roo.ToolbarButton = Roo.Toolbar.Button;
8008
8009 /**
8010  * @class Roo.Toolbar.SplitButton
8011  * @extends Roo.SplitButton
8012  * A menu button that renders into a toolbar.
8013  * @constructor
8014  * Creates a new SplitButton
8015  * @param {Object} config A standard {@link Roo.SplitButton} config object
8016  */
8017 Roo.Toolbar.SplitButton = function(config){
8018     Roo.Toolbar.SplitButton.superclass.constructor.call(this, null, config);
8019 };
8020 Roo.extend(Roo.Toolbar.SplitButton, Roo.SplitButton, {
8021     render : function(td){
8022         this.td = td;
8023         Roo.Toolbar.SplitButton.superclass.render.call(this, td);
8024     },
8025     
8026     /**
8027      * Removes and destroys this button
8028      */
8029     destroy : function(){
8030         Roo.Toolbar.SplitButton.superclass.destroy.call(this);
8031         this.td.parentNode.removeChild(this.td);
8032     },
8033     
8034     /**
8035      * Shows this button
8036      */
8037     show: function(){
8038         this.hidden = false;
8039         this.td.style.display = "";
8040     },
8041     
8042     /**
8043      * Hides this button
8044      */
8045     hide: function(){
8046         this.hidden = true;
8047         this.td.style.display = "none";
8048     }
8049 });
8050
8051 // backwards compat
8052 Roo.Toolbar.MenuButton = Roo.Toolbar.SplitButton;/*
8053  * Based on:
8054  * Ext JS Library 1.1.1
8055  * Copyright(c) 2006-2007, Ext JS, LLC.
8056  *
8057  * Originally Released Under LGPL - original licence link has changed is not relivant.
8058  *
8059  * Fork - LGPL
8060  * <script type="text/javascript">
8061  */
8062  
8063 /**
8064  * @class Roo.PagingToolbar
8065  * @extends Roo.Toolbar
8066  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
8067  * @constructor
8068  * Create a new PagingToolbar
8069  * @param {Object} config The config object
8070  */
8071 Roo.PagingToolbar = function(el, ds, config)
8072 {
8073     // old args format still supported... - xtype is prefered..
8074     if (typeof(el) == 'object' && el.xtype) {
8075         // created from xtype...
8076         config = el;
8077         ds = el.dataSource;
8078         el = config.container;
8079     }
8080     var items = [];
8081     if (config.items) {
8082         items = config.items;
8083         config.items = [];
8084     }
8085     
8086     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
8087     this.ds = ds;
8088     this.cursor = 0;
8089     this.renderButtons(this.el);
8090     this.bind(ds);
8091     
8092     // supprot items array.
8093    
8094     Roo.each(items, function(e) {
8095         this.add(Roo.factory(e));
8096     },this);
8097     
8098 };
8099
8100 Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
8101     /**
8102      * @cfg {Roo.data.Store} dataSource
8103      * The underlying data store providing the paged data
8104      */
8105     /**
8106      * @cfg {String/HTMLElement/Element} container
8107      * container The id or element that will contain the toolbar
8108      */
8109     /**
8110      * @cfg {Boolean} displayInfo
8111      * True to display the displayMsg (defaults to false)
8112      */
8113     /**
8114      * @cfg {Number} pageSize
8115      * The number of records to display per page (defaults to 20)
8116      */
8117     pageSize: 20,
8118     /**
8119      * @cfg {String} displayMsg
8120      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
8121      */
8122     displayMsg : 'Displaying {0} - {1} of {2}',
8123     /**
8124      * @cfg {String} emptyMsg
8125      * The message to display when no records are found (defaults to "No data to display")
8126      */
8127     emptyMsg : 'No data to display',
8128     /**
8129      * Customizable piece of the default paging text (defaults to "Page")
8130      * @type String
8131      */
8132     beforePageText : "Page",
8133     /**
8134      * Customizable piece of the default paging text (defaults to "of %0")
8135      * @type String
8136      */
8137     afterPageText : "of {0}",
8138     /**
8139      * Customizable piece of the default paging text (defaults to "First Page")
8140      * @type String
8141      */
8142     firstText : "First Page",
8143     /**
8144      * Customizable piece of the default paging text (defaults to "Previous Page")
8145      * @type String
8146      */
8147     prevText : "Previous Page",
8148     /**
8149      * Customizable piece of the default paging text (defaults to "Next Page")
8150      * @type String
8151      */
8152     nextText : "Next Page",
8153     /**
8154      * Customizable piece of the default paging text (defaults to "Last Page")
8155      * @type String
8156      */
8157     lastText : "Last Page",
8158     /**
8159      * Customizable piece of the default paging text (defaults to "Refresh")
8160      * @type String
8161      */
8162     refreshText : "Refresh",
8163
8164     // private
8165     renderButtons : function(el){
8166         Roo.PagingToolbar.superclass.render.call(this, el);
8167         this.first = this.addButton({
8168             tooltip: this.firstText,
8169             cls: "x-btn-icon x-grid-page-first",
8170             disabled: true,
8171             handler: this.onClick.createDelegate(this, ["first"])
8172         });
8173         this.prev = this.addButton({
8174             tooltip: this.prevText,
8175             cls: "x-btn-icon x-grid-page-prev",
8176             disabled: true,
8177             handler: this.onClick.createDelegate(this, ["prev"])
8178         });
8179         //this.addSeparator();
8180         this.add(this.beforePageText);
8181         this.field = Roo.get(this.addDom({
8182            tag: "input",
8183            type: "text",
8184            size: "3",
8185            value: "1",
8186            cls: "x-grid-page-number"
8187         }).el);
8188         this.field.on("keydown", this.onPagingKeydown, this);
8189         this.field.on("focus", function(){this.dom.select();});
8190         this.afterTextEl = this.addText(String.format(this.afterPageText, 1));
8191         this.field.setHeight(18);
8192         //this.addSeparator();
8193         this.next = this.addButton({
8194             tooltip: this.nextText,
8195             cls: "x-btn-icon x-grid-page-next",
8196             disabled: true,
8197             handler: this.onClick.createDelegate(this, ["next"])
8198         });
8199         this.last = this.addButton({
8200             tooltip: this.lastText,
8201             cls: "x-btn-icon x-grid-page-last",
8202             disabled: true,
8203             handler: this.onClick.createDelegate(this, ["last"])
8204         });
8205         //this.addSeparator();
8206         this.loading = this.addButton({
8207             tooltip: this.refreshText,
8208             cls: "x-btn-icon x-grid-loading",
8209             handler: this.onClick.createDelegate(this, ["refresh"])
8210         });
8211
8212         if(this.displayInfo){
8213             this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'});
8214         }
8215     },
8216
8217     // private
8218     updateInfo : function(){
8219         if(this.displayEl){
8220             var count = this.ds.getCount();
8221             var msg = count == 0 ?
8222                 this.emptyMsg :
8223                 String.format(
8224                     this.displayMsg,
8225                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
8226                 );
8227             this.displayEl.update(msg);
8228         }
8229     },
8230
8231     // private
8232     onLoad : function(ds, r, o){
8233        this.cursor = o.params ? o.params.start : 0;
8234        var d = this.getPageData(), ap = d.activePage, ps = d.pages;
8235
8236        this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages);
8237        this.field.dom.value = ap;
8238        this.first.setDisabled(ap == 1);
8239        this.prev.setDisabled(ap == 1);
8240        this.next.setDisabled(ap == ps);
8241        this.last.setDisabled(ap == ps);
8242        this.loading.enable();
8243        this.updateInfo();
8244     },
8245
8246     // private
8247     getPageData : function(){
8248         var total = this.ds.getTotalCount();
8249         return {
8250             total : total,
8251             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
8252             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
8253         };
8254     },
8255
8256     // private
8257     onLoadError : function(){
8258         this.loading.enable();
8259     },
8260
8261     // private
8262     onPagingKeydown : function(e){
8263         var k = e.getKey();
8264         var d = this.getPageData();
8265         if(k == e.RETURN){
8266             var v = this.field.dom.value, pageNum;
8267             if(!v || isNaN(pageNum = parseInt(v, 10))){
8268                 this.field.dom.value = d.activePage;
8269                 return;
8270             }
8271             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
8272             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
8273             e.stopEvent();
8274         }
8275         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))
8276         {
8277           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
8278           this.field.dom.value = pageNum;
8279           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
8280           e.stopEvent();
8281         }
8282         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
8283         {
8284           var v = this.field.dom.value, pageNum; 
8285           var increment = (e.shiftKey) ? 10 : 1;
8286           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
8287             increment *= -1;
8288           }
8289           if(!v || isNaN(pageNum = parseInt(v, 10))) {
8290             this.field.dom.value = d.activePage;
8291             return;
8292           }
8293           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
8294           {
8295             this.field.dom.value = parseInt(v, 10) + increment;
8296             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
8297             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
8298           }
8299           e.stopEvent();
8300         }
8301     },
8302
8303     // private
8304     beforeLoad : function(){
8305         if(this.loading){
8306             this.loading.disable();
8307         }
8308     },
8309
8310     // private
8311     onClick : function(which){
8312         var ds = this.ds;
8313         switch(which){
8314             case "first":
8315                 ds.load({params:{start: 0, limit: this.pageSize}});
8316             break;
8317             case "prev":
8318                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
8319             break;
8320             case "next":
8321                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
8322             break;
8323             case "last":
8324                 var total = ds.getTotalCount();
8325                 var extra = total % this.pageSize;
8326                 var lastStart = extra ? (total - extra) : total-this.pageSize;
8327                 ds.load({params:{start: lastStart, limit: this.pageSize}});
8328             break;
8329             case "refresh":
8330                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
8331             break;
8332         }
8333     },
8334
8335     /**
8336      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
8337      * @param {Roo.data.Store} store The data store to unbind
8338      */
8339     unbind : function(ds){
8340         ds.un("beforeload", this.beforeLoad, this);
8341         ds.un("load", this.onLoad, this);
8342         ds.un("loadexception", this.onLoadError, this);
8343         ds.un("remove", this.updateInfo, this);
8344         ds.un("add", this.updateInfo, this);
8345         this.ds = undefined;
8346     },
8347
8348     /**
8349      * Binds the paging toolbar to the specified {@link Roo.data.Store}
8350      * @param {Roo.data.Store} store The data store to bind
8351      */
8352     bind : function(ds){
8353         ds.on("beforeload", this.beforeLoad, this);
8354         ds.on("load", this.onLoad, this);
8355         ds.on("loadexception", this.onLoadError, this);
8356         ds.on("remove", this.updateInfo, this);
8357         ds.on("add", this.updateInfo, this);
8358         this.ds = ds;
8359     }
8360 });/*
8361  * Based on:
8362  * Ext JS Library 1.1.1
8363  * Copyright(c) 2006-2007, Ext JS, LLC.
8364  *
8365  * Originally Released Under LGPL - original licence link has changed is not relivant.
8366  *
8367  * Fork - LGPL
8368  * <script type="text/javascript">
8369  */
8370
8371 /**
8372  * @class Roo.Resizable
8373  * @extends Roo.util.Observable
8374  * <p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element
8375  * and positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap
8376  * 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
8377  * the element will be wrapped for you automatically.</p>
8378  * <p>Here is the list of valid resize handles:</p>
8379  * <pre>
8380 Value   Description
8381 ------  -------------------
8382  'n'     north
8383  's'     south
8384  'e'     east
8385  'w'     west
8386  'nw'    northwest
8387  'sw'    southwest
8388  'se'    southeast
8389  'ne'    northeast
8390  'hd'    horizontal drag
8391  'all'   all
8392 </pre>
8393  * <p>Here's an example showing the creation of a typical Resizable:</p>
8394  * <pre><code>
8395 var resizer = new Roo.Resizable("element-id", {
8396     handles: 'all',
8397     minWidth: 200,
8398     minHeight: 100,
8399     maxWidth: 500,
8400     maxHeight: 400,
8401     pinned: true
8402 });
8403 resizer.on("resize", myHandler);
8404 </code></pre>
8405  * <p>To hide a particular handle, set its display to none in CSS, or through script:<br>
8406  * resizer.east.setDisplayed(false);</p>
8407  * @cfg {Boolean/String/Element} resizeChild True to resize the first child, or id/element to resize (defaults to false)
8408  * @cfg {Array/String} adjustments String "auto" or an array [width, height] with values to be <b>added</b> to the
8409  * resize operation's new size (defaults to [0, 0])
8410  * @cfg {Number} minWidth The minimum width for the element (defaults to 5)
8411  * @cfg {Number} minHeight The minimum height for the element (defaults to 5)
8412  * @cfg {Number} maxWidth The maximum width for the element (defaults to 10000)
8413  * @cfg {Number} maxHeight The maximum height for the element (defaults to 10000)
8414  * @cfg {Boolean} enabled False to disable resizing (defaults to true)
8415  * @cfg {Boolean} wrap True to wrap an element with a div if needed (required for textareas and images, defaults to false)
8416  * @cfg {Number} width The width of the element in pixels (defaults to null)
8417  * @cfg {Number} height The height of the element in pixels (defaults to null)
8418  * @cfg {Boolean} animate True to animate the resize (not compatible with dynamic sizing, defaults to false)
8419  * @cfg {Number} duration Animation duration if animate = true (defaults to .35)
8420  * @cfg {Boolean} dynamic True to resize the element while dragging instead of using a proxy (defaults to false)
8421  * @cfg {String} handles String consisting of the resize handles to display (defaults to undefined)
8422  * @cfg {Boolean} multiDirectional <b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated
8423  * in favor of the handles config option (defaults to false)
8424  * @cfg {Boolean} disableTrackOver True to disable mouse tracking. This is only applied at config time. (defaults to false)
8425  * @cfg {String} easing Animation easing if animate = true (defaults to 'easingOutStrong')
8426  * @cfg {Number} widthIncrement The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)
8427  * @cfg {Number} heightIncrement The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)
8428  * @cfg {Boolean} pinned True to ensure that the resize handles are always visible, false to display them only when the
8429  * user mouses over the resizable borders. This is only applied at config time. (defaults to false)
8430  * @cfg {Boolean} preserveRatio True to preserve the original ratio between height and width during resize (defaults to false)
8431  * @cfg {Boolean} transparent True for transparent handles. This is only applied at config time. (defaults to false)
8432  * @cfg {Number} minX The minimum allowed page X for the element (only used for west resizing, defaults to 0)
8433  * @cfg {Number} minY The minimum allowed page Y for the element (only used for north resizing, defaults to 0)
8434  * @cfg {Boolean} draggable Convenience to initialize drag drop (defaults to false)
8435  * @constructor
8436  * Create a new resizable component
8437  * @param {String/HTMLElement/Roo.Element} el The id or element to resize
8438  * @param {Object} config configuration options
8439   */
8440 Roo.Resizable = function(el, config)
8441 {
8442     this.el = Roo.get(el);
8443
8444     if(config && config.wrap){
8445         config.resizeChild = this.el;
8446         this.el = this.el.wrap(typeof config.wrap == "object" ? config.wrap : {cls:"xresizable-wrap"});
8447         this.el.id = this.el.dom.id = config.resizeChild.id + "-rzwrap";
8448         this.el.setStyle("overflow", "hidden");
8449         this.el.setPositioning(config.resizeChild.getPositioning());
8450         config.resizeChild.clearPositioning();
8451         if(!config.width || !config.height){
8452             var csize = config.resizeChild.getSize();
8453             this.el.setSize(csize.width, csize.height);
8454         }
8455         if(config.pinned && !config.adjustments){
8456             config.adjustments = "auto";
8457         }
8458     }
8459
8460     this.proxy = this.el.createProxy({tag: "div", cls: "x-resizable-proxy", id: this.el.id + "-rzproxy"});
8461     this.proxy.unselectable();
8462     this.proxy.enableDisplayMode('block');
8463
8464     Roo.apply(this, config);
8465
8466     if(this.pinned){
8467         this.disableTrackOver = true;
8468         this.el.addClass("x-resizable-pinned");
8469     }
8470     // if the element isn't positioned, make it relative
8471     var position = this.el.getStyle("position");
8472     if(position != "absolute" && position != "fixed"){
8473         this.el.setStyle("position", "relative");
8474     }
8475     if(!this.handles){ // no handles passed, must be legacy style
8476         this.handles = 's,e,se';
8477         if(this.multiDirectional){
8478             this.handles += ',n,w';
8479         }
8480     }
8481     if(this.handles == "all"){
8482         this.handles = "n s e w ne nw se sw";
8483     }
8484     var hs = this.handles.split(/\s*?[,;]\s*?| /);
8485     var ps = Roo.Resizable.positions;
8486     for(var i = 0, len = hs.length; i < len; i++){
8487         if(hs[i] && ps[hs[i]]){
8488             var pos = ps[hs[i]];
8489             this[pos] = new Roo.Resizable.Handle(this, pos, this.disableTrackOver, this.transparent);
8490         }
8491     }
8492     // legacy
8493     this.corner = this.southeast;
8494     
8495     // updateBox = the box can move..
8496     if(this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1 || this.handles.indexOf("hd") != -1) {
8497         this.updateBox = true;
8498     }
8499
8500     this.activeHandle = null;
8501
8502     if(this.resizeChild){
8503         if(typeof this.resizeChild == "boolean"){
8504             this.resizeChild = Roo.get(this.el.dom.firstChild, true);
8505         }else{
8506             this.resizeChild = Roo.get(this.resizeChild, true);
8507         }
8508     }
8509     
8510     if(this.adjustments == "auto"){
8511         var rc = this.resizeChild;
8512         var hw = this.west, he = this.east, hn = this.north, hs = this.south;
8513         if(rc && (hw || hn)){
8514             rc.position("relative");
8515             rc.setLeft(hw ? hw.el.getWidth() : 0);
8516             rc.setTop(hn ? hn.el.getHeight() : 0);
8517         }
8518         this.adjustments = [
8519             (he ? -he.el.getWidth() : 0) + (hw ? -hw.el.getWidth() : 0),
8520             (hn ? -hn.el.getHeight() : 0) + (hs ? -hs.el.getHeight() : 0) -1
8521         ];
8522     }
8523
8524     if(this.draggable){
8525         this.dd = this.dynamic ?
8526             this.el.initDD(null) : this.el.initDDProxy(null, {dragElId: this.proxy.id});
8527         this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
8528     }
8529
8530     // public events
8531     this.addEvents({
8532         /**
8533          * @event beforeresize
8534          * Fired before resize is allowed. Set enabled to false to cancel resize.
8535          * @param {Roo.Resizable} this
8536          * @param {Roo.EventObject} e The mousedown event
8537          */
8538         "beforeresize" : true,
8539         /**
8540          * @event resizing
8541          * Fired a resizing.
8542          * @param {Roo.Resizable} this
8543          * @param {Number} x The new x position
8544          * @param {Number} y The new y position
8545          * @param {Number} w The new w width
8546          * @param {Number} h The new h hight
8547          * @param {Roo.EventObject} e The mouseup event
8548          */
8549         "resizing" : true,
8550         /**
8551          * @event resize
8552          * Fired after a resize.
8553          * @param {Roo.Resizable} this
8554          * @param {Number} width The new width
8555          * @param {Number} height The new height
8556          * @param {Roo.EventObject} e The mouseup event
8557          */
8558         "resize" : true
8559     });
8560
8561     if(this.width !== null && this.height !== null){
8562         this.resizeTo(this.width, this.height);
8563     }else{
8564         this.updateChildSize();
8565     }
8566     if(Roo.isIE){
8567         this.el.dom.style.zoom = 1;
8568     }
8569     Roo.Resizable.superclass.constructor.call(this);
8570 };
8571
8572 Roo.extend(Roo.Resizable, Roo.util.Observable, {
8573         resizeChild : false,
8574         adjustments : [0, 0],
8575         minWidth : 5,
8576         minHeight : 5,
8577         maxWidth : 10000,
8578         maxHeight : 10000,
8579         enabled : true,
8580         animate : false,
8581         duration : .35,
8582         dynamic : false,
8583         handles : false,
8584         multiDirectional : false,
8585         disableTrackOver : false,
8586         easing : 'easeOutStrong',
8587         widthIncrement : 0,
8588         heightIncrement : 0,
8589         pinned : false,
8590         width : null,
8591         height : null,
8592         preserveRatio : false,
8593         transparent: false,
8594         minX: 0,
8595         minY: 0,
8596         draggable: false,
8597
8598         /**
8599          * @cfg {String/HTMLElement/Element} constrainTo Constrain the resize to a particular element
8600          */
8601         constrainTo: undefined,
8602         /**
8603          * @cfg {Roo.lib.Region} resizeRegion Constrain the resize to a particular region
8604          */
8605         resizeRegion: undefined,
8606
8607
8608     /**
8609      * Perform a manual resize
8610      * @param {Number} width
8611      * @param {Number} height
8612      */
8613     resizeTo : function(width, height){
8614         this.el.setSize(width, height);
8615         this.updateChildSize();
8616         this.fireEvent("resize", this, width, height, null);
8617     },
8618
8619     // private
8620     startSizing : function(e, handle){
8621         this.fireEvent("beforeresize", this, e);
8622         if(this.enabled){ // 2nd enabled check in case disabled before beforeresize handler
8623
8624             if(!this.overlay){
8625                 this.overlay = this.el.createProxy({tag: "div", cls: "x-resizable-overlay", html: "&#160;"});
8626                 this.overlay.unselectable();
8627                 this.overlay.enableDisplayMode("block");
8628                 this.overlay.on("mousemove", this.onMouseMove, this);
8629                 this.overlay.on("mouseup", this.onMouseUp, this);
8630             }
8631             this.overlay.setStyle("cursor", handle.el.getStyle("cursor"));
8632
8633             this.resizing = true;
8634             this.startBox = this.el.getBox();
8635             this.startPoint = e.getXY();
8636             this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0],
8637                             (this.startBox.y + this.startBox.height) - this.startPoint[1]];
8638
8639             this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
8640             this.overlay.show();
8641
8642             if(this.constrainTo) {
8643                 var ct = Roo.get(this.constrainTo);
8644                 this.resizeRegion = ct.getRegion().adjust(
8645                     ct.getFrameWidth('t'),
8646                     ct.getFrameWidth('l'),
8647                     -ct.getFrameWidth('b'),
8648                     -ct.getFrameWidth('r')
8649                 );
8650             }
8651
8652             this.proxy.setStyle('visibility', 'hidden'); // workaround display none
8653             this.proxy.show();
8654             this.proxy.setBox(this.startBox);
8655             if(!this.dynamic){
8656                 this.proxy.setStyle('visibility', 'visible');
8657             }
8658         }
8659     },
8660
8661     // private
8662     onMouseDown : function(handle, e){
8663         if(this.enabled){
8664             e.stopEvent();
8665             this.activeHandle = handle;
8666             this.startSizing(e, handle);
8667         }
8668     },
8669
8670     // private
8671     onMouseUp : function(e){
8672         var size = this.resizeElement();
8673         this.resizing = false;
8674         this.handleOut();
8675         this.overlay.hide();
8676         this.proxy.hide();
8677         this.fireEvent("resize", this, size.width, size.height, e);
8678     },
8679
8680     // private
8681     updateChildSize : function(){
8682         
8683         if(this.resizeChild){
8684             var el = this.el;
8685             var child = this.resizeChild;
8686             var adj = this.adjustments;
8687             if(el.dom.offsetWidth){
8688                 var b = el.getSize(true);
8689                 child.setSize(b.width+adj[0], b.height+adj[1]);
8690             }
8691             // Second call here for IE
8692             // The first call enables instant resizing and
8693             // the second call corrects scroll bars if they
8694             // exist
8695             if(Roo.isIE){
8696                 setTimeout(function(){
8697                     if(el.dom.offsetWidth){
8698                         var b = el.getSize(true);
8699                         child.setSize(b.width+adj[0], b.height+adj[1]);
8700                     }
8701                 }, 10);
8702             }
8703         }
8704     },
8705
8706     // private
8707     snap : function(value, inc, min){
8708         if(!inc || !value) {
8709             return value;
8710         }
8711         var newValue = value;
8712         var m = value % inc;
8713         if(m > 0){
8714             if(m > (inc/2)){
8715                 newValue = value + (inc-m);
8716             }else{
8717                 newValue = value - m;
8718             }
8719         }
8720         return Math.max(min, newValue);
8721     },
8722
8723     // private
8724     resizeElement : function(){
8725         var box = this.proxy.getBox();
8726         if(this.updateBox){
8727             this.el.setBox(box, false, this.animate, this.duration, null, this.easing);
8728         }else{
8729             this.el.setSize(box.width, box.height, this.animate, this.duration, null, this.easing);
8730         }
8731         this.updateChildSize();
8732         if(!this.dynamic){
8733             this.proxy.hide();
8734         }
8735         return box;
8736     },
8737
8738     // private
8739     constrain : function(v, diff, m, mx){
8740         if(v - diff < m){
8741             diff = v - m;
8742         }else if(v - diff > mx){
8743             diff = mx - v;
8744         }
8745         return diff;
8746     },
8747
8748     // private
8749     onMouseMove : function(e){
8750         
8751         if(this.enabled){
8752             try{// try catch so if something goes wrong the user doesn't get hung
8753
8754             if(this.resizeRegion && !this.resizeRegion.contains(e.getPoint())) {
8755                 return;
8756             }
8757
8758             //var curXY = this.startPoint;
8759             var curSize = this.curSize || this.startBox;
8760             var x = this.startBox.x, y = this.startBox.y;
8761             var ox = x, oy = y;
8762             var w = curSize.width, h = curSize.height;
8763             var ow = w, oh = h;
8764             var mw = this.minWidth, mh = this.minHeight;
8765             var mxw = this.maxWidth, mxh = this.maxHeight;
8766             var wi = this.widthIncrement;
8767             var hi = this.heightIncrement;
8768
8769             var eventXY = e.getXY();
8770             var diffX = -(this.startPoint[0] - Math.max(this.minX, eventXY[0]));
8771             var diffY = -(this.startPoint[1] - Math.max(this.minY, eventXY[1]));
8772
8773             var pos = this.activeHandle.position;
8774
8775             switch(pos){
8776                 case "east":
8777                     w += diffX;
8778                     w = Math.min(Math.max(mw, w), mxw);
8779                     break;
8780              
8781                 case "south":
8782                     h += diffY;
8783                     h = Math.min(Math.max(mh, h), mxh);
8784                     break;
8785                 case "southeast":
8786                     w += diffX;
8787                     h += diffY;
8788                     w = Math.min(Math.max(mw, w), mxw);
8789                     h = Math.min(Math.max(mh, h), mxh);
8790                     break;
8791                 case "north":
8792                     diffY = this.constrain(h, diffY, mh, mxh);
8793                     y += diffY;
8794                     h -= diffY;
8795                     break;
8796                 case "hdrag":
8797                     
8798                     if (wi) {
8799                         var adiffX = Math.abs(diffX);
8800                         var sub = (adiffX % wi); // how much 
8801                         if (sub > (wi/2)) { // far enough to snap
8802                             diffX = (diffX > 0) ? diffX-sub + wi : diffX+sub - wi;
8803                         } else {
8804                             // remove difference.. 
8805                             diffX = (diffX > 0) ? diffX-sub : diffX+sub;
8806                         }
8807                     }
8808                     x += diffX;
8809                     x = Math.max(this.minX, x);
8810                     break;
8811                 case "west":
8812                     diffX = this.constrain(w, diffX, mw, mxw);
8813                     x += diffX;
8814                     w -= diffX;
8815                     break;
8816                 case "northeast":
8817                     w += diffX;
8818                     w = Math.min(Math.max(mw, w), mxw);
8819                     diffY = this.constrain(h, diffY, mh, mxh);
8820                     y += diffY;
8821                     h -= diffY;
8822                     break;
8823                 case "northwest":
8824                     diffX = this.constrain(w, diffX, mw, mxw);
8825                     diffY = this.constrain(h, diffY, mh, mxh);
8826                     y += diffY;
8827                     h -= diffY;
8828                     x += diffX;
8829                     w -= diffX;
8830                     break;
8831                case "southwest":
8832                     diffX = this.constrain(w, diffX, mw, mxw);
8833                     h += diffY;
8834                     h = Math.min(Math.max(mh, h), mxh);
8835                     x += diffX;
8836                     w -= diffX;
8837                     break;
8838             }
8839
8840             var sw = this.snap(w, wi, mw);
8841             var sh = this.snap(h, hi, mh);
8842             if(sw != w || sh != h){
8843                 switch(pos){
8844                     case "northeast":
8845                         y -= sh - h;
8846                     break;
8847                     case "north":
8848                         y -= sh - h;
8849                         break;
8850                     case "southwest":
8851                         x -= sw - w;
8852                     break;
8853                     case "west":
8854                         x -= sw - w;
8855                         break;
8856                     case "northwest":
8857                         x -= sw - w;
8858                         y -= sh - h;
8859                     break;
8860                 }
8861                 w = sw;
8862                 h = sh;
8863             }
8864
8865             if(this.preserveRatio){
8866                 switch(pos){
8867                     case "southeast":
8868                     case "east":
8869                         h = oh * (w/ow);
8870                         h = Math.min(Math.max(mh, h), mxh);
8871                         w = ow * (h/oh);
8872                        break;
8873                     case "south":
8874                         w = ow * (h/oh);
8875                         w = Math.min(Math.max(mw, w), mxw);
8876                         h = oh * (w/ow);
8877                         break;
8878                     case "northeast":
8879                         w = ow * (h/oh);
8880                         w = Math.min(Math.max(mw, w), mxw);
8881                         h = oh * (w/ow);
8882                     break;
8883                     case "north":
8884                         var tw = w;
8885                         w = ow * (h/oh);
8886                         w = Math.min(Math.max(mw, w), mxw);
8887                         h = oh * (w/ow);
8888                         x += (tw - w) / 2;
8889                         break;
8890                     case "southwest":
8891                         h = oh * (w/ow);
8892                         h = Math.min(Math.max(mh, h), mxh);
8893                         var tw = w;
8894                         w = ow * (h/oh);
8895                         x += tw - w;
8896                         break;
8897                     case "west":
8898                         var th = h;
8899                         h = oh * (w/ow);
8900                         h = Math.min(Math.max(mh, h), mxh);
8901                         y += (th - h) / 2;
8902                         var tw = w;
8903                         w = ow * (h/oh);
8904                         x += tw - w;
8905                        break;
8906                     case "northwest":
8907                         var tw = w;
8908                         var th = h;
8909                         h = oh * (w/ow);
8910                         h = Math.min(Math.max(mh, h), mxh);
8911                         w = ow * (h/oh);
8912                         y += th - h;
8913                         x += tw - w;
8914                        break;
8915
8916                 }
8917             }
8918             if (pos == 'hdrag') {
8919                 w = ow;
8920             }
8921             this.proxy.setBounds(x, y, w, h);
8922             if(this.dynamic){
8923                 this.resizeElement();
8924             }
8925             }catch(e){}
8926         }
8927         this.fireEvent("resizing", this, x, y, w, h, e);
8928     },
8929
8930     // private
8931     handleOver : function(){
8932         if(this.enabled){
8933             this.el.addClass("x-resizable-over");
8934         }
8935     },
8936
8937     // private
8938     handleOut : function(){
8939         if(!this.resizing){
8940             this.el.removeClass("x-resizable-over");
8941         }
8942     },
8943
8944     /**
8945      * Returns the element this component is bound to.
8946      * @return {Roo.Element}
8947      */
8948     getEl : function(){
8949         return this.el;
8950     },
8951
8952     /**
8953      * Returns the resizeChild element (or null).
8954      * @return {Roo.Element}
8955      */
8956     getResizeChild : function(){
8957         return this.resizeChild;
8958     },
8959     groupHandler : function()
8960     {
8961         
8962     },
8963     /**
8964      * Destroys this resizable. If the element was wrapped and
8965      * removeEl is not true then the element remains.
8966      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
8967      */
8968     destroy : function(removeEl){
8969         this.proxy.remove();
8970         if(this.overlay){
8971             this.overlay.removeAllListeners();
8972             this.overlay.remove();
8973         }
8974         var ps = Roo.Resizable.positions;
8975         for(var k in ps){
8976             if(typeof ps[k] != "function" && this[ps[k]]){
8977                 var h = this[ps[k]];
8978                 h.el.removeAllListeners();
8979                 h.el.remove();
8980             }
8981         }
8982         if(removeEl){
8983             this.el.update("");
8984             this.el.remove();
8985         }
8986     }
8987 });
8988
8989 // private
8990 // hash to map config positions to true positions
8991 Roo.Resizable.positions = {
8992     n: "north", s: "south", e: "east", w: "west", se: "southeast", sw: "southwest", nw: "northwest", ne: "northeast", 
8993     hd: "hdrag"
8994 };
8995
8996 // private
8997 Roo.Resizable.Handle = function(rz, pos, disableTrackOver, transparent){
8998     if(!this.tpl){
8999         // only initialize the template if resizable is used
9000         var tpl = Roo.DomHelper.createTemplate(
9001             {tag: "div", cls: "x-resizable-handle x-resizable-handle-{0}"}
9002         );
9003         tpl.compile();
9004         Roo.Resizable.Handle.prototype.tpl = tpl;
9005     }
9006     this.position = pos;
9007     this.rz = rz;
9008     // show north drag fro topdra
9009     var handlepos = pos == 'hdrag' ? 'north' : pos;
9010     
9011     this.el = this.tpl.append(rz.el.dom, [handlepos], true);
9012     if (pos == 'hdrag') {
9013         this.el.setStyle('cursor', 'pointer');
9014     }
9015     this.el.unselectable();
9016     if(transparent){
9017         this.el.setOpacity(0);
9018     }
9019     this.el.on("mousedown", this.onMouseDown, this);
9020     if(!disableTrackOver){
9021         this.el.on("mouseover", this.onMouseOver, this);
9022         this.el.on("mouseout", this.onMouseOut, this);
9023     }
9024 };
9025
9026 // private
9027 Roo.Resizable.Handle.prototype = {
9028     afterResize : function(rz){
9029         Roo.log('after?');
9030         // do nothing
9031     },
9032     // private
9033     onMouseDown : function(e){
9034         this.rz.onMouseDown(this, e);
9035     },
9036     // private
9037     onMouseOver : function(e){
9038         this.rz.handleOver(this, e);
9039     },
9040     // private
9041     onMouseOut : function(e){
9042         this.rz.handleOut(this, e);
9043     }
9044 };/*
9045  * Based on:
9046  * Ext JS Library 1.1.1
9047  * Copyright(c) 2006-2007, Ext JS, LLC.
9048  *
9049  * Originally Released Under LGPL - original licence link has changed is not relivant.
9050  *
9051  * Fork - LGPL
9052  * <script type="text/javascript">
9053  */
9054
9055 /**
9056  * @class Roo.Editor
9057  * @extends Roo.Component
9058  * A base editor field that handles displaying/hiding on demand and has some built-in sizing and event handling logic.
9059  * @constructor
9060  * Create a new Editor
9061  * @param {Roo.form.Field} field The Field object (or descendant)
9062  * @param {Object} config The config object
9063  */
9064 Roo.Editor = function(field, config){
9065     Roo.Editor.superclass.constructor.call(this, config);
9066     this.field = field;
9067     this.addEvents({
9068         /**
9069              * @event beforestartedit
9070              * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
9071              * false from the handler of this event.
9072              * @param {Editor} this
9073              * @param {Roo.Element} boundEl The underlying element bound to this editor
9074              * @param {Mixed} value The field value being set
9075              */
9076         "beforestartedit" : true,
9077         /**
9078              * @event startedit
9079              * Fires when this editor is displayed
9080              * @param {Roo.Element} boundEl The underlying element bound to this editor
9081              * @param {Mixed} value The starting field value
9082              */
9083         "startedit" : true,
9084         /**
9085              * @event beforecomplete
9086              * Fires after a change has been made to the field, but before the change is reflected in the underlying
9087              * field.  Saving the change to the field can be canceled by returning false from the handler of this event.
9088              * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
9089              * event will not fire since no edit actually occurred.
9090              * @param {Editor} this
9091              * @param {Mixed} value The current field value
9092              * @param {Mixed} startValue The original field value
9093              */
9094         "beforecomplete" : true,
9095         /**
9096              * @event complete
9097              * Fires after editing is complete and any changed value has been written to the underlying field.
9098              * @param {Editor} this
9099              * @param {Mixed} value The current field value
9100              * @param {Mixed} startValue The original field value
9101              */
9102         "complete" : true,
9103         /**
9104          * @event specialkey
9105          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
9106          * {@link Roo.EventObject#getKey} to determine which key was pressed.
9107          * @param {Roo.form.Field} this
9108          * @param {Roo.EventObject} e The event object
9109          */
9110         "specialkey" : true
9111     });
9112 };
9113
9114 Roo.extend(Roo.Editor, Roo.Component, {
9115     /**
9116      * @cfg {Boolean/String} autosize
9117      * True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only,
9118      * or "height" to adopt the height only (defaults to false)
9119      */
9120     /**
9121      * @cfg {Boolean} revertInvalid
9122      * True to automatically revert the field value and cancel the edit when the user completes an edit and the field
9123      * validation fails (defaults to true)
9124      */
9125     /**
9126      * @cfg {Boolean} ignoreNoChange
9127      * True to skip the the edit completion process (no save, no events fired) if the user completes an edit and
9128      * the value has not changed (defaults to false).  Applies only to string values - edits for other data types
9129      * will never be ignored.
9130      */
9131     /**
9132      * @cfg {Boolean} hideEl
9133      * False to keep the bound element visible while the editor is displayed (defaults to true)
9134      */
9135     /**
9136      * @cfg {Mixed} value
9137      * The data value of the underlying field (defaults to "")
9138      */
9139     value : "",
9140     /**
9141      * @cfg {String} alignment
9142      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "c-c?").
9143      */
9144     alignment: "c-c?",
9145     /**
9146      * @cfg {Boolean/String} shadow "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop"
9147      * for bottom-right shadow (defaults to "frame")
9148      */
9149     shadow : "frame",
9150     /**
9151      * @cfg {Boolean} constrain True to constrain the editor to the viewport
9152      */
9153     constrain : false,
9154     /**
9155      * @cfg {Boolean} completeOnEnter True to complete the edit when the enter key is pressed (defaults to false)
9156      */
9157     completeOnEnter : false,
9158     /**
9159      * @cfg {Boolean} cancelOnEsc True to cancel the edit when the escape key is pressed (defaults to false)
9160      */
9161     cancelOnEsc : false,
9162     /**
9163      * @cfg {Boolean} updateEl True to update the innerHTML of the bound element when the update completes (defaults to false)
9164      */
9165     updateEl : false,
9166
9167     // private
9168     onRender : function(ct, position){
9169         this.el = new Roo.Layer({
9170             shadow: this.shadow,
9171             cls: "x-editor",
9172             parentEl : ct,
9173             shim : this.shim,
9174             shadowOffset:4,
9175             id: this.id,
9176             constrain: this.constrain
9177         });
9178         this.el.setStyle("overflow", Roo.isGecko ? "auto" : "hidden");
9179         if(this.field.msgTarget != 'title'){
9180             this.field.msgTarget = 'qtip';
9181         }
9182         this.field.render(this.el);
9183         if(Roo.isGecko){
9184             this.field.el.dom.setAttribute('autocomplete', 'off');
9185         }
9186         this.field.on("specialkey", this.onSpecialKey, this);
9187         if(this.swallowKeys){
9188             this.field.el.swallowEvent(['keydown','keypress']);
9189         }
9190         this.field.show();
9191         this.field.on("blur", this.onBlur, this);
9192         if(this.field.grow){
9193             this.field.on("autosize", this.el.sync,  this.el, {delay:1});
9194         }
9195     },
9196
9197     onSpecialKey : function(field, e)
9198     {
9199         //Roo.log('editor onSpecialKey');
9200         if(this.completeOnEnter && e.getKey() == e.ENTER){
9201             e.stopEvent();
9202             this.completeEdit();
9203             return;
9204         }
9205         // do not fire special key otherwise it might hide close the editor...
9206         if(e.getKey() == e.ENTER){    
9207             return;
9208         }
9209         if(this.cancelOnEsc && e.getKey() == e.ESC){
9210             this.cancelEdit();
9211             return;
9212         } 
9213         this.fireEvent('specialkey', field, e);
9214     
9215     },
9216
9217     /**
9218      * Starts the editing process and shows the editor.
9219      * @param {String/HTMLElement/Element} el The element to edit
9220      * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults
9221       * to the innerHTML of el.
9222      */
9223     startEdit : function(el, value){
9224         if(this.editing){
9225             this.completeEdit();
9226         }
9227         this.boundEl = Roo.get(el);
9228         var v = value !== undefined ? value : this.boundEl.dom.innerHTML;
9229         if(!this.rendered){
9230             this.render(this.parentEl || document.body);
9231         }
9232         if(this.fireEvent("beforestartedit", this, this.boundEl, v) === false){
9233             return;
9234         }
9235         this.startValue = v;
9236         this.field.setValue(v);
9237         if(this.autoSize){
9238             var sz = this.boundEl.getSize();
9239             switch(this.autoSize){
9240                 case "width":
9241                 this.setSize(sz.width,  "");
9242                 break;
9243                 case "height":
9244                 this.setSize("",  sz.height);
9245                 break;
9246                 default:
9247                 this.setSize(sz.width,  sz.height);
9248             }
9249         }
9250         this.el.alignTo(this.boundEl, this.alignment);
9251         this.editing = true;
9252         if(Roo.QuickTips){
9253             Roo.QuickTips.disable();
9254         }
9255         this.show();
9256     },
9257
9258     /**
9259      * Sets the height and width of this editor.
9260      * @param {Number} width The new width
9261      * @param {Number} height The new height
9262      */
9263     setSize : function(w, h){
9264         this.field.setSize(w, h);
9265         if(this.el){
9266             this.el.sync();
9267         }
9268     },
9269
9270     /**
9271      * Realigns the editor to the bound field based on the current alignment config value.
9272      */
9273     realign : function(){
9274         this.el.alignTo(this.boundEl, this.alignment);
9275     },
9276
9277     /**
9278      * Ends the editing process, persists the changed value to the underlying field, and hides the editor.
9279      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after edit (defaults to false)
9280      */
9281     completeEdit : function(remainVisible){
9282         if(!this.editing){
9283             return;
9284         }
9285         var v = this.getValue();
9286         if(this.revertInvalid !== false && !this.field.isValid()){
9287             v = this.startValue;
9288             this.cancelEdit(true);
9289         }
9290         if(String(v) === String(this.startValue) && this.ignoreNoChange){
9291             this.editing = false;
9292             this.hide();
9293             return;
9294         }
9295         if(this.fireEvent("beforecomplete", this, v, this.startValue) !== false){
9296             this.editing = false;
9297             if(this.updateEl && this.boundEl){
9298                 this.boundEl.update(v);
9299             }
9300             if(remainVisible !== true){
9301                 this.hide();
9302             }
9303             this.fireEvent("complete", this, v, this.startValue);
9304         }
9305     },
9306
9307     // private
9308     onShow : function(){
9309         this.el.show();
9310         if(this.hideEl !== false){
9311             this.boundEl.hide();
9312         }
9313         this.field.show();
9314         if(Roo.isIE && !this.fixIEFocus){ // IE has problems with focusing the first time
9315             this.fixIEFocus = true;
9316             this.deferredFocus.defer(50, this);
9317         }else{
9318             this.field.focus();
9319         }
9320         this.fireEvent("startedit", this.boundEl, this.startValue);
9321     },
9322
9323     deferredFocus : function(){
9324         if(this.editing){
9325             this.field.focus();
9326         }
9327     },
9328
9329     /**
9330      * Cancels the editing process and hides the editor without persisting any changes.  The field value will be
9331      * reverted to the original starting value.
9332      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after
9333      * cancel (defaults to false)
9334      */
9335     cancelEdit : function(remainVisible){
9336         if(this.editing){
9337             this.setValue(this.startValue);
9338             if(remainVisible !== true){
9339                 this.hide();
9340             }
9341         }
9342     },
9343
9344     // private
9345     onBlur : function(){
9346         if(this.allowBlur !== true && this.editing){
9347             this.completeEdit();
9348         }
9349     },
9350
9351     // private
9352     onHide : function(){
9353         if(this.editing){
9354             this.completeEdit();
9355             return;
9356         }
9357         this.field.blur();
9358         if(this.field.collapse){
9359             this.field.collapse();
9360         }
9361         this.el.hide();
9362         if(this.hideEl !== false){
9363             this.boundEl.show();
9364         }
9365         if(Roo.QuickTips){
9366             Roo.QuickTips.enable();
9367         }
9368     },
9369
9370     /**
9371      * Sets the data value of the editor
9372      * @param {Mixed} value Any valid value supported by the underlying field
9373      */
9374     setValue : function(v){
9375         this.field.setValue(v);
9376     },
9377
9378     /**
9379      * Gets the data value of the editor
9380      * @return {Mixed} The data value
9381      */
9382     getValue : function(){
9383         return this.field.getValue();
9384     }
9385 });/*
9386  * Based on:
9387  * Ext JS Library 1.1.1
9388  * Copyright(c) 2006-2007, Ext JS, LLC.
9389  *
9390  * Originally Released Under LGPL - original licence link has changed is not relivant.
9391  *
9392  * Fork - LGPL
9393  * <script type="text/javascript">
9394  */
9395  
9396 /**
9397  * @class Roo.BasicDialog
9398  * @extends Roo.util.Observable
9399  * Lightweight Dialog Class.  The code below shows the creation of a typical dialog using existing HTML markup:
9400  * <pre><code>
9401 var dlg = new Roo.BasicDialog("my-dlg", {
9402     height: 200,
9403     width: 300,
9404     minHeight: 100,
9405     minWidth: 150,
9406     modal: true,
9407     proxyDrag: true,
9408     shadow: true
9409 });
9410 dlg.addKeyListener(27, dlg.hide, dlg); // ESC can also close the dialog
9411 dlg.addButton('OK', dlg.hide, dlg);    // Could call a save function instead of hiding
9412 dlg.addButton('Cancel', dlg.hide, dlg);
9413 dlg.show();
9414 </code></pre>
9415   <b>A Dialog should always be a direct child of the body element.</b>
9416  * @cfg {Boolean/DomHelper} autoCreate True to auto create from scratch, or using a DomHelper Object (defaults to false)
9417  * @cfg {String} title Default text to display in the title bar (defaults to null)
9418  * @cfg {Number} width Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
9419  * @cfg {Number} height Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
9420  * @cfg {Number} x The default left page coordinate of the dialog (defaults to center screen)
9421  * @cfg {Number} y The default top page coordinate of the dialog (defaults to center screen)
9422  * @cfg {String/Element} animateTarget Id or element from which the dialog should animate while opening
9423  * (defaults to null with no animation)
9424  * @cfg {Boolean} resizable False to disable manual dialog resizing (defaults to true)
9425  * @cfg {String} resizeHandles Which resize handles to display - see the {@link Roo.Resizable} handles config
9426  * property for valid values (defaults to 'all')
9427  * @cfg {Number} minHeight The minimum allowable height for a resizable dialog (defaults to 80)
9428  * @cfg {Number} minWidth The minimum allowable width for a resizable dialog (defaults to 200)
9429  * @cfg {Boolean} modal True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)
9430  * @cfg {Boolean} autoScroll True to allow the dialog body contents to overflow and display scrollbars (defaults to false)
9431  * @cfg {Boolean} closable False to remove the built-in top-right corner close button (defaults to true)
9432  * @cfg {Boolean} collapsible False to remove the built-in top-right corner collapse button (defaults to true)
9433  * @cfg {Boolean} constraintoviewport True to keep the dialog constrained within the visible viewport boundaries (defaults to true)
9434  * @cfg {Boolean} syncHeightBeforeShow True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)
9435  * @cfg {Boolean} draggable False to disable dragging of the dialog within the viewport (defaults to true)
9436  * @cfg {Boolean} autoTabs If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)
9437  * @cfg {String} tabTag The tag name of tab elements, used when autoTabs = true (defaults to 'div')
9438  * @cfg {Boolean} proxyDrag True to drag a lightweight proxy element rather than the dialog itself, used when
9439  * draggable = true (defaults to false)
9440  * @cfg {Boolean} fixedcenter True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)
9441  * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
9442  * shadow (defaults to false)
9443  * @cfg {Number} shadowOffset The number of pixels to offset the shadow if displayed (defaults to 5)
9444  * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "right")
9445  * @cfg {Number} minButtonWidth Minimum width of all dialog buttons (defaults to 75)
9446  * @cfg {Array} buttons Array of buttons
9447  * @cfg {Boolean} shim True to create an iframe shim that prevents selects from showing through (defaults to false)
9448  * @constructor
9449  * Create a new BasicDialog.
9450  * @param {String/HTMLElement/Roo.Element} el The container element or DOM node, or its id
9451  * @param {Object} config Configuration options
9452  */
9453 Roo.BasicDialog = function(el, config){
9454     this.el = Roo.get(el);
9455     var dh = Roo.DomHelper;
9456     if(!this.el && config && config.autoCreate){
9457         if(typeof config.autoCreate == "object"){
9458             if(!config.autoCreate.id){
9459                 config.autoCreate.id = el;
9460             }
9461             this.el = dh.append(document.body,
9462                         config.autoCreate, true);
9463         }else{
9464             this.el = dh.append(document.body,
9465                         {tag: "div", id: el, style:'visibility:hidden;'}, true);
9466         }
9467     }
9468     el = this.el;
9469     el.setDisplayed(true);
9470     el.hide = this.hideAction;
9471     this.id = el.id;
9472     el.addClass("x-dlg");
9473
9474     Roo.apply(this, config);
9475
9476     this.proxy = el.createProxy("x-dlg-proxy");
9477     this.proxy.hide = this.hideAction;
9478     this.proxy.setOpacity(.5);
9479     this.proxy.hide();
9480
9481     if(config.width){
9482         el.setWidth(config.width);
9483     }
9484     if(config.height){
9485         el.setHeight(config.height);
9486     }
9487     this.size = el.getSize();
9488     if(typeof config.x != "undefined" && typeof config.y != "undefined"){
9489         this.xy = [config.x,config.y];
9490     }else{
9491         this.xy = el.getCenterXY(true);
9492     }
9493     /** The header element @type Roo.Element */
9494     this.header = el.child("> .x-dlg-hd");
9495     /** The body element @type Roo.Element */
9496     this.body = el.child("> .x-dlg-bd");
9497     /** The footer element @type Roo.Element */
9498     this.footer = el.child("> .x-dlg-ft");
9499
9500     if(!this.header){
9501         this.header = el.createChild({tag: "div", cls:"x-dlg-hd", html: "&#160;"}, this.body ? this.body.dom : null);
9502     }
9503     if(!this.body){
9504         this.body = el.createChild({tag: "div", cls:"x-dlg-bd"});
9505     }
9506
9507     this.header.unselectable();
9508     if(this.title){
9509         this.header.update(this.title);
9510     }
9511     // this element allows the dialog to be focused for keyboard event
9512     this.focusEl = el.createChild({tag: "a", href:"#", cls:"x-dlg-focus", tabIndex:"-1"});
9513     this.focusEl.swallowEvent("click", true);
9514
9515     this.header.wrap({cls:"x-dlg-hd-right"}).wrap({cls:"x-dlg-hd-left"}, true);
9516
9517     // wrap the body and footer for special rendering
9518     this.bwrap = this.body.wrap({tag: "div", cls:"x-dlg-dlg-body"});
9519     if(this.footer){
9520         this.bwrap.dom.appendChild(this.footer.dom);
9521     }
9522
9523     this.bg = this.el.createChild({
9524         tag: "div", cls:"x-dlg-bg",
9525         html: '<div class="x-dlg-bg-left"><div class="x-dlg-bg-right"><div class="x-dlg-bg-center">&#160;</div></div></div>'
9526     });
9527     this.centerBg = this.bg.child("div.x-dlg-bg-center");
9528
9529
9530     if(this.autoScroll !== false && !this.autoTabs){
9531         this.body.setStyle("overflow", "auto");
9532     }
9533
9534     this.toolbox = this.el.createChild({cls: "x-dlg-toolbox"});
9535
9536     if(this.closable !== false){
9537         this.el.addClass("x-dlg-closable");
9538         this.close = this.toolbox.createChild({cls:"x-dlg-close"});
9539         this.close.on("click", this.closeClick, this);
9540         this.close.addClassOnOver("x-dlg-close-over");
9541     }
9542     if(this.collapsible !== false){
9543         this.collapseBtn = this.toolbox.createChild({cls:"x-dlg-collapse"});
9544         this.collapseBtn.on("click", this.collapseClick, this);
9545         this.collapseBtn.addClassOnOver("x-dlg-collapse-over");
9546         this.header.on("dblclick", this.collapseClick, this);
9547     }
9548     if(this.resizable !== false){
9549         this.el.addClass("x-dlg-resizable");
9550         this.resizer = new Roo.Resizable(el, {
9551             minWidth: this.minWidth || 80,
9552             minHeight:this.minHeight || 80,
9553             handles: this.resizeHandles || "all",
9554             pinned: true
9555         });
9556         this.resizer.on("beforeresize", this.beforeResize, this);
9557         this.resizer.on("resize", this.onResize, this);
9558     }
9559     if(this.draggable !== false){
9560         el.addClass("x-dlg-draggable");
9561         if (!this.proxyDrag) {
9562             var dd = new Roo.dd.DD(el.dom.id, "WindowDrag");
9563         }
9564         else {
9565             var dd = new Roo.dd.DDProxy(el.dom.id, "WindowDrag", {dragElId: this.proxy.id});
9566         }
9567         dd.setHandleElId(this.header.id);
9568         dd.endDrag = this.endMove.createDelegate(this);
9569         dd.startDrag = this.startMove.createDelegate(this);
9570         dd.onDrag = this.onDrag.createDelegate(this);
9571         dd.scroll = false;
9572         this.dd = dd;
9573     }
9574     if(this.modal){
9575         this.mask = dh.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
9576         this.mask.enableDisplayMode("block");
9577         this.mask.hide();
9578         this.el.addClass("x-dlg-modal");
9579     }
9580     if(this.shadow){
9581         this.shadow = new Roo.Shadow({
9582             mode : typeof this.shadow == "string" ? this.shadow : "sides",
9583             offset : this.shadowOffset
9584         });
9585     }else{
9586         this.shadowOffset = 0;
9587     }
9588     if(Roo.useShims && this.shim !== false){
9589         this.shim = this.el.createShim();
9590         this.shim.hide = this.hideAction;
9591         this.shim.hide();
9592     }else{
9593         this.shim = false;
9594     }
9595     if(this.autoTabs){
9596         this.initTabs();
9597     }
9598     if (this.buttons) { 
9599         var bts= this.buttons;
9600         this.buttons = [];
9601         Roo.each(bts, function(b) {
9602             this.addButton(b);
9603         }, this);
9604     }
9605     
9606     
9607     this.addEvents({
9608         /**
9609          * @event keydown
9610          * Fires when a key is pressed
9611          * @param {Roo.BasicDialog} this
9612          * @param {Roo.EventObject} e
9613          */
9614         "keydown" : true,
9615         /**
9616          * @event move
9617          * Fires when this dialog is moved by the user.
9618          * @param {Roo.BasicDialog} this
9619          * @param {Number} x The new page X
9620          * @param {Number} y The new page Y
9621          */
9622         "move" : true,
9623         /**
9624          * @event resize
9625          * Fires when this dialog is resized by the user.
9626          * @param {Roo.BasicDialog} this
9627          * @param {Number} width The new width
9628          * @param {Number} height The new height
9629          */
9630         "resize" : true,
9631         /**
9632          * @event beforehide
9633          * Fires before this dialog is hidden.
9634          * @param {Roo.BasicDialog} this
9635          */
9636         "beforehide" : true,
9637         /**
9638          * @event hide
9639          * Fires when this dialog is hidden.
9640          * @param {Roo.BasicDialog} this
9641          */
9642         "hide" : true,
9643         /**
9644          * @event beforeshow
9645          * Fires before this dialog is shown.
9646          * @param {Roo.BasicDialog} this
9647          */
9648         "beforeshow" : true,
9649         /**
9650          * @event show
9651          * Fires when this dialog is shown.
9652          * @param {Roo.BasicDialog} this
9653          */
9654         "show" : true
9655     });
9656     el.on("keydown", this.onKeyDown, this);
9657     el.on("mousedown", this.toFront, this);
9658     Roo.EventManager.onWindowResize(this.adjustViewport, this, true);
9659     this.el.hide();
9660     Roo.DialogManager.register(this);
9661     Roo.BasicDialog.superclass.constructor.call(this);
9662 };
9663
9664 Roo.extend(Roo.BasicDialog, Roo.util.Observable, {
9665     shadowOffset: Roo.isIE ? 6 : 5,
9666     minHeight: 80,
9667     minWidth: 200,
9668     minButtonWidth: 75,
9669     defaultButton: null,
9670     buttonAlign: "right",
9671     tabTag: 'div',
9672     firstShow: true,
9673
9674     /**
9675      * Sets the dialog title text
9676      * @param {String} text The title text to display
9677      * @return {Roo.BasicDialog} this
9678      */
9679     setTitle : function(text){
9680         this.header.update(text);
9681         return this;
9682     },
9683
9684     // private
9685     closeClick : function(){
9686         this.hide();
9687     },
9688
9689     // private
9690     collapseClick : function(){
9691         this[this.collapsed ? "expand" : "collapse"]();
9692     },
9693
9694     /**
9695      * Collapses the dialog to its minimized state (only the title bar is visible).
9696      * Equivalent to the user clicking the collapse dialog button.
9697      */
9698     collapse : function(){
9699         if(!this.collapsed){
9700             this.collapsed = true;
9701             this.el.addClass("x-dlg-collapsed");
9702             this.restoreHeight = this.el.getHeight();
9703             this.resizeTo(this.el.getWidth(), this.header.getHeight());
9704         }
9705     },
9706
9707     /**
9708      * Expands a collapsed dialog back to its normal state.  Equivalent to the user
9709      * clicking the expand dialog button.
9710      */
9711     expand : function(){
9712         if(this.collapsed){
9713             this.collapsed = false;
9714             this.el.removeClass("x-dlg-collapsed");
9715             this.resizeTo(this.el.getWidth(), this.restoreHeight);
9716         }
9717     },
9718
9719     /**
9720      * Reinitializes the tabs component, clearing out old tabs and finding new ones.
9721      * @return {Roo.TabPanel} The tabs component
9722      */
9723     initTabs : function(){
9724         var tabs = this.getTabs();
9725         while(tabs.getTab(0)){
9726             tabs.removeTab(0);
9727         }
9728         this.el.select(this.tabTag+'.x-dlg-tab').each(function(el){
9729             var dom = el.dom;
9730             tabs.addTab(Roo.id(dom), dom.title);
9731             dom.title = "";
9732         });
9733         tabs.activate(0);
9734         return tabs;
9735     },
9736
9737     // private
9738     beforeResize : function(){
9739         this.resizer.minHeight = Math.max(this.minHeight, this.getHeaderFooterHeight(true)+40);
9740     },
9741
9742     // private
9743     onResize : function(){
9744         this.refreshSize();
9745         this.syncBodyHeight();
9746         this.adjustAssets();
9747         this.focus();
9748         this.fireEvent("resize", this, this.size.width, this.size.height);
9749     },
9750
9751     // private
9752     onKeyDown : function(e){
9753         if(this.isVisible()){
9754             this.fireEvent("keydown", this, e);
9755         }
9756     },
9757
9758     /**
9759      * Resizes the dialog.
9760      * @param {Number} width
9761      * @param {Number} height
9762      * @return {Roo.BasicDialog} this
9763      */
9764     resizeTo : function(width, height){
9765         this.el.setSize(width, height);
9766         this.size = {width: width, height: height};
9767         this.syncBodyHeight();
9768         if(this.fixedcenter){
9769             this.center();
9770         }
9771         if(this.isVisible()){
9772             this.constrainXY();
9773             this.adjustAssets();
9774         }
9775         this.fireEvent("resize", this, width, height);
9776         return this;
9777     },
9778
9779
9780     /**
9781      * Resizes the dialog to fit the specified content size.
9782      * @param {Number} width
9783      * @param {Number} height
9784      * @return {Roo.BasicDialog} this
9785      */
9786     setContentSize : function(w, h){
9787         h += this.getHeaderFooterHeight() + this.body.getMargins("tb");
9788         w += this.body.getMargins("lr") + this.bwrap.getMargins("lr") + this.centerBg.getPadding("lr");
9789         //if(!this.el.isBorderBox()){
9790             h +=  this.body.getPadding("tb") + this.bwrap.getBorderWidth("tb") + this.body.getBorderWidth("tb") + this.el.getBorderWidth("tb");
9791             w += this.body.getPadding("lr") + this.bwrap.getBorderWidth("lr") + this.body.getBorderWidth("lr") + this.bwrap.getPadding("lr") + this.el.getBorderWidth("lr");
9792         //}
9793         if(this.tabs){
9794             h += this.tabs.stripWrap.getHeight() + this.tabs.bodyEl.getMargins("tb") + this.tabs.bodyEl.getPadding("tb");
9795             w += this.tabs.bodyEl.getMargins("lr") + this.tabs.bodyEl.getPadding("lr");
9796         }
9797         this.resizeTo(w, h);
9798         return this;
9799     },
9800
9801     /**
9802      * Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be
9803      * executed in response to a particular key being pressed while the dialog is active.
9804      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the following options:
9805      *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
9806      * @param {Function} fn The function to call
9807      * @param {Object} scope (optional) The scope of the function
9808      * @return {Roo.BasicDialog} this
9809      */
9810     addKeyListener : function(key, fn, scope){
9811         var keyCode, shift, ctrl, alt;
9812         if(typeof key == "object" && !(key instanceof Array)){
9813             keyCode = key["key"];
9814             shift = key["shift"];
9815             ctrl = key["ctrl"];
9816             alt = key["alt"];
9817         }else{
9818             keyCode = key;
9819         }
9820         var handler = function(dlg, e){
9821             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
9822                 var k = e.getKey();
9823                 if(keyCode instanceof Array){
9824                     for(var i = 0, len = keyCode.length; i < len; i++){
9825                         if(keyCode[i] == k){
9826                           fn.call(scope || window, dlg, k, e);
9827                           return;
9828                         }
9829                     }
9830                 }else{
9831                     if(k == keyCode){
9832                         fn.call(scope || window, dlg, k, e);
9833                     }
9834                 }
9835             }
9836         };
9837         this.on("keydown", handler);
9838         return this;
9839     },
9840
9841     /**
9842      * Returns the TabPanel component (creates it if it doesn't exist).
9843      * Note: If you wish to simply check for the existence of tabs without creating them,
9844      * check for a null 'tabs' property.
9845      * @return {Roo.TabPanel} The tabs component
9846      */
9847     getTabs : function(){
9848         if(!this.tabs){
9849             this.el.addClass("x-dlg-auto-tabs");
9850             this.body.addClass(this.tabPosition == "bottom" ? "x-tabs-bottom" : "x-tabs-top");
9851             this.tabs = new Roo.TabPanel(this.body.dom, this.tabPosition == "bottom");
9852         }
9853         return this.tabs;
9854     },
9855
9856     /**
9857      * Adds a button to the footer section of the dialog.
9858      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
9859      * object or a valid Roo.DomHelper element config
9860      * @param {Function} handler The function called when the button is clicked
9861      * @param {Object} scope (optional) The scope of the handler function (accepts position as a property)
9862      * @return {Roo.Button} The new button
9863      */
9864     addButton : function(config, handler, scope){
9865         var dh = Roo.DomHelper;
9866         if(!this.footer){
9867             this.footer = dh.append(this.bwrap, {tag: "div", cls:"x-dlg-ft"}, true);
9868         }
9869         if(!this.btnContainer){
9870             var tb = this.footer.createChild({
9871
9872                 cls:"x-dlg-btns x-dlg-btns-"+this.buttonAlign,
9873                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
9874             }, null, true);
9875             this.btnContainer = tb.firstChild.firstChild.firstChild;
9876         }
9877         var bconfig = {
9878             handler: handler,
9879             scope: scope,
9880             minWidth: this.minButtonWidth,
9881             hideParent:true
9882         };
9883         if(typeof config == "string"){
9884             bconfig.text = config;
9885         }else{
9886             if(config.tag){
9887                 bconfig.dhconfig = config;
9888             }else{
9889                 Roo.apply(bconfig, config);
9890             }
9891         }
9892         var fc = false;
9893         if ((typeof(bconfig.position) != 'undefined') && bconfig.position < this.btnContainer.childNodes.length-1) {
9894             bconfig.position = Math.max(0, bconfig.position);
9895             fc = this.btnContainer.childNodes[bconfig.position];
9896         }
9897          
9898         var btn = new Roo.Button(
9899             fc ? 
9900                 this.btnContainer.insertBefore(document.createElement("td"),fc)
9901                 : this.btnContainer.appendChild(document.createElement("td")),
9902             //Roo.get(this.btnContainer).createChild( { tag: 'td'},  fc ),
9903             bconfig
9904         );
9905         this.syncBodyHeight();
9906         if(!this.buttons){
9907             /**
9908              * Array of all the buttons that have been added to this dialog via addButton
9909              * @type Array
9910              */
9911             this.buttons = [];
9912         }
9913         this.buttons.push(btn);
9914         return btn;
9915     },
9916
9917     /**
9918      * Sets the default button to be focused when the dialog is displayed.
9919      * @param {Roo.BasicDialog.Button} btn The button object returned by {@link #addButton}
9920      * @return {Roo.BasicDialog} this
9921      */
9922     setDefaultButton : function(btn){
9923         this.defaultButton = btn;
9924         return this;
9925     },
9926
9927     // private
9928     getHeaderFooterHeight : function(safe){
9929         var height = 0;
9930         if(this.header){
9931            height += this.header.getHeight();
9932         }
9933         if(this.footer){
9934            var fm = this.footer.getMargins();
9935             height += (this.footer.getHeight()+fm.top+fm.bottom);
9936         }
9937         height += this.bwrap.getPadding("tb")+this.bwrap.getBorderWidth("tb");
9938         height += this.centerBg.getPadding("tb");
9939         return height;
9940     },
9941
9942     // private
9943     syncBodyHeight : function()
9944     {
9945         var bd = this.body, // the text
9946             cb = this.centerBg, // wrapper around bottom.. but does not seem to be used..
9947             bw = this.bwrap;
9948         var height = this.size.height - this.getHeaderFooterHeight(false);
9949         bd.setHeight(height-bd.getMargins("tb"));
9950         var hh = this.header.getHeight();
9951         var h = this.size.height-hh;
9952         cb.setHeight(h);
9953         
9954         bw.setLeftTop(cb.getPadding("l"), hh+cb.getPadding("t"));
9955         bw.setHeight(h-cb.getPadding("tb"));
9956         
9957         bw.setWidth(this.el.getWidth(true)-cb.getPadding("lr"));
9958         bd.setWidth(bw.getWidth(true));
9959         if(this.tabs){
9960             this.tabs.syncHeight();
9961             if(Roo.isIE){
9962                 this.tabs.el.repaint();
9963             }
9964         }
9965     },
9966
9967     /**
9968      * Restores the previous state of the dialog if Roo.state is configured.
9969      * @return {Roo.BasicDialog} this
9970      */
9971     restoreState : function(){
9972         var box = Roo.state.Manager.get(this.stateId || (this.el.id + "-state"));
9973         if(box && box.width){
9974             this.xy = [box.x, box.y];
9975             this.resizeTo(box.width, box.height);
9976         }
9977         return this;
9978     },
9979
9980     // private
9981     beforeShow : function(){
9982         this.expand();
9983         if(this.fixedcenter){
9984             this.xy = this.el.getCenterXY(true);
9985         }
9986         if(this.modal){
9987             Roo.get(document.body).addClass("x-body-masked");
9988             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
9989             this.mask.show();
9990         }
9991         this.constrainXY();
9992     },
9993
9994     // private
9995     animShow : function(){
9996         var b = Roo.get(this.animateTarget).getBox();
9997         this.proxy.setSize(b.width, b.height);
9998         this.proxy.setLocation(b.x, b.y);
9999         this.proxy.show();
10000         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height,
10001                     true, .35, this.showEl.createDelegate(this));
10002     },
10003
10004     /**
10005      * Shows the dialog.
10006      * @param {String/HTMLElement/Roo.Element} animateTarget (optional) Reset the animation target
10007      * @return {Roo.BasicDialog} this
10008      */
10009     show : function(animateTarget){
10010         if (this.fireEvent("beforeshow", this) === false){
10011             return;
10012         }
10013         if(this.syncHeightBeforeShow){
10014             this.syncBodyHeight();
10015         }else if(this.firstShow){
10016             this.firstShow = false;
10017             this.syncBodyHeight(); // sync the height on the first show instead of in the constructor
10018         }
10019         this.animateTarget = animateTarget || this.animateTarget;
10020         if(!this.el.isVisible()){
10021             this.beforeShow();
10022             if(this.animateTarget && Roo.get(this.animateTarget)){
10023                 this.animShow();
10024             }else{
10025                 this.showEl();
10026             }
10027         }
10028         return this;
10029     },
10030
10031     // private
10032     showEl : function(){
10033         this.proxy.hide();
10034         this.el.setXY(this.xy);
10035         this.el.show();
10036         this.adjustAssets(true);
10037         this.toFront();
10038         this.focus();
10039         // IE peekaboo bug - fix found by Dave Fenwick
10040         if(Roo.isIE){
10041             this.el.repaint();
10042         }
10043         this.fireEvent("show", this);
10044     },
10045
10046     /**
10047      * Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the
10048      * dialog itself will receive focus.
10049      */
10050     focus : function(){
10051         if(this.defaultButton){
10052             this.defaultButton.focus();
10053         }else{
10054             this.focusEl.focus();
10055         }
10056     },
10057
10058     // private
10059     constrainXY : function(){
10060         if(this.constraintoviewport !== false){
10061             if(!this.viewSize){
10062                 if(this.container){
10063                     var s = this.container.getSize();
10064                     this.viewSize = [s.width, s.height];
10065                 }else{
10066                     this.viewSize = [Roo.lib.Dom.getViewWidth(),Roo.lib.Dom.getViewHeight()];
10067                 }
10068             }
10069             var s = Roo.get(this.container||document).getScroll();
10070
10071             var x = this.xy[0], y = this.xy[1];
10072             var w = this.size.width, h = this.size.height;
10073             var vw = this.viewSize[0], vh = this.viewSize[1];
10074             // only move it if it needs it
10075             var moved = false;
10076             // first validate right/bottom
10077             if(x + w > vw+s.left){
10078                 x = vw - w;
10079                 moved = true;
10080             }
10081             if(y + h > vh+s.top){
10082                 y = vh - h;
10083                 moved = true;
10084             }
10085             // then make sure top/left isn't negative
10086             if(x < s.left){
10087                 x = s.left;
10088                 moved = true;
10089             }
10090             if(y < s.top){
10091                 y = s.top;
10092                 moved = true;
10093             }
10094             if(moved){
10095                 // cache xy
10096                 this.xy = [x, y];
10097                 if(this.isVisible()){
10098                     this.el.setLocation(x, y);
10099                     this.adjustAssets();
10100                 }
10101             }
10102         }
10103     },
10104
10105     // private
10106     onDrag : function(){
10107         if(!this.proxyDrag){
10108             this.xy = this.el.getXY();
10109             this.adjustAssets();
10110         }
10111     },
10112
10113     // private
10114     adjustAssets : function(doShow){
10115         var x = this.xy[0], y = this.xy[1];
10116         var w = this.size.width, h = this.size.height;
10117         if(doShow === true){
10118             if(this.shadow){
10119                 this.shadow.show(this.el);
10120             }
10121             if(this.shim){
10122                 this.shim.show();
10123             }
10124         }
10125         if(this.shadow && this.shadow.isVisible()){
10126             this.shadow.show(this.el);
10127         }
10128         if(this.shim && this.shim.isVisible()){
10129             this.shim.setBounds(x, y, w, h);
10130         }
10131     },
10132
10133     // private
10134     adjustViewport : function(w, h){
10135         if(!w || !h){
10136             w = Roo.lib.Dom.getViewWidth();
10137             h = Roo.lib.Dom.getViewHeight();
10138         }
10139         // cache the size
10140         this.viewSize = [w, h];
10141         if(this.modal && this.mask.isVisible()){
10142             this.mask.setSize(w, h); // first make sure the mask isn't causing overflow
10143             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
10144         }
10145         if(this.isVisible()){
10146             this.constrainXY();
10147         }
10148     },
10149
10150     /**
10151      * Destroys this dialog and all its supporting elements (including any tabs, shim,
10152      * shadow, proxy, mask, etc.)  Also removes all event listeners.
10153      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
10154      */
10155     destroy : function(removeEl){
10156         if(this.isVisible()){
10157             this.animateTarget = null;
10158             this.hide();
10159         }
10160         Roo.EventManager.removeResizeListener(this.adjustViewport, this);
10161         if(this.tabs){
10162             this.tabs.destroy(removeEl);
10163         }
10164         Roo.destroy(
10165              this.shim,
10166              this.proxy,
10167              this.resizer,
10168              this.close,
10169              this.mask
10170         );
10171         if(this.dd){
10172             this.dd.unreg();
10173         }
10174         if(this.buttons){
10175            for(var i = 0, len = this.buttons.length; i < len; i++){
10176                this.buttons[i].destroy();
10177            }
10178         }
10179         this.el.removeAllListeners();
10180         if(removeEl === true){
10181             this.el.update("");
10182             this.el.remove();
10183         }
10184         Roo.DialogManager.unregister(this);
10185     },
10186
10187     // private
10188     startMove : function(){
10189         if(this.proxyDrag){
10190             this.proxy.show();
10191         }
10192         if(this.constraintoviewport !== false){
10193             this.dd.constrainTo(document.body, {right: this.shadowOffset, bottom: this.shadowOffset});
10194         }
10195     },
10196
10197     // private
10198     endMove : function(){
10199         if(!this.proxyDrag){
10200             Roo.dd.DD.prototype.endDrag.apply(this.dd, arguments);
10201         }else{
10202             Roo.dd.DDProxy.prototype.endDrag.apply(this.dd, arguments);
10203             this.proxy.hide();
10204         }
10205         this.refreshSize();
10206         this.adjustAssets();
10207         this.focus();
10208         this.fireEvent("move", this, this.xy[0], this.xy[1]);
10209     },
10210
10211     /**
10212      * Brings this dialog to the front of any other visible dialogs
10213      * @return {Roo.BasicDialog} this
10214      */
10215     toFront : function(){
10216         Roo.DialogManager.bringToFront(this);
10217         return this;
10218     },
10219
10220     /**
10221      * Sends this dialog to the back (under) of any other visible dialogs
10222      * @return {Roo.BasicDialog} this
10223      */
10224     toBack : function(){
10225         Roo.DialogManager.sendToBack(this);
10226         return this;
10227     },
10228
10229     /**
10230      * Centers this dialog in the viewport
10231      * @return {Roo.BasicDialog} this
10232      */
10233     center : function(){
10234         var xy = this.el.getCenterXY(true);
10235         this.moveTo(xy[0], xy[1]);
10236         return this;
10237     },
10238
10239     /**
10240      * Moves the dialog's top-left corner to the specified point
10241      * @param {Number} x
10242      * @param {Number} y
10243      * @return {Roo.BasicDialog} this
10244      */
10245     moveTo : function(x, y){
10246         this.xy = [x,y];
10247         if(this.isVisible()){
10248             this.el.setXY(this.xy);
10249             this.adjustAssets();
10250         }
10251         return this;
10252     },
10253
10254     /**
10255      * Aligns the dialog to the specified element
10256      * @param {String/HTMLElement/Roo.Element} element The element to align to.
10257      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details).
10258      * @param {Array} offsets (optional) Offset the positioning by [x, y]
10259      * @return {Roo.BasicDialog} this
10260      */
10261     alignTo : function(element, position, offsets){
10262         this.xy = this.el.getAlignToXY(element, position, offsets);
10263         if(this.isVisible()){
10264             this.el.setXY(this.xy);
10265             this.adjustAssets();
10266         }
10267         return this;
10268     },
10269
10270     /**
10271      * Anchors an element to another element and realigns it when the window is resized.
10272      * @param {String/HTMLElement/Roo.Element} element The element to align to.
10273      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details)
10274      * @param {Array} offsets (optional) Offset the positioning by [x, y]
10275      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
10276      * is a number, it is used as the buffer delay (defaults to 50ms).
10277      * @return {Roo.BasicDialog} this
10278      */
10279     anchorTo : function(el, alignment, offsets, monitorScroll){
10280         var action = function(){
10281             this.alignTo(el, alignment, offsets);
10282         };
10283         Roo.EventManager.onWindowResize(action, this);
10284         var tm = typeof monitorScroll;
10285         if(tm != 'undefined'){
10286             Roo.EventManager.on(window, 'scroll', action, this,
10287                 {buffer: tm == 'number' ? monitorScroll : 50});
10288         }
10289         action.call(this);
10290         return this;
10291     },
10292
10293     /**
10294      * Returns true if the dialog is visible
10295      * @return {Boolean}
10296      */
10297     isVisible : function(){
10298         return this.el.isVisible();
10299     },
10300
10301     // private
10302     animHide : function(callback){
10303         var b = Roo.get(this.animateTarget).getBox();
10304         this.proxy.show();
10305         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height);
10306         this.el.hide();
10307         this.proxy.setBounds(b.x, b.y, b.width, b.height, true, .35,
10308                     this.hideEl.createDelegate(this, [callback]));
10309     },
10310
10311     /**
10312      * Hides the dialog.
10313      * @param {Function} callback (optional) Function to call when the dialog is hidden
10314      * @return {Roo.BasicDialog} this
10315      */
10316     hide : function(callback){
10317         if (this.fireEvent("beforehide", this) === false){
10318             return;
10319         }
10320         if(this.shadow){
10321             this.shadow.hide();
10322         }
10323         if(this.shim) {
10324           this.shim.hide();
10325         }
10326         // sometimes animateTarget seems to get set.. causing problems...
10327         // this just double checks..
10328         if(this.animateTarget && Roo.get(this.animateTarget)) {
10329            this.animHide(callback);
10330         }else{
10331             this.el.hide();
10332             this.hideEl(callback);
10333         }
10334         return this;
10335     },
10336
10337     // private
10338     hideEl : function(callback){
10339         this.proxy.hide();
10340         if(this.modal){
10341             this.mask.hide();
10342             Roo.get(document.body).removeClass("x-body-masked");
10343         }
10344         this.fireEvent("hide", this);
10345         if(typeof callback == "function"){
10346             callback();
10347         }
10348     },
10349
10350     // private
10351     hideAction : function(){
10352         this.setLeft("-10000px");
10353         this.setTop("-10000px");
10354         this.setStyle("visibility", "hidden");
10355     },
10356
10357     // private
10358     refreshSize : function(){
10359         this.size = this.el.getSize();
10360         this.xy = this.el.getXY();
10361         Roo.state.Manager.set(this.stateId || this.el.id + "-state", this.el.getBox());
10362     },
10363
10364     // private
10365     // z-index is managed by the DialogManager and may be overwritten at any time
10366     setZIndex : function(index){
10367         if(this.modal){
10368             this.mask.setStyle("z-index", index);
10369         }
10370         if(this.shim){
10371             this.shim.setStyle("z-index", ++index);
10372         }
10373         if(this.shadow){
10374             this.shadow.setZIndex(++index);
10375         }
10376         this.el.setStyle("z-index", ++index);
10377         if(this.proxy){
10378             this.proxy.setStyle("z-index", ++index);
10379         }
10380         if(this.resizer){
10381             this.resizer.proxy.setStyle("z-index", ++index);
10382         }
10383
10384         this.lastZIndex = index;
10385         
10386         Roo.BasicDialog.lastZIndex = this.lastZIndex;
10387     },
10388
10389     /**
10390      * Returns the element for this dialog
10391      * @return {Roo.Element} The underlying dialog Element
10392      */
10393     getEl : function(){
10394         return this.el;
10395     }
10396 });
10397
10398 /**
10399  * @class Roo.DialogManager
10400  * Provides global access to BasicDialogs that have been created and
10401  * support for z-indexing (layering) multiple open dialogs.
10402  */
10403 Roo.DialogManager = function(){
10404     var list = {};
10405     var accessList = [];
10406     var front = null;
10407
10408     // private
10409     var sortDialogs = function(d1, d2){
10410         return (!d1._lastAccess || d1._lastAccess < d2._lastAccess) ? -1 : 1;
10411     };
10412
10413     // private
10414     var orderDialogs = function(){
10415         accessList.sort(sortDialogs);
10416         var seed = Roo.DialogManager.zseed;
10417         for(var i = 0, len = accessList.length; i < len; i++){
10418             var dlg = accessList[i];
10419             if(dlg){
10420                 dlg.setZIndex(seed + (i*10));
10421             }
10422         }
10423     };
10424
10425     return {
10426         /**
10427          * The starting z-index for BasicDialogs (defaults to 9000)
10428          * @type Number The z-index value
10429          */
10430         zseed : 9000,
10431
10432         // private
10433         register : function(dlg){
10434             list[dlg.id] = dlg;
10435             accessList.push(dlg);
10436         },
10437
10438         // private
10439         unregister : function(dlg){
10440             delete list[dlg.id];
10441             var i=0;
10442             var len=0;
10443             if(!accessList.indexOf){
10444                 for(  i = 0, len = accessList.length; i < len; i++){
10445                     if(accessList[i] == dlg){
10446                         accessList.splice(i, 1);
10447                         return;
10448                     }
10449                 }
10450             }else{
10451                  i = accessList.indexOf(dlg);
10452                 if(i != -1){
10453                     accessList.splice(i, 1);
10454                 }
10455             }
10456         },
10457
10458         /**
10459          * Gets a registered dialog by id
10460          * @param {String/Object} id The id of the dialog or a dialog
10461          * @return {Roo.BasicDialog} this
10462          */
10463         get : function(id){
10464             return typeof id == "object" ? id : list[id];
10465         },
10466
10467         /**
10468          * Brings the specified dialog to the front
10469          * @param {String/Object} dlg The id of the dialog or a dialog
10470          * @return {Roo.BasicDialog} this
10471          */
10472         bringToFront : function(dlg){
10473             dlg = this.get(dlg);
10474             if(dlg != front){
10475                 front = dlg;
10476                 dlg._lastAccess = new Date().getTime();
10477                 orderDialogs();
10478             }
10479             return dlg;
10480         },
10481
10482         /**
10483          * Sends the specified dialog to the back
10484          * @param {String/Object} dlg The id of the dialog or a dialog
10485          * @return {Roo.BasicDialog} this
10486          */
10487         sendToBack : function(dlg){
10488             dlg = this.get(dlg);
10489             dlg._lastAccess = -(new Date().getTime());
10490             orderDialogs();
10491             return dlg;
10492         },
10493
10494         /**
10495          * Hides all dialogs
10496          */
10497         hideAll : function(){
10498             for(var id in list){
10499                 if(list[id] && typeof list[id] != "function" && list[id].isVisible()){
10500                     list[id].hide();
10501                 }
10502             }
10503         }
10504     };
10505 }();
10506
10507 /**
10508  * @class Roo.LayoutDialog
10509  * @extends Roo.BasicDialog
10510  * Dialog which provides adjustments for working with a layout in a Dialog.
10511  * Add your necessary layout config options to the dialog's config.<br>
10512  * Example usage (including a nested layout):
10513  * <pre><code>
10514 if(!dialog){
10515     dialog = new Roo.LayoutDialog("download-dlg", {
10516         modal: true,
10517         width:600,
10518         height:450,
10519         shadow:true,
10520         minWidth:500,
10521         minHeight:350,
10522         autoTabs:true,
10523         proxyDrag:true,
10524         // layout config merges with the dialog config
10525         center:{
10526             tabPosition: "top",
10527             alwaysShowTabs: true
10528         }
10529     });
10530     dialog.addKeyListener(27, dialog.hide, dialog);
10531     dialog.setDefaultButton(dialog.addButton("Close", dialog.hide, dialog));
10532     dialog.addButton("Build It!", this.getDownload, this);
10533
10534     // we can even add nested layouts
10535     var innerLayout = new Roo.BorderLayout("dl-inner", {
10536         east: {
10537             initialSize: 200,
10538             autoScroll:true,
10539             split:true
10540         },
10541         center: {
10542             autoScroll:true
10543         }
10544     });
10545     innerLayout.beginUpdate();
10546     innerLayout.add("east", new Roo.ContentPanel("dl-details"));
10547     innerLayout.add("center", new Roo.ContentPanel("selection-panel"));
10548     innerLayout.endUpdate(true);
10549
10550     var layout = dialog.getLayout();
10551     layout.beginUpdate();
10552     layout.add("center", new Roo.ContentPanel("standard-panel",
10553                         {title: "Download the Source", fitToFrame:true}));
10554     layout.add("center", new Roo.NestedLayoutPanel(innerLayout,
10555                {title: "Build your own roo.js"}));
10556     layout.getRegion("center").showPanel(sp);
10557     layout.endUpdate();
10558 }
10559 </code></pre>
10560     * @constructor
10561     * @param {String/HTMLElement/Roo.Element} el The id of or container element, or config
10562     * @param {Object} config configuration options
10563   */
10564 Roo.LayoutDialog = function(el, cfg){
10565     
10566     var config=  cfg;
10567     if (typeof(cfg) == 'undefined') {
10568         config = Roo.apply({}, el);
10569         // not sure why we use documentElement here.. - it should always be body.
10570         // IE7 borks horribly if we use documentElement.
10571         // webkit also does not like documentElement - it creates a body element...
10572         el = Roo.get( document.body || document.documentElement ).createChild();
10573         //config.autoCreate = true;
10574     }
10575     
10576     
10577     config.autoTabs = false;
10578     Roo.LayoutDialog.superclass.constructor.call(this, el, config);
10579     this.body.setStyle({overflow:"hidden", position:"relative"});
10580     this.layout = new Roo.BorderLayout(this.body.dom, config);
10581     this.layout.monitorWindowResize = false;
10582     this.el.addClass("x-dlg-auto-layout");
10583     // fix case when center region overwrites center function
10584     this.center = Roo.BasicDialog.prototype.center;
10585     this.on("show", this.layout.layout, this.layout, true);
10586     if (config.items) {
10587         var xitems = config.items;
10588         delete config.items;
10589         Roo.each(xitems, this.addxtype, this);
10590     }
10591     
10592     
10593 };
10594 Roo.extend(Roo.LayoutDialog, Roo.BasicDialog, {
10595     /**
10596      * Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout.
10597      * @deprecated
10598      */
10599     endUpdate : function(){
10600         this.layout.endUpdate();
10601     },
10602
10603     /**
10604      * Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout.
10605      *  @deprecated
10606      */
10607     beginUpdate : function(){
10608         this.layout.beginUpdate();
10609     },
10610
10611     /**
10612      * Get the BorderLayout for this dialog
10613      * @return {Roo.BorderLayout}
10614      */
10615     getLayout : function(){
10616         return this.layout;
10617     },
10618
10619     showEl : function(){
10620         Roo.LayoutDialog.superclass.showEl.apply(this, arguments);
10621         if(Roo.isIE7){
10622             this.layout.layout();
10623         }
10624     },
10625
10626     // private
10627     // Use the syncHeightBeforeShow config option to control this automatically
10628     syncBodyHeight : function(){
10629         Roo.LayoutDialog.superclass.syncBodyHeight.call(this);
10630         if(this.layout){this.layout.layout();}
10631     },
10632     
10633       /**
10634      * Add an xtype element (actually adds to the layout.)
10635      * @return {Object} xdata xtype object data.
10636      */
10637     
10638     addxtype : function(c) {
10639         return this.layout.addxtype(c);
10640     }
10641 });
10642
10643 Roo.apply(Roo.BasicDialog,  {
10644     lastZIndex : 9000
10645 });/*
10646  * Based on:
10647  * Ext JS Library 1.1.1
10648  * Copyright(c) 2006-2007, Ext JS, LLC.
10649  *
10650  * Originally Released Under LGPL - original licence link has changed is not relivant.
10651  *
10652  * Fork - LGPL
10653  * <script type="text/javascript">
10654  */
10655  
10656 /**
10657  * @class Roo.MessageBox
10658  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
10659  * Example usage:
10660  *<pre><code>
10661 // Basic alert:
10662 Roo.Msg.alert('Status', 'Changes saved successfully.');
10663
10664 // Prompt for user data:
10665 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
10666     if (btn == 'ok'){
10667         // process text value...
10668     }
10669 });
10670
10671 // Show a dialog using config options:
10672 Roo.Msg.show({
10673    title:'Save Changes?',
10674    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
10675    buttons: Roo.Msg.YESNOCANCEL,
10676    fn: processResult,
10677    animEl: 'elId'
10678 });
10679 </code></pre>
10680  * @singleton
10681  */
10682 Roo.MessageBox = function(){
10683     var dlg, opt, mask, waitTimer;
10684     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
10685     var buttons, activeTextEl, bwidth;
10686
10687     // private
10688     var handleButton = function(button){
10689         dlg.hide();
10690         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
10691     };
10692
10693     // private
10694     var handleHide = function(){
10695         if(opt && opt.cls){
10696             dlg.el.removeClass(opt.cls);
10697         }
10698         if(waitTimer){
10699             Roo.TaskMgr.stop(waitTimer);
10700             waitTimer = null;
10701         }
10702     };
10703
10704     // private
10705     var updateButtons = function(b){
10706         var width = 0;
10707         if(!b){
10708             buttons["ok"].hide();
10709             buttons["cancel"].hide();
10710             buttons["yes"].hide();
10711             buttons["no"].hide();
10712             dlg.footer.dom.style.display = 'none';
10713             return width;
10714         }
10715         dlg.footer.dom.style.display = '';
10716         for(var k in buttons){
10717             if(typeof buttons[k] != "function"){
10718                 if(b[k]){
10719                     buttons[k].show();
10720                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.MessageBox.buttonText[k]);
10721                     width += buttons[k].el.getWidth()+15;
10722                 }else{
10723                     buttons[k].hide();
10724                 }
10725             }
10726         }
10727         return width;
10728     };
10729
10730     // private
10731     var handleEsc = function(d, k, e){
10732         if(opt && opt.closable !== false){
10733             dlg.hide();
10734         }
10735         if(e){
10736             e.stopEvent();
10737         }
10738     };
10739
10740     return {
10741         /**
10742          * Returns a reference to the underlying {@link Roo.BasicDialog} element
10743          * @return {Roo.BasicDialog} The BasicDialog element
10744          */
10745         getDialog : function(){
10746            if(!dlg){
10747                 dlg = new Roo.BasicDialog("x-msg-box", {
10748                     autoCreate : true,
10749                     shadow: true,
10750                     draggable: true,
10751                     resizable:false,
10752                     constraintoviewport:false,
10753                     fixedcenter:true,
10754                     collapsible : false,
10755                     shim:true,
10756                     modal: true,
10757                     width:400, height:100,
10758                     buttonAlign:"center",
10759                     closeClick : function(){
10760                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
10761                             handleButton("no");
10762                         }else{
10763                             handleButton("cancel");
10764                         }
10765                     }
10766                 });
10767                 dlg.on("hide", handleHide);
10768                 mask = dlg.mask;
10769                 dlg.addKeyListener(27, handleEsc);
10770                 buttons = {};
10771                 var bt = this.buttonText;
10772                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
10773                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
10774                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
10775                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
10776                 bodyEl = dlg.body.createChild({
10777
10778                     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>'
10779                 });
10780                 msgEl = bodyEl.dom.firstChild;
10781                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
10782                 textboxEl.enableDisplayMode();
10783                 textboxEl.addKeyListener([10,13], function(){
10784                     if(dlg.isVisible() && opt && opt.buttons){
10785                         if(opt.buttons.ok){
10786                             handleButton("ok");
10787                         }else if(opt.buttons.yes){
10788                             handleButton("yes");
10789                         }
10790                     }
10791                 });
10792                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
10793                 textareaEl.enableDisplayMode();
10794                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
10795                 progressEl.enableDisplayMode();
10796                 var pf = progressEl.dom.firstChild;
10797                 if (pf) {
10798                     pp = Roo.get(pf.firstChild);
10799                     pp.setHeight(pf.offsetHeight);
10800                 }
10801                 
10802             }
10803             return dlg;
10804         },
10805
10806         /**
10807          * Updates the message box body text
10808          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
10809          * the XHTML-compliant non-breaking space character '&amp;#160;')
10810          * @return {Roo.MessageBox} This message box
10811          */
10812         updateText : function(text){
10813             if(!dlg.isVisible() && !opt.width){
10814                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
10815             }
10816             msgEl.innerHTML = text || '&#160;';
10817       
10818             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
10819             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
10820             var w = Math.max(
10821                     Math.min(opt.width || cw , this.maxWidth), 
10822                     Math.max(opt.minWidth || this.minWidth, bwidth)
10823             );
10824             if(opt.prompt){
10825                 activeTextEl.setWidth(w);
10826             }
10827             if(dlg.isVisible()){
10828                 dlg.fixedcenter = false;
10829             }
10830             // to big, make it scroll. = But as usual stupid IE does not support
10831             // !important..
10832             
10833             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
10834                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
10835                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
10836             } else {
10837                 bodyEl.dom.style.height = '';
10838                 bodyEl.dom.style.overflowY = '';
10839             }
10840             if (cw > w) {
10841                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
10842             } else {
10843                 bodyEl.dom.style.overflowX = '';
10844             }
10845             
10846             dlg.setContentSize(w, bodyEl.getHeight());
10847             if(dlg.isVisible()){
10848                 dlg.fixedcenter = true;
10849             }
10850             return this;
10851         },
10852
10853         /**
10854          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
10855          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
10856          * @param {Number} value Any number between 0 and 1 (e.g., .5)
10857          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
10858          * @return {Roo.MessageBox} This message box
10859          */
10860         updateProgress : function(value, text){
10861             if(text){
10862                 this.updateText(text);
10863             }
10864             if (pp) { // weird bug on my firefox - for some reason this is not defined
10865                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
10866             }
10867             return this;
10868         },        
10869
10870         /**
10871          * Returns true if the message box is currently displayed
10872          * @return {Boolean} True if the message box is visible, else false
10873          */
10874         isVisible : function(){
10875             return dlg && dlg.isVisible();  
10876         },
10877
10878         /**
10879          * Hides the message box if it is displayed
10880          */
10881         hide : function(){
10882             if(this.isVisible()){
10883                 dlg.hide();
10884             }  
10885         },
10886
10887         /**
10888          * Displays a new message box, or reinitializes an existing message box, based on the config options
10889          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
10890          * The following config object properties are supported:
10891          * <pre>
10892 Property    Type             Description
10893 ----------  ---------------  ------------------------------------------------------------------------------------
10894 animEl            String/Element   An id or Element from which the message box should animate as it opens and
10895                                    closes (defaults to undefined)
10896 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
10897                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
10898 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
10899                                    progress and wait dialogs will ignore this property and always hide the
10900                                    close button as they can only be closed programmatically.
10901 cls               String           A custom CSS class to apply to the message box element
10902 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
10903                                    displayed (defaults to 75)
10904 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
10905                                    function will be btn (the name of the button that was clicked, if applicable,
10906                                    e.g. "ok"), and text (the value of the active text field, if applicable).
10907                                    Progress and wait dialogs will ignore this option since they do not respond to
10908                                    user actions and can only be closed programmatically, so any required function
10909                                    should be called by the same code after it closes the dialog.
10910 icon              String           A CSS class that provides a background image to be used as an icon for
10911                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
10912 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
10913 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
10914 modal             Boolean          False to allow user interaction with the page while the message box is
10915                                    displayed (defaults to true)
10916 msg               String           A string that will replace the existing message box body text (defaults
10917                                    to the XHTML-compliant non-breaking space character '&#160;')
10918 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
10919 progress          Boolean          True to display a progress bar (defaults to false)
10920 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
10921 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
10922 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
10923 title             String           The title text
10924 value             String           The string value to set into the active textbox element if displayed
10925 wait              Boolean          True to display a progress bar (defaults to false)
10926 width             Number           The width of the dialog in pixels
10927 </pre>
10928          *
10929          * Example usage:
10930          * <pre><code>
10931 Roo.Msg.show({
10932    title: 'Address',
10933    msg: 'Please enter your address:',
10934    width: 300,
10935    buttons: Roo.MessageBox.OKCANCEL,
10936    multiline: true,
10937    fn: saveAddress,
10938    animEl: 'addAddressBtn'
10939 });
10940 </code></pre>
10941          * @param {Object} config Configuration options
10942          * @return {Roo.MessageBox} This message box
10943          */
10944         show : function(options)
10945         {
10946             
10947             // this causes nightmares if you show one dialog after another
10948             // especially on callbacks..
10949              
10950             if(this.isVisible()){
10951                 
10952                 this.hide();
10953                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
10954                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
10955                 Roo.log("New Dialog Message:" +  options.msg )
10956                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
10957                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
10958                 
10959             }
10960             var d = this.getDialog();
10961             opt = options;
10962             d.setTitle(opt.title || "&#160;");
10963             d.close.setDisplayed(opt.closable !== false);
10964             activeTextEl = textboxEl;
10965             opt.prompt = opt.prompt || (opt.multiline ? true : false);
10966             if(opt.prompt){
10967                 if(opt.multiline){
10968                     textboxEl.hide();
10969                     textareaEl.show();
10970                     textareaEl.setHeight(typeof opt.multiline == "number" ?
10971                         opt.multiline : this.defaultTextHeight);
10972                     activeTextEl = textareaEl;
10973                 }else{
10974                     textboxEl.show();
10975                     textareaEl.hide();
10976                 }
10977             }else{
10978                 textboxEl.hide();
10979                 textareaEl.hide();
10980             }
10981             progressEl.setDisplayed(opt.progress === true);
10982             this.updateProgress(0);
10983             activeTextEl.dom.value = opt.value || "";
10984             if(opt.prompt){
10985                 dlg.setDefaultButton(activeTextEl);
10986             }else{
10987                 var bs = opt.buttons;
10988                 var db = null;
10989                 if(bs && bs.ok){
10990                     db = buttons["ok"];
10991                 }else if(bs && bs.yes){
10992                     db = buttons["yes"];
10993                 }
10994                 dlg.setDefaultButton(db);
10995             }
10996             bwidth = updateButtons(opt.buttons);
10997             this.updateText(opt.msg);
10998             if(opt.cls){
10999                 d.el.addClass(opt.cls);
11000             }
11001             d.proxyDrag = opt.proxyDrag === true;
11002             d.modal = opt.modal !== false;
11003             d.mask = opt.modal !== false ? mask : false;
11004             if(!d.isVisible()){
11005                 // force it to the end of the z-index stack so it gets a cursor in FF
11006                 document.body.appendChild(dlg.el.dom);
11007                 d.animateTarget = null;
11008                 d.show(options.animEl);
11009             }
11010             return this;
11011         },
11012
11013         /**
11014          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
11015          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
11016          * and closing the message box when the process is complete.
11017          * @param {String} title The title bar text
11018          * @param {String} msg The message box body text
11019          * @return {Roo.MessageBox} This message box
11020          */
11021         progress : function(title, msg){
11022             this.show({
11023                 title : title,
11024                 msg : msg,
11025                 buttons: false,
11026                 progress:true,
11027                 closable:false,
11028                 minWidth: this.minProgressWidth,
11029                 modal : true
11030             });
11031             return this;
11032         },
11033
11034         /**
11035          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
11036          * If a callback function is passed it will be called after the user clicks the button, and the
11037          * id of the button that was clicked will be passed as the only parameter to the callback
11038          * (could also be the top-right close button).
11039          * @param {String} title The title bar text
11040          * @param {String} msg The message box body text
11041          * @param {Function} fn (optional) The callback function invoked after the message box is closed
11042          * @param {Object} scope (optional) The scope of the callback function
11043          * @return {Roo.MessageBox} This message box
11044          */
11045         alert : function(title, msg, fn, scope){
11046             this.show({
11047                 title : title,
11048                 msg : msg,
11049                 buttons: this.OK,
11050                 fn: fn,
11051                 scope : scope,
11052                 modal : true
11053             });
11054             return this;
11055         },
11056
11057         /**
11058          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
11059          * interaction while waiting for a long-running process to complete that does not have defined intervals.
11060          * You are responsible for closing the message box when the process is complete.
11061          * @param {String} msg The message box body text
11062          * @param {String} title (optional) The title bar text
11063          * @return {Roo.MessageBox} This message box
11064          */
11065         wait : function(msg, title){
11066             this.show({
11067                 title : title,
11068                 msg : msg,
11069                 buttons: false,
11070                 closable:false,
11071                 progress:true,
11072                 modal:true,
11073                 width:300,
11074                 wait:true
11075             });
11076             waitTimer = Roo.TaskMgr.start({
11077                 run: function(i){
11078                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
11079                 },
11080                 interval: 1000
11081             });
11082             return this;
11083         },
11084
11085         /**
11086          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
11087          * If a callback function is passed it will be called after the user clicks either button, and the id of the
11088          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
11089          * @param {String} title The title bar text
11090          * @param {String} msg The message box body text
11091          * @param {Function} fn (optional) The callback function invoked after the message box is closed
11092          * @param {Object} scope (optional) The scope of the callback function
11093          * @return {Roo.MessageBox} This message box
11094          */
11095         confirm : function(title, msg, fn, scope){
11096             this.show({
11097                 title : title,
11098                 msg : msg,
11099                 buttons: this.YESNO,
11100                 fn: fn,
11101                 scope : scope,
11102                 modal : true
11103             });
11104             return this;
11105         },
11106
11107         /**
11108          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
11109          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
11110          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
11111          * (could also be the top-right close button) and the text that was entered will be passed as the two
11112          * parameters to the callback.
11113          * @param {String} title The title bar text
11114          * @param {String} msg The message box body text
11115          * @param {Function} fn (optional) The callback function invoked after the message box is closed
11116          * @param {Object} scope (optional) The scope of the callback function
11117          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
11118          * property, or the height in pixels to create the textbox (defaults to false / single-line)
11119          * @return {Roo.MessageBox} This message box
11120          */
11121         prompt : function(title, msg, fn, scope, multiline){
11122             this.show({
11123                 title : title,
11124                 msg : msg,
11125                 buttons: this.OKCANCEL,
11126                 fn: fn,
11127                 minWidth:250,
11128                 scope : scope,
11129                 prompt:true,
11130                 multiline: multiline,
11131                 modal : true
11132             });
11133             return this;
11134         },
11135
11136         /**
11137          * Button config that displays a single OK button
11138          * @type Object
11139          */
11140         OK : {ok:true},
11141         /**
11142          * Button config that displays Yes and No buttons
11143          * @type Object
11144          */
11145         YESNO : {yes:true, no:true},
11146         /**
11147          * Button config that displays OK and Cancel buttons
11148          * @type Object
11149          */
11150         OKCANCEL : {ok:true, cancel:true},
11151         /**
11152          * Button config that displays Yes, No and Cancel buttons
11153          * @type Object
11154          */
11155         YESNOCANCEL : {yes:true, no:true, cancel:true},
11156
11157         /**
11158          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
11159          * @type Number
11160          */
11161         defaultTextHeight : 75,
11162         /**
11163          * The maximum width in pixels of the message box (defaults to 600)
11164          * @type Number
11165          */
11166         maxWidth : 600,
11167         /**
11168          * The minimum width in pixels of the message box (defaults to 100)
11169          * @type Number
11170          */
11171         minWidth : 100,
11172         /**
11173          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
11174          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
11175          * @type Number
11176          */
11177         minProgressWidth : 250,
11178         /**
11179          * An object containing the default button text strings that can be overriden for localized language support.
11180          * Supported properties are: ok, cancel, yes and no.
11181          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
11182          * @type Object
11183          */
11184         buttonText : {
11185             ok : "OK",
11186             cancel : "Cancel",
11187             yes : "Yes",
11188             no : "No"
11189         }
11190     };
11191 }();
11192
11193 /**
11194  * Shorthand for {@link Roo.MessageBox}
11195  */
11196 Roo.Msg = Roo.MessageBox;/*
11197  * Based on:
11198  * Ext JS Library 1.1.1
11199  * Copyright(c) 2006-2007, Ext JS, LLC.
11200  *
11201  * Originally Released Under LGPL - original licence link has changed is not relivant.
11202  *
11203  * Fork - LGPL
11204  * <script type="text/javascript">
11205  */
11206 /**
11207  * @class Roo.QuickTips
11208  * Provides attractive and customizable tooltips for any element.
11209  * @singleton
11210  */
11211 Roo.QuickTips = function(){
11212     var el, tipBody, tipBodyText, tipTitle, tm, cfg, close, tagEls = {}, esc, removeCls = null, bdLeft, bdRight;
11213     var ce, bd, xy, dd;
11214     var visible = false, disabled = true, inited = false;
11215     var showProc = 1, hideProc = 1, dismissProc = 1, locks = [];
11216     
11217     var onOver = function(e){
11218         if(disabled){
11219             return;
11220         }
11221         var t = e.getTarget();
11222         if(!t || t.nodeType !== 1 || t == document || t == document.body){
11223             return;
11224         }
11225         if(ce && t == ce.el){
11226             clearTimeout(hideProc);
11227             return;
11228         }
11229         if(t && tagEls[t.id]){
11230             tagEls[t.id].el = t;
11231             showProc = show.defer(tm.showDelay, tm, [tagEls[t.id]]);
11232             return;
11233         }
11234         var ttp, et = Roo.fly(t);
11235         var ns = cfg.namespace;
11236         if(tm.interceptTitles && t.title){
11237             ttp = t.title;
11238             t.qtip = ttp;
11239             t.removeAttribute("title");
11240             e.preventDefault();
11241         }else{
11242             ttp = t.qtip || et.getAttributeNS(ns, cfg.attribute) || et.getAttributeNS(cfg.alt_namespace, cfg.attribute) ;
11243         }
11244         if(ttp){
11245             showProc = show.defer(tm.showDelay, tm, [{
11246                 el: t, 
11247                 text: ttp.replace(/\\n/g,'<br/>'),
11248                 width: et.getAttributeNS(ns, cfg.width),
11249                 autoHide: et.getAttributeNS(ns, cfg.hide) != "user",
11250                 title: et.getAttributeNS(ns, cfg.title),
11251                     cls: et.getAttributeNS(ns, cfg.cls)
11252             }]);
11253         }
11254     };
11255     
11256     var onOut = function(e){
11257         clearTimeout(showProc);
11258         var t = e.getTarget();
11259         if(t && ce && ce.el == t && (tm.autoHide && ce.autoHide !== false)){
11260             hideProc = setTimeout(hide, tm.hideDelay);
11261         }
11262     };
11263     
11264     var onMove = function(e){
11265         if(disabled){
11266             return;
11267         }
11268         xy = e.getXY();
11269         xy[1] += 18;
11270         if(tm.trackMouse && ce){
11271             el.setXY(xy);
11272         }
11273     };
11274     
11275     var onDown = function(e){
11276         clearTimeout(showProc);
11277         clearTimeout(hideProc);
11278         if(!e.within(el)){
11279             if(tm.hideOnClick){
11280                 hide();
11281                 tm.disable();
11282                 tm.enable.defer(100, tm);
11283             }
11284         }
11285     };
11286     
11287     var getPad = function(){
11288         return 2;//bdLeft.getPadding('l')+bdRight.getPadding('r');
11289     };
11290
11291     var show = function(o){
11292         if(disabled){
11293             return;
11294         }
11295         clearTimeout(dismissProc);
11296         ce = o;
11297         if(removeCls){ // in case manually hidden
11298             el.removeClass(removeCls);
11299             removeCls = null;
11300         }
11301         if(ce.cls){
11302             el.addClass(ce.cls);
11303             removeCls = ce.cls;
11304         }
11305         if(ce.title){
11306             tipTitle.update(ce.title);
11307             tipTitle.show();
11308         }else{
11309             tipTitle.update('');
11310             tipTitle.hide();
11311         }
11312         el.dom.style.width  = tm.maxWidth+'px';
11313         //tipBody.dom.style.width = '';
11314         tipBodyText.update(o.text);
11315         var p = getPad(), w = ce.width;
11316         if(!w){
11317             var td = tipBodyText.dom;
11318             var aw = Math.max(td.offsetWidth, td.clientWidth, td.scrollWidth);
11319             if(aw > tm.maxWidth){
11320                 w = tm.maxWidth;
11321             }else if(aw < tm.minWidth){
11322                 w = tm.minWidth;
11323             }else{
11324                 w = aw;
11325             }
11326         }
11327         //tipBody.setWidth(w);
11328         el.setWidth(parseInt(w, 10) + p);
11329         if(ce.autoHide === false){
11330             close.setDisplayed(true);
11331             if(dd){
11332                 dd.unlock();
11333             }
11334         }else{
11335             close.setDisplayed(false);
11336             if(dd){
11337                 dd.lock();
11338             }
11339         }
11340         if(xy){
11341             el.avoidY = xy[1]-18;
11342             el.setXY(xy);
11343         }
11344         if(tm.animate){
11345             el.setOpacity(.1);
11346             el.setStyle("visibility", "visible");
11347             el.fadeIn({callback: afterShow});
11348         }else{
11349             afterShow();
11350         }
11351     };
11352     
11353     var afterShow = function(){
11354         if(ce){
11355             el.show();
11356             esc.enable();
11357             if(tm.autoDismiss && ce.autoHide !== false){
11358                 dismissProc = setTimeout(hide, tm.autoDismissDelay);
11359             }
11360         }
11361     };
11362     
11363     var hide = function(noanim){
11364         clearTimeout(dismissProc);
11365         clearTimeout(hideProc);
11366         ce = null;
11367         if(el.isVisible()){
11368             esc.disable();
11369             if(noanim !== true && tm.animate){
11370                 el.fadeOut({callback: afterHide});
11371             }else{
11372                 afterHide();
11373             } 
11374         }
11375     };
11376     
11377     var afterHide = function(){
11378         el.hide();
11379         if(removeCls){
11380             el.removeClass(removeCls);
11381             removeCls = null;
11382         }
11383     };
11384     
11385     return {
11386         /**
11387         * @cfg {Number} minWidth
11388         * The minimum width of the quick tip (defaults to 40)
11389         */
11390        minWidth : 40,
11391         /**
11392         * @cfg {Number} maxWidth
11393         * The maximum width of the quick tip (defaults to 300)
11394         */
11395        maxWidth : 300,
11396         /**
11397         * @cfg {Boolean} interceptTitles
11398         * True to automatically use the element's DOM title value if available (defaults to false)
11399         */
11400        interceptTitles : false,
11401         /**
11402         * @cfg {Boolean} trackMouse
11403         * True to have the quick tip follow the mouse as it moves over the target element (defaults to false)
11404         */
11405        trackMouse : false,
11406         /**
11407         * @cfg {Boolean} hideOnClick
11408         * True to hide the quick tip if the user clicks anywhere in the document (defaults to true)
11409         */
11410        hideOnClick : true,
11411         /**
11412         * @cfg {Number} showDelay
11413         * Delay in milliseconds before the quick tip displays after the mouse enters the target element (defaults to 500)
11414         */
11415        showDelay : 500,
11416         /**
11417         * @cfg {Number} hideDelay
11418         * Delay in milliseconds before the quick tip hides when autoHide = true (defaults to 200)
11419         */
11420        hideDelay : 200,
11421         /**
11422         * @cfg {Boolean} autoHide
11423         * True to automatically hide the quick tip after the mouse exits the target element (defaults to true).
11424         * Used in conjunction with hideDelay.
11425         */
11426        autoHide : true,
11427         /**
11428         * @cfg {Boolean}
11429         * True to automatically hide the quick tip after a set period of time, regardless of the user's actions
11430         * (defaults to true).  Used in conjunction with autoDismissDelay.
11431         */
11432        autoDismiss : true,
11433         /**
11434         * @cfg {Number}
11435         * Delay in milliseconds before the quick tip hides when autoDismiss = true (defaults to 5000)
11436         */
11437        autoDismissDelay : 5000,
11438        /**
11439         * @cfg {Boolean} animate
11440         * True to turn on fade animation. Defaults to false (ClearType/scrollbar flicker issues in IE7).
11441         */
11442        animate : false,
11443
11444        /**
11445         * @cfg {String} title
11446         * Title text to display (defaults to '').  This can be any valid HTML markup.
11447         */
11448         title: '',
11449        /**
11450         * @cfg {String} text
11451         * Body text to display (defaults to '').  This can be any valid HTML markup.
11452         */
11453         text : '',
11454        /**
11455         * @cfg {String} cls
11456         * A CSS class to apply to the base quick tip element (defaults to '').
11457         */
11458         cls : '',
11459        /**
11460         * @cfg {Number} width
11461         * Width in pixels of the quick tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
11462         * minWidth or maxWidth.
11463         */
11464         width : null,
11465
11466     /**
11467      * Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access
11468      * or display QuickTips in a page.
11469      */
11470        init : function(){
11471           tm = Roo.QuickTips;
11472           cfg = tm.tagConfig;
11473           if(!inited){
11474               if(!Roo.isReady){ // allow calling of init() before onReady
11475                   Roo.onReady(Roo.QuickTips.init, Roo.QuickTips);
11476                   return;
11477               }
11478               el = new Roo.Layer({cls:"x-tip", shadow:"drop", shim: true, constrain:true, shadowOffset:4});
11479               el.fxDefaults = {stopFx: true};
11480               // maximum custom styling
11481               //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>');
11482               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>');              
11483               tipTitle = el.child('h3');
11484               tipTitle.enableDisplayMode("block");
11485               tipBody = el.child('div.x-tip-bd');
11486               tipBodyText = el.child('div.x-tip-bd-inner');
11487               //bdLeft = el.child('div.x-tip-bd-left');
11488               //bdRight = el.child('div.x-tip-bd-right');
11489               close = el.child('div.x-tip-close');
11490               close.enableDisplayMode("block");
11491               close.on("click", hide);
11492               var d = Roo.get(document);
11493               d.on("mousedown", onDown);
11494               d.on("mouseover", onOver);
11495               d.on("mouseout", onOut);
11496               d.on("mousemove", onMove);
11497               esc = d.addKeyListener(27, hide);
11498               esc.disable();
11499               if(Roo.dd.DD){
11500                   dd = el.initDD("default", null, {
11501                       onDrag : function(){
11502                           el.sync();  
11503                       }
11504                   });
11505                   dd.setHandleElId(tipTitle.id);
11506                   dd.lock();
11507               }
11508               inited = true;
11509           }
11510           this.enable(); 
11511        },
11512
11513     /**
11514      * Configures a new quick tip instance and assigns it to a target element.  The following config options
11515      * are supported:
11516      * <pre>
11517 Property    Type                   Description
11518 ----------  ---------------------  ------------------------------------------------------------------------
11519 target      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to
11520      * </ul>
11521      * @param {Object} config The config object
11522      */
11523        register : function(config){
11524            var cs = config instanceof Array ? config : arguments;
11525            for(var i = 0, len = cs.length; i < len; i++) {
11526                var c = cs[i];
11527                var target = c.target;
11528                if(target){
11529                    if(target instanceof Array){
11530                        for(var j = 0, jlen = target.length; j < jlen; j++){
11531                            tagEls[target[j]] = c;
11532                        }
11533                    }else{
11534                        tagEls[typeof target == 'string' ? target : Roo.id(target)] = c;
11535                    }
11536                }
11537            }
11538        },
11539
11540     /**
11541      * Removes this quick tip from its element and destroys it.
11542      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
11543      */
11544        unregister : function(el){
11545            delete tagEls[Roo.id(el)];
11546        },
11547
11548     /**
11549      * Enable this quick tip.
11550      */
11551        enable : function(){
11552            if(inited && disabled){
11553                locks.pop();
11554                if(locks.length < 1){
11555                    disabled = false;
11556                }
11557            }
11558        },
11559
11560     /**
11561      * Disable this quick tip.
11562      */
11563        disable : function(){
11564           disabled = true;
11565           clearTimeout(showProc);
11566           clearTimeout(hideProc);
11567           clearTimeout(dismissProc);
11568           if(ce){
11569               hide(true);
11570           }
11571           locks.push(1);
11572        },
11573
11574     /**
11575      * Returns true if the quick tip is enabled, else false.
11576      */
11577        isEnabled : function(){
11578             return !disabled;
11579        },
11580
11581         // private
11582        tagConfig : {
11583            namespace : "roo", // was ext?? this may break..
11584            alt_namespace : "ext",
11585            attribute : "qtip",
11586            width : "width",
11587            target : "target",
11588            title : "qtitle",
11589            hide : "hide",
11590            cls : "qclass"
11591        }
11592    };
11593 }();
11594
11595 // backwards compat
11596 Roo.QuickTips.tips = Roo.QuickTips.register;/*
11597  * Based on:
11598  * Ext JS Library 1.1.1
11599  * Copyright(c) 2006-2007, Ext JS, LLC.
11600  *
11601  * Originally Released Under LGPL - original licence link has changed is not relivant.
11602  *
11603  * Fork - LGPL
11604  * <script type="text/javascript">
11605  */
11606  
11607
11608 /**
11609  * @class Roo.tree.TreePanel
11610  * @extends Roo.data.Tree
11611
11612  * @cfg {Boolean} rootVisible false to hide the root node (defaults to true)
11613  * @cfg {Boolean} lines false to disable tree lines (defaults to true)
11614  * @cfg {Boolean} enableDD true to enable drag and drop
11615  * @cfg {Boolean} enableDrag true to enable just drag
11616  * @cfg {Boolean} enableDrop true to enable just drop
11617  * @cfg {Object} dragConfig Custom config to pass to the {@link Roo.tree.TreeDragZone} instance
11618  * @cfg {Object} dropConfig Custom config to pass to the {@link Roo.tree.TreeDropZone} instance
11619  * @cfg {String} ddGroup The DD group this TreePanel belongs to
11620  * @cfg {String} ddAppendOnly True if the tree should only allow append drops (use for trees which are sorted)
11621  * @cfg {Boolean} ddScroll true to enable YUI body scrolling
11622  * @cfg {Boolean} containerScroll true to register this container with ScrollManager
11623  * @cfg {Boolean} hlDrop false to disable node highlight on drop (defaults to the value of Roo.enableFx)
11624  * @cfg {String} hlColor The color of the node highlight (defaults to C3DAF9)
11625  * @cfg {Boolean} animate true to enable animated expand/collapse (defaults to the value of Roo.enableFx)
11626  * @cfg {Boolean} singleExpand true if only 1 node per branch may be expanded
11627  * @cfg {Boolean} selModel A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})
11628  * @cfg {Boolean} loader A TreeLoader for use with this TreePanel
11629  * @cfg {Object|Roo.tree.TreeEditor} editor The TreeEditor or xtype data to display when clicked.
11630  * @cfg {String} pathSeparator The token used to separate sub-paths in path strings (defaults to '/')
11631  * @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>
11632  * @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>
11633  * 
11634  * @constructor
11635  * @param {String/HTMLElement/Element} el The container element
11636  * @param {Object} config
11637  */
11638 Roo.tree.TreePanel = function(el, config){
11639     var root = false;
11640     var loader = false;
11641     if (config.root) {
11642         root = config.root;
11643         delete config.root;
11644     }
11645     if (config.loader) {
11646         loader = config.loader;
11647         delete config.loader;
11648     }
11649     
11650     Roo.apply(this, config);
11651     Roo.tree.TreePanel.superclass.constructor.call(this);
11652     this.el = Roo.get(el);
11653     this.el.addClass('x-tree');
11654     //console.log(root);
11655     if (root) {
11656         this.setRootNode( Roo.factory(root, Roo.tree));
11657     }
11658     if (loader) {
11659         this.loader = Roo.factory(loader, Roo.tree);
11660     }
11661    /**
11662     * Read-only. The id of the container element becomes this TreePanel's id.
11663     */
11664     this.id = this.el.id;
11665     this.addEvents({
11666         /**
11667         * @event beforeload
11668         * Fires before a node is loaded, return false to cancel
11669         * @param {Node} node The node being loaded
11670         */
11671         "beforeload" : true,
11672         /**
11673         * @event load
11674         * Fires when a node is loaded
11675         * @param {Node} node The node that was loaded
11676         */
11677         "load" : true,
11678         /**
11679         * @event textchange
11680         * Fires when the text for a node is changed
11681         * @param {Node} node The node
11682         * @param {String} text The new text
11683         * @param {String} oldText The old text
11684         */
11685         "textchange" : true,
11686         /**
11687         * @event beforeexpand
11688         * Fires before a node is expanded, return false to cancel.
11689         * @param {Node} node The node
11690         * @param {Boolean} deep
11691         * @param {Boolean} anim
11692         */
11693         "beforeexpand" : true,
11694         /**
11695         * @event beforecollapse
11696         * Fires before a node is collapsed, return false to cancel.
11697         * @param {Node} node The node
11698         * @param {Boolean} deep
11699         * @param {Boolean} anim
11700         */
11701         "beforecollapse" : true,
11702         /**
11703         * @event expand
11704         * Fires when a node is expanded
11705         * @param {Node} node The node
11706         */
11707         "expand" : true,
11708         /**
11709         * @event disabledchange
11710         * Fires when the disabled status of a node changes
11711         * @param {Node} node The node
11712         * @param {Boolean} disabled
11713         */
11714         "disabledchange" : true,
11715         /**
11716         * @event collapse
11717         * Fires when a node is collapsed
11718         * @param {Node} node The node
11719         */
11720         "collapse" : true,
11721         /**
11722         * @event beforeclick
11723         * Fires before click processing on a node. Return false to cancel the default action.
11724         * @param {Node} node The node
11725         * @param {Roo.EventObject} e The event object
11726         */
11727         "beforeclick":true,
11728         /**
11729         * @event checkchange
11730         * Fires when a node with a checkbox's checked property changes
11731         * @param {Node} this This node
11732         * @param {Boolean} checked
11733         */
11734         "checkchange":true,
11735         /**
11736         * @event click
11737         * Fires when a node is clicked
11738         * @param {Node} node The node
11739         * @param {Roo.EventObject} e The event object
11740         */
11741         "click":true,
11742         /**
11743         * @event dblclick
11744         * Fires when a node is double clicked
11745         * @param {Node} node The node
11746         * @param {Roo.EventObject} e The event object
11747         */
11748         "dblclick":true,
11749         /**
11750         * @event contextmenu
11751         * Fires when a node is right clicked
11752         * @param {Node} node The node
11753         * @param {Roo.EventObject} e The event object
11754         */
11755         "contextmenu":true,
11756         /**
11757         * @event beforechildrenrendered
11758         * Fires right before the child nodes for a node are rendered
11759         * @param {Node} node The node
11760         */
11761         "beforechildrenrendered":true,
11762         /**
11763         * @event startdrag
11764         * Fires when a node starts being dragged
11765         * @param {Roo.tree.TreePanel} this
11766         * @param {Roo.tree.TreeNode} node
11767         * @param {event} e The raw browser event
11768         */ 
11769        "startdrag" : true,
11770        /**
11771         * @event enddrag
11772         * Fires when a drag operation is complete
11773         * @param {Roo.tree.TreePanel} this
11774         * @param {Roo.tree.TreeNode} node
11775         * @param {event} e The raw browser event
11776         */
11777        "enddrag" : true,
11778        /**
11779         * @event dragdrop
11780         * Fires when a dragged node is dropped on a valid DD target
11781         * @param {Roo.tree.TreePanel} this
11782         * @param {Roo.tree.TreeNode} node
11783         * @param {DD} dd The dd it was dropped on
11784         * @param {event} e The raw browser event
11785         */
11786        "dragdrop" : true,
11787        /**
11788         * @event beforenodedrop
11789         * Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent
11790         * passed to handlers has the following properties:<br />
11791         * <ul style="padding:5px;padding-left:16px;">
11792         * <li>tree - The TreePanel</li>
11793         * <li>target - The node being targeted for the drop</li>
11794         * <li>data - The drag data from the drag source</li>
11795         * <li>point - The point of the drop - append, above or below</li>
11796         * <li>source - The drag source</li>
11797         * <li>rawEvent - Raw mouse event</li>
11798         * <li>dropNode - Drop node(s) provided by the source <b>OR</b> you can supply node(s)
11799         * to be inserted by setting them on this object.</li>
11800         * <li>cancel - Set this to true to cancel the drop.</li>
11801         * </ul>
11802         * @param {Object} dropEvent
11803         */
11804        "beforenodedrop" : true,
11805        /**
11806         * @event nodedrop
11807         * Fires after a DD object is dropped on a node in this tree. The dropEvent
11808         * passed to handlers has the following properties:<br />
11809         * <ul style="padding:5px;padding-left:16px;">
11810         * <li>tree - The TreePanel</li>
11811         * <li>target - The node being targeted for the drop</li>
11812         * <li>data - The drag data from the drag source</li>
11813         * <li>point - The point of the drop - append, above or below</li>
11814         * <li>source - The drag source</li>
11815         * <li>rawEvent - Raw mouse event</li>
11816         * <li>dropNode - Dropped node(s).</li>
11817         * </ul>
11818         * @param {Object} dropEvent
11819         */
11820        "nodedrop" : true,
11821         /**
11822         * @event nodedragover
11823         * Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent
11824         * passed to handlers has the following properties:<br />
11825         * <ul style="padding:5px;padding-left:16px;">
11826         * <li>tree - The TreePanel</li>
11827         * <li>target - The node being targeted for the drop</li>
11828         * <li>data - The drag data from the drag source</li>
11829         * <li>point - The point of the drop - append, above or below</li>
11830         * <li>source - The drag source</li>
11831         * <li>rawEvent - Raw mouse event</li>
11832         * <li>dropNode - Drop node(s) provided by the source.</li>
11833         * <li>cancel - Set this to true to signal drop not allowed.</li>
11834         * </ul>
11835         * @param {Object} dragOverEvent
11836         */
11837        "nodedragover" : true,
11838        /**
11839         * @event appendnode
11840         * Fires when append node to the tree
11841         * @param {Roo.tree.TreePanel} this
11842         * @param {Roo.tree.TreeNode} node
11843         * @param {Number} index The index of the newly appended node
11844         */
11845        "appendnode" : true
11846         
11847     });
11848     if(this.singleExpand){
11849        this.on("beforeexpand", this.restrictExpand, this);
11850     }
11851     if (this.editor) {
11852         this.editor.tree = this;
11853         this.editor = Roo.factory(this.editor, Roo.tree);
11854     }
11855     
11856     if (this.selModel) {
11857         this.selModel = Roo.factory(this.selModel, Roo.tree);
11858     }
11859    
11860 };
11861 Roo.extend(Roo.tree.TreePanel, Roo.data.Tree, {
11862     rootVisible : true,
11863     animate: Roo.enableFx,
11864     lines : true,
11865     enableDD : false,
11866     hlDrop : Roo.enableFx,
11867   
11868     renderer: false,
11869     
11870     rendererTip: false,
11871     // private
11872     restrictExpand : function(node){
11873         var p = node.parentNode;
11874         if(p){
11875             if(p.expandedChild && p.expandedChild.parentNode == p){
11876                 p.expandedChild.collapse();
11877             }
11878             p.expandedChild = node;
11879         }
11880     },
11881
11882     // private override
11883     setRootNode : function(node){
11884         Roo.tree.TreePanel.superclass.setRootNode.call(this, node);
11885         if(!this.rootVisible){
11886             node.ui = new Roo.tree.RootTreeNodeUI(node);
11887         }
11888         return node;
11889     },
11890
11891     /**
11892      * Returns the container element for this TreePanel
11893      */
11894     getEl : function(){
11895         return this.el;
11896     },
11897
11898     /**
11899      * Returns the default TreeLoader for this TreePanel
11900      */
11901     getLoader : function(){
11902         return this.loader;
11903     },
11904
11905     /**
11906      * Expand all nodes
11907      */
11908     expandAll : function(){
11909         this.root.expand(true);
11910     },
11911
11912     /**
11913      * Collapse all nodes
11914      */
11915     collapseAll : function(){
11916         this.root.collapse(true);
11917     },
11918
11919     /**
11920      * Returns the selection model used by this TreePanel
11921      */
11922     getSelectionModel : function(){
11923         if(!this.selModel){
11924             this.selModel = new Roo.tree.DefaultSelectionModel();
11925         }
11926         return this.selModel;
11927     },
11928
11929     /**
11930      * Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. "id")
11931      * @param {String} attribute (optional) Defaults to null (return the actual nodes)
11932      * @param {TreeNode} startNode (optional) The node to start from, defaults to the root
11933      * @return {Array}
11934      */
11935     getChecked : function(a, startNode){
11936         startNode = startNode || this.root;
11937         var r = [];
11938         var f = function(){
11939             if(this.attributes.checked){
11940                 r.push(!a ? this : (a == 'id' ? this.id : this.attributes[a]));
11941             }
11942         }
11943         startNode.cascade(f);
11944         return r;
11945     },
11946
11947     /**
11948      * Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
11949      * @param {String} path
11950      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
11951      * @param {Function} callback (optional) The callback to call when the expand is complete. The callback will be called with
11952      * (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.
11953      */
11954     expandPath : function(path, attr, callback){
11955         attr = attr || "id";
11956         var keys = path.split(this.pathSeparator);
11957         var curNode = this.root;
11958         if(curNode.attributes[attr] != keys[1]){ // invalid root
11959             if(callback){
11960                 callback(false, null);
11961             }
11962             return;
11963         }
11964         var index = 1;
11965         var f = function(){
11966             if(++index == keys.length){
11967                 if(callback){
11968                     callback(true, curNode);
11969                 }
11970                 return;
11971             }
11972             var c = curNode.findChild(attr, keys[index]);
11973             if(!c){
11974                 if(callback){
11975                     callback(false, curNode);
11976                 }
11977                 return;
11978             }
11979             curNode = c;
11980             c.expand(false, false, f);
11981         };
11982         curNode.expand(false, false, f);
11983     },
11984
11985     /**
11986      * Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
11987      * @param {String} path
11988      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
11989      * @param {Function} callback (optional) The callback to call when the selection is complete. The callback will be called with
11990      * (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.
11991      */
11992     selectPath : function(path, attr, callback){
11993         attr = attr || "id";
11994         var keys = path.split(this.pathSeparator);
11995         var v = keys.pop();
11996         if(keys.length > 0){
11997             var f = function(success, node){
11998                 if(success && node){
11999                     var n = node.findChild(attr, v);
12000                     if(n){
12001                         n.select();
12002                         if(callback){
12003                             callback(true, n);
12004                         }
12005                     }else if(callback){
12006                         callback(false, n);
12007                     }
12008                 }else{
12009                     if(callback){
12010                         callback(false, n);
12011                     }
12012                 }
12013             };
12014             this.expandPath(keys.join(this.pathSeparator), attr, f);
12015         }else{
12016             this.root.select();
12017             if(callback){
12018                 callback(true, this.root);
12019             }
12020         }
12021     },
12022
12023     getTreeEl : function(){
12024         return this.el;
12025     },
12026
12027     /**
12028      * Trigger rendering of this TreePanel
12029      */
12030     render : function(){
12031         if (this.innerCt) {
12032             return this; // stop it rendering more than once!!
12033         }
12034         
12035         this.innerCt = this.el.createChild({tag:"ul",
12036                cls:"x-tree-root-ct " +
12037                (this.lines ? "x-tree-lines" : "x-tree-no-lines")});
12038
12039         if(this.containerScroll){
12040             Roo.dd.ScrollManager.register(this.el);
12041         }
12042         if((this.enableDD || this.enableDrop) && !this.dropZone){
12043            /**
12044             * The dropZone used by this tree if drop is enabled
12045             * @type Roo.tree.TreeDropZone
12046             */
12047              this.dropZone = new Roo.tree.TreeDropZone(this, this.dropConfig || {
12048                ddGroup: this.ddGroup || "TreeDD", appendOnly: this.ddAppendOnly === true
12049            });
12050         }
12051         if((this.enableDD || this.enableDrag) && !this.dragZone){
12052            /**
12053             * The dragZone used by this tree if drag is enabled
12054             * @type Roo.tree.TreeDragZone
12055             */
12056             this.dragZone = new Roo.tree.TreeDragZone(this, this.dragConfig || {
12057                ddGroup: this.ddGroup || "TreeDD",
12058                scroll: this.ddScroll
12059            });
12060         }
12061         this.getSelectionModel().init(this);
12062         if (!this.root) {
12063             Roo.log("ROOT not set in tree");
12064             return this;
12065         }
12066         this.root.render();
12067         if(!this.rootVisible){
12068             this.root.renderChildren();
12069         }
12070         return this;
12071     }
12072 });/*
12073  * Based on:
12074  * Ext JS Library 1.1.1
12075  * Copyright(c) 2006-2007, Ext JS, LLC.
12076  *
12077  * Originally Released Under LGPL - original licence link has changed is not relivant.
12078  *
12079  * Fork - LGPL
12080  * <script type="text/javascript">
12081  */
12082  
12083
12084 /**
12085  * @class Roo.tree.DefaultSelectionModel
12086  * @extends Roo.util.Observable
12087  * The default single selection for a TreePanel.
12088  * @param {Object} cfg Configuration
12089  */
12090 Roo.tree.DefaultSelectionModel = function(cfg){
12091    this.selNode = null;
12092    
12093    
12094    
12095    this.addEvents({
12096        /**
12097         * @event selectionchange
12098         * Fires when the selected node changes
12099         * @param {DefaultSelectionModel} this
12100         * @param {TreeNode} node the new selection
12101         */
12102        "selectionchange" : true,
12103
12104        /**
12105         * @event beforeselect
12106         * Fires before the selected node changes, return false to cancel the change
12107         * @param {DefaultSelectionModel} this
12108         * @param {TreeNode} node the new selection
12109         * @param {TreeNode} node the old selection
12110         */
12111        "beforeselect" : true
12112    });
12113    
12114     Roo.tree.DefaultSelectionModel.superclass.constructor.call(this,cfg);
12115 };
12116
12117 Roo.extend(Roo.tree.DefaultSelectionModel, Roo.util.Observable, {
12118     init : function(tree){
12119         this.tree = tree;
12120         tree.getTreeEl().on("keydown", this.onKeyDown, this);
12121         tree.on("click", this.onNodeClick, this);
12122     },
12123     
12124     onNodeClick : function(node, e){
12125         if (e.ctrlKey && this.selNode == node)  {
12126             this.unselect(node);
12127             return;
12128         }
12129         this.select(node);
12130     },
12131     
12132     /**
12133      * Select a node.
12134      * @param {TreeNode} node The node to select
12135      * @return {TreeNode} The selected node
12136      */
12137     select : function(node){
12138         var last = this.selNode;
12139         if(last != node && this.fireEvent('beforeselect', this, node, last) !== false){
12140             if(last){
12141                 last.ui.onSelectedChange(false);
12142             }
12143             this.selNode = node;
12144             node.ui.onSelectedChange(true);
12145             this.fireEvent("selectionchange", this, node, last);
12146         }
12147         return node;
12148     },
12149     
12150     /**
12151      * Deselect a node.
12152      * @param {TreeNode} node The node to unselect
12153      */
12154     unselect : function(node){
12155         if(this.selNode == node){
12156             this.clearSelections();
12157         }    
12158     },
12159     
12160     /**
12161      * Clear all selections
12162      */
12163     clearSelections : function(){
12164         var n = this.selNode;
12165         if(n){
12166             n.ui.onSelectedChange(false);
12167             this.selNode = null;
12168             this.fireEvent("selectionchange", this, null);
12169         }
12170         return n;
12171     },
12172     
12173     /**
12174      * Get the selected node
12175      * @return {TreeNode} The selected node
12176      */
12177     getSelectedNode : function(){
12178         return this.selNode;    
12179     },
12180     
12181     /**
12182      * Returns true if the node is selected
12183      * @param {TreeNode} node The node to check
12184      * @return {Boolean}
12185      */
12186     isSelected : function(node){
12187         return this.selNode == node;  
12188     },
12189
12190     /**
12191      * Selects the node above the selected node in the tree, intelligently walking the nodes
12192      * @return TreeNode The new selection
12193      */
12194     selectPrevious : function(){
12195         var s = this.selNode || this.lastSelNode;
12196         if(!s){
12197             return null;
12198         }
12199         var ps = s.previousSibling;
12200         if(ps){
12201             if(!ps.isExpanded() || ps.childNodes.length < 1){
12202                 return this.select(ps);
12203             } else{
12204                 var lc = ps.lastChild;
12205                 while(lc && lc.isExpanded() && lc.childNodes.length > 0){
12206                     lc = lc.lastChild;
12207                 }
12208                 return this.select(lc);
12209             }
12210         } else if(s.parentNode && (this.tree.rootVisible || !s.parentNode.isRoot)){
12211             return this.select(s.parentNode);
12212         }
12213         return null;
12214     },
12215
12216     /**
12217      * Selects the node above the selected node in the tree, intelligently walking the nodes
12218      * @return TreeNode The new selection
12219      */
12220     selectNext : function(){
12221         var s = this.selNode || this.lastSelNode;
12222         if(!s){
12223             return null;
12224         }
12225         if(s.firstChild && s.isExpanded()){
12226              return this.select(s.firstChild);
12227          }else if(s.nextSibling){
12228              return this.select(s.nextSibling);
12229          }else if(s.parentNode){
12230             var newS = null;
12231             s.parentNode.bubble(function(){
12232                 if(this.nextSibling){
12233                     newS = this.getOwnerTree().selModel.select(this.nextSibling);
12234                     return false;
12235                 }
12236             });
12237             return newS;
12238          }
12239         return null;
12240     },
12241
12242     onKeyDown : function(e){
12243         var s = this.selNode || this.lastSelNode;
12244         // undesirable, but required
12245         var sm = this;
12246         if(!s){
12247             return;
12248         }
12249         var k = e.getKey();
12250         switch(k){
12251              case e.DOWN:
12252                  e.stopEvent();
12253                  this.selectNext();
12254              break;
12255              case e.UP:
12256                  e.stopEvent();
12257                  this.selectPrevious();
12258              break;
12259              case e.RIGHT:
12260                  e.preventDefault();
12261                  if(s.hasChildNodes()){
12262                      if(!s.isExpanded()){
12263                          s.expand();
12264                      }else if(s.firstChild){
12265                          this.select(s.firstChild, e);
12266                      }
12267                  }
12268              break;
12269              case e.LEFT:
12270                  e.preventDefault();
12271                  if(s.hasChildNodes() && s.isExpanded()){
12272                      s.collapse();
12273                  }else if(s.parentNode && (this.tree.rootVisible || s.parentNode != this.tree.getRootNode())){
12274                      this.select(s.parentNode, e);
12275                  }
12276              break;
12277         };
12278     }
12279 });
12280
12281 /**
12282  * @class Roo.tree.MultiSelectionModel
12283  * @extends Roo.util.Observable
12284  * Multi selection for a TreePanel.
12285  * @param {Object} cfg Configuration
12286  */
12287 Roo.tree.MultiSelectionModel = function(){
12288    this.selNodes = [];
12289    this.selMap = {};
12290    this.addEvents({
12291        /**
12292         * @event selectionchange
12293         * Fires when the selected nodes change
12294         * @param {MultiSelectionModel} this
12295         * @param {Array} nodes Array of the selected nodes
12296         */
12297        "selectionchange" : true
12298    });
12299    Roo.tree.MultiSelectionModel.superclass.constructor.call(this,cfg);
12300    
12301 };
12302
12303 Roo.extend(Roo.tree.MultiSelectionModel, Roo.util.Observable, {
12304     init : function(tree){
12305         this.tree = tree;
12306         tree.getTreeEl().on("keydown", this.onKeyDown, this);
12307         tree.on("click", this.onNodeClick, this);
12308     },
12309     
12310     onNodeClick : function(node, e){
12311         this.select(node, e, e.ctrlKey);
12312     },
12313     
12314     /**
12315      * Select a node.
12316      * @param {TreeNode} node The node to select
12317      * @param {EventObject} e (optional) An event associated with the selection
12318      * @param {Boolean} keepExisting True to retain existing selections
12319      * @return {TreeNode} The selected node
12320      */
12321     select : function(node, e, keepExisting){
12322         if(keepExisting !== true){
12323             this.clearSelections(true);
12324         }
12325         if(this.isSelected(node)){
12326             this.lastSelNode = node;
12327             return node;
12328         }
12329         this.selNodes.push(node);
12330         this.selMap[node.id] = node;
12331         this.lastSelNode = node;
12332         node.ui.onSelectedChange(true);
12333         this.fireEvent("selectionchange", this, this.selNodes);
12334         return node;
12335     },
12336     
12337     /**
12338      * Deselect a node.
12339      * @param {TreeNode} node The node to unselect
12340      */
12341     unselect : function(node){
12342         if(this.selMap[node.id]){
12343             node.ui.onSelectedChange(false);
12344             var sn = this.selNodes;
12345             var index = -1;
12346             if(sn.indexOf){
12347                 index = sn.indexOf(node);
12348             }else{
12349                 for(var i = 0, len = sn.length; i < len; i++){
12350                     if(sn[i] == node){
12351                         index = i;
12352                         break;
12353                     }
12354                 }
12355             }
12356             if(index != -1){
12357                 this.selNodes.splice(index, 1);
12358             }
12359             delete this.selMap[node.id];
12360             this.fireEvent("selectionchange", this, this.selNodes);
12361         }
12362     },
12363     
12364     /**
12365      * Clear all selections
12366      */
12367     clearSelections : function(suppressEvent){
12368         var sn = this.selNodes;
12369         if(sn.length > 0){
12370             for(var i = 0, len = sn.length; i < len; i++){
12371                 sn[i].ui.onSelectedChange(false);
12372             }
12373             this.selNodes = [];
12374             this.selMap = {};
12375             if(suppressEvent !== true){
12376                 this.fireEvent("selectionchange", this, this.selNodes);
12377             }
12378         }
12379     },
12380     
12381     /**
12382      * Returns true if the node is selected
12383      * @param {TreeNode} node The node to check
12384      * @return {Boolean}
12385      */
12386     isSelected : function(node){
12387         return this.selMap[node.id] ? true : false;  
12388     },
12389     
12390     /**
12391      * Returns an array of the selected nodes
12392      * @return {Array}
12393      */
12394     getSelectedNodes : function(){
12395         return this.selNodes;    
12396     },
12397
12398     onKeyDown : Roo.tree.DefaultSelectionModel.prototype.onKeyDown,
12399
12400     selectNext : Roo.tree.DefaultSelectionModel.prototype.selectNext,
12401
12402     selectPrevious : Roo.tree.DefaultSelectionModel.prototype.selectPrevious
12403 });/*
12404  * Based on:
12405  * Ext JS Library 1.1.1
12406  * Copyright(c) 2006-2007, Ext JS, LLC.
12407  *
12408  * Originally Released Under LGPL - original licence link has changed is not relivant.
12409  *
12410  * Fork - LGPL
12411  * <script type="text/javascript">
12412  */
12413  
12414 /**
12415  * @class Roo.tree.TreeNode
12416  * @extends Roo.data.Node
12417  * @cfg {String} text The text for this node
12418  * @cfg {Boolean} expanded true to start the node expanded
12419  * @cfg {Boolean} allowDrag false to make this node undraggable if DD is on (defaults to true)
12420  * @cfg {Boolean} allowDrop false if this node cannot be drop on
12421  * @cfg {Boolean} disabled true to start the node disabled
12422  * @cfg {String} icon The path to an icon for the node. The preferred way to do this
12423  *    is to use the cls or iconCls attributes and add the icon via a CSS background image.
12424  * @cfg {String} cls A css class to be added to the node
12425  * @cfg {String} iconCls A css class to be added to the nodes icon element for applying css background images
12426  * @cfg {String} href URL of the link used for the node (defaults to #)
12427  * @cfg {String} hrefTarget target frame for the link
12428  * @cfg {String} qtip An Ext QuickTip for the node
12429  * @cfg {String} qtipCfg An Ext QuickTip config for the node (used instead of qtip)
12430  * @cfg {Boolean} singleClickExpand True for single click expand on this node
12431  * @cfg {Function} uiProvider A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)
12432  * @cfg {Boolean} checked True to render a checked checkbox for this node, false to render an unchecked checkbox
12433  * (defaults to undefined with no checkbox rendered)
12434  * @constructor
12435  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node
12436  */
12437 Roo.tree.TreeNode = function(attributes){
12438     attributes = attributes || {};
12439     if(typeof attributes == "string"){
12440         attributes = {text: attributes};
12441     }
12442     this.childrenRendered = false;
12443     this.rendered = false;
12444     Roo.tree.TreeNode.superclass.constructor.call(this, attributes);
12445     this.expanded = attributes.expanded === true;
12446     this.isTarget = attributes.isTarget !== false;
12447     this.draggable = attributes.draggable !== false && attributes.allowDrag !== false;
12448     this.allowChildren = attributes.allowChildren !== false && attributes.allowDrop !== false;
12449
12450     /**
12451      * Read-only. The text for this node. To change it use setText().
12452      * @type String
12453      */
12454     this.text = attributes.text;
12455     /**
12456      * True if this node is disabled.
12457      * @type Boolean
12458      */
12459     this.disabled = attributes.disabled === true;
12460
12461     this.addEvents({
12462         /**
12463         * @event textchange
12464         * Fires when the text for this node is changed
12465         * @param {Node} this This node
12466         * @param {String} text The new text
12467         * @param {String} oldText The old text
12468         */
12469         "textchange" : true,
12470         /**
12471         * @event beforeexpand
12472         * Fires before this node is expanded, return false to cancel.
12473         * @param {Node} this This node
12474         * @param {Boolean} deep
12475         * @param {Boolean} anim
12476         */
12477         "beforeexpand" : true,
12478         /**
12479         * @event beforecollapse
12480         * Fires before this node is collapsed, return false to cancel.
12481         * @param {Node} this This node
12482         * @param {Boolean} deep
12483         * @param {Boolean} anim
12484         */
12485         "beforecollapse" : true,
12486         /**
12487         * @event expand
12488         * Fires when this node is expanded
12489         * @param {Node} this This node
12490         */
12491         "expand" : true,
12492         /**
12493         * @event disabledchange
12494         * Fires when the disabled status of this node changes
12495         * @param {Node} this This node
12496         * @param {Boolean} disabled
12497         */
12498         "disabledchange" : true,
12499         /**
12500         * @event collapse
12501         * Fires when this node is collapsed
12502         * @param {Node} this This node
12503         */
12504         "collapse" : true,
12505         /**
12506         * @event beforeclick
12507         * Fires before click processing. Return false to cancel the default action.
12508         * @param {Node} this This node
12509         * @param {Roo.EventObject} e The event object
12510         */
12511         "beforeclick":true,
12512         /**
12513         * @event checkchange
12514         * Fires when a node with a checkbox's checked property changes
12515         * @param {Node} this This node
12516         * @param {Boolean} checked
12517         */
12518         "checkchange":true,
12519         /**
12520         * @event click
12521         * Fires when this node is clicked
12522         * @param {Node} this This node
12523         * @param {Roo.EventObject} e The event object
12524         */
12525         "click":true,
12526         /**
12527         * @event dblclick
12528         * Fires when this node is double clicked
12529         * @param {Node} this This node
12530         * @param {Roo.EventObject} e The event object
12531         */
12532         "dblclick":true,
12533         /**
12534         * @event contextmenu
12535         * Fires when this node is right clicked
12536         * @param {Node} this This node
12537         * @param {Roo.EventObject} e The event object
12538         */
12539         "contextmenu":true,
12540         /**
12541         * @event beforechildrenrendered
12542         * Fires right before the child nodes for this node are rendered
12543         * @param {Node} this This node
12544         */
12545         "beforechildrenrendered":true
12546     });
12547
12548     var uiClass = this.attributes.uiProvider || Roo.tree.TreeNodeUI;
12549
12550     /**
12551      * Read-only. The UI for this node
12552      * @type TreeNodeUI
12553      */
12554     this.ui = new uiClass(this);
12555     
12556     // finally support items[]
12557     if (typeof(this.attributes.items) == 'undefined' || !this.attributes.items) {
12558         return;
12559     }
12560     
12561     
12562     Roo.each(this.attributes.items, function(c) {
12563         this.appendChild(Roo.factory(c,Roo.Tree));
12564     }, this);
12565     delete this.attributes.items;
12566     
12567     
12568     
12569 };
12570 Roo.extend(Roo.tree.TreeNode, Roo.data.Node, {
12571     preventHScroll: true,
12572     /**
12573      * Returns true if this node is expanded
12574      * @return {Boolean}
12575      */
12576     isExpanded : function(){
12577         return this.expanded;
12578     },
12579
12580     /**
12581      * Returns the UI object for this node
12582      * @return {TreeNodeUI}
12583      */
12584     getUI : function(){
12585         return this.ui;
12586     },
12587
12588     // private override
12589     setFirstChild : function(node){
12590         var of = this.firstChild;
12591         Roo.tree.TreeNode.superclass.setFirstChild.call(this, node);
12592         if(this.childrenRendered && of && node != of){
12593             of.renderIndent(true, true);
12594         }
12595         if(this.rendered){
12596             this.renderIndent(true, true);
12597         }
12598     },
12599
12600     // private override
12601     setLastChild : function(node){
12602         var ol = this.lastChild;
12603         Roo.tree.TreeNode.superclass.setLastChild.call(this, node);
12604         if(this.childrenRendered && ol && node != ol){
12605             ol.renderIndent(true, true);
12606         }
12607         if(this.rendered){
12608             this.renderIndent(true, true);
12609         }
12610     },
12611
12612     // these methods are overridden to provide lazy rendering support
12613     // private override
12614     appendChild : function()
12615     {
12616         var node = Roo.tree.TreeNode.superclass.appendChild.apply(this, arguments);
12617         if(node && this.childrenRendered){
12618             node.render();
12619         }
12620         this.ui.updateExpandIcon();
12621         return node;
12622     },
12623
12624     // private override
12625     removeChild : function(node){
12626         this.ownerTree.getSelectionModel().unselect(node);
12627         Roo.tree.TreeNode.superclass.removeChild.apply(this, arguments);
12628         // if it's been rendered remove dom node
12629         if(this.childrenRendered){
12630             node.ui.remove();
12631         }
12632         if(this.childNodes.length < 1){
12633             this.collapse(false, false);
12634         }else{
12635             this.ui.updateExpandIcon();
12636         }
12637         if(!this.firstChild) {
12638             this.childrenRendered = false;
12639         }
12640         return node;
12641     },
12642
12643     // private override
12644     insertBefore : function(node, refNode){
12645         var newNode = Roo.tree.TreeNode.superclass.insertBefore.apply(this, arguments);
12646         if(newNode && refNode && this.childrenRendered){
12647             node.render();
12648         }
12649         this.ui.updateExpandIcon();
12650         return newNode;
12651     },
12652
12653     /**
12654      * Sets the text for this node
12655      * @param {String} text
12656      */
12657     setText : function(text){
12658         var oldText = this.text;
12659         this.text = text;
12660         this.attributes.text = text;
12661         if(this.rendered){ // event without subscribing
12662             this.ui.onTextChange(this, text, oldText);
12663         }
12664         this.fireEvent("textchange", this, text, oldText);
12665     },
12666
12667     /**
12668      * Triggers selection of this node
12669      */
12670     select : function(){
12671         this.getOwnerTree().getSelectionModel().select(this);
12672     },
12673
12674     /**
12675      * Triggers deselection of this node
12676      */
12677     unselect : function(){
12678         this.getOwnerTree().getSelectionModel().unselect(this);
12679     },
12680
12681     /**
12682      * Returns true if this node is selected
12683      * @return {Boolean}
12684      */
12685     isSelected : function(){
12686         return this.getOwnerTree().getSelectionModel().isSelected(this);
12687     },
12688
12689     /**
12690      * Expand this node.
12691      * @param {Boolean} deep (optional) True to expand all children as well
12692      * @param {Boolean} anim (optional) false to cancel the default animation
12693      * @param {Function} callback (optional) A callback to be called when
12694      * expanding this node completes (does not wait for deep expand to complete).
12695      * Called with 1 parameter, this node.
12696      */
12697     expand : function(deep, anim, callback){
12698         if(!this.expanded){
12699             if(this.fireEvent("beforeexpand", this, deep, anim) === false){
12700                 return;
12701             }
12702             if(!this.childrenRendered){
12703                 this.renderChildren();
12704             }
12705             this.expanded = true;
12706             
12707             if(!this.isHiddenRoot() && (this.getOwnerTree() && this.getOwnerTree().animate && anim !== false) || anim){
12708                 this.ui.animExpand(function(){
12709                     this.fireEvent("expand", this);
12710                     if(typeof callback == "function"){
12711                         callback(this);
12712                     }
12713                     if(deep === true){
12714                         this.expandChildNodes(true);
12715                     }
12716                 }.createDelegate(this));
12717                 return;
12718             }else{
12719                 this.ui.expand();
12720                 this.fireEvent("expand", this);
12721                 if(typeof callback == "function"){
12722                     callback(this);
12723                 }
12724             }
12725         }else{
12726            if(typeof callback == "function"){
12727                callback(this);
12728            }
12729         }
12730         if(deep === true){
12731             this.expandChildNodes(true);
12732         }
12733     },
12734
12735     isHiddenRoot : function(){
12736         return this.isRoot && !this.getOwnerTree().rootVisible;
12737     },
12738
12739     /**
12740      * Collapse this node.
12741      * @param {Boolean} deep (optional) True to collapse all children as well
12742      * @param {Boolean} anim (optional) false to cancel the default animation
12743      */
12744     collapse : function(deep, anim){
12745         if(this.expanded && !this.isHiddenRoot()){
12746             if(this.fireEvent("beforecollapse", this, deep, anim) === false){
12747                 return;
12748             }
12749             this.expanded = false;
12750             if((this.getOwnerTree().animate && anim !== false) || anim){
12751                 this.ui.animCollapse(function(){
12752                     this.fireEvent("collapse", this);
12753                     if(deep === true){
12754                         this.collapseChildNodes(true);
12755                     }
12756                 }.createDelegate(this));
12757                 return;
12758             }else{
12759                 this.ui.collapse();
12760                 this.fireEvent("collapse", this);
12761             }
12762         }
12763         if(deep === true){
12764             var cs = this.childNodes;
12765             for(var i = 0, len = cs.length; i < len; i++) {
12766                 cs[i].collapse(true, false);
12767             }
12768         }
12769     },
12770
12771     // private
12772     delayedExpand : function(delay){
12773         if(!this.expandProcId){
12774             this.expandProcId = this.expand.defer(delay, this);
12775         }
12776     },
12777
12778     // private
12779     cancelExpand : function(){
12780         if(this.expandProcId){
12781             clearTimeout(this.expandProcId);
12782         }
12783         this.expandProcId = false;
12784     },
12785
12786     /**
12787      * Toggles expanded/collapsed state of the node
12788      */
12789     toggle : function(){
12790         if(this.expanded){
12791             this.collapse();
12792         }else{
12793             this.expand();
12794         }
12795     },
12796
12797     /**
12798      * Ensures all parent nodes are expanded
12799      */
12800     ensureVisible : function(callback){
12801         var tree = this.getOwnerTree();
12802         tree.expandPath(this.parentNode.getPath(), false, function(){
12803             tree.getTreeEl().scrollChildIntoView(this.ui.anchor);
12804             Roo.callback(callback);
12805         }.createDelegate(this));
12806     },
12807
12808     /**
12809      * Expand all child nodes
12810      * @param {Boolean} deep (optional) true if the child nodes should also expand their child nodes
12811      */
12812     expandChildNodes : function(deep){
12813         var cs = this.childNodes;
12814         for(var i = 0, len = cs.length; i < len; i++) {
12815                 cs[i].expand(deep);
12816         }
12817     },
12818
12819     /**
12820      * Collapse all child nodes
12821      * @param {Boolean} deep (optional) true if the child nodes should also collapse their child nodes
12822      */
12823     collapseChildNodes : function(deep){
12824         var cs = this.childNodes;
12825         for(var i = 0, len = cs.length; i < len; i++) {
12826                 cs[i].collapse(deep);
12827         }
12828     },
12829
12830     /**
12831      * Disables this node
12832      */
12833     disable : function(){
12834         this.disabled = true;
12835         this.unselect();
12836         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
12837             this.ui.onDisableChange(this, true);
12838         }
12839         this.fireEvent("disabledchange", this, true);
12840     },
12841
12842     /**
12843      * Enables this node
12844      */
12845     enable : function(){
12846         this.disabled = false;
12847         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
12848             this.ui.onDisableChange(this, false);
12849         }
12850         this.fireEvent("disabledchange", this, false);
12851     },
12852
12853     // private
12854     renderChildren : function(suppressEvent){
12855         if(suppressEvent !== false){
12856             this.fireEvent("beforechildrenrendered", this);
12857         }
12858         var cs = this.childNodes;
12859         for(var i = 0, len = cs.length; i < len; i++){
12860             cs[i].render(true);
12861         }
12862         this.childrenRendered = true;
12863     },
12864
12865     // private
12866     sort : function(fn, scope){
12867         Roo.tree.TreeNode.superclass.sort.apply(this, arguments);
12868         if(this.childrenRendered){
12869             var cs = this.childNodes;
12870             for(var i = 0, len = cs.length; i < len; i++){
12871                 cs[i].render(true);
12872             }
12873         }
12874     },
12875
12876     // private
12877     render : function(bulkRender){
12878         this.ui.render(bulkRender);
12879         if(!this.rendered){
12880             this.rendered = true;
12881             if(this.expanded){
12882                 this.expanded = false;
12883                 this.expand(false, false);
12884             }
12885         }
12886     },
12887
12888     // private
12889     renderIndent : function(deep, refresh){
12890         if(refresh){
12891             this.ui.childIndent = null;
12892         }
12893         this.ui.renderIndent();
12894         if(deep === true && this.childrenRendered){
12895             var cs = this.childNodes;
12896             for(var i = 0, len = cs.length; i < len; i++){
12897                 cs[i].renderIndent(true, refresh);
12898             }
12899         }
12900     }
12901 });/*
12902  * Based on:
12903  * Ext JS Library 1.1.1
12904  * Copyright(c) 2006-2007, Ext JS, LLC.
12905  *
12906  * Originally Released Under LGPL - original licence link has changed is not relivant.
12907  *
12908  * Fork - LGPL
12909  * <script type="text/javascript">
12910  */
12911  
12912 /**
12913  * @class Roo.tree.AsyncTreeNode
12914  * @extends Roo.tree.TreeNode
12915  * @cfg {TreeLoader} loader A TreeLoader to be used by this node (defaults to the loader defined on the tree)
12916  * @constructor
12917  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node 
12918  */
12919  Roo.tree.AsyncTreeNode = function(config){
12920     this.loaded = false;
12921     this.loading = false;
12922     Roo.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
12923     /**
12924     * @event beforeload
12925     * Fires before this node is loaded, return false to cancel
12926     * @param {Node} this This node
12927     */
12928     this.addEvents({'beforeload':true, 'load': true});
12929     /**
12930     * @event load
12931     * Fires when this node is loaded
12932     * @param {Node} this This node
12933     */
12934     /**
12935      * The loader used by this node (defaults to using the tree's defined loader)
12936      * @type TreeLoader
12937      * @property loader
12938      */
12939 };
12940 Roo.extend(Roo.tree.AsyncTreeNode, Roo.tree.TreeNode, {
12941     expand : function(deep, anim, callback){
12942         if(this.loading){ // if an async load is already running, waiting til it's done
12943             var timer;
12944             var f = function(){
12945                 if(!this.loading){ // done loading
12946                     clearInterval(timer);
12947                     this.expand(deep, anim, callback);
12948                 }
12949             }.createDelegate(this);
12950             timer = setInterval(f, 200);
12951             return;
12952         }
12953         if(!this.loaded){
12954             if(this.fireEvent("beforeload", this) === false){
12955                 return;
12956             }
12957             this.loading = true;
12958             this.ui.beforeLoad(this);
12959             var loader = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
12960             if(loader){
12961                 loader.load(this, this.loadComplete.createDelegate(this, [deep, anim, callback]));
12962                 return;
12963             }
12964         }
12965         Roo.tree.AsyncTreeNode.superclass.expand.call(this, deep, anim, callback);
12966     },
12967     
12968     /**
12969      * Returns true if this node is currently loading
12970      * @return {Boolean}
12971      */
12972     isLoading : function(){
12973         return this.loading;  
12974     },
12975     
12976     loadComplete : function(deep, anim, callback){
12977         this.loading = false;
12978         this.loaded = true;
12979         this.ui.afterLoad(this);
12980         this.fireEvent("load", this);
12981         this.expand(deep, anim, callback);
12982     },
12983     
12984     /**
12985      * Returns true if this node has been loaded
12986      * @return {Boolean}
12987      */
12988     isLoaded : function(){
12989         return this.loaded;
12990     },
12991     
12992     hasChildNodes : function(){
12993         if(!this.isLeaf() && !this.loaded){
12994             return true;
12995         }else{
12996             return Roo.tree.AsyncTreeNode.superclass.hasChildNodes.call(this);
12997         }
12998     },
12999
13000     /**
13001      * Trigger a reload for this node
13002      * @param {Function} callback
13003      */
13004     reload : function(callback){
13005         this.collapse(false, false);
13006         while(this.firstChild){
13007             this.removeChild(this.firstChild);
13008         }
13009         this.childrenRendered = false;
13010         this.loaded = false;
13011         if(this.isHiddenRoot()){
13012             this.expanded = false;
13013         }
13014         this.expand(false, false, callback);
13015     }
13016 });/*
13017  * Based on:
13018  * Ext JS Library 1.1.1
13019  * Copyright(c) 2006-2007, Ext JS, LLC.
13020  *
13021  * Originally Released Under LGPL - original licence link has changed is not relivant.
13022  *
13023  * Fork - LGPL
13024  * <script type="text/javascript">
13025  */
13026  
13027 /**
13028  * @class Roo.tree.TreeNodeUI
13029  * @constructor
13030  * @param {Object} node The node to render
13031  * The TreeNode UI implementation is separate from the
13032  * tree implementation. Unless you are customizing the tree UI,
13033  * you should never have to use this directly.
13034  */
13035 Roo.tree.TreeNodeUI = function(node){
13036     this.node = node;
13037     this.rendered = false;
13038     this.animating = false;
13039     this.emptyIcon = Roo.BLANK_IMAGE_URL;
13040 };
13041
13042 Roo.tree.TreeNodeUI.prototype = {
13043     removeChild : function(node){
13044         if(this.rendered){
13045             this.ctNode.removeChild(node.ui.getEl());
13046         }
13047     },
13048
13049     beforeLoad : function(){
13050          this.addClass("x-tree-node-loading");
13051     },
13052
13053     afterLoad : function(){
13054          this.removeClass("x-tree-node-loading");
13055     },
13056
13057     onTextChange : function(node, text, oldText){
13058         if(this.rendered){
13059             this.textNode.innerHTML = text;
13060         }
13061     },
13062
13063     onDisableChange : function(node, state){
13064         this.disabled = state;
13065         if(state){
13066             this.addClass("x-tree-node-disabled");
13067         }else{
13068             this.removeClass("x-tree-node-disabled");
13069         }
13070     },
13071
13072     onSelectedChange : function(state){
13073         if(state){
13074             this.focus();
13075             this.addClass("x-tree-selected");
13076         }else{
13077             //this.blur();
13078             this.removeClass("x-tree-selected");
13079         }
13080     },
13081
13082     onMove : function(tree, node, oldParent, newParent, index, refNode){
13083         this.childIndent = null;
13084         if(this.rendered){
13085             var targetNode = newParent.ui.getContainer();
13086             if(!targetNode){//target not rendered
13087                 this.holder = document.createElement("div");
13088                 this.holder.appendChild(this.wrap);
13089                 return;
13090             }
13091             var insertBefore = refNode ? refNode.ui.getEl() : null;
13092             if(insertBefore){
13093                 targetNode.insertBefore(this.wrap, insertBefore);
13094             }else{
13095                 targetNode.appendChild(this.wrap);
13096             }
13097             this.node.renderIndent(true);
13098         }
13099     },
13100
13101     addClass : function(cls){
13102         if(this.elNode){
13103             Roo.fly(this.elNode).addClass(cls);
13104         }
13105     },
13106
13107     removeClass : function(cls){
13108         if(this.elNode){
13109             Roo.fly(this.elNode).removeClass(cls);
13110         }
13111     },
13112
13113     remove : function(){
13114         if(this.rendered){
13115             this.holder = document.createElement("div");
13116             this.holder.appendChild(this.wrap);
13117         }
13118     },
13119
13120     fireEvent : function(){
13121         return this.node.fireEvent.apply(this.node, arguments);
13122     },
13123
13124     initEvents : function(){
13125         this.node.on("move", this.onMove, this);
13126         var E = Roo.EventManager;
13127         var a = this.anchor;
13128
13129         var el = Roo.fly(a, '_treeui');
13130
13131         if(Roo.isOpera){ // opera render bug ignores the CSS
13132             el.setStyle("text-decoration", "none");
13133         }
13134
13135         el.on("click", this.onClick, this);
13136         el.on("dblclick", this.onDblClick, this);
13137
13138         if(this.checkbox){
13139             Roo.EventManager.on(this.checkbox,
13140                     Roo.isIE ? 'click' : 'change', this.onCheckChange, this);
13141         }
13142
13143         el.on("contextmenu", this.onContextMenu, this);
13144
13145         var icon = Roo.fly(this.iconNode);
13146         icon.on("click", this.onClick, this);
13147         icon.on("dblclick", this.onDblClick, this);
13148         icon.on("contextmenu", this.onContextMenu, this);
13149         E.on(this.ecNode, "click", this.ecClick, this, true);
13150
13151         if(this.node.disabled){
13152             this.addClass("x-tree-node-disabled");
13153         }
13154         if(this.node.hidden){
13155             this.addClass("x-tree-node-disabled");
13156         }
13157         var ot = this.node.getOwnerTree();
13158         var dd = ot ? (ot.enableDD || ot.enableDrag || ot.enableDrop) : false;
13159         if(dd && (!this.node.isRoot || ot.rootVisible)){
13160             Roo.dd.Registry.register(this.elNode, {
13161                 node: this.node,
13162                 handles: this.getDDHandles(),
13163                 isHandle: false
13164             });
13165         }
13166     },
13167
13168     getDDHandles : function(){
13169         return [this.iconNode, this.textNode];
13170     },
13171
13172     hide : function(){
13173         if(this.rendered){
13174             this.wrap.style.display = "none";
13175         }
13176     },
13177
13178     show : function(){
13179         if(this.rendered){
13180             this.wrap.style.display = "";
13181         }
13182     },
13183
13184     onContextMenu : function(e){
13185         if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
13186             e.preventDefault();
13187             this.focus();
13188             this.fireEvent("contextmenu", this.node, e);
13189         }
13190     },
13191
13192     onClick : function(e){
13193         if(this.dropping){
13194             e.stopEvent();
13195             return;
13196         }
13197         if(this.fireEvent("beforeclick", this.node, e) !== false){
13198             if(!this.disabled && this.node.attributes.href){
13199                 this.fireEvent("click", this.node, e);
13200                 return;
13201             }
13202             e.preventDefault();
13203             if(this.disabled){
13204                 return;
13205             }
13206
13207             if(this.node.attributes.singleClickExpand && !this.animating && this.node.hasChildNodes()){
13208                 this.node.toggle();
13209             }
13210
13211             this.fireEvent("click", this.node, e);
13212         }else{
13213             e.stopEvent();
13214         }
13215     },
13216
13217     onDblClick : function(e){
13218         e.preventDefault();
13219         if(this.disabled){
13220             return;
13221         }
13222         if(this.checkbox){
13223             this.toggleCheck();
13224         }
13225         if(!this.animating && this.node.hasChildNodes()){
13226             this.node.toggle();
13227         }
13228         this.fireEvent("dblclick", this.node, e);
13229     },
13230
13231     onCheckChange : function(){
13232         var checked = this.checkbox.checked;
13233         this.node.attributes.checked = checked;
13234         this.fireEvent('checkchange', this.node, checked);
13235     },
13236
13237     ecClick : function(e){
13238         if(!this.animating && this.node.hasChildNodes()){
13239             this.node.toggle();
13240         }
13241     },
13242
13243     startDrop : function(){
13244         this.dropping = true;
13245     },
13246
13247     // delayed drop so the click event doesn't get fired on a drop
13248     endDrop : function(){
13249        setTimeout(function(){
13250            this.dropping = false;
13251        }.createDelegate(this), 50);
13252     },
13253
13254     expand : function(){
13255         this.updateExpandIcon();
13256         this.ctNode.style.display = "";
13257     },
13258
13259     focus : function(){
13260         if(!this.node.preventHScroll){
13261             try{this.anchor.focus();
13262             }catch(e){}
13263         }else if(!Roo.isIE){
13264             try{
13265                 var noscroll = this.node.getOwnerTree().getTreeEl().dom;
13266                 var l = noscroll.scrollLeft;
13267                 this.anchor.focus();
13268                 noscroll.scrollLeft = l;
13269             }catch(e){}
13270         }
13271     },
13272
13273     toggleCheck : function(value){
13274         var cb = this.checkbox;
13275         if(cb){
13276             cb.checked = (value === undefined ? !cb.checked : value);
13277         }
13278     },
13279
13280     blur : function(){
13281         try{
13282             this.anchor.blur();
13283         }catch(e){}
13284     },
13285
13286     animExpand : function(callback){
13287         var ct = Roo.get(this.ctNode);
13288         ct.stopFx();
13289         if(!this.node.hasChildNodes()){
13290             this.updateExpandIcon();
13291             this.ctNode.style.display = "";
13292             Roo.callback(callback);
13293             return;
13294         }
13295         this.animating = true;
13296         this.updateExpandIcon();
13297
13298         ct.slideIn('t', {
13299            callback : function(){
13300                this.animating = false;
13301                Roo.callback(callback);
13302             },
13303             scope: this,
13304             duration: this.node.ownerTree.duration || .25
13305         });
13306     },
13307
13308     highlight : function(){
13309         var tree = this.node.getOwnerTree();
13310         Roo.fly(this.wrap).highlight(
13311             tree.hlColor || "C3DAF9",
13312             {endColor: tree.hlBaseColor}
13313         );
13314     },
13315
13316     collapse : function(){
13317         this.updateExpandIcon();
13318         this.ctNode.style.display = "none";
13319     },
13320
13321     animCollapse : function(callback){
13322         var ct = Roo.get(this.ctNode);
13323         ct.enableDisplayMode('block');
13324         ct.stopFx();
13325
13326         this.animating = true;
13327         this.updateExpandIcon();
13328
13329         ct.slideOut('t', {
13330             callback : function(){
13331                this.animating = false;
13332                Roo.callback(callback);
13333             },
13334             scope: this,
13335             duration: this.node.ownerTree.duration || .25
13336         });
13337     },
13338
13339     getContainer : function(){
13340         return this.ctNode;
13341     },
13342
13343     getEl : function(){
13344         return this.wrap;
13345     },
13346
13347     appendDDGhost : function(ghostNode){
13348         ghostNode.appendChild(this.elNode.cloneNode(true));
13349     },
13350
13351     getDDRepairXY : function(){
13352         return Roo.lib.Dom.getXY(this.iconNode);
13353     },
13354
13355     onRender : function(){
13356         this.render();
13357     },
13358
13359     render : function(bulkRender){
13360         var n = this.node, a = n.attributes;
13361         var targetNode = n.parentNode ?
13362               n.parentNode.ui.getContainer() : n.ownerTree.innerCt.dom;
13363
13364         if(!this.rendered){
13365             this.rendered = true;
13366
13367             this.renderElements(n, a, targetNode, bulkRender);
13368
13369             if(a.qtip){
13370                if(this.textNode.setAttributeNS){
13371                    this.textNode.setAttributeNS("ext", "qtip", a.qtip);
13372                    if(a.qtipTitle){
13373                        this.textNode.setAttributeNS("ext", "qtitle", a.qtipTitle);
13374                    }
13375                }else{
13376                    this.textNode.setAttribute("ext:qtip", a.qtip);
13377                    if(a.qtipTitle){
13378                        this.textNode.setAttribute("ext:qtitle", a.qtipTitle);
13379                    }
13380                }
13381             }else if(a.qtipCfg){
13382                 a.qtipCfg.target = Roo.id(this.textNode);
13383                 Roo.QuickTips.register(a.qtipCfg);
13384             }
13385             this.initEvents();
13386             if(!this.node.expanded){
13387                 this.updateExpandIcon();
13388             }
13389         }else{
13390             if(bulkRender === true) {
13391                 targetNode.appendChild(this.wrap);
13392             }
13393         }
13394     },
13395
13396     renderElements : function(n, a, targetNode, bulkRender)
13397     {
13398         // add some indent caching, this helps performance when rendering a large tree
13399         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
13400         var t = n.getOwnerTree();
13401         var txt = t && t.renderer ? t.renderer(n.attributes) : Roo.util.Format.htmlEncode(n.text);
13402         if (typeof(n.attributes.html) != 'undefined') {
13403             txt = n.attributes.html;
13404         }
13405         var tip = t && t.rendererTip ? t.rendererTip(n.attributes) : txt;
13406         var cb = typeof a.checked == 'boolean';
13407         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
13408         var buf = ['<li class="x-tree-node"><div class="x-tree-node-el ', a.cls,'">',
13409             '<span class="x-tree-node-indent">',this.indentMarkup,"</span>",
13410             '<img src="', this.emptyIcon, '" class="x-tree-ec-icon" />',
13411             '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',(a.icon ? " x-tree-node-inline-icon" : ""),(a.iconCls ? " "+a.iconCls : ""),'" unselectable="on" />',
13412             cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + (a.checked ? 'checked="checked" />' : ' />')) : '',
13413             '<a hidefocus="on" href="',href,'" tabIndex="1" ',
13414              a.hrefTarget ? ' target="'+a.hrefTarget+'"' : "", 
13415                 '><span unselectable="on" qtip="' , tip ,'">',txt,"</span></a></div>",
13416             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
13417             "</li>"];
13418
13419         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
13420             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
13421                                 n.nextSibling.ui.getEl(), buf.join(""));
13422         }else{
13423             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
13424         }
13425
13426         this.elNode = this.wrap.childNodes[0];
13427         this.ctNode = this.wrap.childNodes[1];
13428         var cs = this.elNode.childNodes;
13429         this.indentNode = cs[0];
13430         this.ecNode = cs[1];
13431         this.iconNode = cs[2];
13432         var index = 3;
13433         if(cb){
13434             this.checkbox = cs[3];
13435             index++;
13436         }
13437         this.anchor = cs[index];
13438         this.textNode = cs[index].firstChild;
13439     },
13440
13441     getAnchor : function(){
13442         return this.anchor;
13443     },
13444
13445     getTextEl : function(){
13446         return this.textNode;
13447     },
13448
13449     getIconEl : function(){
13450         return this.iconNode;
13451     },
13452
13453     isChecked : function(){
13454         return this.checkbox ? this.checkbox.checked : false;
13455     },
13456
13457     updateExpandIcon : function(){
13458         if(this.rendered){
13459             var n = this.node, c1, c2;
13460             var cls = n.isLast() ? "x-tree-elbow-end" : "x-tree-elbow";
13461             var hasChild = n.hasChildNodes();
13462             if(hasChild){
13463                 if(n.expanded){
13464                     cls += "-minus";
13465                     c1 = "x-tree-node-collapsed";
13466                     c2 = "x-tree-node-expanded";
13467                 }else{
13468                     cls += "-plus";
13469                     c1 = "x-tree-node-expanded";
13470                     c2 = "x-tree-node-collapsed";
13471                 }
13472                 if(this.wasLeaf){
13473                     this.removeClass("x-tree-node-leaf");
13474                     this.wasLeaf = false;
13475                 }
13476                 if(this.c1 != c1 || this.c2 != c2){
13477                     Roo.fly(this.elNode).replaceClass(c1, c2);
13478                     this.c1 = c1; this.c2 = c2;
13479                 }
13480             }else{
13481                 // this changes non-leafs into leafs if they have no children.
13482                 // it's not very rational behaviour..
13483                 
13484                 if(!this.wasLeaf && this.node.leaf){
13485                     Roo.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-leaf");
13486                     delete this.c1;
13487                     delete this.c2;
13488                     this.wasLeaf = true;
13489                 }
13490             }
13491             var ecc = "x-tree-ec-icon "+cls;
13492             if(this.ecc != ecc){
13493                 this.ecNode.className = ecc;
13494                 this.ecc = ecc;
13495             }
13496         }
13497     },
13498
13499     getChildIndent : function(){
13500         if(!this.childIndent){
13501             var buf = [];
13502             var p = this.node;
13503             while(p){
13504                 if(!p.isRoot || (p.isRoot && p.ownerTree.rootVisible)){
13505                     if(!p.isLast()) {
13506                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-elbow-line" />');
13507                     } else {
13508                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-icon" />');
13509                     }
13510                 }
13511                 p = p.parentNode;
13512             }
13513             this.childIndent = buf.join("");
13514         }
13515         return this.childIndent;
13516     },
13517
13518     renderIndent : function(){
13519         if(this.rendered){
13520             var indent = "";
13521             var p = this.node.parentNode;
13522             if(p){
13523                 indent = p.ui.getChildIndent();
13524             }
13525             if(this.indentMarkup != indent){ // don't rerender if not required
13526                 this.indentNode.innerHTML = indent;
13527                 this.indentMarkup = indent;
13528             }
13529             this.updateExpandIcon();
13530         }
13531     }
13532 };
13533
13534 Roo.tree.RootTreeNodeUI = function(){
13535     Roo.tree.RootTreeNodeUI.superclass.constructor.apply(this, arguments);
13536 };
13537 Roo.extend(Roo.tree.RootTreeNodeUI, Roo.tree.TreeNodeUI, {
13538     render : function(){
13539         if(!this.rendered){
13540             var targetNode = this.node.ownerTree.innerCt.dom;
13541             this.node.expanded = true;
13542             targetNode.innerHTML = '<div class="x-tree-root-node"></div>';
13543             this.wrap = this.ctNode = targetNode.firstChild;
13544         }
13545     },
13546     collapse : function(){
13547     },
13548     expand : function(){
13549     }
13550 });/*
13551  * Based on:
13552  * Ext JS Library 1.1.1
13553  * Copyright(c) 2006-2007, Ext JS, LLC.
13554  *
13555  * Originally Released Under LGPL - original licence link has changed is not relivant.
13556  *
13557  * Fork - LGPL
13558  * <script type="text/javascript">
13559  */
13560 /**
13561  * @class Roo.tree.TreeLoader
13562  * @extends Roo.util.Observable
13563  * A TreeLoader provides for lazy loading of an {@link Roo.tree.TreeNode}'s child
13564  * nodes from a specified URL. The response must be a javascript Array definition
13565  * who's elements are node definition objects. eg:
13566  * <pre><code>
13567 {  success : true,
13568    data :      [
13569    
13570     { 'id': 1, 'text': 'A folder Node', 'leaf': false },
13571     { 'id': 2, 'text': 'A leaf Node', 'leaf': true }
13572     ]
13573 }
13574
13575
13576 </code></pre>
13577  * <br><br>
13578  * The old style respose with just an array is still supported, but not recommended.
13579  * <br><br>
13580  *
13581  * A server request is sent, and child nodes are loaded only when a node is expanded.
13582  * The loading node's id is passed to the server under the parameter name "node" to
13583  * enable the server to produce the correct child nodes.
13584  * <br><br>
13585  * To pass extra parameters, an event handler may be attached to the "beforeload"
13586  * event, and the parameters specified in the TreeLoader's baseParams property:
13587  * <pre><code>
13588     myTreeLoader.on("beforeload", function(treeLoader, node) {
13589         this.baseParams.category = node.attributes.category;
13590     }, this);
13591     
13592 </code></pre>
13593  *
13594  * This would pass an HTTP parameter called "category" to the server containing
13595  * the value of the Node's "category" attribute.
13596  * @constructor
13597  * Creates a new Treeloader.
13598  * @param {Object} config A config object containing config properties.
13599  */
13600 Roo.tree.TreeLoader = function(config){
13601     this.baseParams = {};
13602     this.requestMethod = "POST";
13603     Roo.apply(this, config);
13604
13605     this.addEvents({
13606     
13607         /**
13608          * @event beforeload
13609          * Fires before a network request is made to retrieve the Json text which specifies a node's children.
13610          * @param {Object} This TreeLoader object.
13611          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
13612          * @param {Object} callback The callback function specified in the {@link #load} call.
13613          */
13614         beforeload : true,
13615         /**
13616          * @event load
13617          * Fires when the node has been successfuly loaded.
13618          * @param {Object} This TreeLoader object.
13619          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
13620          * @param {Object} response The response object containing the data from the server.
13621          */
13622         load : true,
13623         /**
13624          * @event loadexception
13625          * Fires if the network request failed.
13626          * @param {Object} This TreeLoader object.
13627          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
13628          * @param {Object} response The response object containing the data from the server.
13629          */
13630         loadexception : true,
13631         /**
13632          * @event create
13633          * Fires before a node is created, enabling you to return custom Node types 
13634          * @param {Object} This TreeLoader object.
13635          * @param {Object} attr - the data returned from the AJAX call (modify it to suit)
13636          */
13637         create : true
13638     });
13639
13640     Roo.tree.TreeLoader.superclass.constructor.call(this);
13641 };
13642
13643 Roo.extend(Roo.tree.TreeLoader, Roo.util.Observable, {
13644     /**
13645     * @cfg {String} dataUrl The URL from which to request a Json string which
13646     * specifies an array of node definition object representing the child nodes
13647     * to be loaded.
13648     */
13649     /**
13650     * @cfg {String} requestMethod either GET or POST
13651     * defaults to POST (due to BC)
13652     * to be loaded.
13653     */
13654     /**
13655     * @cfg {Object} baseParams (optional) An object containing properties which
13656     * specify HTTP parameters to be passed to each request for child nodes.
13657     */
13658     /**
13659     * @cfg {Object} baseAttrs (optional) An object containing attributes to be added to all nodes
13660     * created by this loader. If the attributes sent by the server have an attribute in this object,
13661     * they take priority.
13662     */
13663     /**
13664     * @cfg {Object} uiProviders (optional) An object containing properties which
13665     * 
13666     * DEPRECATED - use 'create' event handler to modify attributes - which affect creation.
13667     * specify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional
13668     * <i>uiProvider</i> attribute of a returned child node is a string rather
13669     * than a reference to a TreeNodeUI implementation, this that string value
13670     * is used as a property name in the uiProviders object. You can define the provider named
13671     * 'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)
13672     */
13673     uiProviders : {},
13674
13675     /**
13676     * @cfg {Boolean} clearOnLoad (optional) Default to true. Remove previously existing
13677     * child nodes before loading.
13678     */
13679     clearOnLoad : true,
13680
13681     /**
13682     * @cfg {String} root (optional) Default to false. Use this to read data from an object 
13683     * property on loading, rather than expecting an array. (eg. more compatible to a standard
13684     * Grid query { data : [ .....] }
13685     */
13686     
13687     root : false,
13688      /**
13689     * @cfg {String} queryParam (optional) 
13690     * Name of the query as it will be passed on the querystring (defaults to 'node')
13691     * eg. the request will be ?node=[id]
13692     */
13693     
13694     
13695     queryParam: false,
13696     
13697     /**
13698      * Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.
13699      * This is called automatically when a node is expanded, but may be used to reload
13700      * a node (or append new children if the {@link #clearOnLoad} option is false.)
13701      * @param {Roo.tree.TreeNode} node
13702      * @param {Function} callback
13703      */
13704     load : function(node, callback){
13705         if(this.clearOnLoad){
13706             while(node.firstChild){
13707                 node.removeChild(node.firstChild);
13708             }
13709         }
13710         if(node.attributes.children){ // preloaded json children
13711             var cs = node.attributes.children;
13712             for(var i = 0, len = cs.length; i < len; i++){
13713                 node.appendChild(this.createNode(cs[i]));
13714             }
13715             if(typeof callback == "function"){
13716                 callback();
13717             }
13718         }else if(this.dataUrl){
13719             this.requestData(node, callback);
13720         }
13721     },
13722
13723     getParams: function(node){
13724         var buf = [], bp = this.baseParams;
13725         for(var key in bp){
13726             if(typeof bp[key] != "function"){
13727                 buf.push(encodeURIComponent(key), "=", encodeURIComponent(bp[key]), "&");
13728             }
13729         }
13730         var n = this.queryParam === false ? 'node' : this.queryParam;
13731         buf.push(n + "=", encodeURIComponent(node.id));
13732         return buf.join("");
13733     },
13734
13735     requestData : function(node, callback){
13736         if(this.fireEvent("beforeload", this, node, callback) !== false){
13737             this.transId = Roo.Ajax.request({
13738                 method:this.requestMethod,
13739                 url: this.dataUrl||this.url,
13740                 success: this.handleResponse,
13741                 failure: this.handleFailure,
13742                 scope: this,
13743                 argument: {callback: callback, node: node},
13744                 params: this.getParams(node)
13745             });
13746         }else{
13747             // if the load is cancelled, make sure we notify
13748             // the node that we are done
13749             if(typeof callback == "function"){
13750                 callback();
13751             }
13752         }
13753     },
13754
13755     isLoading : function(){
13756         return this.transId ? true : false;
13757     },
13758
13759     abort : function(){
13760         if(this.isLoading()){
13761             Roo.Ajax.abort(this.transId);
13762         }
13763     },
13764
13765     // private
13766     createNode : function(attr)
13767     {
13768         // apply baseAttrs, nice idea Corey!
13769         if(this.baseAttrs){
13770             Roo.applyIf(attr, this.baseAttrs);
13771         }
13772         if(this.applyLoader !== false){
13773             attr.loader = this;
13774         }
13775         // uiProvider = depreciated..
13776         
13777         if(typeof(attr.uiProvider) == 'string'){
13778            attr.uiProvider = this.uiProviders[attr.uiProvider] || 
13779                 /**  eval:var:attr */ eval(attr.uiProvider);
13780         }
13781         if(typeof(this.uiProviders['default']) != 'undefined') {
13782             attr.uiProvider = this.uiProviders['default'];
13783         }
13784         
13785         this.fireEvent('create', this, attr);
13786         
13787         attr.leaf  = typeof(attr.leaf) == 'string' ? attr.leaf * 1 : attr.leaf;
13788         return(attr.leaf ?
13789                         new Roo.tree.TreeNode(attr) :
13790                         new Roo.tree.AsyncTreeNode(attr));
13791     },
13792
13793     processResponse : function(response, node, callback)
13794     {
13795         var json = response.responseText;
13796         try {
13797             
13798             var o = Roo.decode(json);
13799             
13800             if (this.root === false && typeof(o.success) != undefined) {
13801                 this.root = 'data'; // the default behaviour for list like data..
13802                 }
13803                 
13804             if (this.root !== false &&  !o.success) {
13805                 // it's a failure condition.
13806                 var a = response.argument;
13807                 this.fireEvent("loadexception", this, a.node, response);
13808                 Roo.log("Load failed - should have a handler really");
13809                 return;
13810             }
13811             
13812             
13813             
13814             if (this.root !== false) {
13815                  o = o[this.root];
13816             }
13817             
13818             for(var i = 0, len = o.length; i < len; i++){
13819                 var n = this.createNode(o[i]);
13820                 if(n){
13821                     node.appendChild(n);
13822                 }
13823             }
13824             if(typeof callback == "function"){
13825                 callback(this, node);
13826             }
13827         }catch(e){
13828             this.handleFailure(response);
13829         }
13830     },
13831
13832     handleResponse : function(response){
13833         this.transId = false;
13834         var a = response.argument;
13835         this.processResponse(response, a.node, a.callback);
13836         this.fireEvent("load", this, a.node, response);
13837     },
13838
13839     handleFailure : function(response)
13840     {
13841         // should handle failure better..
13842         this.transId = false;
13843         var a = response.argument;
13844         this.fireEvent("loadexception", this, a.node, response);
13845         if(typeof a.callback == "function"){
13846             a.callback(this, a.node);
13847         }
13848     }
13849 });/*
13850  * Based on:
13851  * Ext JS Library 1.1.1
13852  * Copyright(c) 2006-2007, Ext JS, LLC.
13853  *
13854  * Originally Released Under LGPL - original licence link has changed is not relivant.
13855  *
13856  * Fork - LGPL
13857  * <script type="text/javascript">
13858  */
13859
13860 /**
13861 * @class Roo.tree.TreeFilter
13862 * Note this class is experimental and doesn't update the indent (lines) or expand collapse icons of the nodes
13863 * @param {TreePanel} tree
13864 * @param {Object} config (optional)
13865  */
13866 Roo.tree.TreeFilter = function(tree, config){
13867     this.tree = tree;
13868     this.filtered = {};
13869     Roo.apply(this, config);
13870 };
13871
13872 Roo.tree.TreeFilter.prototype = {
13873     clearBlank:false,
13874     reverse:false,
13875     autoClear:false,
13876     remove:false,
13877
13878      /**
13879      * Filter the data by a specific attribute.
13880      * @param {String/RegExp} value Either string that the attribute value
13881      * should start with or a RegExp to test against the attribute
13882      * @param {String} attr (optional) The attribute passed in your node's attributes collection. Defaults to "text".
13883      * @param {TreeNode} startNode (optional) The node to start the filter at.
13884      */
13885     filter : function(value, attr, startNode){
13886         attr = attr || "text";
13887         var f;
13888         if(typeof value == "string"){
13889             var vlen = value.length;
13890             // auto clear empty filter
13891             if(vlen == 0 && this.clearBlank){
13892                 this.clear();
13893                 return;
13894             }
13895             value = value.toLowerCase();
13896             f = function(n){
13897                 return n.attributes[attr].substr(0, vlen).toLowerCase() == value;
13898             };
13899         }else if(value.exec){ // regex?
13900             f = function(n){
13901                 return value.test(n.attributes[attr]);
13902             };
13903         }else{
13904             throw 'Illegal filter type, must be string or regex';
13905         }
13906         this.filterBy(f, null, startNode);
13907         },
13908
13909     /**
13910      * Filter by a function. The passed function will be called with each
13911      * node in the tree (or from the startNode). If the function returns true, the node is kept
13912      * otherwise it is filtered. If a node is filtered, its children are also filtered.
13913      * @param {Function} fn The filter function
13914      * @param {Object} scope (optional) The scope of the function (defaults to the current node)
13915      */
13916     filterBy : function(fn, scope, startNode){
13917         startNode = startNode || this.tree.root;
13918         if(this.autoClear){
13919             this.clear();
13920         }
13921         var af = this.filtered, rv = this.reverse;
13922         var f = function(n){
13923             if(n == startNode){
13924                 return true;
13925             }
13926             if(af[n.id]){
13927                 return false;
13928             }
13929             var m = fn.call(scope || n, n);
13930             if(!m || rv){
13931                 af[n.id] = n;
13932                 n.ui.hide();
13933                 return false;
13934             }
13935             return true;
13936         };
13937         startNode.cascade(f);
13938         if(this.remove){
13939            for(var id in af){
13940                if(typeof id != "function"){
13941                    var n = af[id];
13942                    if(n && n.parentNode){
13943                        n.parentNode.removeChild(n);
13944                    }
13945                }
13946            }
13947         }
13948     },
13949
13950     /**
13951      * Clears the current filter. Note: with the "remove" option
13952      * set a filter cannot be cleared.
13953      */
13954     clear : function(){
13955         var t = this.tree;
13956         var af = this.filtered;
13957         for(var id in af){
13958             if(typeof id != "function"){
13959                 var n = af[id];
13960                 if(n){
13961                     n.ui.show();
13962                 }
13963             }
13964         }
13965         this.filtered = {};
13966     }
13967 };
13968 /*
13969  * Based on:
13970  * Ext JS Library 1.1.1
13971  * Copyright(c) 2006-2007, Ext JS, LLC.
13972  *
13973  * Originally Released Under LGPL - original licence link has changed is not relivant.
13974  *
13975  * Fork - LGPL
13976  * <script type="text/javascript">
13977  */
13978  
13979
13980 /**
13981  * @class Roo.tree.TreeSorter
13982  * Provides sorting of nodes in a TreePanel
13983  * 
13984  * @cfg {Boolean} folderSort True to sort leaf nodes under non leaf nodes
13985  * @cfg {String} property The named attribute on the node to sort by (defaults to text)
13986  * @cfg {String} dir The direction to sort (asc or desc) (defaults to asc)
13987  * @cfg {String} leafAttr The attribute used to determine leaf nodes in folder sort (defaults to "leaf")
13988  * @cfg {Boolean} caseSensitive true for case sensitive sort (defaults to false)
13989  * @cfg {Function} sortType A custom "casting" function used to convert node values before sorting
13990  * @constructor
13991  * @param {TreePanel} tree
13992  * @param {Object} config
13993  */
13994 Roo.tree.TreeSorter = function(tree, config){
13995     Roo.apply(this, config);
13996     tree.on("beforechildrenrendered", this.doSort, this);
13997     tree.on("append", this.updateSort, this);
13998     tree.on("insert", this.updateSort, this);
13999     
14000     var dsc = this.dir && this.dir.toLowerCase() == "desc";
14001     var p = this.property || "text";
14002     var sortType = this.sortType;
14003     var fs = this.folderSort;
14004     var cs = this.caseSensitive === true;
14005     var leafAttr = this.leafAttr || 'leaf';
14006
14007     this.sortFn = function(n1, n2){
14008         if(fs){
14009             if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){
14010                 return 1;
14011             }
14012             if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){
14013                 return -1;
14014             }
14015         }
14016         var v1 = sortType ? sortType(n1) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());
14017         var v2 = sortType ? sortType(n2) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());
14018         if(v1 < v2){
14019                         return dsc ? +1 : -1;
14020                 }else if(v1 > v2){
14021                         return dsc ? -1 : +1;
14022         }else{
14023                 return 0;
14024         }
14025     };
14026 };
14027
14028 Roo.tree.TreeSorter.prototype = {
14029     doSort : function(node){
14030         node.sort(this.sortFn);
14031     },
14032     
14033     compareNodes : function(n1, n2){
14034         return (n1.text.toUpperCase() > n2.text.toUpperCase() ? 1 : -1);
14035     },
14036     
14037     updateSort : function(tree, node){
14038         if(node.childrenRendered){
14039             this.doSort.defer(1, this, [node]);
14040         }
14041     }
14042 };/*
14043  * Based on:
14044  * Ext JS Library 1.1.1
14045  * Copyright(c) 2006-2007, Ext JS, LLC.
14046  *
14047  * Originally Released Under LGPL - original licence link has changed is not relivant.
14048  *
14049  * Fork - LGPL
14050  * <script type="text/javascript">
14051  */
14052
14053 if(Roo.dd.DropZone){
14054     
14055 Roo.tree.TreeDropZone = function(tree, config){
14056     this.allowParentInsert = false;
14057     this.allowContainerDrop = false;
14058     this.appendOnly = false;
14059     Roo.tree.TreeDropZone.superclass.constructor.call(this, tree.innerCt, config);
14060     this.tree = tree;
14061     this.lastInsertClass = "x-tree-no-status";
14062     this.dragOverData = {};
14063 };
14064
14065 Roo.extend(Roo.tree.TreeDropZone, Roo.dd.DropZone, {
14066     ddGroup : "TreeDD",
14067     scroll:  true,
14068     
14069     expandDelay : 1000,
14070     
14071     expandNode : function(node){
14072         if(node.hasChildNodes() && !node.isExpanded()){
14073             node.expand(false, null, this.triggerCacheRefresh.createDelegate(this));
14074         }
14075     },
14076     
14077     queueExpand : function(node){
14078         this.expandProcId = this.expandNode.defer(this.expandDelay, this, [node]);
14079     },
14080     
14081     cancelExpand : function(){
14082         if(this.expandProcId){
14083             clearTimeout(this.expandProcId);
14084             this.expandProcId = false;
14085         }
14086     },
14087     
14088     isValidDropPoint : function(n, pt, dd, e, data){
14089         if(!n || !data){ return false; }
14090         var targetNode = n.node;
14091         var dropNode = data.node;
14092         // default drop rules
14093         if(!(targetNode && targetNode.isTarget && pt)){
14094             return false;
14095         }
14096         if(pt == "append" && targetNode.allowChildren === false){
14097             return false;
14098         }
14099         if((pt == "above" || pt == "below") && (targetNode.parentNode && targetNode.parentNode.allowChildren === false)){
14100             return false;
14101         }
14102         if(dropNode && (targetNode == dropNode || dropNode.contains(targetNode))){
14103             return false;
14104         }
14105         // reuse the object
14106         var overEvent = this.dragOverData;
14107         overEvent.tree = this.tree;
14108         overEvent.target = targetNode;
14109         overEvent.data = data;
14110         overEvent.point = pt;
14111         overEvent.source = dd;
14112         overEvent.rawEvent = e;
14113         overEvent.dropNode = dropNode;
14114         overEvent.cancel = false;  
14115         var result = this.tree.fireEvent("nodedragover", overEvent);
14116         return overEvent.cancel === false && result !== false;
14117     },
14118     
14119     getDropPoint : function(e, n, dd)
14120     {
14121         var tn = n.node;
14122         if(tn.isRoot){
14123             return tn.allowChildren !== false ? "append" : false; // always append for root
14124         }
14125         var dragEl = n.ddel;
14126         var t = Roo.lib.Dom.getY(dragEl), b = t + dragEl.offsetHeight;
14127         var y = Roo.lib.Event.getPageY(e);
14128         //var noAppend = tn.allowChildren === false || tn.isLeaf();
14129         
14130         // we may drop nodes anywhere, as long as allowChildren has not been set to false..
14131         var noAppend = tn.allowChildren === false;
14132         if(this.appendOnly || tn.parentNode.allowChildren === false){
14133             return noAppend ? false : "append";
14134         }
14135         var noBelow = false;
14136         if(!this.allowParentInsert){
14137             noBelow = tn.hasChildNodes() && tn.isExpanded();
14138         }
14139         var q = (b - t) / (noAppend ? 2 : 3);
14140         if(y >= t && y < (t + q)){
14141             return "above";
14142         }else if(!noBelow && (noAppend || y >= b-q && y <= b)){
14143             return "below";
14144         }else{
14145             return "append";
14146         }
14147     },
14148     
14149     onNodeEnter : function(n, dd, e, data)
14150     {
14151         this.cancelExpand();
14152     },
14153     
14154     onNodeOver : function(n, dd, e, data)
14155     {
14156        
14157         var pt = this.getDropPoint(e, n, dd);
14158         var node = n.node;
14159         
14160         // auto node expand check
14161         if(!this.expandProcId && pt == "append" && node.hasChildNodes() && !n.node.isExpanded()){
14162             this.queueExpand(node);
14163         }else if(pt != "append"){
14164             this.cancelExpand();
14165         }
14166         
14167         // set the insert point style on the target node
14168         var returnCls = this.dropNotAllowed;
14169         if(this.isValidDropPoint(n, pt, dd, e, data)){
14170            if(pt){
14171                var el = n.ddel;
14172                var cls;
14173                if(pt == "above"){
14174                    returnCls = n.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
14175                    cls = "x-tree-drag-insert-above";
14176                }else if(pt == "below"){
14177                    returnCls = n.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
14178                    cls = "x-tree-drag-insert-below";
14179                }else{
14180                    returnCls = "x-tree-drop-ok-append";
14181                    cls = "x-tree-drag-append";
14182                }
14183                if(this.lastInsertClass != cls){
14184                    Roo.fly(el).replaceClass(this.lastInsertClass, cls);
14185                    this.lastInsertClass = cls;
14186                }
14187            }
14188        }
14189        return returnCls;
14190     },
14191     
14192     onNodeOut : function(n, dd, e, data){
14193         
14194         this.cancelExpand();
14195         this.removeDropIndicators(n);
14196     },
14197     
14198     onNodeDrop : function(n, dd, e, data){
14199         var point = this.getDropPoint(e, n, dd);
14200         var targetNode = n.node;
14201         targetNode.ui.startDrop();
14202         if(!this.isValidDropPoint(n, point, dd, e, data)){
14203             targetNode.ui.endDrop();
14204             return false;
14205         }
14206         // first try to find the drop node
14207         var dropNode = data.node || (dd.getTreeNode ? dd.getTreeNode(data, targetNode, point, e) : null);
14208         var dropEvent = {
14209             tree : this.tree,
14210             target: targetNode,
14211             data: data,
14212             point: point,
14213             source: dd,
14214             rawEvent: e,
14215             dropNode: dropNode,
14216             cancel: !dropNode   
14217         };
14218         var retval = this.tree.fireEvent("beforenodedrop", dropEvent);
14219         if(retval === false || dropEvent.cancel === true || !dropEvent.dropNode){
14220             targetNode.ui.endDrop();
14221             return false;
14222         }
14223         // allow target changing
14224         targetNode = dropEvent.target;
14225         if(point == "append" && !targetNode.isExpanded()){
14226             targetNode.expand(false, null, function(){
14227                 this.completeDrop(dropEvent);
14228             }.createDelegate(this));
14229         }else{
14230             this.completeDrop(dropEvent);
14231         }
14232         return true;
14233     },
14234     
14235     completeDrop : function(de){
14236         var ns = de.dropNode, p = de.point, t = de.target;
14237         if(!(ns instanceof Array)){
14238             ns = [ns];
14239         }
14240         var n;
14241         for(var i = 0, len = ns.length; i < len; i++){
14242             n = ns[i];
14243             if(p == "above"){
14244                 t.parentNode.insertBefore(n, t);
14245             }else if(p == "below"){
14246                 t.parentNode.insertBefore(n, t.nextSibling);
14247             }else{
14248                 t.appendChild(n);
14249             }
14250         }
14251         n.ui.focus();
14252         if(this.tree.hlDrop){
14253             n.ui.highlight();
14254         }
14255         t.ui.endDrop();
14256         this.tree.fireEvent("nodedrop", de);
14257     },
14258     
14259     afterNodeMoved : function(dd, data, e, targetNode, dropNode){
14260         if(this.tree.hlDrop){
14261             dropNode.ui.focus();
14262             dropNode.ui.highlight();
14263         }
14264         this.tree.fireEvent("nodedrop", this.tree, targetNode, data, dd, e);
14265     },
14266     
14267     getTree : function(){
14268         return this.tree;
14269     },
14270     
14271     removeDropIndicators : function(n){
14272         if(n && n.ddel){
14273             var el = n.ddel;
14274             Roo.fly(el).removeClass([
14275                     "x-tree-drag-insert-above",
14276                     "x-tree-drag-insert-below",
14277                     "x-tree-drag-append"]);
14278             this.lastInsertClass = "_noclass";
14279         }
14280     },
14281     
14282     beforeDragDrop : function(target, e, id){
14283         this.cancelExpand();
14284         return true;
14285     },
14286     
14287     afterRepair : function(data){
14288         if(data && Roo.enableFx){
14289             data.node.ui.highlight();
14290         }
14291         this.hideProxy();
14292     } 
14293     
14294 });
14295
14296 }
14297 /*
14298  * Based on:
14299  * Ext JS Library 1.1.1
14300  * Copyright(c) 2006-2007, Ext JS, LLC.
14301  *
14302  * Originally Released Under LGPL - original licence link has changed is not relivant.
14303  *
14304  * Fork - LGPL
14305  * <script type="text/javascript">
14306  */
14307  
14308
14309 if(Roo.dd.DragZone){
14310 Roo.tree.TreeDragZone = function(tree, config){
14311     Roo.tree.TreeDragZone.superclass.constructor.call(this, tree.getTreeEl(), config);
14312     this.tree = tree;
14313 };
14314
14315 Roo.extend(Roo.tree.TreeDragZone, Roo.dd.DragZone, {
14316     ddGroup : "TreeDD",
14317    
14318     onBeforeDrag : function(data, e){
14319         var n = data.node;
14320         return n && n.draggable && !n.disabled;
14321     },
14322      
14323     
14324     onInitDrag : function(e){
14325         var data = this.dragData;
14326         this.tree.getSelectionModel().select(data.node);
14327         this.proxy.update("");
14328         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
14329         this.tree.fireEvent("startdrag", this.tree, data.node, e);
14330     },
14331     
14332     getRepairXY : function(e, data){
14333         return data.node.ui.getDDRepairXY();
14334     },
14335     
14336     onEndDrag : function(data, e){
14337         this.tree.fireEvent("enddrag", this.tree, data.node, e);
14338         
14339         
14340     },
14341     
14342     onValidDrop : function(dd, e, id){
14343         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
14344         this.hideProxy();
14345     },
14346     
14347     beforeInvalidDrop : function(e, id){
14348         // this scrolls the original position back into view
14349         var sm = this.tree.getSelectionModel();
14350         sm.clearSelections();
14351         sm.select(this.dragData.node);
14352     }
14353 });
14354 }/*
14355  * Based on:
14356  * Ext JS Library 1.1.1
14357  * Copyright(c) 2006-2007, Ext JS, LLC.
14358  *
14359  * Originally Released Under LGPL - original licence link has changed is not relivant.
14360  *
14361  * Fork - LGPL
14362  * <script type="text/javascript">
14363  */
14364 /**
14365  * @class Roo.tree.TreeEditor
14366  * @extends Roo.Editor
14367  * Provides editor functionality for inline tree node editing.  Any valid {@link Roo.form.Field} can be used
14368  * as the editor field.
14369  * @constructor
14370  * @param {Object} config (used to be the tree panel.)
14371  * @param {Object} oldconfig DEPRECIATED Either a prebuilt {@link Roo.form.Field} instance or a Field config object
14372  * 
14373  * @cfg {Roo.tree.TreePanel} tree The tree to bind to.
14374  * @cfg {Roo.form.TextField|Object} field The field configuration
14375  *
14376  * 
14377  */
14378 Roo.tree.TreeEditor = function(config, oldconfig) { // was -- (tree, config){
14379     var tree = config;
14380     var field;
14381     if (oldconfig) { // old style..
14382         field = oldconfig.events ? oldconfig : new Roo.form.TextField(oldconfig);
14383     } else {
14384         // new style..
14385         tree = config.tree;
14386         config.field = config.field  || {};
14387         config.field.xtype = 'TextField';
14388         field = Roo.factory(config.field, Roo.form);
14389     }
14390     config = config || {};
14391     
14392     
14393     this.addEvents({
14394         /**
14395          * @event beforenodeedit
14396          * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
14397          * false from the handler of this event.
14398          * @param {Editor} this
14399          * @param {Roo.tree.Node} node 
14400          */
14401         "beforenodeedit" : true
14402     });
14403     
14404     //Roo.log(config);
14405     Roo.tree.TreeEditor.superclass.constructor.call(this, field, config);
14406
14407     this.tree = tree;
14408
14409     tree.on('beforeclick', this.beforeNodeClick, this);
14410     tree.getTreeEl().on('mousedown', this.hide, this);
14411     this.on('complete', this.updateNode, this);
14412     this.on('beforestartedit', this.fitToTree, this);
14413     this.on('startedit', this.bindScroll, this, {delay:10});
14414     this.on('specialkey', this.onSpecialKey, this);
14415 };
14416
14417 Roo.extend(Roo.tree.TreeEditor, Roo.Editor, {
14418     /**
14419      * @cfg {String} alignment
14420      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "l-l").
14421      */
14422     alignment: "l-l",
14423     // inherit
14424     autoSize: false,
14425     /**
14426      * @cfg {Boolean} hideEl
14427      * True to hide the bound element while the editor is displayed (defaults to false)
14428      */
14429     hideEl : false,
14430     /**
14431      * @cfg {String} cls
14432      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
14433      */
14434     cls: "x-small-editor x-tree-editor",
14435     /**
14436      * @cfg {Boolean} shim
14437      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
14438      */
14439     shim:false,
14440     // inherit
14441     shadow:"frame",
14442     /**
14443      * @cfg {Number} maxWidth
14444      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
14445      * the containing tree element's size, it will be automatically limited for you to the container width, taking
14446      * scroll and client offsets into account prior to each edit.
14447      */
14448     maxWidth: 250,
14449
14450     editDelay : 350,
14451
14452     // private
14453     fitToTree : function(ed, el){
14454         var td = this.tree.getTreeEl().dom, nd = el.dom;
14455         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
14456             td.scrollLeft = nd.offsetLeft;
14457         }
14458         var w = Math.min(
14459                 this.maxWidth,
14460                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
14461         this.setSize(w, '');
14462         
14463         return this.fireEvent('beforenodeedit', this, this.editNode);
14464         
14465     },
14466
14467     // private
14468     triggerEdit : function(node){
14469         this.completeEdit();
14470         this.editNode = node;
14471         this.startEdit(node.ui.textNode, node.text);
14472     },
14473
14474     // private
14475     bindScroll : function(){
14476         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
14477     },
14478
14479     // private
14480     beforeNodeClick : function(node, e){
14481         var sinceLast = (this.lastClick ? this.lastClick.getElapsed() : 0);
14482         this.lastClick = new Date();
14483         if(sinceLast > this.editDelay && this.tree.getSelectionModel().isSelected(node)){
14484             e.stopEvent();
14485             this.triggerEdit(node);
14486             return false;
14487         }
14488         return true;
14489     },
14490
14491     // private
14492     updateNode : function(ed, value){
14493         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
14494         this.editNode.setText(value);
14495     },
14496
14497     // private
14498     onHide : function(){
14499         Roo.tree.TreeEditor.superclass.onHide.call(this);
14500         if(this.editNode){
14501             this.editNode.ui.focus();
14502         }
14503     },
14504
14505     // private
14506     onSpecialKey : function(field, e){
14507         var k = e.getKey();
14508         if(k == e.ESC){
14509             e.stopEvent();
14510             this.cancelEdit();
14511         }else if(k == e.ENTER && !e.hasModifier()){
14512             e.stopEvent();
14513             this.completeEdit();
14514         }
14515     }
14516 });//<Script type="text/javascript">
14517 /*
14518  * Based on:
14519  * Ext JS Library 1.1.1
14520  * Copyright(c) 2006-2007, Ext JS, LLC.
14521  *
14522  * Originally Released Under LGPL - original licence link has changed is not relivant.
14523  *
14524  * Fork - LGPL
14525  * <script type="text/javascript">
14526  */
14527  
14528 /**
14529  * Not documented??? - probably should be...
14530  */
14531
14532 Roo.tree.ColumnNodeUI = Roo.extend(Roo.tree.TreeNodeUI, {
14533     //focus: Roo.emptyFn, // prevent odd scrolling behavior
14534     
14535     renderElements : function(n, a, targetNode, bulkRender){
14536         //consel.log("renderElements?");
14537         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
14538
14539         var t = n.getOwnerTree();
14540         var tid = Pman.Tab.Document_TypesTree.tree.el.id;
14541         
14542         var cols = t.columns;
14543         var bw = t.borderWidth;
14544         var c = cols[0];
14545         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
14546          var cb = typeof a.checked == "boolean";
14547         var tx = String.format('{0}',n.text || (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
14548         var colcls = 'x-t-' + tid + '-c0';
14549         var buf = [
14550             '<li class="x-tree-node">',
14551             
14552                 
14553                 '<div class="x-tree-node-el ', a.cls,'">',
14554                     // extran...
14555                     '<div class="x-tree-col ', colcls, '" style="width:', c.width-bw, 'px;">',
14556                 
14557                 
14558                         '<span class="x-tree-node-indent">',this.indentMarkup,'</span>',
14559                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon  " />',
14560                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',
14561                            (a.icon ? ' x-tree-node-inline-icon' : ''),
14562                            (a.iconCls ? ' '+a.iconCls : ''),
14563                            '" unselectable="on" />',
14564                         (cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + 
14565                              (a.checked ? 'checked="checked" />' : ' />')) : ''),
14566                              
14567                         '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
14568                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>',
14569                             '<span unselectable="on" qtip="' + tx + '">',
14570                              tx,
14571                              '</span></a>' ,
14572                     '</div>',
14573                      '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
14574                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>'
14575                  ];
14576         for(var i = 1, len = cols.length; i < len; i++){
14577             c = cols[i];
14578             colcls = 'x-t-' + tid + '-c' +i;
14579             tx = String.format('{0}', (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
14580             buf.push('<div class="x-tree-col ', colcls, ' ' ,(c.cls?c.cls:''),'" style="width:',c.width-bw,'px;">',
14581                         '<div class="x-tree-col-text" qtip="' + tx +'">',tx,"</div>",
14582                       "</div>");
14583          }
14584          
14585          buf.push(
14586             '</a>',
14587             '<div class="x-clear"></div></div>',
14588             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
14589             "</li>");
14590         
14591         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
14592             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
14593                                 n.nextSibling.ui.getEl(), buf.join(""));
14594         }else{
14595             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
14596         }
14597         var el = this.wrap.firstChild;
14598         this.elRow = el;
14599         this.elNode = el.firstChild;
14600         this.ranchor = el.childNodes[1];
14601         this.ctNode = this.wrap.childNodes[1];
14602         var cs = el.firstChild.childNodes;
14603         this.indentNode = cs[0];
14604         this.ecNode = cs[1];
14605         this.iconNode = cs[2];
14606         var index = 3;
14607         if(cb){
14608             this.checkbox = cs[3];
14609             index++;
14610         }
14611         this.anchor = cs[index];
14612         
14613         this.textNode = cs[index].firstChild;
14614         
14615         //el.on("click", this.onClick, this);
14616         //el.on("dblclick", this.onDblClick, this);
14617         
14618         
14619        // console.log(this);
14620     },
14621     initEvents : function(){
14622         Roo.tree.ColumnNodeUI.superclass.initEvents.call(this);
14623         
14624             
14625         var a = this.ranchor;
14626
14627         var el = Roo.get(a);
14628
14629         if(Roo.isOpera){ // opera render bug ignores the CSS
14630             el.setStyle("text-decoration", "none");
14631         }
14632
14633         el.on("click", this.onClick, this);
14634         el.on("dblclick", this.onDblClick, this);
14635         el.on("contextmenu", this.onContextMenu, this);
14636         
14637     },
14638     
14639     /*onSelectedChange : function(state){
14640         if(state){
14641             this.focus();
14642             this.addClass("x-tree-selected");
14643         }else{
14644             //this.blur();
14645             this.removeClass("x-tree-selected");
14646         }
14647     },*/
14648     addClass : function(cls){
14649         if(this.elRow){
14650             Roo.fly(this.elRow).addClass(cls);
14651         }
14652         
14653     },
14654     
14655     
14656     removeClass : function(cls){
14657         if(this.elRow){
14658             Roo.fly(this.elRow).removeClass(cls);
14659         }
14660     }
14661
14662     
14663     
14664 });//<Script type="text/javascript">
14665
14666 /*
14667  * Based on:
14668  * Ext JS Library 1.1.1
14669  * Copyright(c) 2006-2007, Ext JS, LLC.
14670  *
14671  * Originally Released Under LGPL - original licence link has changed is not relivant.
14672  *
14673  * Fork - LGPL
14674  * <script type="text/javascript">
14675  */
14676  
14677
14678 /**
14679  * @class Roo.tree.ColumnTree
14680  * @extends Roo.data.TreePanel
14681  * @cfg {Object} columns  Including width, header, renderer, cls, dataIndex 
14682  * @cfg {int} borderWidth  compined right/left border allowance
14683  * @constructor
14684  * @param {String/HTMLElement/Element} el The container element
14685  * @param {Object} config
14686  */
14687 Roo.tree.ColumnTree =  function(el, config)
14688 {
14689    Roo.tree.ColumnTree.superclass.constructor.call(this, el , config);
14690    this.addEvents({
14691         /**
14692         * @event resize
14693         * Fire this event on a container when it resizes
14694         * @param {int} w Width
14695         * @param {int} h Height
14696         */
14697        "resize" : true
14698     });
14699     this.on('resize', this.onResize, this);
14700 };
14701
14702 Roo.extend(Roo.tree.ColumnTree, Roo.tree.TreePanel, {
14703     //lines:false,
14704     
14705     
14706     borderWidth: Roo.isBorderBox ? 0 : 2, 
14707     headEls : false,
14708     
14709     render : function(){
14710         // add the header.....
14711        
14712         Roo.tree.ColumnTree.superclass.render.apply(this);
14713         
14714         this.el.addClass('x-column-tree');
14715         
14716         this.headers = this.el.createChild(
14717             {cls:'x-tree-headers'},this.innerCt.dom);
14718    
14719         var cols = this.columns, c;
14720         var totalWidth = 0;
14721         this.headEls = [];
14722         var  len = cols.length;
14723         for(var i = 0; i < len; i++){
14724              c = cols[i];
14725              totalWidth += c.width;
14726             this.headEls.push(this.headers.createChild({
14727                  cls:'x-tree-hd ' + (c.cls?c.cls+'-hd':''),
14728                  cn: {
14729                      cls:'x-tree-hd-text',
14730                      html: c.header
14731                  },
14732                  style:'width:'+(c.width-this.borderWidth)+'px;'
14733              }));
14734         }
14735         this.headers.createChild({cls:'x-clear'});
14736         // prevent floats from wrapping when clipped
14737         this.headers.setWidth(totalWidth);
14738         //this.innerCt.setWidth(totalWidth);
14739         this.innerCt.setStyle({ overflow: 'auto' });
14740         this.onResize(this.width, this.height);
14741              
14742         
14743     },
14744     onResize : function(w,h)
14745     {
14746         this.height = h;
14747         this.width = w;
14748         // resize cols..
14749         this.innerCt.setWidth(this.width);
14750         this.innerCt.setHeight(this.height-20);
14751         
14752         // headers...
14753         var cols = this.columns, c;
14754         var totalWidth = 0;
14755         var expEl = false;
14756         var len = cols.length;
14757         for(var i = 0; i < len; i++){
14758             c = cols[i];
14759             if (this.autoExpandColumn !== false && c.dataIndex == this.autoExpandColumn) {
14760                 // it's the expander..
14761                 expEl  = this.headEls[i];
14762                 continue;
14763             }
14764             totalWidth += c.width;
14765             
14766         }
14767         if (expEl) {
14768             expEl.setWidth(  ((w - totalWidth)-this.borderWidth - 20));
14769         }
14770         this.headers.setWidth(w-20);
14771
14772         
14773         
14774         
14775     }
14776 });
14777 /*
14778  * Based on:
14779  * Ext JS Library 1.1.1
14780  * Copyright(c) 2006-2007, Ext JS, LLC.
14781  *
14782  * Originally Released Under LGPL - original licence link has changed is not relivant.
14783  *
14784  * Fork - LGPL
14785  * <script type="text/javascript">
14786  */
14787  
14788 /**
14789  * @class Roo.menu.Menu
14790  * @extends Roo.util.Observable
14791  * A menu object.  This is the container to which you add all other menu items.  Menu can also serve a as a base class
14792  * when you want a specialzed menu based off of another component (like {@link Roo.menu.DateMenu} for example).
14793  * @constructor
14794  * Creates a new Menu
14795  * @param {Object} config Configuration options
14796  */
14797 Roo.menu.Menu = function(config){
14798     
14799     Roo.menu.Menu.superclass.constructor.call(this, config);
14800     
14801     this.id = this.id || Roo.id();
14802     this.addEvents({
14803         /**
14804          * @event beforeshow
14805          * Fires before this menu is displayed
14806          * @param {Roo.menu.Menu} this
14807          */
14808         beforeshow : true,
14809         /**
14810          * @event beforehide
14811          * Fires before this menu is hidden
14812          * @param {Roo.menu.Menu} this
14813          */
14814         beforehide : true,
14815         /**
14816          * @event show
14817          * Fires after this menu is displayed
14818          * @param {Roo.menu.Menu} this
14819          */
14820         show : true,
14821         /**
14822          * @event hide
14823          * Fires after this menu is hidden
14824          * @param {Roo.menu.Menu} this
14825          */
14826         hide : true,
14827         /**
14828          * @event click
14829          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
14830          * @param {Roo.menu.Menu} this
14831          * @param {Roo.menu.Item} menuItem The menu item that was clicked
14832          * @param {Roo.EventObject} e
14833          */
14834         click : true,
14835         /**
14836          * @event mouseover
14837          * Fires when the mouse is hovering over this menu
14838          * @param {Roo.menu.Menu} this
14839          * @param {Roo.EventObject} e
14840          * @param {Roo.menu.Item} menuItem The menu item that was clicked
14841          */
14842         mouseover : true,
14843         /**
14844          * @event mouseout
14845          * Fires when the mouse exits this menu
14846          * @param {Roo.menu.Menu} this
14847          * @param {Roo.EventObject} e
14848          * @param {Roo.menu.Item} menuItem The menu item that was clicked
14849          */
14850         mouseout : true,
14851         /**
14852          * @event itemclick
14853          * Fires when a menu item contained in this menu is clicked
14854          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
14855          * @param {Roo.EventObject} e
14856          */
14857         itemclick: true
14858     });
14859     if (this.registerMenu) {
14860         Roo.menu.MenuMgr.register(this);
14861     }
14862     
14863     var mis = this.items;
14864     this.items = new Roo.util.MixedCollection();
14865     if(mis){
14866         this.add.apply(this, mis);
14867     }
14868 };
14869
14870 Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
14871     /**
14872      * @cfg {Number} minWidth The minimum width of the menu in pixels (defaults to 120)
14873      */
14874     minWidth : 120,
14875     /**
14876      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
14877      * for bottom-right shadow (defaults to "sides")
14878      */
14879     shadow : "sides",
14880     /**
14881      * @cfg {String} subMenuAlign The {@link Roo.Element#alignTo} anchor position value to use for submenus of
14882      * this menu (defaults to "tl-tr?")
14883      */
14884     subMenuAlign : "tl-tr?",
14885     /**
14886      * @cfg {String} defaultAlign The default {@link Roo.Element#alignTo) anchor position value for this menu
14887      * relative to its element of origin (defaults to "tl-bl?")
14888      */
14889     defaultAlign : "tl-bl?",
14890     /**
14891      * @cfg {Boolean} allowOtherMenus True to allow multiple menus to be displayed at the same time (defaults to false)
14892      */
14893     allowOtherMenus : false,
14894     /**
14895      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
14896      */
14897     registerMenu : true,
14898
14899     hidden:true,
14900
14901     // private
14902     render : function(){
14903         if(this.el){
14904             return;
14905         }
14906         var el = this.el = new Roo.Layer({
14907             cls: "x-menu",
14908             shadow:this.shadow,
14909             constrain: false,
14910             parentEl: this.parentEl || document.body,
14911             zindex:15000
14912         });
14913
14914         this.keyNav = new Roo.menu.MenuNav(this);
14915
14916         if(this.plain){
14917             el.addClass("x-menu-plain");
14918         }
14919         if(this.cls){
14920             el.addClass(this.cls);
14921         }
14922         // generic focus element
14923         this.focusEl = el.createChild({
14924             tag: "a", cls: "x-menu-focus", href: "#", onclick: "return false;", tabIndex:"-1"
14925         });
14926         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
14927         //disabling touch- as it's causing issues ..
14928         //ul.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
14929         ul.on('click'   , this.onClick, this);
14930         
14931         
14932         ul.on("mouseover", this.onMouseOver, this);
14933         ul.on("mouseout", this.onMouseOut, this);
14934         this.items.each(function(item){
14935             if (item.hidden) {
14936                 return;
14937             }
14938             
14939             var li = document.createElement("li");
14940             li.className = "x-menu-list-item";
14941             ul.dom.appendChild(li);
14942             item.render(li, this);
14943         }, this);
14944         this.ul = ul;
14945         this.autoWidth();
14946     },
14947
14948     // private
14949     autoWidth : function(){
14950         var el = this.el, ul = this.ul;
14951         if(!el){
14952             return;
14953         }
14954         var w = this.width;
14955         if(w){
14956             el.setWidth(w);
14957         }else if(Roo.isIE){
14958             el.setWidth(this.minWidth);
14959             var t = el.dom.offsetWidth; // force recalc
14960             el.setWidth(ul.getWidth()+el.getFrameWidth("lr"));
14961         }
14962     },
14963
14964     // private
14965     delayAutoWidth : function(){
14966         if(this.rendered){
14967             if(!this.awTask){
14968                 this.awTask = new Roo.util.DelayedTask(this.autoWidth, this);
14969             }
14970             this.awTask.delay(20);
14971         }
14972     },
14973
14974     // private
14975     findTargetItem : function(e){
14976         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
14977         if(t && t.menuItemId){
14978             return this.items.get(t.menuItemId);
14979         }
14980     },
14981
14982     // private
14983     onClick : function(e){
14984         Roo.log("menu.onClick");
14985         var t = this.findTargetItem(e);
14986         if(!t){
14987             return;
14988         }
14989         Roo.log(e);
14990         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
14991             if(t == this.activeItem && t.shouldDeactivate(e)){
14992                 this.activeItem.deactivate();
14993                 delete this.activeItem;
14994                 return;
14995             }
14996             if(t.canActivate){
14997                 this.setActiveItem(t, true);
14998             }
14999             return;
15000             
15001             
15002         }
15003         
15004         t.onClick(e);
15005         this.fireEvent("click", this, t, e);
15006     },
15007
15008     // private
15009     setActiveItem : function(item, autoExpand){
15010         if(item != this.activeItem){
15011             if(this.activeItem){
15012                 this.activeItem.deactivate();
15013             }
15014             this.activeItem = item;
15015             item.activate(autoExpand);
15016         }else if(autoExpand){
15017             item.expandMenu();
15018         }
15019     },
15020
15021     // private
15022     tryActivate : function(start, step){
15023         var items = this.items;
15024         for(var i = start, len = items.length; i >= 0 && i < len; i+= step){
15025             var item = items.get(i);
15026             if(!item.disabled && item.canActivate){
15027                 this.setActiveItem(item, false);
15028                 return item;
15029             }
15030         }
15031         return false;
15032     },
15033
15034     // private
15035     onMouseOver : function(e){
15036         var t;
15037         if(t = this.findTargetItem(e)){
15038             if(t.canActivate && !t.disabled){
15039                 this.setActiveItem(t, true);
15040             }
15041         }
15042         this.fireEvent("mouseover", this, e, t);
15043     },
15044
15045     // private
15046     onMouseOut : function(e){
15047         var t;
15048         if(t = this.findTargetItem(e)){
15049             if(t == this.activeItem && t.shouldDeactivate(e)){
15050                 this.activeItem.deactivate();
15051                 delete this.activeItem;
15052             }
15053         }
15054         this.fireEvent("mouseout", this, e, t);
15055     },
15056
15057     /**
15058      * Read-only.  Returns true if the menu is currently displayed, else false.
15059      * @type Boolean
15060      */
15061     isVisible : function(){
15062         return this.el && !this.hidden;
15063     },
15064
15065     /**
15066      * Displays this menu relative to another element
15067      * @param {String/HTMLElement/Roo.Element} element The element to align to
15068      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
15069      * the element (defaults to this.defaultAlign)
15070      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
15071      */
15072     show : function(el, pos, parentMenu){
15073         this.parentMenu = parentMenu;
15074         if(!this.el){
15075             this.render();
15076         }
15077         this.fireEvent("beforeshow", this);
15078         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
15079     },
15080
15081     /**
15082      * Displays this menu at a specific xy position
15083      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
15084      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
15085      */
15086     showAt : function(xy, parentMenu, /* private: */_e){
15087         this.parentMenu = parentMenu;
15088         if(!this.el){
15089             this.render();
15090         }
15091         if(_e !== false){
15092             this.fireEvent("beforeshow", this);
15093             xy = this.el.adjustForConstraints(xy);
15094         }
15095         this.el.setXY(xy);
15096         this.el.show();
15097         this.hidden = false;
15098         this.focus();
15099         this.fireEvent("show", this);
15100     },
15101
15102     focus : function(){
15103         if(!this.hidden){
15104             this.doFocus.defer(50, this);
15105         }
15106     },
15107
15108     doFocus : function(){
15109         if(!this.hidden){
15110             this.focusEl.focus();
15111         }
15112     },
15113
15114     /**
15115      * Hides this menu and optionally all parent menus
15116      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
15117      */
15118     hide : function(deep){
15119         if(this.el && this.isVisible()){
15120             this.fireEvent("beforehide", this);
15121             if(this.activeItem){
15122                 this.activeItem.deactivate();
15123                 this.activeItem = null;
15124             }
15125             this.el.hide();
15126             this.hidden = true;
15127             this.fireEvent("hide", this);
15128         }
15129         if(deep === true && this.parentMenu){
15130             this.parentMenu.hide(true);
15131         }
15132     },
15133
15134     /**
15135      * Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.
15136      * Any of the following are valid:
15137      * <ul>
15138      * <li>Any menu item object based on {@link Roo.menu.Item}</li>
15139      * <li>An HTMLElement object which will be converted to a menu item</li>
15140      * <li>A menu item config object that will be created as a new menu item</li>
15141      * <li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise
15142      * it will be converted into a {@link Roo.menu.TextItem} and added</li>
15143      * </ul>
15144      * Usage:
15145      * <pre><code>
15146 // Create the menu
15147 var menu = new Roo.menu.Menu();
15148
15149 // Create a menu item to add by reference
15150 var menuItem = new Roo.menu.Item({ text: 'New Item!' });
15151
15152 // Add a bunch of items at once using different methods.
15153 // Only the last item added will be returned.
15154 var item = menu.add(
15155     menuItem,                // add existing item by ref
15156     'Dynamic Item',          // new TextItem
15157     '-',                     // new separator
15158     { text: 'Config Item' }  // new item by config
15159 );
15160 </code></pre>
15161      * @param {Mixed} args One or more menu items, menu item configs or other objects that can be converted to menu items
15162      * @return {Roo.menu.Item} The menu item that was added, or the last one if multiple items were added
15163      */
15164     add : function(){
15165         var a = arguments, l = a.length, item;
15166         for(var i = 0; i < l; i++){
15167             var el = a[i];
15168             if ((typeof(el) == "object") && el.xtype && el.xns) {
15169                 el = Roo.factory(el, Roo.menu);
15170             }
15171             
15172             if(el.render){ // some kind of Item
15173                 item = this.addItem(el);
15174             }else if(typeof el == "string"){ // string
15175                 if(el == "separator" || el == "-"){
15176                     item = this.addSeparator();
15177                 }else{
15178                     item = this.addText(el);
15179                 }
15180             }else if(el.tagName || el.el){ // element
15181                 item = this.addElement(el);
15182             }else if(typeof el == "object"){ // must be menu item config?
15183                 item = this.addMenuItem(el);
15184             }
15185         }
15186         return item;
15187     },
15188
15189     /**
15190      * Returns this menu's underlying {@link Roo.Element} object
15191      * @return {Roo.Element} The element
15192      */
15193     getEl : function(){
15194         if(!this.el){
15195             this.render();
15196         }
15197         return this.el;
15198     },
15199
15200     /**
15201      * Adds a separator bar to the menu
15202      * @return {Roo.menu.Item} The menu item that was added
15203      */
15204     addSeparator : function(){
15205         return this.addItem(new Roo.menu.Separator());
15206     },
15207
15208     /**
15209      * Adds an {@link Roo.Element} object to the menu
15210      * @param {String/HTMLElement/Roo.Element} el The element or DOM node to add, or its id
15211      * @return {Roo.menu.Item} The menu item that was added
15212      */
15213     addElement : function(el){
15214         return this.addItem(new Roo.menu.BaseItem(el));
15215     },
15216
15217     /**
15218      * Adds an existing object based on {@link Roo.menu.Item} to the menu
15219      * @param {Roo.menu.Item} item The menu item to add
15220      * @return {Roo.menu.Item} The menu item that was added
15221      */
15222     addItem : function(item){
15223         this.items.add(item);
15224         if(this.ul){
15225             var li = document.createElement("li");
15226             li.className = "x-menu-list-item";
15227             this.ul.dom.appendChild(li);
15228             item.render(li, this);
15229             this.delayAutoWidth();
15230         }
15231         return item;
15232     },
15233
15234     /**
15235      * Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu
15236      * @param {Object} config A MenuItem config object
15237      * @return {Roo.menu.Item} The menu item that was added
15238      */
15239     addMenuItem : function(config){
15240         if(!(config instanceof Roo.menu.Item)){
15241             if(typeof config.checked == "boolean"){ // must be check menu item config?
15242                 config = new Roo.menu.CheckItem(config);
15243             }else{
15244                 config = new Roo.menu.Item(config);
15245             }
15246         }
15247         return this.addItem(config);
15248     },
15249
15250     /**
15251      * Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu
15252      * @param {String} text The text to display in the menu item
15253      * @return {Roo.menu.Item} The menu item that was added
15254      */
15255     addText : function(text){
15256         return this.addItem(new Roo.menu.TextItem({ text : text }));
15257     },
15258
15259     /**
15260      * Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index
15261      * @param {Number} index The index in the menu's list of current items where the new item should be inserted
15262      * @param {Roo.menu.Item} item The menu item to add
15263      * @return {Roo.menu.Item} The menu item that was added
15264      */
15265     insert : function(index, item){
15266         this.items.insert(index, item);
15267         if(this.ul){
15268             var li = document.createElement("li");
15269             li.className = "x-menu-list-item";
15270             this.ul.dom.insertBefore(li, this.ul.dom.childNodes[index]);
15271             item.render(li, this);
15272             this.delayAutoWidth();
15273         }
15274         return item;
15275     },
15276
15277     /**
15278      * Removes an {@link Roo.menu.Item} from the menu and destroys the object
15279      * @param {Roo.menu.Item} item The menu item to remove
15280      */
15281     remove : function(item){
15282         this.items.removeKey(item.id);
15283         item.destroy();
15284     },
15285
15286     /**
15287      * Removes and destroys all items in the menu
15288      */
15289     removeAll : function(){
15290         var f;
15291         while(f = this.items.first()){
15292             this.remove(f);
15293         }
15294     }
15295 });
15296
15297 // MenuNav is a private utility class used internally by the Menu
15298 Roo.menu.MenuNav = function(menu){
15299     Roo.menu.MenuNav.superclass.constructor.call(this, menu.el);
15300     this.scope = this.menu = menu;
15301 };
15302
15303 Roo.extend(Roo.menu.MenuNav, Roo.KeyNav, {
15304     doRelay : function(e, h){
15305         var k = e.getKey();
15306         if(!this.menu.activeItem && e.isNavKeyPress() && k != e.SPACE && k != e.RETURN){
15307             this.menu.tryActivate(0, 1);
15308             return false;
15309         }
15310         return h.call(this.scope || this, e, this.menu);
15311     },
15312
15313     up : function(e, m){
15314         if(!m.tryActivate(m.items.indexOf(m.activeItem)-1, -1)){
15315             m.tryActivate(m.items.length-1, -1);
15316         }
15317     },
15318
15319     down : function(e, m){
15320         if(!m.tryActivate(m.items.indexOf(m.activeItem)+1, 1)){
15321             m.tryActivate(0, 1);
15322         }
15323     },
15324
15325     right : function(e, m){
15326         if(m.activeItem){
15327             m.activeItem.expandMenu(true);
15328         }
15329     },
15330
15331     left : function(e, m){
15332         m.hide();
15333         if(m.parentMenu && m.parentMenu.activeItem){
15334             m.parentMenu.activeItem.activate();
15335         }
15336     },
15337
15338     enter : function(e, m){
15339         if(m.activeItem){
15340             e.stopPropagation();
15341             m.activeItem.onClick(e);
15342             m.fireEvent("click", this, m.activeItem);
15343             return true;
15344         }
15345     }
15346 });/*
15347  * Based on:
15348  * Ext JS Library 1.1.1
15349  * Copyright(c) 2006-2007, Ext JS, LLC.
15350  *
15351  * Originally Released Under LGPL - original licence link has changed is not relivant.
15352  *
15353  * Fork - LGPL
15354  * <script type="text/javascript">
15355  */
15356  
15357 /**
15358  * @class Roo.menu.MenuMgr
15359  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
15360  * @singleton
15361  */
15362 Roo.menu.MenuMgr = function(){
15363    var menus, active, groups = {}, attached = false, lastShow = new Date();
15364
15365    // private - called when first menu is created
15366    function init(){
15367        menus = {};
15368        active = new Roo.util.MixedCollection();
15369        Roo.get(document).addKeyListener(27, function(){
15370            if(active.length > 0){
15371                hideAll();
15372            }
15373        });
15374    }
15375
15376    // private
15377    function hideAll(){
15378        if(active && active.length > 0){
15379            var c = active.clone();
15380            c.each(function(m){
15381                m.hide();
15382            });
15383        }
15384    }
15385
15386    // private
15387    function onHide(m){
15388        active.remove(m);
15389        if(active.length < 1){
15390            Roo.get(document).un("mousedown", onMouseDown);
15391            attached = false;
15392        }
15393    }
15394
15395    // private
15396    function onShow(m){
15397        var last = active.last();
15398        lastShow = new Date();
15399        active.add(m);
15400        if(!attached){
15401            Roo.get(document).on("mousedown", onMouseDown);
15402            attached = true;
15403        }
15404        if(m.parentMenu){
15405           m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
15406           m.parentMenu.activeChild = m;
15407        }else if(last && last.isVisible()){
15408           m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
15409        }
15410    }
15411
15412    // private
15413    function onBeforeHide(m){
15414        if(m.activeChild){
15415            m.activeChild.hide();
15416        }
15417        if(m.autoHideTimer){
15418            clearTimeout(m.autoHideTimer);
15419            delete m.autoHideTimer;
15420        }
15421    }
15422
15423    // private
15424    function onBeforeShow(m){
15425        var pm = m.parentMenu;
15426        if(!pm && !m.allowOtherMenus){
15427            hideAll();
15428        }else if(pm && pm.activeChild && active != m){
15429            pm.activeChild.hide();
15430        }
15431    }
15432
15433    // private
15434    function onMouseDown(e){
15435        if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
15436            hideAll();
15437        }
15438    }
15439
15440    // private
15441    function onBeforeCheck(mi, state){
15442        if(state){
15443            var g = groups[mi.group];
15444            for(var i = 0, l = g.length; i < l; i++){
15445                if(g[i] != mi){
15446                    g[i].setChecked(false);
15447                }
15448            }
15449        }
15450    }
15451
15452    return {
15453
15454        /**
15455         * Hides all menus that are currently visible
15456         */
15457        hideAll : function(){
15458             hideAll();  
15459        },
15460
15461        // private
15462        register : function(menu){
15463            if(!menus){
15464                init();
15465            }
15466            menus[menu.id] = menu;
15467            menu.on("beforehide", onBeforeHide);
15468            menu.on("hide", onHide);
15469            menu.on("beforeshow", onBeforeShow);
15470            menu.on("show", onShow);
15471            var g = menu.group;
15472            if(g && menu.events["checkchange"]){
15473                if(!groups[g]){
15474                    groups[g] = [];
15475                }
15476                groups[g].push(menu);
15477                menu.on("checkchange", onCheck);
15478            }
15479        },
15480
15481         /**
15482          * Returns a {@link Roo.menu.Menu} object
15483          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
15484          * be used to generate and return a new Menu instance.
15485          */
15486        get : function(menu){
15487            if(typeof menu == "string"){ // menu id
15488                return menus[menu];
15489            }else if(menu.events){  // menu instance
15490                return menu;
15491            }else if(typeof menu.length == 'number'){ // array of menu items?
15492                return new Roo.menu.Menu({items:menu});
15493            }else{ // otherwise, must be a config
15494                return new Roo.menu.Menu(menu);
15495            }
15496        },
15497
15498        // private
15499        unregister : function(menu){
15500            delete menus[menu.id];
15501            menu.un("beforehide", onBeforeHide);
15502            menu.un("hide", onHide);
15503            menu.un("beforeshow", onBeforeShow);
15504            menu.un("show", onShow);
15505            var g = menu.group;
15506            if(g && menu.events["checkchange"]){
15507                groups[g].remove(menu);
15508                menu.un("checkchange", onCheck);
15509            }
15510        },
15511
15512        // private
15513        registerCheckable : function(menuItem){
15514            var g = menuItem.group;
15515            if(g){
15516                if(!groups[g]){
15517                    groups[g] = [];
15518                }
15519                groups[g].push(menuItem);
15520                menuItem.on("beforecheckchange", onBeforeCheck);
15521            }
15522        },
15523
15524        // private
15525        unregisterCheckable : function(menuItem){
15526            var g = menuItem.group;
15527            if(g){
15528                groups[g].remove(menuItem);
15529                menuItem.un("beforecheckchange", onBeforeCheck);
15530            }
15531        }
15532    };
15533 }();/*
15534  * Based on:
15535  * Ext JS Library 1.1.1
15536  * Copyright(c) 2006-2007, Ext JS, LLC.
15537  *
15538  * Originally Released Under LGPL - original licence link has changed is not relivant.
15539  *
15540  * Fork - LGPL
15541  * <script type="text/javascript">
15542  */
15543  
15544
15545 /**
15546  * @class Roo.menu.BaseItem
15547  * @extends Roo.Component
15548  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
15549  * management and base configuration options shared by all menu components.
15550  * @constructor
15551  * Creates a new BaseItem
15552  * @param {Object} config Configuration options
15553  */
15554 Roo.menu.BaseItem = function(config){
15555     Roo.menu.BaseItem.superclass.constructor.call(this, config);
15556
15557     this.addEvents({
15558         /**
15559          * @event click
15560          * Fires when this item is clicked
15561          * @param {Roo.menu.BaseItem} this
15562          * @param {Roo.EventObject} e
15563          */
15564         click: true,
15565         /**
15566          * @event activate
15567          * Fires when this item is activated
15568          * @param {Roo.menu.BaseItem} this
15569          */
15570         activate : true,
15571         /**
15572          * @event deactivate
15573          * Fires when this item is deactivated
15574          * @param {Roo.menu.BaseItem} this
15575          */
15576         deactivate : true
15577     });
15578
15579     if(this.handler){
15580         this.on("click", this.handler, this.scope, true);
15581     }
15582 };
15583
15584 Roo.extend(Roo.menu.BaseItem, Roo.Component, {
15585     /**
15586      * @cfg {Function} handler
15587      * A function that will handle the click event of this menu item (defaults to undefined)
15588      */
15589     /**
15590      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
15591      */
15592     canActivate : false,
15593     
15594      /**
15595      * @cfg {Boolean} hidden True to prevent creation of this menu item (defaults to false)
15596      */
15597     hidden: false,
15598     
15599     /**
15600      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
15601      */
15602     activeClass : "x-menu-item-active",
15603     /**
15604      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
15605      */
15606     hideOnClick : true,
15607     /**
15608      * @cfg {Number} hideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
15609      */
15610     hideDelay : 100,
15611
15612     // private
15613     ctype: "Roo.menu.BaseItem",
15614
15615     // private
15616     actionMode : "container",
15617
15618     // private
15619     render : function(container, parentMenu){
15620         this.parentMenu = parentMenu;
15621         Roo.menu.BaseItem.superclass.render.call(this, container);
15622         this.container.menuItemId = this.id;
15623     },
15624
15625     // private
15626     onRender : function(container, position){
15627         this.el = Roo.get(this.el);
15628         container.dom.appendChild(this.el.dom);
15629     },
15630
15631     // private
15632     onClick : function(e){
15633         if(!this.disabled && this.fireEvent("click", this, e) !== false
15634                 && this.parentMenu.fireEvent("itemclick", this, e) !== false){
15635             this.handleClick(e);
15636         }else{
15637             e.stopEvent();
15638         }
15639     },
15640
15641     // private
15642     activate : function(){
15643         if(this.disabled){
15644             return false;
15645         }
15646         var li = this.container;
15647         li.addClass(this.activeClass);
15648         this.region = li.getRegion().adjust(2, 2, -2, -2);
15649         this.fireEvent("activate", this);
15650         return true;
15651     },
15652
15653     // private
15654     deactivate : function(){
15655         this.container.removeClass(this.activeClass);
15656         this.fireEvent("deactivate", this);
15657     },
15658
15659     // private
15660     shouldDeactivate : function(e){
15661         return !this.region || !this.region.contains(e.getPoint());
15662     },
15663
15664     // private
15665     handleClick : function(e){
15666         if(this.hideOnClick){
15667             this.parentMenu.hide.defer(this.hideDelay, this.parentMenu, [true]);
15668         }
15669     },
15670
15671     // private
15672     expandMenu : function(autoActivate){
15673         // do nothing
15674     },
15675
15676     // private
15677     hideMenu : function(){
15678         // do nothing
15679     }
15680 });/*
15681  * Based on:
15682  * Ext JS Library 1.1.1
15683  * Copyright(c) 2006-2007, Ext JS, LLC.
15684  *
15685  * Originally Released Under LGPL - original licence link has changed is not relivant.
15686  *
15687  * Fork - LGPL
15688  * <script type="text/javascript">
15689  */
15690  
15691 /**
15692  * @class Roo.menu.Adapter
15693  * @extends Roo.menu.BaseItem
15694  * 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.
15695  * It provides basic rendering, activation management and enable/disable logic required to work in menus.
15696  * @constructor
15697  * Creates a new Adapter
15698  * @param {Object} config Configuration options
15699  */
15700 Roo.menu.Adapter = function(component, config){
15701     Roo.menu.Adapter.superclass.constructor.call(this, config);
15702     this.component = component;
15703 };
15704 Roo.extend(Roo.menu.Adapter, Roo.menu.BaseItem, {
15705     // private
15706     canActivate : true,
15707
15708     // private
15709     onRender : function(container, position){
15710         this.component.render(container);
15711         this.el = this.component.getEl();
15712     },
15713
15714     // private
15715     activate : function(){
15716         if(this.disabled){
15717             return false;
15718         }
15719         this.component.focus();
15720         this.fireEvent("activate", this);
15721         return true;
15722     },
15723
15724     // private
15725     deactivate : function(){
15726         this.fireEvent("deactivate", this);
15727     },
15728
15729     // private
15730     disable : function(){
15731         this.component.disable();
15732         Roo.menu.Adapter.superclass.disable.call(this);
15733     },
15734
15735     // private
15736     enable : function(){
15737         this.component.enable();
15738         Roo.menu.Adapter.superclass.enable.call(this);
15739     }
15740 });/*
15741  * Based on:
15742  * Ext JS Library 1.1.1
15743  * Copyright(c) 2006-2007, Ext JS, LLC.
15744  *
15745  * Originally Released Under LGPL - original licence link has changed is not relivant.
15746  *
15747  * Fork - LGPL
15748  * <script type="text/javascript">
15749  */
15750
15751 /**
15752  * @class Roo.menu.TextItem
15753  * @extends Roo.menu.BaseItem
15754  * Adds a static text string to a menu, usually used as either a heading or group separator.
15755  * Note: old style constructor with text is still supported.
15756  * 
15757  * @constructor
15758  * Creates a new TextItem
15759  * @param {Object} cfg Configuration
15760  */
15761 Roo.menu.TextItem = function(cfg){
15762     if (typeof(cfg) == 'string') {
15763         this.text = cfg;
15764     } else {
15765         Roo.apply(this,cfg);
15766     }
15767     
15768     Roo.menu.TextItem.superclass.constructor.call(this);
15769 };
15770
15771 Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, {
15772     /**
15773      * @cfg {Boolean} text Text to show on item.
15774      */
15775     text : '',
15776     
15777     /**
15778      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
15779      */
15780     hideOnClick : false,
15781     /**
15782      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
15783      */
15784     itemCls : "x-menu-text",
15785
15786     // private
15787     onRender : function(){
15788         var s = document.createElement("span");
15789         s.className = this.itemCls;
15790         s.innerHTML = this.text;
15791         this.el = s;
15792         Roo.menu.TextItem.superclass.onRender.apply(this, arguments);
15793     }
15794 });/*
15795  * Based on:
15796  * Ext JS Library 1.1.1
15797  * Copyright(c) 2006-2007, Ext JS, LLC.
15798  *
15799  * Originally Released Under LGPL - original licence link has changed is not relivant.
15800  *
15801  * Fork - LGPL
15802  * <script type="text/javascript">
15803  */
15804
15805 /**
15806  * @class Roo.menu.Separator
15807  * @extends Roo.menu.BaseItem
15808  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
15809  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
15810  * @constructor
15811  * @param {Object} config Configuration options
15812  */
15813 Roo.menu.Separator = function(config){
15814     Roo.menu.Separator.superclass.constructor.call(this, config);
15815 };
15816
15817 Roo.extend(Roo.menu.Separator, Roo.menu.BaseItem, {
15818     /**
15819      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
15820      */
15821     itemCls : "x-menu-sep",
15822     /**
15823      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
15824      */
15825     hideOnClick : false,
15826
15827     // private
15828     onRender : function(li){
15829         var s = document.createElement("span");
15830         s.className = this.itemCls;
15831         s.innerHTML = "&#160;";
15832         this.el = s;
15833         li.addClass("x-menu-sep-li");
15834         Roo.menu.Separator.superclass.onRender.apply(this, arguments);
15835     }
15836 });/*
15837  * Based on:
15838  * Ext JS Library 1.1.1
15839  * Copyright(c) 2006-2007, Ext JS, LLC.
15840  *
15841  * Originally Released Under LGPL - original licence link has changed is not relivant.
15842  *
15843  * Fork - LGPL
15844  * <script type="text/javascript">
15845  */
15846 /**
15847  * @class Roo.menu.Item
15848  * @extends Roo.menu.BaseItem
15849  * A base class for all menu items that require menu-related functionality (like sub-menus) and are not static
15850  * display items.  Item extends the base functionality of {@link Roo.menu.BaseItem} by adding menu-specific
15851  * activation and click handling.
15852  * @constructor
15853  * Creates a new Item
15854  * @param {Object} config Configuration options
15855  */
15856 Roo.menu.Item = function(config){
15857     Roo.menu.Item.superclass.constructor.call(this, config);
15858     if(this.menu){
15859         this.menu = Roo.menu.MenuMgr.get(this.menu);
15860     }
15861 };
15862 Roo.extend(Roo.menu.Item, Roo.menu.BaseItem, {
15863     
15864     /**
15865      * @cfg {String} text
15866      * The text to show on the menu item.
15867      */
15868     text: '',
15869      /**
15870      * @cfg {String} HTML to render in menu
15871      * The text to show on the menu item (HTML version).
15872      */
15873     html: '',
15874     /**
15875      * @cfg {String} icon
15876      * The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)
15877      */
15878     icon: undefined,
15879     /**
15880      * @cfg {String} itemCls The default CSS class to use for menu items (defaults to "x-menu-item")
15881      */
15882     itemCls : "x-menu-item",
15883     /**
15884      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to true)
15885      */
15886     canActivate : true,
15887     /**
15888      * @cfg {Number} showDelay Length of time in milliseconds to wait before showing this item (defaults to 200)
15889      */
15890     showDelay: 200,
15891     // doc'd in BaseItem
15892     hideDelay: 200,
15893
15894     // private
15895     ctype: "Roo.menu.Item",
15896     
15897     // private
15898     onRender : function(container, position){
15899         var el = document.createElement("a");
15900         el.hideFocus = true;
15901         el.unselectable = "on";
15902         el.href = this.href || "#";
15903         if(this.hrefTarget){
15904             el.target = this.hrefTarget;
15905         }
15906         el.className = this.itemCls + (this.menu ?  " x-menu-item-arrow" : "") + (this.cls ?  " " + this.cls : "");
15907         
15908         var html = this.html.length ? this.html  : String.format('{0}',this.text);
15909         
15910         el.innerHTML = String.format(
15911                 '<img src="{0}" class="x-menu-item-icon {1}" />' + html,
15912                 this.icon || Roo.BLANK_IMAGE_URL, this.iconCls || '');
15913         this.el = el;
15914         Roo.menu.Item.superclass.onRender.call(this, container, position);
15915     },
15916
15917     /**
15918      * Sets the text to display in this menu item
15919      * @param {String} text The text to display
15920      * @param {Boolean} isHTML true to indicate text is pure html.
15921      */
15922     setText : function(text, isHTML){
15923         if (isHTML) {
15924             this.html = text;
15925         } else {
15926             this.text = text;
15927             this.html = '';
15928         }
15929         if(this.rendered){
15930             var html = this.html.length ? this.html  : String.format('{0}',this.text);
15931      
15932             this.el.update(String.format(
15933                 '<img src="{0}" class="x-menu-item-icon {2}">' + html,
15934                 this.icon || Roo.BLANK_IMAGE_URL, this.text, this.iconCls || ''));
15935             this.parentMenu.autoWidth();
15936         }
15937     },
15938
15939     // private
15940     handleClick : function(e){
15941         if(!this.href){ // if no link defined, stop the event automatically
15942             e.stopEvent();
15943         }
15944         Roo.menu.Item.superclass.handleClick.apply(this, arguments);
15945     },
15946
15947     // private
15948     activate : function(autoExpand){
15949         if(Roo.menu.Item.superclass.activate.apply(this, arguments)){
15950             this.focus();
15951             if(autoExpand){
15952                 this.expandMenu();
15953             }
15954         }
15955         return true;
15956     },
15957
15958     // private
15959     shouldDeactivate : function(e){
15960         if(Roo.menu.Item.superclass.shouldDeactivate.call(this, e)){
15961             if(this.menu && this.menu.isVisible()){
15962                 return !this.menu.getEl().getRegion().contains(e.getPoint());
15963             }
15964             return true;
15965         }
15966         return false;
15967     },
15968
15969     // private
15970     deactivate : function(){
15971         Roo.menu.Item.superclass.deactivate.apply(this, arguments);
15972         this.hideMenu();
15973     },
15974
15975     // private
15976     expandMenu : function(autoActivate){
15977         if(!this.disabled && this.menu){
15978             clearTimeout(this.hideTimer);
15979             delete this.hideTimer;
15980             if(!this.menu.isVisible() && !this.showTimer){
15981                 this.showTimer = this.deferExpand.defer(this.showDelay, this, [autoActivate]);
15982             }else if (this.menu.isVisible() && autoActivate){
15983                 this.menu.tryActivate(0, 1);
15984             }
15985         }
15986     },
15987
15988     // private
15989     deferExpand : function(autoActivate){
15990         delete this.showTimer;
15991         this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
15992         if(autoActivate){
15993             this.menu.tryActivate(0, 1);
15994         }
15995     },
15996
15997     // private
15998     hideMenu : function(){
15999         clearTimeout(this.showTimer);
16000         delete this.showTimer;
16001         if(!this.hideTimer && this.menu && this.menu.isVisible()){
16002             this.hideTimer = this.deferHide.defer(this.hideDelay, this);
16003         }
16004     },
16005
16006     // private
16007     deferHide : function(){
16008         delete this.hideTimer;
16009         this.menu.hide();
16010     }
16011 });/*
16012  * Based on:
16013  * Ext JS Library 1.1.1
16014  * Copyright(c) 2006-2007, Ext JS, LLC.
16015  *
16016  * Originally Released Under LGPL - original licence link has changed is not relivant.
16017  *
16018  * Fork - LGPL
16019  * <script type="text/javascript">
16020  */
16021  
16022 /**
16023  * @class Roo.menu.CheckItem
16024  * @extends Roo.menu.Item
16025  * Adds a menu item that contains a checkbox by default, but can also be part of a radio group.
16026  * @constructor
16027  * Creates a new CheckItem
16028  * @param {Object} config Configuration options
16029  */
16030 Roo.menu.CheckItem = function(config){
16031     Roo.menu.CheckItem.superclass.constructor.call(this, config);
16032     this.addEvents({
16033         /**
16034          * @event beforecheckchange
16035          * Fires before the checked value is set, providing an opportunity to cancel if needed
16036          * @param {Roo.menu.CheckItem} this
16037          * @param {Boolean} checked The new checked value that will be set
16038          */
16039         "beforecheckchange" : true,
16040         /**
16041          * @event checkchange
16042          * Fires after the checked value has been set
16043          * @param {Roo.menu.CheckItem} this
16044          * @param {Boolean} checked The checked value that was set
16045          */
16046         "checkchange" : true
16047     });
16048     if(this.checkHandler){
16049         this.on('checkchange', this.checkHandler, this.scope);
16050     }
16051 };
16052 Roo.extend(Roo.menu.CheckItem, Roo.menu.Item, {
16053     /**
16054      * @cfg {String} group
16055      * All check items with the same group name will automatically be grouped into a single-select
16056      * radio button group (defaults to '')
16057      */
16058     /**
16059      * @cfg {String} itemCls The default CSS class to use for check items (defaults to "x-menu-item x-menu-check-item")
16060      */
16061     itemCls : "x-menu-item x-menu-check-item",
16062     /**
16063      * @cfg {String} groupClass The default CSS class to use for radio group check items (defaults to "x-menu-group-item")
16064      */
16065     groupClass : "x-menu-group-item",
16066
16067     /**
16068      * @cfg {Boolean} checked True to initialize this checkbox as checked (defaults to false).  Note that
16069      * if this checkbox is part of a radio group (group = true) only the last item in the group that is
16070      * initialized with checked = true will be rendered as checked.
16071      */
16072     checked: false,
16073
16074     // private
16075     ctype: "Roo.menu.CheckItem",
16076
16077     // private
16078     onRender : function(c){
16079         Roo.menu.CheckItem.superclass.onRender.apply(this, arguments);
16080         if(this.group){
16081             this.el.addClass(this.groupClass);
16082         }
16083         Roo.menu.MenuMgr.registerCheckable(this);
16084         if(this.checked){
16085             this.checked = false;
16086             this.setChecked(true, true);
16087         }
16088     },
16089
16090     // private
16091     destroy : function(){
16092         if(this.rendered){
16093             Roo.menu.MenuMgr.unregisterCheckable(this);
16094         }
16095         Roo.menu.CheckItem.superclass.destroy.apply(this, arguments);
16096     },
16097
16098     /**
16099      * Set the checked state of this item
16100      * @param {Boolean} checked The new checked value
16101      * @param {Boolean} suppressEvent (optional) True to prevent the checkchange event from firing (defaults to false)
16102      */
16103     setChecked : function(state, suppressEvent){
16104         if(this.checked != state && this.fireEvent("beforecheckchange", this, state) !== false){
16105             if(this.container){
16106                 this.container[state ? "addClass" : "removeClass"]("x-menu-item-checked");
16107             }
16108             this.checked = state;
16109             if(suppressEvent !== true){
16110                 this.fireEvent("checkchange", this, state);
16111             }
16112         }
16113     },
16114
16115     // private
16116     handleClick : function(e){
16117        if(!this.disabled && !(this.checked && this.group)){// disable unselect on radio item
16118            this.setChecked(!this.checked);
16119        }
16120        Roo.menu.CheckItem.superclass.handleClick.apply(this, arguments);
16121     }
16122 });/*
16123  * Based on:
16124  * Ext JS Library 1.1.1
16125  * Copyright(c) 2006-2007, Ext JS, LLC.
16126  *
16127  * Originally Released Under LGPL - original licence link has changed is not relivant.
16128  *
16129  * Fork - LGPL
16130  * <script type="text/javascript">
16131  */
16132  
16133 /**
16134  * @class Roo.menu.DateItem
16135  * @extends Roo.menu.Adapter
16136  * A menu item that wraps the {@link Roo.DatPicker} component.
16137  * @constructor
16138  * Creates a new DateItem
16139  * @param {Object} config Configuration options
16140  */
16141 Roo.menu.DateItem = function(config){
16142     Roo.menu.DateItem.superclass.constructor.call(this, new Roo.DatePicker(config), config);
16143     /** The Roo.DatePicker object @type Roo.DatePicker */
16144     this.picker = this.component;
16145     this.addEvents({select: true});
16146     
16147     this.picker.on("render", function(picker){
16148         picker.getEl().swallowEvent("click");
16149         picker.container.addClass("x-menu-date-item");
16150     });
16151
16152     this.picker.on("select", this.onSelect, this);
16153 };
16154
16155 Roo.extend(Roo.menu.DateItem, Roo.menu.Adapter, {
16156     // private
16157     onSelect : function(picker, date){
16158         this.fireEvent("select", this, date, picker);
16159         Roo.menu.DateItem.superclass.handleClick.call(this);
16160     }
16161 });/*
16162  * Based on:
16163  * Ext JS Library 1.1.1
16164  * Copyright(c) 2006-2007, Ext JS, LLC.
16165  *
16166  * Originally Released Under LGPL - original licence link has changed is not relivant.
16167  *
16168  * Fork - LGPL
16169  * <script type="text/javascript">
16170  */
16171  
16172 /**
16173  * @class Roo.menu.ColorItem
16174  * @extends Roo.menu.Adapter
16175  * A menu item that wraps the {@link Roo.ColorPalette} component.
16176  * @constructor
16177  * Creates a new ColorItem
16178  * @param {Object} config Configuration options
16179  */
16180 Roo.menu.ColorItem = function(config){
16181     Roo.menu.ColorItem.superclass.constructor.call(this, new Roo.ColorPalette(config), config);
16182     /** The Roo.ColorPalette object @type Roo.ColorPalette */
16183     this.palette = this.component;
16184     this.relayEvents(this.palette, ["select"]);
16185     if(this.selectHandler){
16186         this.on('select', this.selectHandler, this.scope);
16187     }
16188 };
16189 Roo.extend(Roo.menu.ColorItem, Roo.menu.Adapter);/*
16190  * Based on:
16191  * Ext JS Library 1.1.1
16192  * Copyright(c) 2006-2007, Ext JS, LLC.
16193  *
16194  * Originally Released Under LGPL - original licence link has changed is not relivant.
16195  *
16196  * Fork - LGPL
16197  * <script type="text/javascript">
16198  */
16199  
16200
16201 /**
16202  * @class Roo.menu.DateMenu
16203  * @extends Roo.menu.Menu
16204  * A menu containing a {@link Roo.menu.DateItem} component (which provides a date picker).
16205  * @constructor
16206  * Creates a new DateMenu
16207  * @param {Object} config Configuration options
16208  */
16209 Roo.menu.DateMenu = function(config){
16210     Roo.menu.DateMenu.superclass.constructor.call(this, config);
16211     this.plain = true;
16212     var di = new Roo.menu.DateItem(config);
16213     this.add(di);
16214     /**
16215      * The {@link Roo.DatePicker} instance for this DateMenu
16216      * @type DatePicker
16217      */
16218     this.picker = di.picker;
16219     /**
16220      * @event select
16221      * @param {DatePicker} picker
16222      * @param {Date} date
16223      */
16224     this.relayEvents(di, ["select"]);
16225     this.on('beforeshow', function(){
16226         if(this.picker){
16227             this.picker.hideMonthPicker(false);
16228         }
16229     }, this);
16230 };
16231 Roo.extend(Roo.menu.DateMenu, Roo.menu.Menu, {
16232     cls:'x-date-menu'
16233 });/*
16234  * Based on:
16235  * Ext JS Library 1.1.1
16236  * Copyright(c) 2006-2007, Ext JS, LLC.
16237  *
16238  * Originally Released Under LGPL - original licence link has changed is not relivant.
16239  *
16240  * Fork - LGPL
16241  * <script type="text/javascript">
16242  */
16243  
16244
16245 /**
16246  * @class Roo.menu.ColorMenu
16247  * @extends Roo.menu.Menu
16248  * A menu containing a {@link Roo.menu.ColorItem} component (which provides a basic color picker).
16249  * @constructor
16250  * Creates a new ColorMenu
16251  * @param {Object} config Configuration options
16252  */
16253 Roo.menu.ColorMenu = function(config){
16254     Roo.menu.ColorMenu.superclass.constructor.call(this, config);
16255     this.plain = true;
16256     var ci = new Roo.menu.ColorItem(config);
16257     this.add(ci);
16258     /**
16259      * The {@link Roo.ColorPalette} instance for this ColorMenu
16260      * @type ColorPalette
16261      */
16262     this.palette = ci.palette;
16263     /**
16264      * @event select
16265      * @param {ColorPalette} palette
16266      * @param {String} color
16267      */
16268     this.relayEvents(ci, ["select"]);
16269 };
16270 Roo.extend(Roo.menu.ColorMenu, Roo.menu.Menu);/*
16271  * Based on:
16272  * Ext JS Library 1.1.1
16273  * Copyright(c) 2006-2007, Ext JS, LLC.
16274  *
16275  * Originally Released Under LGPL - original licence link has changed is not relivant.
16276  *
16277  * Fork - LGPL
16278  * <script type="text/javascript">
16279  */
16280  
16281 /**
16282  * @class Roo.form.TextItem
16283  * @extends Roo.BoxComponent
16284  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
16285  * @constructor
16286  * Creates a new TextItem
16287  * @param {Object} config Configuration options
16288  */
16289 Roo.form.TextItem = function(config){
16290     Roo.form.TextItem.superclass.constructor.call(this, config);
16291 };
16292
16293 Roo.extend(Roo.form.TextItem, Roo.BoxComponent,  {
16294     
16295     /**
16296      * @cfg {String} tag the tag for this item (default div)
16297      */
16298     tag : 'div',
16299     /**
16300      * @cfg {String} html the content for this item
16301      */
16302     html : '',
16303     
16304     getAutoCreate : function()
16305     {
16306         var cfg = {
16307             id: this.id,
16308             tag: this.tag,
16309             html: this.html,
16310             cls: 'x-form-item'
16311         };
16312         
16313         return cfg;
16314         
16315     },
16316     
16317     onRender : function(ct, position)
16318     {
16319         Roo.form.TextItem.superclass.onRender.call(this, ct, position);
16320         
16321         if(!this.el){
16322             var cfg = this.getAutoCreate();
16323             if(!cfg.name){
16324                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
16325             }
16326             if (!cfg.name.length) {
16327                 delete cfg.name;
16328             }
16329             this.el = ct.createChild(cfg, position);
16330         }
16331     }
16332     
16333 });/*
16334  * Based on:
16335  * Ext JS Library 1.1.1
16336  * Copyright(c) 2006-2007, Ext JS, LLC.
16337  *
16338  * Originally Released Under LGPL - original licence link has changed is not relivant.
16339  *
16340  * Fork - LGPL
16341  * <script type="text/javascript">
16342  */
16343  
16344 /**
16345  * @class Roo.form.Field
16346  * @extends Roo.BoxComponent
16347  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
16348  * @constructor
16349  * Creates a new Field
16350  * @param {Object} config Configuration options
16351  */
16352 Roo.form.Field = function(config){
16353     Roo.form.Field.superclass.constructor.call(this, config);
16354 };
16355
16356 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
16357     /**
16358      * @cfg {String} fieldLabel Label to use when rendering a form.
16359      */
16360        /**
16361      * @cfg {String} qtip Mouse over tip
16362      */
16363      
16364     /**
16365      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
16366      */
16367     invalidClass : "x-form-invalid",
16368     /**
16369      * @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")
16370      */
16371     invalidText : "The value in this field is invalid",
16372     /**
16373      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
16374      */
16375     focusClass : "x-form-focus",
16376     /**
16377      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
16378       automatic validation (defaults to "keyup").
16379      */
16380     validationEvent : "keyup",
16381     /**
16382      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
16383      */
16384     validateOnBlur : true,
16385     /**
16386      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
16387      */
16388     validationDelay : 250,
16389     /**
16390      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
16391      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
16392      */
16393     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "new-password"},
16394     /**
16395      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
16396      */
16397     fieldClass : "x-form-field",
16398     /**
16399      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
16400      *<pre>
16401 Value         Description
16402 -----------   ----------------------------------------------------------------------
16403 qtip          Display a quick tip when the user hovers over the field
16404 title         Display a default browser title attribute popup
16405 under         Add a block div beneath the field containing the error text
16406 side          Add an error icon to the right of the field with a popup on hover
16407 [element id]  Add the error text directly to the innerHTML of the specified element
16408 </pre>
16409      */
16410     msgTarget : 'qtip',
16411     /**
16412      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
16413      */
16414     msgFx : 'normal',
16415
16416     /**
16417      * @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.
16418      */
16419     readOnly : false,
16420
16421     /**
16422      * @cfg {Boolean} disabled True to disable the field (defaults to false).
16423      */
16424     disabled : false,
16425
16426     /**
16427      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
16428      */
16429     inputType : undefined,
16430     
16431     /**
16432      * @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).
16433          */
16434         tabIndex : undefined,
16435         
16436     // private
16437     isFormField : true,
16438
16439     // private
16440     hasFocus : false,
16441     /**
16442      * @property {Roo.Element} fieldEl
16443      * Element Containing the rendered Field (with label etc.)
16444      */
16445     /**
16446      * @cfg {Mixed} value A value to initialize this field with.
16447      */
16448     value : undefined,
16449
16450     /**
16451      * @cfg {String} name The field's HTML name attribute.
16452      */
16453     /**
16454      * @cfg {String} cls A CSS class to apply to the field's underlying element.
16455      */
16456     // private
16457     loadedValue : false,
16458      
16459      
16460         // private ??
16461         initComponent : function(){
16462         Roo.form.Field.superclass.initComponent.call(this);
16463         this.addEvents({
16464             /**
16465              * @event focus
16466              * Fires when this field receives input focus.
16467              * @param {Roo.form.Field} this
16468              */
16469             focus : true,
16470             /**
16471              * @event blur
16472              * Fires when this field loses input focus.
16473              * @param {Roo.form.Field} this
16474              */
16475             blur : true,
16476             /**
16477              * @event specialkey
16478              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
16479              * {@link Roo.EventObject#getKey} to determine which key was pressed.
16480              * @param {Roo.form.Field} this
16481              * @param {Roo.EventObject} e The event object
16482              */
16483             specialkey : true,
16484             /**
16485              * @event change
16486              * Fires just before the field blurs if the field value has changed.
16487              * @param {Roo.form.Field} this
16488              * @param {Mixed} newValue The new value
16489              * @param {Mixed} oldValue The original value
16490              */
16491             change : true,
16492             /**
16493              * @event invalid
16494              * Fires after the field has been marked as invalid.
16495              * @param {Roo.form.Field} this
16496              * @param {String} msg The validation message
16497              */
16498             invalid : true,
16499             /**
16500              * @event valid
16501              * Fires after the field has been validated with no errors.
16502              * @param {Roo.form.Field} this
16503              */
16504             valid : true,
16505              /**
16506              * @event keyup
16507              * Fires after the key up
16508              * @param {Roo.form.Field} this
16509              * @param {Roo.EventObject}  e The event Object
16510              */
16511             keyup : true
16512         });
16513     },
16514
16515     /**
16516      * Returns the name attribute of the field if available
16517      * @return {String} name The field name
16518      */
16519     getName: function(){
16520          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
16521     },
16522
16523     // private
16524     onRender : function(ct, position){
16525         Roo.form.Field.superclass.onRender.call(this, ct, position);
16526         if(!this.el){
16527             var cfg = this.getAutoCreate();
16528             if(!cfg.name){
16529                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
16530             }
16531             if (!cfg.name.length) {
16532                 delete cfg.name;
16533             }
16534             if(this.inputType){
16535                 cfg.type = this.inputType;
16536             }
16537             this.el = ct.createChild(cfg, position);
16538         }
16539         var type = this.el.dom.type;
16540         if(type){
16541             if(type == 'password'){
16542                 type = 'text';
16543             }
16544             this.el.addClass('x-form-'+type);
16545         }
16546         if(this.readOnly){
16547             this.el.dom.readOnly = true;
16548         }
16549         if(this.tabIndex !== undefined){
16550             this.el.dom.setAttribute('tabIndex', this.tabIndex);
16551         }
16552
16553         this.el.addClass([this.fieldClass, this.cls]);
16554         this.initValue();
16555     },
16556
16557     /**
16558      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
16559      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
16560      * @return {Roo.form.Field} this
16561      */
16562     applyTo : function(target){
16563         this.allowDomMove = false;
16564         this.el = Roo.get(target);
16565         this.render(this.el.dom.parentNode);
16566         return this;
16567     },
16568
16569     // private
16570     initValue : function(){
16571         if(this.value !== undefined){
16572             this.setValue(this.value);
16573         }else if(this.el.dom.value.length > 0){
16574             this.setValue(this.el.dom.value);
16575         }
16576     },
16577
16578     /**
16579      * Returns true if this field has been changed since it was originally loaded and is not disabled.
16580      * DEPRICATED  - it never worked well - use hasChanged/resetHasChanged.
16581      */
16582     isDirty : function() {
16583         if(this.disabled) {
16584             return false;
16585         }
16586         return String(this.getValue()) !== String(this.originalValue);
16587     },
16588
16589     /**
16590      * stores the current value in loadedValue
16591      */
16592     resetHasChanged : function()
16593     {
16594         this.loadedValue = String(this.getValue());
16595     },
16596     /**
16597      * checks the current value against the 'loaded' value.
16598      * Note - will return false if 'resetHasChanged' has not been called first.
16599      */
16600     hasChanged : function()
16601     {
16602         if(this.disabled || this.readOnly) {
16603             return false;
16604         }
16605         return this.loadedValue !== false && String(this.getValue()) !== this.loadedValue;
16606     },
16607     
16608     
16609     
16610     // private
16611     afterRender : function(){
16612         Roo.form.Field.superclass.afterRender.call(this);
16613         this.initEvents();
16614     },
16615
16616     // private
16617     fireKey : function(e){
16618         //Roo.log('field ' + e.getKey());
16619         if(e.isNavKeyPress()){
16620             this.fireEvent("specialkey", this, e);
16621         }
16622     },
16623
16624     /**
16625      * Resets the current field value to the originally loaded value and clears any validation messages
16626      */
16627     reset : function(){
16628         this.setValue(this.resetValue);
16629         this.originalValue = this.getValue();
16630         this.clearInvalid();
16631     },
16632
16633     // private
16634     initEvents : function(){
16635         // safari killled keypress - so keydown is now used..
16636         this.el.on("keydown" , this.fireKey,  this);
16637         this.el.on("focus", this.onFocus,  this);
16638         this.el.on("blur", this.onBlur,  this);
16639         this.el.relayEvent('keyup', this);
16640
16641         // reference to original value for reset
16642         this.originalValue = this.getValue();
16643         this.resetValue =  this.getValue();
16644     },
16645
16646     // private
16647     onFocus : function(){
16648         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
16649             this.el.addClass(this.focusClass);
16650         }
16651         if(!this.hasFocus){
16652             this.hasFocus = true;
16653             this.startValue = this.getValue();
16654             this.fireEvent("focus", this);
16655         }
16656     },
16657
16658     beforeBlur : Roo.emptyFn,
16659
16660     // private
16661     onBlur : function(){
16662         this.beforeBlur();
16663         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
16664             this.el.removeClass(this.focusClass);
16665         }
16666         this.hasFocus = false;
16667         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
16668             this.validate();
16669         }
16670         var v = this.getValue();
16671         if(String(v) !== String(this.startValue)){
16672             this.fireEvent('change', this, v, this.startValue);
16673         }
16674         this.fireEvent("blur", this);
16675     },
16676
16677     /**
16678      * Returns whether or not the field value is currently valid
16679      * @param {Boolean} preventMark True to disable marking the field invalid
16680      * @return {Boolean} True if the value is valid, else false
16681      */
16682     isValid : function(preventMark){
16683         if(this.disabled){
16684             return true;
16685         }
16686         var restore = this.preventMark;
16687         this.preventMark = preventMark === true;
16688         var v = this.validateValue(this.processValue(this.getRawValue()));
16689         this.preventMark = restore;
16690         return v;
16691     },
16692
16693     /**
16694      * Validates the field value
16695      * @return {Boolean} True if the value is valid, else false
16696      */
16697     validate : function(){
16698         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
16699             this.clearInvalid();
16700             return true;
16701         }
16702         return false;
16703     },
16704
16705     processValue : function(value){
16706         return value;
16707     },
16708
16709     // private
16710     // Subclasses should provide the validation implementation by overriding this
16711     validateValue : function(value){
16712         return true;
16713     },
16714
16715     /**
16716      * Mark this field as invalid
16717      * @param {String} msg The validation message
16718      */
16719     markInvalid : function(msg){
16720         if(!this.rendered || this.preventMark){ // not rendered
16721             return;
16722         }
16723         
16724         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
16725         
16726         obj.el.addClass(this.invalidClass);
16727         msg = msg || this.invalidText;
16728         switch(this.msgTarget){
16729             case 'qtip':
16730                 obj.el.dom.qtip = msg;
16731                 obj.el.dom.qclass = 'x-form-invalid-tip';
16732                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
16733                     Roo.QuickTips.enable();
16734                 }
16735                 break;
16736             case 'title':
16737                 this.el.dom.title = msg;
16738                 break;
16739             case 'under':
16740                 if(!this.errorEl){
16741                     var elp = this.el.findParent('.x-form-element', 5, true);
16742                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
16743                     this.errorEl.setWidth(elp.getWidth(true)-20);
16744                 }
16745                 this.errorEl.update(msg);
16746                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
16747                 break;
16748             case 'side':
16749                 if(!this.errorIcon){
16750                     var elp = this.el.findParent('.x-form-element', 5, true);
16751                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
16752                 }
16753                 this.alignErrorIcon();
16754                 this.errorIcon.dom.qtip = msg;
16755                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
16756                 this.errorIcon.show();
16757                 this.on('resize', this.alignErrorIcon, this);
16758                 break;
16759             default:
16760                 var t = Roo.getDom(this.msgTarget);
16761                 t.innerHTML = msg;
16762                 t.style.display = this.msgDisplay;
16763                 break;
16764         }
16765         this.fireEvent('invalid', this, msg);
16766     },
16767
16768     // private
16769     alignErrorIcon : function(){
16770         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
16771     },
16772
16773     /**
16774      * Clear any invalid styles/messages for this field
16775      */
16776     clearInvalid : function(){
16777         if(!this.rendered || this.preventMark){ // not rendered
16778             return;
16779         }
16780         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
16781         
16782         obj.el.removeClass(this.invalidClass);
16783         switch(this.msgTarget){
16784             case 'qtip':
16785                 obj.el.dom.qtip = '';
16786                 break;
16787             case 'title':
16788                 this.el.dom.title = '';
16789                 break;
16790             case 'under':
16791                 if(this.errorEl){
16792                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
16793                 }
16794                 break;
16795             case 'side':
16796                 if(this.errorIcon){
16797                     this.errorIcon.dom.qtip = '';
16798                     this.errorIcon.hide();
16799                     this.un('resize', this.alignErrorIcon, this);
16800                 }
16801                 break;
16802             default:
16803                 var t = Roo.getDom(this.msgTarget);
16804                 t.innerHTML = '';
16805                 t.style.display = 'none';
16806                 break;
16807         }
16808         this.fireEvent('valid', this);
16809     },
16810
16811     /**
16812      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
16813      * @return {Mixed} value The field value
16814      */
16815     getRawValue : function(){
16816         var v = this.el.getValue();
16817         
16818         return v;
16819     },
16820
16821     /**
16822      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
16823      * @return {Mixed} value The field value
16824      */
16825     getValue : function(){
16826         var v = this.el.getValue();
16827          
16828         return v;
16829     },
16830
16831     /**
16832      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
16833      * @param {Mixed} value The value to set
16834      */
16835     setRawValue : function(v){
16836         return this.el.dom.value = (v === null || v === undefined ? '' : v);
16837     },
16838
16839     /**
16840      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
16841      * @param {Mixed} value The value to set
16842      */
16843     setValue : function(v){
16844         this.value = v;
16845         if(this.rendered){
16846             this.el.dom.value = (v === null || v === undefined ? '' : v);
16847              this.validate();
16848         }
16849     },
16850
16851     adjustSize : function(w, h){
16852         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
16853         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
16854         return s;
16855     },
16856
16857     adjustWidth : function(tag, w){
16858         tag = tag.toLowerCase();
16859         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
16860             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
16861                 if(tag == 'input'){
16862                     return w + 2;
16863                 }
16864                 if(tag == 'textarea'){
16865                     return w-2;
16866                 }
16867             }else if(Roo.isOpera){
16868                 if(tag == 'input'){
16869                     return w + 2;
16870                 }
16871                 if(tag == 'textarea'){
16872                     return w-2;
16873                 }
16874             }
16875         }
16876         return w;
16877     }
16878 });
16879
16880
16881 // anything other than normal should be considered experimental
16882 Roo.form.Field.msgFx = {
16883     normal : {
16884         show: function(msgEl, f){
16885             msgEl.setDisplayed('block');
16886         },
16887
16888         hide : function(msgEl, f){
16889             msgEl.setDisplayed(false).update('');
16890         }
16891     },
16892
16893     slide : {
16894         show: function(msgEl, f){
16895             msgEl.slideIn('t', {stopFx:true});
16896         },
16897
16898         hide : function(msgEl, f){
16899             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
16900         }
16901     },
16902
16903     slideRight : {
16904         show: function(msgEl, f){
16905             msgEl.fixDisplay();
16906             msgEl.alignTo(f.el, 'tl-tr');
16907             msgEl.slideIn('l', {stopFx:true});
16908         },
16909
16910         hide : function(msgEl, f){
16911             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
16912         }
16913     }
16914 };/*
16915  * Based on:
16916  * Ext JS Library 1.1.1
16917  * Copyright(c) 2006-2007, Ext JS, LLC.
16918  *
16919  * Originally Released Under LGPL - original licence link has changed is not relivant.
16920  *
16921  * Fork - LGPL
16922  * <script type="text/javascript">
16923  */
16924  
16925
16926 /**
16927  * @class Roo.form.TextField
16928  * @extends Roo.form.Field
16929  * Basic text field.  Can be used as a direct replacement for traditional text inputs, or as the base
16930  * class for more sophisticated input controls (like {@link Roo.form.TextArea} and {@link Roo.form.ComboBox}).
16931  * @constructor
16932  * Creates a new TextField
16933  * @param {Object} config Configuration options
16934  */
16935 Roo.form.TextField = function(config){
16936     Roo.form.TextField.superclass.constructor.call(this, config);
16937     this.addEvents({
16938         /**
16939          * @event autosize
16940          * Fires when the autosize function is triggered.  The field may or may not have actually changed size
16941          * according to the default logic, but this event provides a hook for the developer to apply additional
16942          * logic at runtime to resize the field if needed.
16943              * @param {Roo.form.Field} this This text field
16944              * @param {Number} width The new field width
16945              */
16946         autosize : true
16947     });
16948 };
16949
16950 Roo.extend(Roo.form.TextField, Roo.form.Field,  {
16951     /**
16952      * @cfg {Boolean} grow True if this field should automatically grow and shrink to its content
16953      */
16954     grow : false,
16955     /**
16956      * @cfg {Number} growMin The minimum width to allow when grow = true (defaults to 30)
16957      */
16958     growMin : 30,
16959     /**
16960      * @cfg {Number} growMax The maximum width to allow when grow = true (defaults to 800)
16961      */
16962     growMax : 800,
16963     /**
16964      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
16965      */
16966     vtype : null,
16967     /**
16968      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
16969      */
16970     maskRe : null,
16971     /**
16972      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
16973      */
16974     disableKeyFilter : false,
16975     /**
16976      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
16977      */
16978     allowBlank : true,
16979     /**
16980      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
16981      */
16982     minLength : 0,
16983     /**
16984      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
16985      */
16986     maxLength : Number.MAX_VALUE,
16987     /**
16988      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
16989      */
16990     minLengthText : "The minimum length for this field is {0}",
16991     /**
16992      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
16993      */
16994     maxLengthText : "The maximum length for this field is {0}",
16995     /**
16996      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
16997      */
16998     selectOnFocus : false,
16999     /**
17000      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
17001      */
17002     blankText : "This field is required",
17003     /**
17004      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
17005      * If available, this function will be called only after the basic validators all return true, and will be passed the
17006      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
17007      */
17008     validator : null,
17009     /**
17010      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
17011      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
17012      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
17013      */
17014     regex : null,
17015     /**
17016      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
17017      */
17018     regexText : "",
17019     /**
17020      * @cfg {String} emptyText The default text to display in an empty field - placeholder... (defaults to null).
17021      */
17022     emptyText : null,
17023    
17024
17025     // private
17026     initEvents : function()
17027     {
17028         if (this.emptyText) {
17029             this.el.attr('placeholder', this.emptyText);
17030         }
17031         
17032         Roo.form.TextField.superclass.initEvents.call(this);
17033         if(this.validationEvent == 'keyup'){
17034             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
17035             this.el.on('keyup', this.filterValidation, this);
17036         }
17037         else if(this.validationEvent !== false){
17038             this.el.on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
17039         }
17040         
17041         if(this.selectOnFocus){
17042             this.on("focus", this.preFocus, this);
17043             
17044         }
17045         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
17046             this.el.on("keypress", this.filterKeys, this);
17047         }
17048         if(this.grow){
17049             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
17050             this.el.on("click", this.autoSize,  this);
17051         }
17052         if(this.el.is('input[type=password]') && Roo.isSafari){
17053             this.el.on('keydown', this.SafariOnKeyDown, this);
17054         }
17055     },
17056
17057     processValue : function(value){
17058         if(this.stripCharsRe){
17059             var newValue = value.replace(this.stripCharsRe, '');
17060             if(newValue !== value){
17061                 this.setRawValue(newValue);
17062                 return newValue;
17063             }
17064         }
17065         return value;
17066     },
17067
17068     filterValidation : function(e){
17069         if(!e.isNavKeyPress()){
17070             this.validationTask.delay(this.validationDelay);
17071         }
17072     },
17073
17074     // private
17075     onKeyUp : function(e){
17076         if(!e.isNavKeyPress()){
17077             this.autoSize();
17078         }
17079     },
17080
17081     /**
17082      * Resets the current field value to the originally-loaded value and clears any validation messages.
17083      *  
17084      */
17085     reset : function(){
17086         Roo.form.TextField.superclass.reset.call(this);
17087        
17088     },
17089
17090     
17091     // private
17092     preFocus : function(){
17093         
17094         if(this.selectOnFocus){
17095             this.el.dom.select();
17096         }
17097     },
17098
17099     
17100     // private
17101     filterKeys : function(e){
17102         var k = e.getKey();
17103         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
17104             return;
17105         }
17106         var c = e.getCharCode(), cc = String.fromCharCode(c);
17107         if(Roo.isIE && (e.isSpecialKey() || !cc)){
17108             return;
17109         }
17110         if(!this.maskRe.test(cc)){
17111             e.stopEvent();
17112         }
17113     },
17114
17115     setValue : function(v){
17116         
17117         Roo.form.TextField.superclass.setValue.apply(this, arguments);
17118         
17119         this.autoSize();
17120     },
17121
17122     /**
17123      * Validates a value according to the field's validation rules and marks the field as invalid
17124      * if the validation fails
17125      * @param {Mixed} value The value to validate
17126      * @return {Boolean} True if the value is valid, else false
17127      */
17128     validateValue : function(value){
17129         if(value.length < 1)  { // if it's blank
17130              if(this.allowBlank){
17131                 this.clearInvalid();
17132                 return true;
17133              }else{
17134                 this.markInvalid(this.blankText);
17135                 return false;
17136              }
17137         }
17138         if(value.length < this.minLength){
17139             this.markInvalid(String.format(this.minLengthText, this.minLength));
17140             return false;
17141         }
17142         if(value.length > this.maxLength){
17143             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
17144             return false;
17145         }
17146         if(this.vtype){
17147             var vt = Roo.form.VTypes;
17148             if(!vt[this.vtype](value, this)){
17149                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
17150                 return false;
17151             }
17152         }
17153         if(typeof this.validator == "function"){
17154             var msg = this.validator(value);
17155             if(msg !== true){
17156                 this.markInvalid(msg);
17157                 return false;
17158             }
17159         }
17160         if(this.regex && !this.regex.test(value)){
17161             this.markInvalid(this.regexText);
17162             return false;
17163         }
17164         return true;
17165     },
17166
17167     /**
17168      * Selects text in this field
17169      * @param {Number} start (optional) The index where the selection should start (defaults to 0)
17170      * @param {Number} end (optional) The index where the selection should end (defaults to the text length)
17171      */
17172     selectText : function(start, end){
17173         var v = this.getRawValue();
17174         if(v.length > 0){
17175             start = start === undefined ? 0 : start;
17176             end = end === undefined ? v.length : end;
17177             var d = this.el.dom;
17178             if(d.setSelectionRange){
17179                 d.setSelectionRange(start, end);
17180             }else if(d.createTextRange){
17181                 var range = d.createTextRange();
17182                 range.moveStart("character", start);
17183                 range.moveEnd("character", v.length-end);
17184                 range.select();
17185             }
17186         }
17187     },
17188
17189     /**
17190      * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.
17191      * This only takes effect if grow = true, and fires the autosize event.
17192      */
17193     autoSize : function(){
17194         if(!this.grow || !this.rendered){
17195             return;
17196         }
17197         if(!this.metrics){
17198             this.metrics = Roo.util.TextMetrics.createInstance(this.el);
17199         }
17200         var el = this.el;
17201         var v = el.dom.value;
17202         var d = document.createElement('div');
17203         d.appendChild(document.createTextNode(v));
17204         v = d.innerHTML;
17205         d = null;
17206         v += "&#160;";
17207         var w = Math.min(this.growMax, Math.max(this.metrics.getWidth(v) + /* add extra padding */ 10, this.growMin));
17208         this.el.setWidth(w);
17209         this.fireEvent("autosize", this, w);
17210     },
17211     
17212     // private
17213     SafariOnKeyDown : function(event)
17214     {
17215         // this is a workaround for a password hang bug on chrome/ webkit.
17216         
17217         var isSelectAll = false;
17218         
17219         if(this.el.dom.selectionEnd > 0){
17220             isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
17221         }
17222         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
17223             event.preventDefault();
17224             this.setValue('');
17225             return;
17226         }
17227         
17228         if(isSelectAll && event.getCharCode() > 31){ // backspace and delete key
17229             
17230             event.preventDefault();
17231             // this is very hacky as keydown always get's upper case.
17232             
17233             var cc = String.fromCharCode(event.getCharCode());
17234             
17235             
17236             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
17237             
17238         }
17239         
17240         
17241     }
17242 });/*
17243  * Based on:
17244  * Ext JS Library 1.1.1
17245  * Copyright(c) 2006-2007, Ext JS, LLC.
17246  *
17247  * Originally Released Under LGPL - original licence link has changed is not relivant.
17248  *
17249  * Fork - LGPL
17250  * <script type="text/javascript">
17251  */
17252  
17253 /**
17254  * @class Roo.form.Hidden
17255  * @extends Roo.form.TextField
17256  * Simple Hidden element used on forms 
17257  * 
17258  * usage: form.add(new Roo.form.HiddenField({ 'name' : 'test1' }));
17259  * 
17260  * @constructor
17261  * Creates a new Hidden form element.
17262  * @param {Object} config Configuration options
17263  */
17264
17265
17266
17267 // easy hidden field...
17268 Roo.form.Hidden = function(config){
17269     Roo.form.Hidden.superclass.constructor.call(this, config);
17270 };
17271   
17272 Roo.extend(Roo.form.Hidden, Roo.form.TextField, {
17273     fieldLabel:      '',
17274     inputType:      'hidden',
17275     width:          50,
17276     allowBlank:     true,
17277     labelSeparator: '',
17278     hidden:         true,
17279     itemCls :       'x-form-item-display-none'
17280
17281
17282 });
17283
17284
17285 /*
17286  * Based on:
17287  * Ext JS Library 1.1.1
17288  * Copyright(c) 2006-2007, Ext JS, LLC.
17289  *
17290  * Originally Released Under LGPL - original licence link has changed is not relivant.
17291  *
17292  * Fork - LGPL
17293  * <script type="text/javascript">
17294  */
17295  
17296 /**
17297  * @class Roo.form.TriggerField
17298  * @extends Roo.form.TextField
17299  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
17300  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
17301  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
17302  * for which you can provide a custom implementation.  For example:
17303  * <pre><code>
17304 var trigger = new Roo.form.TriggerField();
17305 trigger.onTriggerClick = myTriggerFn;
17306 trigger.applyTo('my-field');
17307 </code></pre>
17308  *
17309  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
17310  * {@link Roo.form.DateField} and {@link Roo.form.ComboBox} are perfect examples of this.
17311  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
17312  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
17313  * @constructor
17314  * Create a new TriggerField.
17315  * @param {Object} config Configuration options (valid {@Roo.form.TextField} config options will also be applied
17316  * to the base TextField)
17317  */
17318 Roo.form.TriggerField = function(config){
17319     this.mimicing = false;
17320     Roo.form.TriggerField.superclass.constructor.call(this, config);
17321 };
17322
17323 Roo.extend(Roo.form.TriggerField, Roo.form.TextField,  {
17324     /**
17325      * @cfg {String} triggerClass A CSS class to apply to the trigger
17326      */
17327     /**
17328      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
17329      * {tag: "input", type: "text", size: "16", autocomplete: "off"})
17330      */
17331     defaultAutoCreate : {tag: "input", type: "text", size: "16", autocomplete: "new-password"},
17332     /**
17333      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
17334      */
17335     hideTrigger:false,
17336
17337     /** @cfg {Boolean} grow @hide */
17338     /** @cfg {Number} growMin @hide */
17339     /** @cfg {Number} growMax @hide */
17340
17341     /**
17342      * @hide 
17343      * @method
17344      */
17345     autoSize: Roo.emptyFn,
17346     // private
17347     monitorTab : true,
17348     // private
17349     deferHeight : true,
17350
17351     
17352     actionMode : 'wrap',
17353     // private
17354     onResize : function(w, h){
17355         Roo.form.TriggerField.superclass.onResize.apply(this, arguments);
17356         if(typeof w == 'number'){
17357             var x = w - this.trigger.getWidth();
17358             this.el.setWidth(this.adjustWidth('input', x));
17359             this.trigger.setStyle('left', x+'px');
17360         }
17361     },
17362
17363     // private
17364     adjustSize : Roo.BoxComponent.prototype.adjustSize,
17365
17366     // private
17367     getResizeEl : function(){
17368         return this.wrap;
17369     },
17370
17371     // private
17372     getPositionEl : function(){
17373         return this.wrap;
17374     },
17375
17376     // private
17377     alignErrorIcon : function(){
17378         this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
17379     },
17380
17381     // private
17382     onRender : function(ct, position){
17383         Roo.form.TriggerField.superclass.onRender.call(this, ct, position);
17384         this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
17385         this.trigger = this.wrap.createChild(this.triggerConfig ||
17386                 {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass});
17387         if(this.hideTrigger){
17388             this.trigger.setDisplayed(false);
17389         }
17390         this.initTrigger();
17391         if(!this.width){
17392             this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
17393         }
17394     },
17395
17396     // private
17397     initTrigger : function(){
17398         this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
17399         this.trigger.addClassOnOver('x-form-trigger-over');
17400         this.trigger.addClassOnClick('x-form-trigger-click');
17401     },
17402
17403     // private
17404     onDestroy : function(){
17405         if(this.trigger){
17406             this.trigger.removeAllListeners();
17407             this.trigger.remove();
17408         }
17409         if(this.wrap){
17410             this.wrap.remove();
17411         }
17412         Roo.form.TriggerField.superclass.onDestroy.call(this);
17413     },
17414
17415     // private
17416     onFocus : function(){
17417         Roo.form.TriggerField.superclass.onFocus.call(this);
17418         if(!this.mimicing){
17419             this.wrap.addClass('x-trigger-wrap-focus');
17420             this.mimicing = true;
17421             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
17422             if(this.monitorTab){
17423                 this.el.on("keydown", this.checkTab, this);
17424             }
17425         }
17426     },
17427
17428     // private
17429     checkTab : function(e){
17430         if(e.getKey() == e.TAB){
17431             this.triggerBlur();
17432         }
17433     },
17434
17435     // private
17436     onBlur : function(){
17437         // do nothing
17438     },
17439
17440     // private
17441     mimicBlur : function(e, t){
17442         if(!this.wrap.contains(t) && this.validateBlur()){
17443             this.triggerBlur();
17444         }
17445     },
17446
17447     // private
17448     triggerBlur : function(){
17449         this.mimicing = false;
17450         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
17451         if(this.monitorTab){
17452             this.el.un("keydown", this.checkTab, this);
17453         }
17454         this.wrap.removeClass('x-trigger-wrap-focus');
17455         Roo.form.TriggerField.superclass.onBlur.call(this);
17456     },
17457
17458     // private
17459     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
17460     validateBlur : function(e, t){
17461         return true;
17462     },
17463
17464     // private
17465     onDisable : function(){
17466         Roo.form.TriggerField.superclass.onDisable.call(this);
17467         if(this.wrap){
17468             this.wrap.addClass('x-item-disabled');
17469         }
17470     },
17471
17472     // private
17473     onEnable : function(){
17474         Roo.form.TriggerField.superclass.onEnable.call(this);
17475         if(this.wrap){
17476             this.wrap.removeClass('x-item-disabled');
17477         }
17478     },
17479
17480     // private
17481     onShow : function(){
17482         var ae = this.getActionEl();
17483         
17484         if(ae){
17485             ae.dom.style.display = '';
17486             ae.dom.style.visibility = 'visible';
17487         }
17488     },
17489
17490     // private
17491     
17492     onHide : function(){
17493         var ae = this.getActionEl();
17494         ae.dom.style.display = 'none';
17495     },
17496
17497     /**
17498      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
17499      * by an implementing function.
17500      * @method
17501      * @param {EventObject} e
17502      */
17503     onTriggerClick : Roo.emptyFn
17504 });
17505
17506 // TwinTriggerField is not a public class to be used directly.  It is meant as an abstract base class
17507 // to be extended by an implementing class.  For an example of implementing this class, see the custom
17508 // SearchField implementation here: http://extjs.com/deploy/ext/examples/form/custom.html
17509 Roo.form.TwinTriggerField = Roo.extend(Roo.form.TriggerField, {
17510     initComponent : function(){
17511         Roo.form.TwinTriggerField.superclass.initComponent.call(this);
17512
17513         this.triggerConfig = {
17514             tag:'span', cls:'x-form-twin-triggers', cn:[
17515             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger1Class},
17516             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger2Class}
17517         ]};
17518     },
17519
17520     getTrigger : function(index){
17521         return this.triggers[index];
17522     },
17523
17524     initTrigger : function(){
17525         var ts = this.trigger.select('.x-form-trigger', true);
17526         this.wrap.setStyle('overflow', 'hidden');
17527         var triggerField = this;
17528         ts.each(function(t, all, index){
17529             t.hide = function(){
17530                 var w = triggerField.wrap.getWidth();
17531                 this.dom.style.display = 'none';
17532                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
17533             };
17534             t.show = function(){
17535                 var w = triggerField.wrap.getWidth();
17536                 this.dom.style.display = '';
17537                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
17538             };
17539             var triggerIndex = 'Trigger'+(index+1);
17540
17541             if(this['hide'+triggerIndex]){
17542                 t.dom.style.display = 'none';
17543             }
17544             t.on("click", this['on'+triggerIndex+'Click'], this, {preventDefault:true});
17545             t.addClassOnOver('x-form-trigger-over');
17546             t.addClassOnClick('x-form-trigger-click');
17547         }, this);
17548         this.triggers = ts.elements;
17549     },
17550
17551     onTrigger1Click : Roo.emptyFn,
17552     onTrigger2Click : Roo.emptyFn
17553 });/*
17554  * Based on:
17555  * Ext JS Library 1.1.1
17556  * Copyright(c) 2006-2007, Ext JS, LLC.
17557  *
17558  * Originally Released Under LGPL - original licence link has changed is not relivant.
17559  *
17560  * Fork - LGPL
17561  * <script type="text/javascript">
17562  */
17563  
17564 /**
17565  * @class Roo.form.TextArea
17566  * @extends Roo.form.TextField
17567  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
17568  * support for auto-sizing.
17569  * @constructor
17570  * Creates a new TextArea
17571  * @param {Object} config Configuration options
17572  */
17573 Roo.form.TextArea = function(config){
17574     Roo.form.TextArea.superclass.constructor.call(this, config);
17575     // these are provided exchanges for backwards compat
17576     // minHeight/maxHeight were replaced by growMin/growMax to be
17577     // compatible with TextField growing config values
17578     if(this.minHeight !== undefined){
17579         this.growMin = this.minHeight;
17580     }
17581     if(this.maxHeight !== undefined){
17582         this.growMax = this.maxHeight;
17583     }
17584 };
17585
17586 Roo.extend(Roo.form.TextArea, Roo.form.TextField,  {
17587     /**
17588      * @cfg {Number} growMin The minimum height to allow when grow = true (defaults to 60)
17589      */
17590     growMin : 60,
17591     /**
17592      * @cfg {Number} growMax The maximum height to allow when grow = true (defaults to 1000)
17593      */
17594     growMax: 1000,
17595     /**
17596      * @cfg {Boolean} preventScrollbars True to prevent scrollbars from appearing regardless of how much text is
17597      * in the field (equivalent to setting overflow: hidden, defaults to false)
17598      */
17599     preventScrollbars: false,
17600     /**
17601      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
17602      * {tag: "textarea", style: "width:300px;height:60px;", autocomplete: "off"})
17603      */
17604
17605     // private
17606     onRender : function(ct, position){
17607         if(!this.el){
17608             this.defaultAutoCreate = {
17609                 tag: "textarea",
17610                 style:"width:300px;height:60px;",
17611                 autocomplete: "new-password"
17612             };
17613         }
17614         Roo.form.TextArea.superclass.onRender.call(this, ct, position);
17615         if(this.grow){
17616             this.textSizeEl = Roo.DomHelper.append(document.body, {
17617                 tag: "pre", cls: "x-form-grow-sizer"
17618             });
17619             if(this.preventScrollbars){
17620                 this.el.setStyle("overflow", "hidden");
17621             }
17622             this.el.setHeight(this.growMin);
17623         }
17624     },
17625
17626     onDestroy : function(){
17627         if(this.textSizeEl){
17628             this.textSizeEl.parentNode.removeChild(this.textSizeEl);
17629         }
17630         Roo.form.TextArea.superclass.onDestroy.call(this);
17631     },
17632
17633     // private
17634     onKeyUp : function(e){
17635         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
17636             this.autoSize();
17637         }
17638     },
17639
17640     /**
17641      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
17642      * This only takes effect if grow = true, and fires the autosize event if the height changes.
17643      */
17644     autoSize : function(){
17645         if(!this.grow || !this.textSizeEl){
17646             return;
17647         }
17648         var el = this.el;
17649         var v = el.dom.value;
17650         var ts = this.textSizeEl;
17651
17652         ts.innerHTML = '';
17653         ts.appendChild(document.createTextNode(v));
17654         v = ts.innerHTML;
17655
17656         Roo.fly(ts).setWidth(this.el.getWidth());
17657         if(v.length < 1){
17658             v = "&#160;&#160;";
17659         }else{
17660             if(Roo.isIE){
17661                 v = v.replace(/\n/g, '<p>&#160;</p>');
17662             }
17663             v += "&#160;\n&#160;";
17664         }
17665         ts.innerHTML = v;
17666         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
17667         if(h != this.lastHeight){
17668             this.lastHeight = h;
17669             this.el.setHeight(h);
17670             this.fireEvent("autosize", this, h);
17671         }
17672     }
17673 });/*
17674  * Based on:
17675  * Ext JS Library 1.1.1
17676  * Copyright(c) 2006-2007, Ext JS, LLC.
17677  *
17678  * Originally Released Under LGPL - original licence link has changed is not relivant.
17679  *
17680  * Fork - LGPL
17681  * <script type="text/javascript">
17682  */
17683  
17684
17685 /**
17686  * @class Roo.form.NumberField
17687  * @extends Roo.form.TextField
17688  * Numeric text field that provides automatic keystroke filtering and numeric validation.
17689  * @constructor
17690  * Creates a new NumberField
17691  * @param {Object} config Configuration options
17692  */
17693 Roo.form.NumberField = function(config){
17694     Roo.form.NumberField.superclass.constructor.call(this, config);
17695 };
17696
17697 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
17698     /**
17699      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
17700      */
17701     fieldClass: "x-form-field x-form-num-field",
17702     /**
17703      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
17704      */
17705     allowDecimals : true,
17706     /**
17707      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
17708      */
17709     decimalSeparator : ".",
17710     /**
17711      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
17712      */
17713     decimalPrecision : 2,
17714     /**
17715      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
17716      */
17717     allowNegative : true,
17718     /**
17719      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
17720      */
17721     minValue : Number.NEGATIVE_INFINITY,
17722     /**
17723      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
17724      */
17725     maxValue : Number.MAX_VALUE,
17726     /**
17727      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
17728      */
17729     minText : "The minimum value for this field is {0}",
17730     /**
17731      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
17732      */
17733     maxText : "The maximum value for this field is {0}",
17734     /**
17735      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
17736      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
17737      */
17738     nanText : "{0} is not a valid number",
17739
17740     // private
17741     initEvents : function(){
17742         Roo.form.NumberField.superclass.initEvents.call(this);
17743         var allowed = "0123456789";
17744         if(this.allowDecimals){
17745             allowed += this.decimalSeparator;
17746         }
17747         if(this.allowNegative){
17748             allowed += "-";
17749         }
17750         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
17751         var keyPress = function(e){
17752             var k = e.getKey();
17753             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
17754                 return;
17755             }
17756             var c = e.getCharCode();
17757             if(allowed.indexOf(String.fromCharCode(c)) === -1){
17758                 e.stopEvent();
17759             }
17760         };
17761         this.el.on("keypress", keyPress, this);
17762     },
17763
17764     // private
17765     validateValue : function(value){
17766         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
17767             return false;
17768         }
17769         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
17770              return true;
17771         }
17772         var num = this.parseValue(value);
17773         if(isNaN(num)){
17774             this.markInvalid(String.format(this.nanText, value));
17775             return false;
17776         }
17777         if(num < this.minValue){
17778             this.markInvalid(String.format(this.minText, this.minValue));
17779             return false;
17780         }
17781         if(num > this.maxValue){
17782             this.markInvalid(String.format(this.maxText, this.maxValue));
17783             return false;
17784         }
17785         return true;
17786     },
17787
17788     getValue : function(){
17789         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
17790     },
17791
17792     // private
17793     parseValue : function(value){
17794         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
17795         return isNaN(value) ? '' : value;
17796     },
17797
17798     // private
17799     fixPrecision : function(value){
17800         var nan = isNaN(value);
17801         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
17802             return nan ? '' : value;
17803         }
17804         return parseFloat(value).toFixed(this.decimalPrecision);
17805     },
17806
17807     setValue : function(v){
17808         v = this.fixPrecision(v);
17809         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
17810     },
17811
17812     // private
17813     decimalPrecisionFcn : function(v){
17814         return Math.floor(v);
17815     },
17816
17817     beforeBlur : function(){
17818         var v = this.parseValue(this.getRawValue());
17819         if(v){
17820             this.setValue(v);
17821         }
17822     }
17823 });/*
17824  * Based on:
17825  * Ext JS Library 1.1.1
17826  * Copyright(c) 2006-2007, Ext JS, LLC.
17827  *
17828  * Originally Released Under LGPL - original licence link has changed is not relivant.
17829  *
17830  * Fork - LGPL
17831  * <script type="text/javascript">
17832  */
17833  
17834 /**
17835  * @class Roo.form.DateField
17836  * @extends Roo.form.TriggerField
17837  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
17838 * @constructor
17839 * Create a new DateField
17840 * @param {Object} config
17841  */
17842 Roo.form.DateField = function(config){
17843     Roo.form.DateField.superclass.constructor.call(this, config);
17844     
17845       this.addEvents({
17846          
17847         /**
17848          * @event select
17849          * Fires when a date is selected
17850              * @param {Roo.form.DateField} combo This combo box
17851              * @param {Date} date The date selected
17852              */
17853         'select' : true
17854          
17855     });
17856     
17857     
17858     if(typeof this.minValue == "string") {
17859         this.minValue = this.parseDate(this.minValue);
17860     }
17861     if(typeof this.maxValue == "string") {
17862         this.maxValue = this.parseDate(this.maxValue);
17863     }
17864     this.ddMatch = null;
17865     if(this.disabledDates){
17866         var dd = this.disabledDates;
17867         var re = "(?:";
17868         for(var i = 0; i < dd.length; i++){
17869             re += dd[i];
17870             if(i != dd.length-1) {
17871                 re += "|";
17872             }
17873         }
17874         this.ddMatch = new RegExp(re + ")");
17875     }
17876 };
17877
17878 Roo.extend(Roo.form.DateField, Roo.form.TriggerField,  {
17879     /**
17880      * @cfg {String} format
17881      * The default date format string which can be overriden for localization support.  The format must be
17882      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
17883      */
17884     format : "m/d/y",
17885     /**
17886      * @cfg {String} altFormats
17887      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
17888      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
17889      */
17890     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
17891     /**
17892      * @cfg {Array} disabledDays
17893      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
17894      */
17895     disabledDays : null,
17896     /**
17897      * @cfg {String} disabledDaysText
17898      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
17899      */
17900     disabledDaysText : "Disabled",
17901     /**
17902      * @cfg {Array} disabledDates
17903      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
17904      * expression so they are very powerful. Some examples:
17905      * <ul>
17906      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
17907      * <li>["03/08", "09/16"] would disable those days for every year</li>
17908      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
17909      * <li>["03/../2006"] would disable every day in March 2006</li>
17910      * <li>["^03"] would disable every day in every March</li>
17911      * </ul>
17912      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
17913      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
17914      */
17915     disabledDates : null,
17916     /**
17917      * @cfg {String} disabledDatesText
17918      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
17919      */
17920     disabledDatesText : "Disabled",
17921     /**
17922      * @cfg {Date/String} minValue
17923      * The minimum allowed date. Can be either a Javascript date object or a string date in a
17924      * valid format (defaults to null).
17925      */
17926     minValue : null,
17927     /**
17928      * @cfg {Date/String} maxValue
17929      * The maximum allowed date. Can be either a Javascript date object or a string date in a
17930      * valid format (defaults to null).
17931      */
17932     maxValue : null,
17933     /**
17934      * @cfg {String} minText
17935      * The error text to display when the date in the cell is before minValue (defaults to
17936      * 'The date in this field must be after {minValue}').
17937      */
17938     minText : "The date in this field must be equal to or after {0}",
17939     /**
17940      * @cfg {String} maxText
17941      * The error text to display when the date in the cell is after maxValue (defaults to
17942      * 'The date in this field must be before {maxValue}').
17943      */
17944     maxText : "The date in this field must be equal to or before {0}",
17945     /**
17946      * @cfg {String} invalidText
17947      * The error text to display when the date in the field is invalid (defaults to
17948      * '{value} is not a valid date - it must be in the format {format}').
17949      */
17950     invalidText : "{0} is not a valid date - it must be in the format {1}",
17951     /**
17952      * @cfg {String} triggerClass
17953      * An additional CSS class used to style the trigger button.  The trigger will always get the
17954      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
17955      * which displays a calendar icon).
17956      */
17957     triggerClass : 'x-form-date-trigger',
17958     
17959
17960     /**
17961      * @cfg {Boolean} useIso
17962      * if enabled, then the date field will use a hidden field to store the 
17963      * real value as iso formated date. default (false)
17964      */ 
17965     useIso : false,
17966     /**
17967      * @cfg {String/Object} autoCreate
17968      * A DomHelper element spec, or true for a default element spec (defaults to
17969      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
17970      */ 
17971     // private
17972     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
17973     
17974     // private
17975     hiddenField: false,
17976     
17977     onRender : function(ct, position)
17978     {
17979         Roo.form.DateField.superclass.onRender.call(this, ct, position);
17980         if (this.useIso) {
17981             //this.el.dom.removeAttribute('name'); 
17982             Roo.log("Changing name?");
17983             this.el.dom.setAttribute('name', this.name + '____hidden___' ); 
17984             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
17985                     'before', true);
17986             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
17987             // prevent input submission
17988             this.hiddenName = this.name;
17989         }
17990             
17991             
17992     },
17993     
17994     // private
17995     validateValue : function(value)
17996     {
17997         value = this.formatDate(value);
17998         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
17999             Roo.log('super failed');
18000             return false;
18001         }
18002         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
18003              return true;
18004         }
18005         var svalue = value;
18006         value = this.parseDate(value);
18007         if(!value){
18008             Roo.log('parse date failed' + svalue);
18009             this.markInvalid(String.format(this.invalidText, svalue, this.format));
18010             return false;
18011         }
18012         var time = value.getTime();
18013         if(this.minValue && time < this.minValue.getTime()){
18014             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
18015             return false;
18016         }
18017         if(this.maxValue && time > this.maxValue.getTime()){
18018             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
18019             return false;
18020         }
18021         if(this.disabledDays){
18022             var day = value.getDay();
18023             for(var i = 0; i < this.disabledDays.length; i++) {
18024                 if(day === this.disabledDays[i]){
18025                     this.markInvalid(this.disabledDaysText);
18026                     return false;
18027                 }
18028             }
18029         }
18030         var fvalue = this.formatDate(value);
18031         if(this.ddMatch && this.ddMatch.test(fvalue)){
18032             this.markInvalid(String.format(this.disabledDatesText, fvalue));
18033             return false;
18034         }
18035         return true;
18036     },
18037
18038     // private
18039     // Provides logic to override the default TriggerField.validateBlur which just returns true
18040     validateBlur : function(){
18041         return !this.menu || !this.menu.isVisible();
18042     },
18043     
18044     getName: function()
18045     {
18046         // returns hidden if it's set..
18047         if (!this.rendered) {return ''};
18048         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
18049         
18050     },
18051
18052     /**
18053      * Returns the current date value of the date field.
18054      * @return {Date} The date value
18055      */
18056     getValue : function(){
18057         
18058         return  this.hiddenField ?
18059                 this.hiddenField.value :
18060                 this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
18061     },
18062
18063     /**
18064      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
18065      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
18066      * (the default format used is "m/d/y").
18067      * <br />Usage:
18068      * <pre><code>
18069 //All of these calls set the same date value (May 4, 2006)
18070
18071 //Pass a date object:
18072 var dt = new Date('5/4/06');
18073 dateField.setValue(dt);
18074
18075 //Pass a date string (default format):
18076 dateField.setValue('5/4/06');
18077
18078 //Pass a date string (custom format):
18079 dateField.format = 'Y-m-d';
18080 dateField.setValue('2006-5-4');
18081 </code></pre>
18082      * @param {String/Date} date The date or valid date string
18083      */
18084     setValue : function(date){
18085         if (this.hiddenField) {
18086             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
18087         }
18088         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
18089         // make sure the value field is always stored as a date..
18090         this.value = this.parseDate(date);
18091         
18092         
18093     },
18094
18095     // private
18096     parseDate : function(value){
18097         if(!value || value instanceof Date){
18098             return value;
18099         }
18100         var v = Date.parseDate(value, this.format);
18101          if (!v && this.useIso) {
18102             v = Date.parseDate(value, 'Y-m-d');
18103         }
18104         if(!v && this.altFormats){
18105             if(!this.altFormatsArray){
18106                 this.altFormatsArray = this.altFormats.split("|");
18107             }
18108             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
18109                 v = Date.parseDate(value, this.altFormatsArray[i]);
18110             }
18111         }
18112         return v;
18113     },
18114
18115     // private
18116     formatDate : function(date, fmt){
18117         return (!date || !(date instanceof Date)) ?
18118                date : date.dateFormat(fmt || this.format);
18119     },
18120
18121     // private
18122     menuListeners : {
18123         select: function(m, d){
18124             
18125             this.setValue(d);
18126             this.fireEvent('select', this, d);
18127         },
18128         show : function(){ // retain focus styling
18129             this.onFocus();
18130         },
18131         hide : function(){
18132             this.focus.defer(10, this);
18133             var ml = this.menuListeners;
18134             this.menu.un("select", ml.select,  this);
18135             this.menu.un("show", ml.show,  this);
18136             this.menu.un("hide", ml.hide,  this);
18137         }
18138     },
18139
18140     // private
18141     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
18142     onTriggerClick : function(){
18143         if(this.disabled){
18144             return;
18145         }
18146         if(this.menu == null){
18147             this.menu = new Roo.menu.DateMenu();
18148         }
18149         Roo.apply(this.menu.picker,  {
18150             showClear: this.allowBlank,
18151             minDate : this.minValue,
18152             maxDate : this.maxValue,
18153             disabledDatesRE : this.ddMatch,
18154             disabledDatesText : this.disabledDatesText,
18155             disabledDays : this.disabledDays,
18156             disabledDaysText : this.disabledDaysText,
18157             format : this.useIso ? 'Y-m-d' : this.format,
18158             minText : String.format(this.minText, this.formatDate(this.minValue)),
18159             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
18160         });
18161         this.menu.on(Roo.apply({}, this.menuListeners, {
18162             scope:this
18163         }));
18164         this.menu.picker.setValue(this.getValue() || new Date());
18165         this.menu.show(this.el, "tl-bl?");
18166     },
18167
18168     beforeBlur : function(){
18169         var v = this.parseDate(this.getRawValue());
18170         if(v){
18171             this.setValue(v);
18172         }
18173     },
18174
18175     /*@
18176      * overide
18177      * 
18178      */
18179     isDirty : function() {
18180         if(this.disabled) {
18181             return false;
18182         }
18183         
18184         if(typeof(this.startValue) === 'undefined'){
18185             return false;
18186         }
18187         
18188         return String(this.getValue()) !== String(this.startValue);
18189         
18190     }
18191 });/*
18192  * Based on:
18193  * Ext JS Library 1.1.1
18194  * Copyright(c) 2006-2007, Ext JS, LLC.
18195  *
18196  * Originally Released Under LGPL - original licence link has changed is not relivant.
18197  *
18198  * Fork - LGPL
18199  * <script type="text/javascript">
18200  */
18201  
18202 /**
18203  * @class Roo.form.MonthField
18204  * @extends Roo.form.TriggerField
18205  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
18206 * @constructor
18207 * Create a new MonthField
18208 * @param {Object} config
18209  */
18210 Roo.form.MonthField = function(config){
18211     
18212     Roo.form.MonthField.superclass.constructor.call(this, config);
18213     
18214       this.addEvents({
18215          
18216         /**
18217          * @event select
18218          * Fires when a date is selected
18219              * @param {Roo.form.MonthFieeld} combo This combo box
18220              * @param {Date} date The date selected
18221              */
18222         'select' : true
18223          
18224     });
18225     
18226     
18227     if(typeof this.minValue == "string") {
18228         this.minValue = this.parseDate(this.minValue);
18229     }
18230     if(typeof this.maxValue == "string") {
18231         this.maxValue = this.parseDate(this.maxValue);
18232     }
18233     this.ddMatch = null;
18234     if(this.disabledDates){
18235         var dd = this.disabledDates;
18236         var re = "(?:";
18237         for(var i = 0; i < dd.length; i++){
18238             re += dd[i];
18239             if(i != dd.length-1) {
18240                 re += "|";
18241             }
18242         }
18243         this.ddMatch = new RegExp(re + ")");
18244     }
18245 };
18246
18247 Roo.extend(Roo.form.MonthField, Roo.form.TriggerField,  {
18248     /**
18249      * @cfg {String} format
18250      * The default date format string which can be overriden for localization support.  The format must be
18251      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
18252      */
18253     format : "M Y",
18254     /**
18255      * @cfg {String} altFormats
18256      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
18257      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
18258      */
18259     altFormats : "M Y|m/Y|m-y|m-Y|my|mY",
18260     /**
18261      * @cfg {Array} disabledDays
18262      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
18263      */
18264     disabledDays : [0,1,2,3,4,5,6],
18265     /**
18266      * @cfg {String} disabledDaysText
18267      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
18268      */
18269     disabledDaysText : "Disabled",
18270     /**
18271      * @cfg {Array} disabledDates
18272      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
18273      * expression so they are very powerful. Some examples:
18274      * <ul>
18275      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
18276      * <li>["03/08", "09/16"] would disable those days for every year</li>
18277      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
18278      * <li>["03/../2006"] would disable every day in March 2006</li>
18279      * <li>["^03"] would disable every day in every March</li>
18280      * </ul>
18281      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
18282      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
18283      */
18284     disabledDates : null,
18285     /**
18286      * @cfg {String} disabledDatesText
18287      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
18288      */
18289     disabledDatesText : "Disabled",
18290     /**
18291      * @cfg {Date/String} minValue
18292      * The minimum allowed date. Can be either a Javascript date object or a string date in a
18293      * valid format (defaults to null).
18294      */
18295     minValue : null,
18296     /**
18297      * @cfg {Date/String} maxValue
18298      * The maximum allowed date. Can be either a Javascript date object or a string date in a
18299      * valid format (defaults to null).
18300      */
18301     maxValue : null,
18302     /**
18303      * @cfg {String} minText
18304      * The error text to display when the date in the cell is before minValue (defaults to
18305      * 'The date in this field must be after {minValue}').
18306      */
18307     minText : "The date in this field must be equal to or after {0}",
18308     /**
18309      * @cfg {String} maxTextf
18310      * The error text to display when the date in the cell is after maxValue (defaults to
18311      * 'The date in this field must be before {maxValue}').
18312      */
18313     maxText : "The date in this field must be equal to or before {0}",
18314     /**
18315      * @cfg {String} invalidText
18316      * The error text to display when the date in the field is invalid (defaults to
18317      * '{value} is not a valid date - it must be in the format {format}').
18318      */
18319     invalidText : "{0} is not a valid date - it must be in the format {1}",
18320     /**
18321      * @cfg {String} triggerClass
18322      * An additional CSS class used to style the trigger button.  The trigger will always get the
18323      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
18324      * which displays a calendar icon).
18325      */
18326     triggerClass : 'x-form-date-trigger',
18327     
18328
18329     /**
18330      * @cfg {Boolean} useIso
18331      * if enabled, then the date field will use a hidden field to store the 
18332      * real value as iso formated date. default (true)
18333      */ 
18334     useIso : true,
18335     /**
18336      * @cfg {String/Object} autoCreate
18337      * A DomHelper element spec, or true for a default element spec (defaults to
18338      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
18339      */ 
18340     // private
18341     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "new-password"},
18342     
18343     // private
18344     hiddenField: false,
18345     
18346     hideMonthPicker : false,
18347     
18348     onRender : function(ct, position)
18349     {
18350         Roo.form.MonthField.superclass.onRender.call(this, ct, position);
18351         if (this.useIso) {
18352             this.el.dom.removeAttribute('name'); 
18353             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
18354                     'before', true);
18355             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
18356             // prevent input submission
18357             this.hiddenName = this.name;
18358         }
18359             
18360             
18361     },
18362     
18363     // private
18364     validateValue : function(value)
18365     {
18366         value = this.formatDate(value);
18367         if(!Roo.form.MonthField.superclass.validateValue.call(this, value)){
18368             return false;
18369         }
18370         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
18371              return true;
18372         }
18373         var svalue = value;
18374         value = this.parseDate(value);
18375         if(!value){
18376             this.markInvalid(String.format(this.invalidText, svalue, this.format));
18377             return false;
18378         }
18379         var time = value.getTime();
18380         if(this.minValue && time < this.minValue.getTime()){
18381             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
18382             return false;
18383         }
18384         if(this.maxValue && time > this.maxValue.getTime()){
18385             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
18386             return false;
18387         }
18388         /*if(this.disabledDays){
18389             var day = value.getDay();
18390             for(var i = 0; i < this.disabledDays.length; i++) {
18391                 if(day === this.disabledDays[i]){
18392                     this.markInvalid(this.disabledDaysText);
18393                     return false;
18394                 }
18395             }
18396         }
18397         */
18398         var fvalue = this.formatDate(value);
18399         /*if(this.ddMatch && this.ddMatch.test(fvalue)){
18400             this.markInvalid(String.format(this.disabledDatesText, fvalue));
18401             return false;
18402         }
18403         */
18404         return true;
18405     },
18406
18407     // private
18408     // Provides logic to override the default TriggerField.validateBlur which just returns true
18409     validateBlur : function(){
18410         return !this.menu || !this.menu.isVisible();
18411     },
18412
18413     /**
18414      * Returns the current date value of the date field.
18415      * @return {Date} The date value
18416      */
18417     getValue : function(){
18418         
18419         
18420         
18421         return  this.hiddenField ?
18422                 this.hiddenField.value :
18423                 this.parseDate(Roo.form.MonthField.superclass.getValue.call(this)) || "";
18424     },
18425
18426     /**
18427      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
18428      * date, using MonthField.format as the date format, according to the same rules as {@link Date#parseDate}
18429      * (the default format used is "m/d/y").
18430      * <br />Usage:
18431      * <pre><code>
18432 //All of these calls set the same date value (May 4, 2006)
18433
18434 //Pass a date object:
18435 var dt = new Date('5/4/06');
18436 monthField.setValue(dt);
18437
18438 //Pass a date string (default format):
18439 monthField.setValue('5/4/06');
18440
18441 //Pass a date string (custom format):
18442 monthField.format = 'Y-m-d';
18443 monthField.setValue('2006-5-4');
18444 </code></pre>
18445      * @param {String/Date} date The date or valid date string
18446      */
18447     setValue : function(date){
18448         Roo.log('month setValue' + date);
18449         // can only be first of month..
18450         
18451         var val = this.parseDate(date);
18452         
18453         if (this.hiddenField) {
18454             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
18455         }
18456         Roo.form.MonthField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
18457         this.value = this.parseDate(date);
18458     },
18459
18460     // private
18461     parseDate : function(value){
18462         if(!value || value instanceof Date){
18463             value = value ? Date.parseDate(value.format('Y-m') + '-01', 'Y-m-d') : null;
18464             return value;
18465         }
18466         var v = Date.parseDate(value, this.format);
18467         if (!v && this.useIso) {
18468             v = Date.parseDate(value, 'Y-m-d');
18469         }
18470         if (v) {
18471             // 
18472             v = Date.parseDate(v.format('Y-m') +'-01', 'Y-m-d');
18473         }
18474         
18475         
18476         if(!v && this.altFormats){
18477             if(!this.altFormatsArray){
18478                 this.altFormatsArray = this.altFormats.split("|");
18479             }
18480             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
18481                 v = Date.parseDate(value, this.altFormatsArray[i]);
18482             }
18483         }
18484         return v;
18485     },
18486
18487     // private
18488     formatDate : function(date, fmt){
18489         return (!date || !(date instanceof Date)) ?
18490                date : date.dateFormat(fmt || this.format);
18491     },
18492
18493     // private
18494     menuListeners : {
18495         select: function(m, d){
18496             this.setValue(d);
18497             this.fireEvent('select', this, d);
18498         },
18499         show : function(){ // retain focus styling
18500             this.onFocus();
18501         },
18502         hide : function(){
18503             this.focus.defer(10, this);
18504             var ml = this.menuListeners;
18505             this.menu.un("select", ml.select,  this);
18506             this.menu.un("show", ml.show,  this);
18507             this.menu.un("hide", ml.hide,  this);
18508         }
18509     },
18510     // private
18511     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
18512     onTriggerClick : function(){
18513         if(this.disabled){
18514             return;
18515         }
18516         if(this.menu == null){
18517             this.menu = new Roo.menu.DateMenu();
18518            
18519         }
18520         
18521         Roo.apply(this.menu.picker,  {
18522             
18523             showClear: this.allowBlank,
18524             minDate : this.minValue,
18525             maxDate : this.maxValue,
18526             disabledDatesRE : this.ddMatch,
18527             disabledDatesText : this.disabledDatesText,
18528             
18529             format : this.useIso ? 'Y-m-d' : this.format,
18530             minText : String.format(this.minText, this.formatDate(this.minValue)),
18531             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
18532             
18533         });
18534          this.menu.on(Roo.apply({}, this.menuListeners, {
18535             scope:this
18536         }));
18537        
18538         
18539         var m = this.menu;
18540         var p = m.picker;
18541         
18542         // hide month picker get's called when we called by 'before hide';
18543         
18544         var ignorehide = true;
18545         p.hideMonthPicker  = function(disableAnim){
18546             if (ignorehide) {
18547                 return;
18548             }
18549              if(this.monthPicker){
18550                 Roo.log("hideMonthPicker called");
18551                 if(disableAnim === true){
18552                     this.monthPicker.hide();
18553                 }else{
18554                     this.monthPicker.slideOut('t', {duration:.2});
18555                     p.setValue(new Date(m.picker.mpSelYear, m.picker.mpSelMonth, 1));
18556                     p.fireEvent("select", this, this.value);
18557                     m.hide();
18558                 }
18559             }
18560         }
18561         
18562         Roo.log('picker set value');
18563         Roo.log(this.getValue());
18564         p.setValue(this.getValue() ? this.parseDate(this.getValue()) : new Date());
18565         m.show(this.el, 'tl-bl?');
18566         ignorehide  = false;
18567         // this will trigger hideMonthPicker..
18568         
18569         
18570         // hidden the day picker
18571         Roo.select('.x-date-picker table', true).first().dom.style.visibility = "hidden";
18572         
18573         
18574         
18575       
18576         
18577         p.showMonthPicker.defer(100, p);
18578     
18579         
18580        
18581     },
18582
18583     beforeBlur : function(){
18584         var v = this.parseDate(this.getRawValue());
18585         if(v){
18586             this.setValue(v);
18587         }
18588     }
18589
18590     /** @cfg {Boolean} grow @hide */
18591     /** @cfg {Number} growMin @hide */
18592     /** @cfg {Number} growMax @hide */
18593     /**
18594      * @hide
18595      * @method autoSize
18596      */
18597 });/*
18598  * Based on:
18599  * Ext JS Library 1.1.1
18600  * Copyright(c) 2006-2007, Ext JS, LLC.
18601  *
18602  * Originally Released Under LGPL - original licence link has changed is not relivant.
18603  *
18604  * Fork - LGPL
18605  * <script type="text/javascript">
18606  */
18607  
18608
18609 /**
18610  * @class Roo.form.ComboBox
18611  * @extends Roo.form.TriggerField
18612  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
18613  * @constructor
18614  * Create a new ComboBox.
18615  * @param {Object} config Configuration options
18616  */
18617 Roo.form.ComboBox = function(config){
18618     Roo.form.ComboBox.superclass.constructor.call(this, config);
18619     this.addEvents({
18620         /**
18621          * @event expand
18622          * Fires when the dropdown list is expanded
18623              * @param {Roo.form.ComboBox} combo This combo box
18624              */
18625         'expand' : true,
18626         /**
18627          * @event collapse
18628          * Fires when the dropdown list is collapsed
18629              * @param {Roo.form.ComboBox} combo This combo box
18630              */
18631         'collapse' : true,
18632         /**
18633          * @event beforeselect
18634          * Fires before a list item is selected. Return false to cancel the selection.
18635              * @param {Roo.form.ComboBox} combo This combo box
18636              * @param {Roo.data.Record} record The data record returned from the underlying store
18637              * @param {Number} index The index of the selected item in the dropdown list
18638              */
18639         'beforeselect' : true,
18640         /**
18641          * @event select
18642          * Fires when a list item is selected
18643              * @param {Roo.form.ComboBox} combo This combo box
18644              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
18645              * @param {Number} index The index of the selected item in the dropdown list
18646              */
18647         'select' : true,
18648         /**
18649          * @event beforequery
18650          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
18651          * The event object passed has these properties:
18652              * @param {Roo.form.ComboBox} combo This combo box
18653              * @param {String} query The query
18654              * @param {Boolean} forceAll true to force "all" query
18655              * @param {Boolean} cancel true to cancel the query
18656              * @param {Object} e The query event object
18657              */
18658         'beforequery': true,
18659          /**
18660          * @event add
18661          * Fires when the 'add' icon is pressed (add a listener to enable add button)
18662              * @param {Roo.form.ComboBox} combo This combo box
18663              */
18664         'add' : true,
18665         /**
18666          * @event edit
18667          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
18668              * @param {Roo.form.ComboBox} combo This combo box
18669              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
18670              */
18671         'edit' : true
18672         
18673         
18674     });
18675     if(this.transform){
18676         this.allowDomMove = false;
18677         var s = Roo.getDom(this.transform);
18678         if(!this.hiddenName){
18679             this.hiddenName = s.name;
18680         }
18681         if(!this.store){
18682             this.mode = 'local';
18683             var d = [], opts = s.options;
18684             for(var i = 0, len = opts.length;i < len; i++){
18685                 var o = opts[i];
18686                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
18687                 if(o.selected) {
18688                     this.value = value;
18689                 }
18690                 d.push([value, o.text]);
18691             }
18692             this.store = new Roo.data.SimpleStore({
18693                 'id': 0,
18694                 fields: ['value', 'text'],
18695                 data : d
18696             });
18697             this.valueField = 'value';
18698             this.displayField = 'text';
18699         }
18700         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
18701         if(!this.lazyRender){
18702             this.target = true;
18703             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
18704             s.parentNode.removeChild(s); // remove it
18705             this.render(this.el.parentNode);
18706         }else{
18707             s.parentNode.removeChild(s); // remove it
18708         }
18709
18710     }
18711     if (this.store) {
18712         this.store = Roo.factory(this.store, Roo.data);
18713     }
18714     
18715     this.selectedIndex = -1;
18716     if(this.mode == 'local'){
18717         if(config.queryDelay === undefined){
18718             this.queryDelay = 10;
18719         }
18720         if(config.minChars === undefined){
18721             this.minChars = 0;
18722         }
18723     }
18724 };
18725
18726 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
18727     /**
18728      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
18729      */
18730     /**
18731      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
18732      * rendering into an Roo.Editor, defaults to false)
18733      */
18734     /**
18735      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
18736      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
18737      */
18738     /**
18739      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
18740      */
18741     /**
18742      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
18743      * the dropdown list (defaults to undefined, with no header element)
18744      */
18745
18746      /**
18747      * @cfg {String/Roo.Template} tpl The template to use to render the output
18748      */
18749      
18750     // private
18751     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
18752     /**
18753      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
18754      */
18755     listWidth: undefined,
18756     /**
18757      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
18758      * mode = 'remote' or 'text' if mode = 'local')
18759      */
18760     displayField: undefined,
18761     /**
18762      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
18763      * mode = 'remote' or 'value' if mode = 'local'). 
18764      * Note: use of a valueField requires the user make a selection
18765      * in order for a value to be mapped.
18766      */
18767     valueField: undefined,
18768     
18769     
18770     /**
18771      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
18772      * field's data value (defaults to the underlying DOM element's name)
18773      */
18774     hiddenName: undefined,
18775     /**
18776      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
18777      */
18778     listClass: '',
18779     /**
18780      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
18781      */
18782     selectedClass: 'x-combo-selected',
18783     /**
18784      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
18785      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
18786      * which displays a downward arrow icon).
18787      */
18788     triggerClass : 'x-form-arrow-trigger',
18789     /**
18790      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
18791      */
18792     shadow:'sides',
18793     /**
18794      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
18795      * anchor positions (defaults to 'tl-bl')
18796      */
18797     listAlign: 'tl-bl?',
18798     /**
18799      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
18800      */
18801     maxHeight: 300,
18802     /**
18803      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
18804      * query specified by the allQuery config option (defaults to 'query')
18805      */
18806     triggerAction: 'query',
18807     /**
18808      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
18809      * (defaults to 4, does not apply if editable = false)
18810      */
18811     minChars : 4,
18812     /**
18813      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
18814      * delay (typeAheadDelay) if it matches a known value (defaults to false)
18815      */
18816     typeAhead: false,
18817     /**
18818      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
18819      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
18820      */
18821     queryDelay: 500,
18822     /**
18823      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
18824      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
18825      */
18826     pageSize: 0,
18827     /**
18828      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
18829      * when editable = true (defaults to false)
18830      */
18831     selectOnFocus:false,
18832     /**
18833      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
18834      */
18835     queryParam: 'query',
18836     /**
18837      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
18838      * when mode = 'remote' (defaults to 'Loading...')
18839      */
18840     loadingText: 'Loading...',
18841     /**
18842      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
18843      */
18844     resizable: false,
18845     /**
18846      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
18847      */
18848     handleHeight : 8,
18849     /**
18850      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
18851      * traditional select (defaults to true)
18852      */
18853     editable: true,
18854     /**
18855      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
18856      */
18857     allQuery: '',
18858     /**
18859      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
18860      */
18861     mode: 'remote',
18862     /**
18863      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
18864      * listWidth has a higher value)
18865      */
18866     minListWidth : 70,
18867     /**
18868      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
18869      * allow the user to set arbitrary text into the field (defaults to false)
18870      */
18871     forceSelection:false,
18872     /**
18873      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
18874      * if typeAhead = true (defaults to 250)
18875      */
18876     typeAheadDelay : 250,
18877     /**
18878      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
18879      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
18880      */
18881     valueNotFoundText : undefined,
18882     /**
18883      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
18884      */
18885     blockFocus : false,
18886     
18887     /**
18888      * @cfg {Boolean} disableClear Disable showing of clear button.
18889      */
18890     disableClear : false,
18891     /**
18892      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
18893      */
18894     alwaysQuery : false,
18895     
18896     //private
18897     addicon : false,
18898     editicon: false,
18899     
18900     // element that contains real text value.. (when hidden is used..)
18901      
18902     // private
18903     onRender : function(ct, position){
18904         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
18905         if(this.hiddenName){
18906             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
18907                     'before', true);
18908             this.hiddenField.value =
18909                 this.hiddenValue !== undefined ? this.hiddenValue :
18910                 this.value !== undefined ? this.value : '';
18911
18912             // prevent input submission
18913             this.el.dom.removeAttribute('name');
18914              
18915              
18916         }
18917         if(Roo.isGecko){
18918             this.el.dom.setAttribute('autocomplete', 'off');
18919         }
18920
18921         var cls = 'x-combo-list';
18922
18923         this.list = new Roo.Layer({
18924             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
18925         });
18926
18927         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
18928         this.list.setWidth(lw);
18929         this.list.swallowEvent('mousewheel');
18930         this.assetHeight = 0;
18931
18932         if(this.title){
18933             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
18934             this.assetHeight += this.header.getHeight();
18935         }
18936
18937         this.innerList = this.list.createChild({cls:cls+'-inner'});
18938         this.innerList.on('mouseover', this.onViewOver, this);
18939         this.innerList.on('mousemove', this.onViewMove, this);
18940         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
18941         
18942         if(this.allowBlank && !this.pageSize && !this.disableClear){
18943             this.footer = this.list.createChild({cls:cls+'-ft'});
18944             this.pageTb = new Roo.Toolbar(this.footer);
18945            
18946         }
18947         if(this.pageSize){
18948             this.footer = this.list.createChild({cls:cls+'-ft'});
18949             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
18950                     {pageSize: this.pageSize});
18951             
18952         }
18953         
18954         if (this.pageTb && this.allowBlank && !this.disableClear) {
18955             var _this = this;
18956             this.pageTb.add(new Roo.Toolbar.Fill(), {
18957                 cls: 'x-btn-icon x-btn-clear',
18958                 text: '&#160;',
18959                 handler: function()
18960                 {
18961                     _this.collapse();
18962                     _this.clearValue();
18963                     _this.onSelect(false, -1);
18964                 }
18965             });
18966         }
18967         if (this.footer) {
18968             this.assetHeight += this.footer.getHeight();
18969         }
18970         
18971
18972         if(!this.tpl){
18973             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
18974         }
18975
18976         this.view = new Roo.View(this.innerList, this.tpl, {
18977             singleSelect:true, store: this.store, selectedClass: this.selectedClass
18978         });
18979
18980         this.view.on('click', this.onViewClick, this);
18981
18982         this.store.on('beforeload', this.onBeforeLoad, this);
18983         this.store.on('load', this.onLoad, this);
18984         this.store.on('loadexception', this.onLoadException, this);
18985
18986         if(this.resizable){
18987             this.resizer = new Roo.Resizable(this.list,  {
18988                pinned:true, handles:'se'
18989             });
18990             this.resizer.on('resize', function(r, w, h){
18991                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
18992                 this.listWidth = w;
18993                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
18994                 this.restrictHeight();
18995             }, this);
18996             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
18997         }
18998         if(!this.editable){
18999             this.editable = true;
19000             this.setEditable(false);
19001         }  
19002         
19003         
19004         if (typeof(this.events.add.listeners) != 'undefined') {
19005             
19006             this.addicon = this.wrap.createChild(
19007                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
19008        
19009             this.addicon.on('click', function(e) {
19010                 this.fireEvent('add', this);
19011             }, this);
19012         }
19013         if (typeof(this.events.edit.listeners) != 'undefined') {
19014             
19015             this.editicon = this.wrap.createChild(
19016                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
19017             if (this.addicon) {
19018                 this.editicon.setStyle('margin-left', '40px');
19019             }
19020             this.editicon.on('click', function(e) {
19021                 
19022                 // we fire even  if inothing is selected..
19023                 this.fireEvent('edit', this, this.lastData );
19024                 
19025             }, this);
19026         }
19027         
19028         
19029         
19030     },
19031
19032     // private
19033     initEvents : function(){
19034         Roo.form.ComboBox.superclass.initEvents.call(this);
19035
19036         this.keyNav = new Roo.KeyNav(this.el, {
19037             "up" : function(e){
19038                 this.inKeyMode = true;
19039                 this.selectPrev();
19040             },
19041
19042             "down" : function(e){
19043                 if(!this.isExpanded()){
19044                     this.onTriggerClick();
19045                 }else{
19046                     this.inKeyMode = true;
19047                     this.selectNext();
19048                 }
19049             },
19050
19051             "enter" : function(e){
19052                 this.onViewClick();
19053                 //return true;
19054             },
19055
19056             "esc" : function(e){
19057                 this.collapse();
19058             },
19059
19060             "tab" : function(e){
19061                 this.onViewClick(false);
19062                 this.fireEvent("specialkey", this, e);
19063                 return true;
19064             },
19065
19066             scope : this,
19067
19068             doRelay : function(foo, bar, hname){
19069                 if(hname == 'down' || this.scope.isExpanded()){
19070                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
19071                 }
19072                 return true;
19073             },
19074
19075             forceKeyDown: true
19076         });
19077         this.queryDelay = Math.max(this.queryDelay || 10,
19078                 this.mode == 'local' ? 10 : 250);
19079         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
19080         if(this.typeAhead){
19081             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
19082         }
19083         if(this.editable !== false){
19084             this.el.on("keyup", this.onKeyUp, this);
19085         }
19086         if(this.forceSelection){
19087             this.on('blur', this.doForce, this);
19088         }
19089     },
19090
19091     onDestroy : function(){
19092         if(this.view){
19093             this.view.setStore(null);
19094             this.view.el.removeAllListeners();
19095             this.view.el.remove();
19096             this.view.purgeListeners();
19097         }
19098         if(this.list){
19099             this.list.destroy();
19100         }
19101         if(this.store){
19102             this.store.un('beforeload', this.onBeforeLoad, this);
19103             this.store.un('load', this.onLoad, this);
19104             this.store.un('loadexception', this.onLoadException, this);
19105         }
19106         Roo.form.ComboBox.superclass.onDestroy.call(this);
19107     },
19108
19109     // private
19110     fireKey : function(e){
19111         if(e.isNavKeyPress() && !this.list.isVisible()){
19112             this.fireEvent("specialkey", this, e);
19113         }
19114     },
19115
19116     // private
19117     onResize: function(w, h){
19118         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
19119         
19120         if(typeof w != 'number'){
19121             // we do not handle it!?!?
19122             return;
19123         }
19124         var tw = this.trigger.getWidth();
19125         tw += this.addicon ? this.addicon.getWidth() : 0;
19126         tw += this.editicon ? this.editicon.getWidth() : 0;
19127         var x = w - tw;
19128         this.el.setWidth( this.adjustWidth('input', x));
19129             
19130         this.trigger.setStyle('left', x+'px');
19131         
19132         if(this.list && this.listWidth === undefined){
19133             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
19134             this.list.setWidth(lw);
19135             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
19136         }
19137         
19138     
19139         
19140     },
19141
19142     /**
19143      * Allow or prevent the user from directly editing the field text.  If false is passed,
19144      * the user will only be able to select from the items defined in the dropdown list.  This method
19145      * is the runtime equivalent of setting the 'editable' config option at config time.
19146      * @param {Boolean} value True to allow the user to directly edit the field text
19147      */
19148     setEditable : function(value){
19149         if(value == this.editable){
19150             return;
19151         }
19152         this.editable = value;
19153         if(!value){
19154             this.el.dom.setAttribute('readOnly', true);
19155             this.el.on('mousedown', this.onTriggerClick,  this);
19156             this.el.addClass('x-combo-noedit');
19157         }else{
19158             this.el.dom.setAttribute('readOnly', false);
19159             this.el.un('mousedown', this.onTriggerClick,  this);
19160             this.el.removeClass('x-combo-noedit');
19161         }
19162     },
19163
19164     // private
19165     onBeforeLoad : function(){
19166         if(!this.hasFocus){
19167             return;
19168         }
19169         this.innerList.update(this.loadingText ?
19170                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
19171         this.restrictHeight();
19172         this.selectedIndex = -1;
19173     },
19174
19175     // private
19176     onLoad : function(){
19177         if(!this.hasFocus){
19178             return;
19179         }
19180         if(this.store.getCount() > 0){
19181             this.expand();
19182             this.restrictHeight();
19183             if(this.lastQuery == this.allQuery){
19184                 if(this.editable){
19185                     this.el.dom.select();
19186                 }
19187                 if(!this.selectByValue(this.value, true)){
19188                     this.select(0, true);
19189                 }
19190             }else{
19191                 this.selectNext();
19192                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
19193                     this.taTask.delay(this.typeAheadDelay);
19194                 }
19195             }
19196         }else{
19197             this.onEmptyResults();
19198         }
19199         //this.el.focus();
19200     },
19201     // private
19202     onLoadException : function()
19203     {
19204         this.collapse();
19205         Roo.log(this.store.reader.jsonData);
19206         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
19207             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
19208         }
19209         
19210         
19211     },
19212     // private
19213     onTypeAhead : function(){
19214         if(this.store.getCount() > 0){
19215             var r = this.store.getAt(0);
19216             var newValue = r.data[this.displayField];
19217             var len = newValue.length;
19218             var selStart = this.getRawValue().length;
19219             if(selStart != len){
19220                 this.setRawValue(newValue);
19221                 this.selectText(selStart, newValue.length);
19222             }
19223         }
19224     },
19225
19226     // private
19227     onSelect : function(record, index){
19228         if(this.fireEvent('beforeselect', this, record, index) !== false){
19229             this.setFromData(index > -1 ? record.data : false);
19230             this.collapse();
19231             this.fireEvent('select', this, record, index);
19232         }
19233     },
19234
19235     /**
19236      * Returns the currently selected field value or empty string if no value is set.
19237      * @return {String} value The selected value
19238      */
19239     getValue : function(){
19240         if(this.valueField){
19241             return typeof this.value != 'undefined' ? this.value : '';
19242         }
19243         return Roo.form.ComboBox.superclass.getValue.call(this);
19244     },
19245
19246     /**
19247      * Clears any text/value currently set in the field
19248      */
19249     clearValue : function(){
19250         if(this.hiddenField){
19251             this.hiddenField.value = '';
19252         }
19253         this.value = '';
19254         this.setRawValue('');
19255         this.lastSelectionText = '';
19256         
19257     },
19258
19259     /**
19260      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
19261      * will be displayed in the field.  If the value does not match the data value of an existing item,
19262      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
19263      * Otherwise the field will be blank (although the value will still be set).
19264      * @param {String} value The value to match
19265      */
19266     setValue : function(v){
19267         var text = v;
19268         if(this.valueField){
19269             var r = this.findRecord(this.valueField, v);
19270             if(r){
19271                 text = r.data[this.displayField];
19272             }else if(this.valueNotFoundText !== undefined){
19273                 text = this.valueNotFoundText;
19274             }
19275         }
19276         this.lastSelectionText = text;
19277         if(this.hiddenField){
19278             this.hiddenField.value = v;
19279         }
19280         Roo.form.ComboBox.superclass.setValue.call(this, text);
19281         this.value = v;
19282     },
19283     /**
19284      * @property {Object} the last set data for the element
19285      */
19286     
19287     lastData : false,
19288     /**
19289      * Sets the value of the field based on a object which is related to the record format for the store.
19290      * @param {Object} value the value to set as. or false on reset?
19291      */
19292     setFromData : function(o){
19293         var dv = ''; // display value
19294         var vv = ''; // value value..
19295         this.lastData = o;
19296         if (this.displayField) {
19297             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
19298         } else {
19299             // this is an error condition!!!
19300             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
19301         }
19302         
19303         if(this.valueField){
19304             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
19305         }
19306         if(this.hiddenField){
19307             this.hiddenField.value = vv;
19308             
19309             this.lastSelectionText = dv;
19310             Roo.form.ComboBox.superclass.setValue.call(this, dv);
19311             this.value = vv;
19312             return;
19313         }
19314         // no hidden field.. - we store the value in 'value', but still display
19315         // display field!!!!
19316         this.lastSelectionText = dv;
19317         Roo.form.ComboBox.superclass.setValue.call(this, dv);
19318         this.value = vv;
19319         
19320         
19321     },
19322     // private
19323     reset : function(){
19324         // overridden so that last data is reset..
19325         this.setValue(this.resetValue);
19326         this.originalValue = this.getValue();
19327         this.clearInvalid();
19328         this.lastData = false;
19329         if (this.view) {
19330             this.view.clearSelections();
19331         }
19332     },
19333     // private
19334     findRecord : function(prop, value){
19335         var record;
19336         if(this.store.getCount() > 0){
19337             this.store.each(function(r){
19338                 if(r.data[prop] == value){
19339                     record = r;
19340                     return false;
19341                 }
19342                 return true;
19343             });
19344         }
19345         return record;
19346     },
19347     
19348     getName: function()
19349     {
19350         // returns hidden if it's set..
19351         if (!this.rendered) {return ''};
19352         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
19353         
19354     },
19355     // private
19356     onViewMove : function(e, t){
19357         this.inKeyMode = false;
19358     },
19359
19360     // private
19361     onViewOver : function(e, t){
19362         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
19363             return;
19364         }
19365         var item = this.view.findItemFromChild(t);
19366         if(item){
19367             var index = this.view.indexOf(item);
19368             this.select(index, false);
19369         }
19370     },
19371
19372     // private
19373     onViewClick : function(doFocus)
19374     {
19375         var index = this.view.getSelectedIndexes()[0];
19376         var r = this.store.getAt(index);
19377         if(r){
19378             this.onSelect(r, index);
19379         }
19380         if(doFocus !== false && !this.blockFocus){
19381             this.el.focus();
19382         }
19383     },
19384
19385     // private
19386     restrictHeight : function(){
19387         this.innerList.dom.style.height = '';
19388         var inner = this.innerList.dom;
19389         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
19390         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
19391         this.list.beginUpdate();
19392         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
19393         this.list.alignTo(this.el, this.listAlign);
19394         this.list.endUpdate();
19395     },
19396
19397     // private
19398     onEmptyResults : function(){
19399         this.collapse();
19400     },
19401
19402     /**
19403      * Returns true if the dropdown list is expanded, else false.
19404      */
19405     isExpanded : function(){
19406         return this.list.isVisible();
19407     },
19408
19409     /**
19410      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
19411      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
19412      * @param {String} value The data value of the item to select
19413      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
19414      * selected item if it is not currently in view (defaults to true)
19415      * @return {Boolean} True if the value matched an item in the list, else false
19416      */
19417     selectByValue : function(v, scrollIntoView){
19418         if(v !== undefined && v !== null){
19419             var r = this.findRecord(this.valueField || this.displayField, v);
19420             if(r){
19421                 this.select(this.store.indexOf(r), scrollIntoView);
19422                 return true;
19423             }
19424         }
19425         return false;
19426     },
19427
19428     /**
19429      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
19430      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
19431      * @param {Number} index The zero-based index of the list item to select
19432      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
19433      * selected item if it is not currently in view (defaults to true)
19434      */
19435     select : function(index, scrollIntoView){
19436         this.selectedIndex = index;
19437         this.view.select(index);
19438         if(scrollIntoView !== false){
19439             var el = this.view.getNode(index);
19440             if(el){
19441                 this.innerList.scrollChildIntoView(el, false);
19442             }
19443         }
19444     },
19445
19446     // private
19447     selectNext : function(){
19448         var ct = this.store.getCount();
19449         if(ct > 0){
19450             if(this.selectedIndex == -1){
19451                 this.select(0);
19452             }else if(this.selectedIndex < ct-1){
19453                 this.select(this.selectedIndex+1);
19454             }
19455         }
19456     },
19457
19458     // private
19459     selectPrev : function(){
19460         var ct = this.store.getCount();
19461         if(ct > 0){
19462             if(this.selectedIndex == -1){
19463                 this.select(0);
19464             }else if(this.selectedIndex != 0){
19465                 this.select(this.selectedIndex-1);
19466             }
19467         }
19468     },
19469
19470     // private
19471     onKeyUp : function(e){
19472         if(this.editable !== false && !e.isSpecialKey()){
19473             this.lastKey = e.getKey();
19474             this.dqTask.delay(this.queryDelay);
19475         }
19476     },
19477
19478     // private
19479     validateBlur : function(){
19480         return !this.list || !this.list.isVisible();   
19481     },
19482
19483     // private
19484     initQuery : function(){
19485         this.doQuery(this.getRawValue());
19486     },
19487
19488     // private
19489     doForce : function(){
19490         if(this.el.dom.value.length > 0){
19491             this.el.dom.value =
19492                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
19493              
19494         }
19495     },
19496
19497     /**
19498      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
19499      * query allowing the query action to be canceled if needed.
19500      * @param {String} query The SQL query to execute
19501      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
19502      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
19503      * saved in the current store (defaults to false)
19504      */
19505     doQuery : function(q, forceAll){
19506         if(q === undefined || q === null){
19507             q = '';
19508         }
19509         var qe = {
19510             query: q,
19511             forceAll: forceAll,
19512             combo: this,
19513             cancel:false
19514         };
19515         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
19516             return false;
19517         }
19518         q = qe.query;
19519         forceAll = qe.forceAll;
19520         if(forceAll === true || (q.length >= this.minChars)){
19521             if(this.lastQuery != q || this.alwaysQuery){
19522                 this.lastQuery = q;
19523                 if(this.mode == 'local'){
19524                     this.selectedIndex = -1;
19525                     if(forceAll){
19526                         this.store.clearFilter();
19527                     }else{
19528                         this.store.filter(this.displayField, q);
19529                     }
19530                     this.onLoad();
19531                 }else{
19532                     this.store.baseParams[this.queryParam] = q;
19533                     this.store.load({
19534                         params: this.getParams(q)
19535                     });
19536                     this.expand();
19537                 }
19538             }else{
19539                 this.selectedIndex = -1;
19540                 this.onLoad();   
19541             }
19542         }
19543     },
19544
19545     // private
19546     getParams : function(q){
19547         var p = {};
19548         //p[this.queryParam] = q;
19549         if(this.pageSize){
19550             p.start = 0;
19551             p.limit = this.pageSize;
19552         }
19553         return p;
19554     },
19555
19556     /**
19557      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
19558      */
19559     collapse : function(){
19560         if(!this.isExpanded()){
19561             return;
19562         }
19563         this.list.hide();
19564         Roo.get(document).un('mousedown', this.collapseIf, this);
19565         Roo.get(document).un('mousewheel', this.collapseIf, this);
19566         if (!this.editable) {
19567             Roo.get(document).un('keydown', this.listKeyPress, this);
19568         }
19569         this.fireEvent('collapse', this);
19570     },
19571
19572     // private
19573     collapseIf : function(e){
19574         if(!e.within(this.wrap) && !e.within(this.list)){
19575             this.collapse();
19576         }
19577     },
19578
19579     /**
19580      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
19581      */
19582     expand : function(){
19583         if(this.isExpanded() || !this.hasFocus){
19584             return;
19585         }
19586         this.list.alignTo(this.el, this.listAlign);
19587         this.list.show();
19588         Roo.get(document).on('mousedown', this.collapseIf, this);
19589         Roo.get(document).on('mousewheel', this.collapseIf, this);
19590         if (!this.editable) {
19591             Roo.get(document).on('keydown', this.listKeyPress, this);
19592         }
19593         
19594         this.fireEvent('expand', this);
19595     },
19596
19597     // private
19598     // Implements the default empty TriggerField.onTriggerClick function
19599     onTriggerClick : function(){
19600         if(this.disabled){
19601             return;
19602         }
19603         if(this.isExpanded()){
19604             this.collapse();
19605             if (!this.blockFocus) {
19606                 this.el.focus();
19607             }
19608             
19609         }else {
19610             this.hasFocus = true;
19611             if(this.triggerAction == 'all') {
19612                 this.doQuery(this.allQuery, true);
19613             } else {
19614                 this.doQuery(this.getRawValue());
19615             }
19616             if (!this.blockFocus) {
19617                 this.el.focus();
19618             }
19619         }
19620     },
19621     listKeyPress : function(e)
19622     {
19623         //Roo.log('listkeypress');
19624         // scroll to first matching element based on key pres..
19625         if (e.isSpecialKey()) {
19626             return false;
19627         }
19628         var k = String.fromCharCode(e.getKey()).toUpperCase();
19629         //Roo.log(k);
19630         var match  = false;
19631         var csel = this.view.getSelectedNodes();
19632         var cselitem = false;
19633         if (csel.length) {
19634             var ix = this.view.indexOf(csel[0]);
19635             cselitem  = this.store.getAt(ix);
19636             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
19637                 cselitem = false;
19638             }
19639             
19640         }
19641         
19642         this.store.each(function(v) { 
19643             if (cselitem) {
19644                 // start at existing selection.
19645                 if (cselitem.id == v.id) {
19646                     cselitem = false;
19647                 }
19648                 return;
19649             }
19650                 
19651             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
19652                 match = this.store.indexOf(v);
19653                 return false;
19654             }
19655         }, this);
19656         
19657         if (match === false) {
19658             return true; // no more action?
19659         }
19660         // scroll to?
19661         this.view.select(match);
19662         var sn = Roo.get(this.view.getSelectedNodes()[0]);
19663         sn.scrollIntoView(sn.dom.parentNode, false);
19664     }
19665
19666     /** 
19667     * @cfg {Boolean} grow 
19668     * @hide 
19669     */
19670     /** 
19671     * @cfg {Number} growMin 
19672     * @hide 
19673     */
19674     /** 
19675     * @cfg {Number} growMax 
19676     * @hide 
19677     */
19678     /**
19679      * @hide
19680      * @method autoSize
19681      */
19682 });/*
19683  * Copyright(c) 2010-2012, Roo J Solutions Limited
19684  *
19685  * Licence LGPL
19686  *
19687  */
19688
19689 /**
19690  * @class Roo.form.ComboBoxArray
19691  * @extends Roo.form.TextField
19692  * A facebook style adder... for lists of email / people / countries  etc...
19693  * pick multiple items from a combo box, and shows each one.
19694  *
19695  *  Fred [x]  Brian [x]  [Pick another |v]
19696  *
19697  *
19698  *  For this to work: it needs various extra information
19699  *    - normal combo problay has
19700  *      name, hiddenName
19701  *    + displayField, valueField
19702  *
19703  *    For our purpose...
19704  *
19705  *
19706  *   If we change from 'extends' to wrapping...
19707  *   
19708  *  
19709  *
19710  
19711  
19712  * @constructor
19713  * Create a new ComboBoxArray.
19714  * @param {Object} config Configuration options
19715  */
19716  
19717
19718 Roo.form.ComboBoxArray = function(config)
19719 {
19720     this.addEvents({
19721         /**
19722          * @event beforeremove
19723          * Fires before remove the value from the list
19724              * @param {Roo.form.ComboBoxArray} _self This combo box array
19725              * @param {Roo.form.ComboBoxArray.Item} item removed item
19726              */
19727         'beforeremove' : true,
19728         /**
19729          * @event remove
19730          * Fires when remove the value from the list
19731              * @param {Roo.form.ComboBoxArray} _self This combo box array
19732              * @param {Roo.form.ComboBoxArray.Item} item removed item
19733              */
19734         'remove' : true
19735         
19736         
19737     });
19738     
19739     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
19740     
19741     this.items = new Roo.util.MixedCollection(false);
19742     
19743     // construct the child combo...
19744     
19745     
19746     
19747     
19748    
19749     
19750 }
19751
19752  
19753 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
19754
19755     /**
19756      * @cfg {Roo.form.Combo} combo The combo box that is wrapped
19757      */
19758     
19759     lastData : false,
19760     
19761     // behavies liek a hiddne field
19762     inputType:      'hidden',
19763     /**
19764      * @cfg {Number} width The width of the box that displays the selected element
19765      */ 
19766     width:          300,
19767
19768     
19769     
19770     /**
19771      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
19772      */
19773     name : false,
19774     /**
19775      * @cfg {String} hiddenName    The hidden name of the field, often contains an comma seperated list of names
19776      */
19777     hiddenName : false,
19778     
19779     
19780     // private the array of items that are displayed..
19781     items  : false,
19782     // private - the hidden field el.
19783     hiddenEl : false,
19784     // private - the filed el..
19785     el : false,
19786     
19787     //validateValue : function() { return true; }, // all values are ok!
19788     //onAddClick: function() { },
19789     
19790     onRender : function(ct, position) 
19791     {
19792         
19793         // create the standard hidden element
19794         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
19795         
19796         
19797         // give fake names to child combo;
19798         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
19799         this.combo.name = this.name? (this.name+'-subcombo') : this.name;
19800         
19801         this.combo = Roo.factory(this.combo, Roo.form);
19802         this.combo.onRender(ct, position);
19803         if (typeof(this.combo.width) != 'undefined') {
19804             this.combo.onResize(this.combo.width,0);
19805         }
19806         
19807         this.combo.initEvents();
19808         
19809         // assigned so form know we need to do this..
19810         this.store          = this.combo.store;
19811         this.valueField     = this.combo.valueField;
19812         this.displayField   = this.combo.displayField ;
19813         
19814         
19815         this.combo.wrap.addClass('x-cbarray-grp');
19816         
19817         var cbwrap = this.combo.wrap.createChild(
19818             {tag: 'div', cls: 'x-cbarray-cb'},
19819             this.combo.el.dom
19820         );
19821         
19822              
19823         this.hiddenEl = this.combo.wrap.createChild({
19824             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
19825         });
19826         this.el = this.combo.wrap.createChild({
19827             tag: 'input',  type:'hidden' , name: this.name, value : ''
19828         });
19829          //   this.el.dom.removeAttribute("name");
19830         
19831         
19832         this.outerWrap = this.combo.wrap;
19833         this.wrap = cbwrap;
19834         
19835         this.outerWrap.setWidth(this.width);
19836         this.outerWrap.dom.removeChild(this.el.dom);
19837         
19838         this.wrap.dom.appendChild(this.el.dom);
19839         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
19840         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
19841         
19842         this.combo.trigger.setStyle('position','relative');
19843         this.combo.trigger.setStyle('left', '0px');
19844         this.combo.trigger.setStyle('top', '2px');
19845         
19846         this.combo.el.setStyle('vertical-align', 'text-bottom');
19847         
19848         //this.trigger.setStyle('vertical-align', 'top');
19849         
19850         // this should use the code from combo really... on('add' ....)
19851         if (this.adder) {
19852             
19853         
19854             this.adder = this.outerWrap.createChild(
19855                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
19856             var _t = this;
19857             this.adder.on('click', function(e) {
19858                 _t.fireEvent('adderclick', this, e);
19859             }, _t);
19860         }
19861         //var _t = this;
19862         //this.adder.on('click', this.onAddClick, _t);
19863         
19864         
19865         this.combo.on('select', function(cb, rec, ix) {
19866             this.addItem(rec.data);
19867             
19868             cb.setValue('');
19869             cb.el.dom.value = '';
19870             //cb.lastData = rec.data;
19871             // add to list
19872             
19873         }, this);
19874         
19875         
19876     },
19877     
19878     
19879     getName: function()
19880     {
19881         // returns hidden if it's set..
19882         if (!this.rendered) {return ''};
19883         return  this.hiddenName ? this.hiddenName : this.name;
19884         
19885     },
19886     
19887     
19888     onResize: function(w, h){
19889         
19890         return;
19891         // not sure if this is needed..
19892         //this.combo.onResize(w,h);
19893         
19894         if(typeof w != 'number'){
19895             // we do not handle it!?!?
19896             return;
19897         }
19898         var tw = this.combo.trigger.getWidth();
19899         tw += this.addicon ? this.addicon.getWidth() : 0;
19900         tw += this.editicon ? this.editicon.getWidth() : 0;
19901         var x = w - tw;
19902         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
19903             
19904         this.combo.trigger.setStyle('left', '0px');
19905         
19906         if(this.list && this.listWidth === undefined){
19907             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
19908             this.list.setWidth(lw);
19909             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
19910         }
19911         
19912     
19913         
19914     },
19915     
19916     addItem: function(rec)
19917     {
19918         var valueField = this.combo.valueField;
19919         var displayField = this.combo.displayField;
19920         if (this.items.indexOfKey(rec[valueField]) > -1) {
19921             //console.log("GOT " + rec.data.id);
19922             return;
19923         }
19924         
19925         var x = new Roo.form.ComboBoxArray.Item({
19926             //id : rec[this.idField],
19927             data : rec,
19928             displayField : displayField ,
19929             tipField : displayField ,
19930             cb : this
19931         });
19932         // use the 
19933         this.items.add(rec[valueField],x);
19934         // add it before the element..
19935         this.updateHiddenEl();
19936         x.render(this.outerWrap, this.wrap.dom);
19937         // add the image handler..
19938     },
19939     
19940     updateHiddenEl : function()
19941     {
19942         this.validate();
19943         if (!this.hiddenEl) {
19944             return;
19945         }
19946         var ar = [];
19947         var idField = this.combo.valueField;
19948         
19949         this.items.each(function(f) {
19950             ar.push(f.data[idField]);
19951            
19952         });
19953         this.hiddenEl.dom.value = ar.join(',');
19954         this.validate();
19955     },
19956     
19957     reset : function()
19958     {
19959         this.items.clear();
19960         
19961         Roo.each(this.outerWrap.select('.x-cbarray-item', true).elements, function(el){
19962            el.remove();
19963         });
19964         
19965         this.el.dom.value = '';
19966         if (this.hiddenEl) {
19967             this.hiddenEl.dom.value = '';
19968         }
19969         
19970     },
19971     getValue: function()
19972     {
19973         return this.hiddenEl ? this.hiddenEl.dom.value : '';
19974     },
19975     setValue: function(v) // not a valid action - must use addItems..
19976     {
19977          
19978         this.reset();
19979         
19980         
19981         
19982         if (this.store.isLocal && (typeof(v) == 'string')) {
19983             // then we can use the store to find the values..
19984             // comma seperated at present.. this needs to allow JSON based encoding..
19985             this.hiddenEl.value  = v;
19986             var v_ar = [];
19987             Roo.each(v.split(','), function(k) {
19988                 Roo.log("CHECK " + this.valueField + ',' + k);
19989                 var li = this.store.query(this.valueField, k);
19990                 if (!li.length) {
19991                     return;
19992                 }
19993                 var add = {};
19994                 add[this.valueField] = k;
19995                 add[this.displayField] = li.item(0).data[this.displayField];
19996                 
19997                 this.addItem(add);
19998             }, this) 
19999              
20000         }
20001         if (typeof(v) == 'object' ) {
20002             // then let's assume it's an array of objects..
20003             Roo.each(v, function(l) {
20004                 this.addItem(l);
20005             }, this);
20006              
20007         }
20008         
20009         
20010     },
20011     setFromData: function(v)
20012     {
20013         // this recieves an object, if setValues is called.
20014         this.reset();
20015         this.el.dom.value = v[this.displayField];
20016         this.hiddenEl.dom.value = v[this.valueField];
20017         if (typeof(v[this.valueField]) != 'string' || !v[this.valueField].length) {
20018             return;
20019         }
20020         var kv = v[this.valueField];
20021         var dv = v[this.displayField];
20022         kv = typeof(kv) != 'string' ? '' : kv;
20023         dv = typeof(dv) != 'string' ? '' : dv;
20024         
20025         
20026         var keys = kv.split(',');
20027         var display = dv.split(',');
20028         for (var i = 0 ; i < keys.length; i++) {
20029             
20030             add = {};
20031             add[this.valueField] = keys[i];
20032             add[this.displayField] = display[i];
20033             this.addItem(add);
20034         }
20035       
20036         
20037     },
20038     
20039     /**
20040      * Validates the combox array value
20041      * @return {Boolean} True if the value is valid, else false
20042      */
20043     validate : function(){
20044         if(this.disabled || this.validateValue(this.processValue(this.getValue()))){
20045             this.clearInvalid();
20046             return true;
20047         }
20048         return false;
20049     },
20050     
20051     validateValue : function(value){
20052         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
20053         
20054     },
20055     
20056     /*@
20057      * overide
20058      * 
20059      */
20060     isDirty : function() {
20061         if(this.disabled) {
20062             return false;
20063         }
20064         
20065         try {
20066             var d = Roo.decode(String(this.originalValue));
20067         } catch (e) {
20068             return String(this.getValue()) !== String(this.originalValue);
20069         }
20070         
20071         var originalValue = [];
20072         
20073         for (var i = 0; i < d.length; i++){
20074             originalValue.push(d[i][this.valueField]);
20075         }
20076         
20077         return String(this.getValue()) !== String(originalValue.join(','));
20078         
20079     }
20080     
20081 });
20082
20083
20084
20085 /**
20086  * @class Roo.form.ComboBoxArray.Item
20087  * @extends Roo.BoxComponent
20088  * A selected item in the list
20089  *  Fred [x]  Brian [x]  [Pick another |v]
20090  * 
20091  * @constructor
20092  * Create a new item.
20093  * @param {Object} config Configuration options
20094  */
20095  
20096 Roo.form.ComboBoxArray.Item = function(config) {
20097     config.id = Roo.id();
20098     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
20099 }
20100
20101 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
20102     data : {},
20103     cb: false,
20104     displayField : false,
20105     tipField : false,
20106     
20107     
20108     defaultAutoCreate : {
20109         tag: 'div',
20110         cls: 'x-cbarray-item',
20111         cn : [ 
20112             { tag: 'div' },
20113             {
20114                 tag: 'img',
20115                 width:16,
20116                 height : 16,
20117                 src : Roo.BLANK_IMAGE_URL ,
20118                 align: 'center'
20119             }
20120         ]
20121         
20122     },
20123     
20124  
20125     onRender : function(ct, position)
20126     {
20127         Roo.form.Field.superclass.onRender.call(this, ct, position);
20128         
20129         if(!this.el){
20130             var cfg = this.getAutoCreate();
20131             this.el = ct.createChild(cfg, position);
20132         }
20133         
20134         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
20135         
20136         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
20137             this.cb.renderer(this.data) :
20138             String.format('{0}',this.data[this.displayField]);
20139         
20140             
20141         this.el.child('div').dom.setAttribute('qtip',
20142                         String.format('{0}',this.data[this.tipField])
20143         );
20144         
20145         this.el.child('img').on('click', this.remove, this);
20146         
20147     },
20148    
20149     remove : function()
20150     {
20151         if(this.cb.disabled){
20152             return;
20153         }
20154         
20155         if(false !== this.cb.fireEvent('beforeremove', this.cb, this)){
20156             this.cb.items.remove(this);
20157             this.el.child('img').un('click', this.remove, this);
20158             this.el.remove();
20159             this.cb.updateHiddenEl();
20160
20161             this.cb.fireEvent('remove', this.cb, this);
20162         }
20163         
20164     }
20165 });/*
20166  * Based on:
20167  * Ext JS Library 1.1.1
20168  * Copyright(c) 2006-2007, Ext JS, LLC.
20169  *
20170  * Originally Released Under LGPL - original licence link has changed is not relivant.
20171  *
20172  * Fork - LGPL
20173  * <script type="text/javascript">
20174  */
20175 /**
20176  * @class Roo.form.Checkbox
20177  * @extends Roo.form.Field
20178  * Single checkbox field.  Can be used as a direct replacement for traditional checkbox fields.
20179  * @constructor
20180  * Creates a new Checkbox
20181  * @param {Object} config Configuration options
20182  */
20183 Roo.form.Checkbox = function(config){
20184     Roo.form.Checkbox.superclass.constructor.call(this, config);
20185     this.addEvents({
20186         /**
20187          * @event check
20188          * Fires when the checkbox is checked or unchecked.
20189              * @param {Roo.form.Checkbox} this This checkbox
20190              * @param {Boolean} checked The new checked value
20191              */
20192         check : true
20193     });
20194 };
20195
20196 Roo.extend(Roo.form.Checkbox, Roo.form.Field,  {
20197     /**
20198      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
20199      */
20200     focusClass : undefined,
20201     /**
20202      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
20203      */
20204     fieldClass: "x-form-field",
20205     /**
20206      * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
20207      */
20208     checked: false,
20209     /**
20210      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
20211      * {tag: "input", type: "checkbox", autocomplete: "off"})
20212      */
20213     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
20214     /**
20215      * @cfg {String} boxLabel The text that appears beside the checkbox
20216      */
20217     boxLabel : "",
20218     /**
20219      * @cfg {String} inputValue The value that should go into the generated input element's value attribute
20220      */  
20221     inputValue : '1',
20222     /**
20223      * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
20224      */
20225      valueOff: '0', // value when not checked..
20226
20227     actionMode : 'viewEl', 
20228     //
20229     // private
20230     itemCls : 'x-menu-check-item x-form-item',
20231     groupClass : 'x-menu-group-item',
20232     inputType : 'hidden',
20233     
20234     
20235     inSetChecked: false, // check that we are not calling self...
20236     
20237     inputElement: false, // real input element?
20238     basedOn: false, // ????
20239     
20240     isFormField: true, // not sure where this is needed!!!!
20241
20242     onResize : function(){
20243         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
20244         if(!this.boxLabel){
20245             this.el.alignTo(this.wrap, 'c-c');
20246         }
20247     },
20248
20249     initEvents : function(){
20250         Roo.form.Checkbox.superclass.initEvents.call(this);
20251         this.el.on("click", this.onClick,  this);
20252         this.el.on("change", this.onClick,  this);
20253     },
20254
20255
20256     getResizeEl : function(){
20257         return this.wrap;
20258     },
20259
20260     getPositionEl : function(){
20261         return this.wrap;
20262     },
20263
20264     // private
20265     onRender : function(ct, position){
20266         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
20267         /*
20268         if(this.inputValue !== undefined){
20269             this.el.dom.value = this.inputValue;
20270         }
20271         */
20272         //this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
20273         this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
20274         var viewEl = this.wrap.createChild({ 
20275             tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
20276         this.viewEl = viewEl;   
20277         this.wrap.on('click', this.onClick,  this); 
20278         
20279         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
20280         this.el.on('propertychange', this.setFromHidden,  this);  //ie
20281         
20282         
20283         
20284         if(this.boxLabel){
20285             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
20286         //    viewEl.on('click', this.onClick,  this); 
20287         }
20288         //if(this.checked){
20289             this.setChecked(this.checked);
20290         //}else{
20291             //this.checked = this.el.dom;
20292         //}
20293
20294     },
20295
20296     // private
20297     initValue : Roo.emptyFn,
20298
20299     /**
20300      * Returns the checked state of the checkbox.
20301      * @return {Boolean} True if checked, else false
20302      */
20303     getValue : function(){
20304         if(this.el){
20305             return String(this.el.dom.value) == String(this.inputValue ) ? this.inputValue : this.valueOff;
20306         }
20307         return this.valueOff;
20308         
20309     },
20310
20311         // private
20312     onClick : function(){ 
20313         if (this.disabled) {
20314             return;
20315         }
20316         this.setChecked(!this.checked);
20317
20318         //if(this.el.dom.checked != this.checked){
20319         //    this.setValue(this.el.dom.checked);
20320        // }
20321     },
20322
20323     /**
20324      * Sets the checked state of the checkbox.
20325      * On is always based on a string comparison between inputValue and the param.
20326      * @param {Boolean/String} value - the value to set 
20327      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
20328      */
20329     setValue : function(v,suppressEvent){
20330         
20331         
20332         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
20333         //if(this.el && this.el.dom){
20334         //    this.el.dom.checked = this.checked;
20335         //    this.el.dom.defaultChecked = this.checked;
20336         //}
20337         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
20338         //this.fireEvent("check", this, this.checked);
20339     },
20340     // private..
20341     setChecked : function(state,suppressEvent)
20342     {
20343         if (this.inSetChecked) {
20344             this.checked = state;
20345             return;
20346         }
20347         
20348     
20349         if(this.wrap){
20350             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
20351         }
20352         this.checked = state;
20353         if(suppressEvent !== true){
20354             this.fireEvent('check', this, state);
20355         }
20356         this.inSetChecked = true;
20357         this.el.dom.value = state ? this.inputValue : this.valueOff;
20358         this.inSetChecked = false;
20359         
20360     },
20361     // handle setting of hidden value by some other method!!?!?
20362     setFromHidden: function()
20363     {
20364         if(!this.el){
20365             return;
20366         }
20367         //console.log("SET FROM HIDDEN");
20368         //alert('setFrom hidden');
20369         this.setValue(this.el.dom.value);
20370     },
20371     
20372     onDestroy : function()
20373     {
20374         if(this.viewEl){
20375             Roo.get(this.viewEl).remove();
20376         }
20377          
20378         Roo.form.Checkbox.superclass.onDestroy.call(this);
20379     },
20380     
20381     setBoxLabel : function(str)
20382     {
20383         this.wrap.select('.x-form-cb-label', true).first().dom.innerHTML = str;
20384     }
20385
20386 });/*
20387  * Based on:
20388  * Ext JS Library 1.1.1
20389  * Copyright(c) 2006-2007, Ext JS, LLC.
20390  *
20391  * Originally Released Under LGPL - original licence link has changed is not relivant.
20392  *
20393  * Fork - LGPL
20394  * <script type="text/javascript">
20395  */
20396  
20397 /**
20398  * @class Roo.form.Radio
20399  * @extends Roo.form.Checkbox
20400  * Single radio field.  Same as Checkbox, but provided as a convenience for automatically setting the input type.
20401  * Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
20402  * @constructor
20403  * Creates a new Radio
20404  * @param {Object} config Configuration options
20405  */
20406 Roo.form.Radio = function(){
20407     Roo.form.Radio.superclass.constructor.apply(this, arguments);
20408 };
20409 Roo.extend(Roo.form.Radio, Roo.form.Checkbox, {
20410     inputType: 'radio',
20411
20412     /**
20413      * If this radio is part of a group, it will return the selected value
20414      * @return {String}
20415      */
20416     getGroupValue : function(){
20417         return this.el.up('form').child('input[name='+this.el.dom.name+']:checked', true).value;
20418     },
20419     
20420     
20421     onRender : function(ct, position){
20422         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
20423         
20424         if(this.inputValue !== undefined){
20425             this.el.dom.value = this.inputValue;
20426         }
20427          
20428         this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
20429         //this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
20430         //var viewEl = this.wrap.createChild({ 
20431         //    tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
20432         //this.viewEl = viewEl;   
20433         //this.wrap.on('click', this.onClick,  this); 
20434         
20435         //this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
20436         //this.el.on('propertychange', this.setFromHidden,  this);  //ie
20437         
20438         
20439         
20440         if(this.boxLabel){
20441             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
20442         //    viewEl.on('click', this.onClick,  this); 
20443         }
20444          if(this.checked){
20445             this.el.dom.checked =   'checked' ;
20446         }
20447          
20448     } 
20449     
20450     
20451 });//<script type="text/javascript">
20452
20453 /*
20454  * Based  Ext JS Library 1.1.1
20455  * Copyright(c) 2006-2007, Ext JS, LLC.
20456  * LGPL
20457  *
20458  */
20459  
20460 /**
20461  * @class Roo.HtmlEditorCore
20462  * @extends Roo.Component
20463  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
20464  *
20465  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
20466  */
20467
20468 Roo.HtmlEditorCore = function(config){
20469     
20470     
20471     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
20472     
20473     
20474     this.addEvents({
20475         /**
20476          * @event initialize
20477          * Fires when the editor is fully initialized (including the iframe)
20478          * @param {Roo.HtmlEditorCore} this
20479          */
20480         initialize: true,
20481         /**
20482          * @event activate
20483          * Fires when the editor is first receives the focus. Any insertion must wait
20484          * until after this event.
20485          * @param {Roo.HtmlEditorCore} this
20486          */
20487         activate: true,
20488          /**
20489          * @event beforesync
20490          * Fires before the textarea is updated with content from the editor iframe. Return false
20491          * to cancel the sync.
20492          * @param {Roo.HtmlEditorCore} this
20493          * @param {String} html
20494          */
20495         beforesync: true,
20496          /**
20497          * @event beforepush
20498          * Fires before the iframe editor is updated with content from the textarea. Return false
20499          * to cancel the push.
20500          * @param {Roo.HtmlEditorCore} this
20501          * @param {String} html
20502          */
20503         beforepush: true,
20504          /**
20505          * @event sync
20506          * Fires when the textarea is updated with content from the editor iframe.
20507          * @param {Roo.HtmlEditorCore} this
20508          * @param {String} html
20509          */
20510         sync: true,
20511          /**
20512          * @event push
20513          * Fires when the iframe editor is updated with content from the textarea.
20514          * @param {Roo.HtmlEditorCore} this
20515          * @param {String} html
20516          */
20517         push: true,
20518         
20519         /**
20520          * @event editorevent
20521          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
20522          * @param {Roo.HtmlEditorCore} this
20523          */
20524         editorevent: true
20525         
20526     });
20527     
20528     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
20529     
20530     // defaults : white / black...
20531     this.applyBlacklists();
20532     
20533     
20534     
20535 };
20536
20537
20538 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
20539
20540
20541      /**
20542      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
20543      */
20544     
20545     owner : false,
20546     
20547      /**
20548      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
20549      *                        Roo.resizable.
20550      */
20551     resizable : false,
20552      /**
20553      * @cfg {Number} height (in pixels)
20554      */   
20555     height: 300,
20556    /**
20557      * @cfg {Number} width (in pixels)
20558      */   
20559     width: 500,
20560     
20561     /**
20562      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
20563      * 
20564      */
20565     stylesheets: false,
20566     
20567     // id of frame..
20568     frameId: false,
20569     
20570     // private properties
20571     validationEvent : false,
20572     deferHeight: true,
20573     initialized : false,
20574     activated : false,
20575     sourceEditMode : false,
20576     onFocus : Roo.emptyFn,
20577     iframePad:3,
20578     hideMode:'offsets',
20579     
20580     clearUp: true,
20581     
20582     // blacklist + whitelisted elements..
20583     black: false,
20584     white: false,
20585      
20586     bodyCls : '',
20587
20588     /**
20589      * Protected method that will not generally be called directly. It
20590      * is called when the editor initializes the iframe with HTML contents. Override this method if you
20591      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
20592      */
20593     getDocMarkup : function(){
20594         // body styles..
20595         var st = '';
20596         
20597         // inherit styels from page...?? 
20598         if (this.stylesheets === false) {
20599             
20600             Roo.get(document.head).select('style').each(function(node) {
20601                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
20602             });
20603             
20604             Roo.get(document.head).select('link').each(function(node) { 
20605                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
20606             });
20607             
20608         } else if (!this.stylesheets.length) {
20609                 // simple..
20610                 st = '<style type="text/css">' +
20611                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
20612                    '</style>';
20613         } else { 
20614             st = '<style type="text/css">' +
20615                     this.stylesheets +
20616                 '</style>';
20617         }
20618         
20619         st +=  '<style type="text/css">' +
20620             'IMG { cursor: pointer } ' +
20621         '</style>';
20622
20623         var cls = 'roo-htmleditor-body';
20624         
20625         if(this.bodyCls.length){
20626             cls += ' ' + this.bodyCls;
20627         }
20628         
20629         return '<html><head>' + st  +
20630             //<style type="text/css">' +
20631             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
20632             //'</style>' +
20633             ' </head><body class="' +  cls + '"></body></html>';
20634     },
20635
20636     // private
20637     onRender : function(ct, position)
20638     {
20639         var _t = this;
20640         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
20641         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
20642         
20643         
20644         this.el.dom.style.border = '0 none';
20645         this.el.dom.setAttribute('tabIndex', -1);
20646         this.el.addClass('x-hidden hide');
20647         
20648         
20649         
20650         if(Roo.isIE){ // fix IE 1px bogus margin
20651             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
20652         }
20653        
20654         
20655         this.frameId = Roo.id();
20656         
20657          
20658         
20659         var iframe = this.owner.wrap.createChild({
20660             tag: 'iframe',
20661             cls: 'form-control', // bootstrap..
20662             id: this.frameId,
20663             name: this.frameId,
20664             frameBorder : 'no',
20665             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
20666         }, this.el
20667         );
20668         
20669         
20670         this.iframe = iframe.dom;
20671
20672          this.assignDocWin();
20673         
20674         this.doc.designMode = 'on';
20675        
20676         this.doc.open();
20677         this.doc.write(this.getDocMarkup());
20678         this.doc.close();
20679
20680         
20681         var task = { // must defer to wait for browser to be ready
20682             run : function(){
20683                 //console.log("run task?" + this.doc.readyState);
20684                 this.assignDocWin();
20685                 if(this.doc.body || this.doc.readyState == 'complete'){
20686                     try {
20687                         this.doc.designMode="on";
20688                     } catch (e) {
20689                         return;
20690                     }
20691                     Roo.TaskMgr.stop(task);
20692                     this.initEditor.defer(10, this);
20693                 }
20694             },
20695             interval : 10,
20696             duration: 10000,
20697             scope: this
20698         };
20699         Roo.TaskMgr.start(task);
20700
20701     },
20702
20703     // private
20704     onResize : function(w, h)
20705     {
20706          Roo.log('resize: ' +w + ',' + h );
20707         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
20708         if(!this.iframe){
20709             return;
20710         }
20711         if(typeof w == 'number'){
20712             
20713             this.iframe.style.width = w + 'px';
20714         }
20715         if(typeof h == 'number'){
20716             
20717             this.iframe.style.height = h + 'px';
20718             if(this.doc){
20719                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
20720             }
20721         }
20722         
20723     },
20724
20725     /**
20726      * Toggles the editor between standard and source edit mode.
20727      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
20728      */
20729     toggleSourceEdit : function(sourceEditMode){
20730         
20731         this.sourceEditMode = sourceEditMode === true;
20732         
20733         if(this.sourceEditMode){
20734  
20735             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
20736             
20737         }else{
20738             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
20739             //this.iframe.className = '';
20740             this.deferFocus();
20741         }
20742         //this.setSize(this.owner.wrap.getSize());
20743         //this.fireEvent('editmodechange', this, this.sourceEditMode);
20744     },
20745
20746     
20747   
20748
20749     /**
20750      * Protected method that will not generally be called directly. If you need/want
20751      * custom HTML cleanup, this is the method you should override.
20752      * @param {String} html The HTML to be cleaned
20753      * return {String} The cleaned HTML
20754      */
20755     cleanHtml : function(html){
20756         html = String(html);
20757         if(html.length > 5){
20758             if(Roo.isSafari){ // strip safari nonsense
20759                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
20760             }
20761         }
20762         if(html == '&nbsp;'){
20763             html = '';
20764         }
20765         return html;
20766     },
20767
20768     /**
20769      * HTML Editor -> Textarea
20770      * Protected method that will not generally be called directly. Syncs the contents
20771      * of the editor iframe with the textarea.
20772      */
20773     syncValue : function(){
20774         if(this.initialized){
20775             var bd = (this.doc.body || this.doc.documentElement);
20776             //this.cleanUpPaste(); -- this is done else where and causes havoc..
20777             var html = bd.innerHTML;
20778             if(Roo.isSafari){
20779                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
20780                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
20781                 if(m && m[1]){
20782                     html = '<div style="'+m[0]+'">' + html + '</div>';
20783                 }
20784             }
20785             html = this.cleanHtml(html);
20786             // fix up the special chars.. normaly like back quotes in word...
20787             // however we do not want to do this with chinese..
20788             html = html.replace(/([\x80-\uffff])/g, function (a, b) {
20789                 var cc = b.charCodeAt();
20790                 if (
20791                     (cc >= 0x4E00 && cc < 0xA000 ) ||
20792                     (cc >= 0x3400 && cc < 0x4E00 ) ||
20793                     (cc >= 0xf900 && cc < 0xfb00 )
20794                 ) {
20795                         return b;
20796                 }
20797                 return "&#"+cc+";" 
20798             });
20799             if(this.owner.fireEvent('beforesync', this, html) !== false){
20800                 this.el.dom.value = html;
20801                 this.owner.fireEvent('sync', this, html);
20802             }
20803         }
20804     },
20805
20806     /**
20807      * Protected method that will not generally be called directly. Pushes the value of the textarea
20808      * into the iframe editor.
20809      */
20810     pushValue : function(){
20811         if(this.initialized){
20812             var v = this.el.dom.value.trim();
20813             
20814 //            if(v.length < 1){
20815 //                v = '&#160;';
20816 //            }
20817             
20818             if(this.owner.fireEvent('beforepush', this, v) !== false){
20819                 var d = (this.doc.body || this.doc.documentElement);
20820                 d.innerHTML = v;
20821                 this.cleanUpPaste();
20822                 this.el.dom.value = d.innerHTML;
20823                 this.owner.fireEvent('push', this, v);
20824             }
20825         }
20826     },
20827
20828     // private
20829     deferFocus : function(){
20830         this.focus.defer(10, this);
20831     },
20832
20833     // doc'ed in Field
20834     focus : function(){
20835         if(this.win && !this.sourceEditMode){
20836             this.win.focus();
20837         }else{
20838             this.el.focus();
20839         }
20840     },
20841     
20842     assignDocWin: function()
20843     {
20844         var iframe = this.iframe;
20845         
20846          if(Roo.isIE){
20847             this.doc = iframe.contentWindow.document;
20848             this.win = iframe.contentWindow;
20849         } else {
20850 //            if (!Roo.get(this.frameId)) {
20851 //                return;
20852 //            }
20853 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
20854 //            this.win = Roo.get(this.frameId).dom.contentWindow;
20855             
20856             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
20857                 return;
20858             }
20859             
20860             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
20861             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
20862         }
20863     },
20864     
20865     // private
20866     initEditor : function(){
20867         //console.log("INIT EDITOR");
20868         this.assignDocWin();
20869         
20870         
20871         
20872         this.doc.designMode="on";
20873         this.doc.open();
20874         this.doc.write(this.getDocMarkup());
20875         this.doc.close();
20876         
20877         var dbody = (this.doc.body || this.doc.documentElement);
20878         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
20879         // this copies styles from the containing element into thsi one..
20880         // not sure why we need all of this..
20881         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
20882         
20883         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
20884         //ss['background-attachment'] = 'fixed'; // w3c
20885         dbody.bgProperties = 'fixed'; // ie
20886         //Roo.DomHelper.applyStyles(dbody, ss);
20887         Roo.EventManager.on(this.doc, {
20888             //'mousedown': this.onEditorEvent,
20889             'mouseup': this.onEditorEvent,
20890             'dblclick': this.onEditorEvent,
20891             'click': this.onEditorEvent,
20892             'keyup': this.onEditorEvent,
20893             buffer:100,
20894             scope: this
20895         });
20896         if(Roo.isGecko){
20897             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
20898         }
20899         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
20900             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
20901         }
20902         this.initialized = true;
20903
20904         this.owner.fireEvent('initialize', this);
20905         this.pushValue();
20906     },
20907
20908     // private
20909     onDestroy : function(){
20910         
20911         
20912         
20913         if(this.rendered){
20914             
20915             //for (var i =0; i < this.toolbars.length;i++) {
20916             //    // fixme - ask toolbars for heights?
20917             //    this.toolbars[i].onDestroy();
20918            // }
20919             
20920             //this.wrap.dom.innerHTML = '';
20921             //this.wrap.remove();
20922         }
20923     },
20924
20925     // private
20926     onFirstFocus : function(){
20927         
20928         this.assignDocWin();
20929         
20930         
20931         this.activated = true;
20932          
20933     
20934         if(Roo.isGecko){ // prevent silly gecko errors
20935             this.win.focus();
20936             var s = this.win.getSelection();
20937             if(!s.focusNode || s.focusNode.nodeType != 3){
20938                 var r = s.getRangeAt(0);
20939                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
20940                 r.collapse(true);
20941                 this.deferFocus();
20942             }
20943             try{
20944                 this.execCmd('useCSS', true);
20945                 this.execCmd('styleWithCSS', false);
20946             }catch(e){}
20947         }
20948         this.owner.fireEvent('activate', this);
20949     },
20950
20951     // private
20952     adjustFont: function(btn){
20953         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
20954         //if(Roo.isSafari){ // safari
20955         //    adjust *= 2;
20956        // }
20957         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
20958         if(Roo.isSafari){ // safari
20959             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
20960             v =  (v < 10) ? 10 : v;
20961             v =  (v > 48) ? 48 : v;
20962             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
20963             
20964         }
20965         
20966         
20967         v = Math.max(1, v+adjust);
20968         
20969         this.execCmd('FontSize', v  );
20970     },
20971
20972     onEditorEvent : function(e)
20973     {
20974         this.owner.fireEvent('editorevent', this, e);
20975       //  this.updateToolbar();
20976         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
20977     },
20978
20979     insertTag : function(tg)
20980     {
20981         // could be a bit smarter... -> wrap the current selected tRoo..
20982         if (tg.toLowerCase() == 'span' || tg.toLowerCase() == 'code') {
20983             
20984             range = this.createRange(this.getSelection());
20985             var wrappingNode = this.doc.createElement(tg.toLowerCase());
20986             wrappingNode.appendChild(range.extractContents());
20987             range.insertNode(wrappingNode);
20988
20989             return;
20990             
20991             
20992             
20993         }
20994         this.execCmd("formatblock",   tg);
20995         
20996     },
20997     
20998     insertText : function(txt)
20999     {
21000         
21001         
21002         var range = this.createRange();
21003         range.deleteContents();
21004                //alert(Sender.getAttribute('label'));
21005                
21006         range.insertNode(this.doc.createTextNode(txt));
21007     } ,
21008     
21009      
21010
21011     /**
21012      * Executes a Midas editor command on the editor document and performs necessary focus and
21013      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
21014      * @param {String} cmd The Midas command
21015      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
21016      */
21017     relayCmd : function(cmd, value){
21018         this.win.focus();
21019         this.execCmd(cmd, value);
21020         this.owner.fireEvent('editorevent', this);
21021         //this.updateToolbar();
21022         this.owner.deferFocus();
21023     },
21024
21025     /**
21026      * Executes a Midas editor command directly on the editor document.
21027      * For visual commands, you should use {@link #relayCmd} instead.
21028      * <b>This should only be called after the editor is initialized.</b>
21029      * @param {String} cmd The Midas command
21030      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
21031      */
21032     execCmd : function(cmd, value){
21033         this.doc.execCommand(cmd, false, value === undefined ? null : value);
21034         this.syncValue();
21035     },
21036  
21037  
21038    
21039     /**
21040      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
21041      * to insert tRoo.
21042      * @param {String} text | dom node.. 
21043      */
21044     insertAtCursor : function(text)
21045     {
21046         
21047         if(!this.activated){
21048             return;
21049         }
21050         /*
21051         if(Roo.isIE){
21052             this.win.focus();
21053             var r = this.doc.selection.createRange();
21054             if(r){
21055                 r.collapse(true);
21056                 r.pasteHTML(text);
21057                 this.syncValue();
21058                 this.deferFocus();
21059             
21060             }
21061             return;
21062         }
21063         */
21064         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
21065             this.win.focus();
21066             
21067             
21068             // from jquery ui (MIT licenced)
21069             var range, node;
21070             var win = this.win;
21071             
21072             if (win.getSelection && win.getSelection().getRangeAt) {
21073                 range = win.getSelection().getRangeAt(0);
21074                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
21075                 range.insertNode(node);
21076             } else if (win.document.selection && win.document.selection.createRange) {
21077                 // no firefox support
21078                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
21079                 win.document.selection.createRange().pasteHTML(txt);
21080             } else {
21081                 // no firefox support
21082                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
21083                 this.execCmd('InsertHTML', txt);
21084             } 
21085             
21086             this.syncValue();
21087             
21088             this.deferFocus();
21089         }
21090     },
21091  // private
21092     mozKeyPress : function(e){
21093         if(e.ctrlKey){
21094             var c = e.getCharCode(), cmd;
21095           
21096             if(c > 0){
21097                 c = String.fromCharCode(c).toLowerCase();
21098                 switch(c){
21099                     case 'b':
21100                         cmd = 'bold';
21101                         break;
21102                     case 'i':
21103                         cmd = 'italic';
21104                         break;
21105                     
21106                     case 'u':
21107                         cmd = 'underline';
21108                         break;
21109                     
21110                     case 'v':
21111                         this.cleanUpPaste.defer(100, this);
21112                         return;
21113                         
21114                 }
21115                 if(cmd){
21116                     this.win.focus();
21117                     this.execCmd(cmd);
21118                     this.deferFocus();
21119                     e.preventDefault();
21120                 }
21121                 
21122             }
21123         }
21124     },
21125
21126     // private
21127     fixKeys : function(){ // load time branching for fastest keydown performance
21128         if(Roo.isIE){
21129             return function(e){
21130                 var k = e.getKey(), r;
21131                 if(k == e.TAB){
21132                     e.stopEvent();
21133                     r = this.doc.selection.createRange();
21134                     if(r){
21135                         r.collapse(true);
21136                         r.pasteHTML('&#160;&#160;&#160;&#160;');
21137                         this.deferFocus();
21138                     }
21139                     return;
21140                 }
21141                 
21142                 if(k == e.ENTER){
21143                     r = this.doc.selection.createRange();
21144                     if(r){
21145                         var target = r.parentElement();
21146                         if(!target || target.tagName.toLowerCase() != 'li'){
21147                             e.stopEvent();
21148                             r.pasteHTML('<br />');
21149                             r.collapse(false);
21150                             r.select();
21151                         }
21152                     }
21153                 }
21154                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
21155                     this.cleanUpPaste.defer(100, this);
21156                     return;
21157                 }
21158                 
21159                 
21160             };
21161         }else if(Roo.isOpera){
21162             return function(e){
21163                 var k = e.getKey();
21164                 if(k == e.TAB){
21165                     e.stopEvent();
21166                     this.win.focus();
21167                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
21168                     this.deferFocus();
21169                 }
21170                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
21171                     this.cleanUpPaste.defer(100, this);
21172                     return;
21173                 }
21174                 
21175             };
21176         }else if(Roo.isSafari){
21177             return function(e){
21178                 var k = e.getKey();
21179                 
21180                 if(k == e.TAB){
21181                     e.stopEvent();
21182                     this.execCmd('InsertText','\t');
21183                     this.deferFocus();
21184                     return;
21185                 }
21186                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
21187                     this.cleanUpPaste.defer(100, this);
21188                     return;
21189                 }
21190                 
21191              };
21192         }
21193     }(),
21194     
21195     getAllAncestors: function()
21196     {
21197         var p = this.getSelectedNode();
21198         var a = [];
21199         if (!p) {
21200             a.push(p); // push blank onto stack..
21201             p = this.getParentElement();
21202         }
21203         
21204         
21205         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
21206             a.push(p);
21207             p = p.parentNode;
21208         }
21209         a.push(this.doc.body);
21210         return a;
21211     },
21212     lastSel : false,
21213     lastSelNode : false,
21214     
21215     
21216     getSelection : function() 
21217     {
21218         this.assignDocWin();
21219         return Roo.isIE ? this.doc.selection : this.win.getSelection();
21220     },
21221     
21222     getSelectedNode: function() 
21223     {
21224         // this may only work on Gecko!!!
21225         
21226         // should we cache this!!!!
21227         
21228         
21229         
21230          
21231         var range = this.createRange(this.getSelection()).cloneRange();
21232         
21233         if (Roo.isIE) {
21234             var parent = range.parentElement();
21235             while (true) {
21236                 var testRange = range.duplicate();
21237                 testRange.moveToElementText(parent);
21238                 if (testRange.inRange(range)) {
21239                     break;
21240                 }
21241                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
21242                     break;
21243                 }
21244                 parent = parent.parentElement;
21245             }
21246             return parent;
21247         }
21248         
21249         // is ancestor a text element.
21250         var ac =  range.commonAncestorContainer;
21251         if (ac.nodeType == 3) {
21252             ac = ac.parentNode;
21253         }
21254         
21255         var ar = ac.childNodes;
21256          
21257         var nodes = [];
21258         var other_nodes = [];
21259         var has_other_nodes = false;
21260         for (var i=0;i<ar.length;i++) {
21261             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
21262                 continue;
21263             }
21264             // fullly contained node.
21265             
21266             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
21267                 nodes.push(ar[i]);
21268                 continue;
21269             }
21270             
21271             // probably selected..
21272             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
21273                 other_nodes.push(ar[i]);
21274                 continue;
21275             }
21276             // outer..
21277             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
21278                 continue;
21279             }
21280             
21281             
21282             has_other_nodes = true;
21283         }
21284         if (!nodes.length && other_nodes.length) {
21285             nodes= other_nodes;
21286         }
21287         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
21288             return false;
21289         }
21290         
21291         return nodes[0];
21292     },
21293     createRange: function(sel)
21294     {
21295         // this has strange effects when using with 
21296         // top toolbar - not sure if it's a great idea.
21297         //this.editor.contentWindow.focus();
21298         if (typeof sel != "undefined") {
21299             try {
21300                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
21301             } catch(e) {
21302                 return this.doc.createRange();
21303             }
21304         } else {
21305             return this.doc.createRange();
21306         }
21307     },
21308     getParentElement: function()
21309     {
21310         
21311         this.assignDocWin();
21312         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
21313         
21314         var range = this.createRange(sel);
21315          
21316         try {
21317             var p = range.commonAncestorContainer;
21318             while (p.nodeType == 3) { // text node
21319                 p = p.parentNode;
21320             }
21321             return p;
21322         } catch (e) {
21323             return null;
21324         }
21325     
21326     },
21327     /***
21328      *
21329      * Range intersection.. the hard stuff...
21330      *  '-1' = before
21331      *  '0' = hits..
21332      *  '1' = after.
21333      *         [ -- selected range --- ]
21334      *   [fail]                        [fail]
21335      *
21336      *    basically..
21337      *      if end is before start or  hits it. fail.
21338      *      if start is after end or hits it fail.
21339      *
21340      *   if either hits (but other is outside. - then it's not 
21341      *   
21342      *    
21343      **/
21344     
21345     
21346     // @see http://www.thismuchiknow.co.uk/?p=64.
21347     rangeIntersectsNode : function(range, node)
21348     {
21349         var nodeRange = node.ownerDocument.createRange();
21350         try {
21351             nodeRange.selectNode(node);
21352         } catch (e) {
21353             nodeRange.selectNodeContents(node);
21354         }
21355     
21356         var rangeStartRange = range.cloneRange();
21357         rangeStartRange.collapse(true);
21358     
21359         var rangeEndRange = range.cloneRange();
21360         rangeEndRange.collapse(false);
21361     
21362         var nodeStartRange = nodeRange.cloneRange();
21363         nodeStartRange.collapse(true);
21364     
21365         var nodeEndRange = nodeRange.cloneRange();
21366         nodeEndRange.collapse(false);
21367     
21368         return rangeStartRange.compareBoundaryPoints(
21369                  Range.START_TO_START, nodeEndRange) == -1 &&
21370                rangeEndRange.compareBoundaryPoints(
21371                  Range.START_TO_START, nodeStartRange) == 1;
21372         
21373          
21374     },
21375     rangeCompareNode : function(range, node)
21376     {
21377         var nodeRange = node.ownerDocument.createRange();
21378         try {
21379             nodeRange.selectNode(node);
21380         } catch (e) {
21381             nodeRange.selectNodeContents(node);
21382         }
21383         
21384         
21385         range.collapse(true);
21386     
21387         nodeRange.collapse(true);
21388      
21389         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
21390         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
21391          
21392         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
21393         
21394         var nodeIsBefore   =  ss == 1;
21395         var nodeIsAfter    = ee == -1;
21396         
21397         if (nodeIsBefore && nodeIsAfter) {
21398             return 0; // outer
21399         }
21400         if (!nodeIsBefore && nodeIsAfter) {
21401             return 1; //right trailed.
21402         }
21403         
21404         if (nodeIsBefore && !nodeIsAfter) {
21405             return 2;  // left trailed.
21406         }
21407         // fully contined.
21408         return 3;
21409     },
21410
21411     // private? - in a new class?
21412     cleanUpPaste :  function()
21413     {
21414         // cleans up the whole document..
21415         Roo.log('cleanuppaste');
21416         
21417         this.cleanUpChildren(this.doc.body);
21418         var clean = this.cleanWordChars(this.doc.body.innerHTML);
21419         if (clean != this.doc.body.innerHTML) {
21420             this.doc.body.innerHTML = clean;
21421         }
21422         
21423     },
21424     
21425     cleanWordChars : function(input) {// change the chars to hex code
21426         var he = Roo.HtmlEditorCore;
21427         
21428         var output = input;
21429         Roo.each(he.swapCodes, function(sw) { 
21430             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
21431             
21432             output = output.replace(swapper, sw[1]);
21433         });
21434         
21435         return output;
21436     },
21437     
21438     
21439     cleanUpChildren : function (n)
21440     {
21441         if (!n.childNodes.length) {
21442             return;
21443         }
21444         for (var i = n.childNodes.length-1; i > -1 ; i--) {
21445            this.cleanUpChild(n.childNodes[i]);
21446         }
21447     },
21448     
21449     
21450         
21451     
21452     cleanUpChild : function (node)
21453     {
21454         var ed = this;
21455         //console.log(node);
21456         if (node.nodeName == "#text") {
21457             // clean up silly Windows -- stuff?
21458             return; 
21459         }
21460         if (node.nodeName == "#comment") {
21461             node.parentNode.removeChild(node);
21462             // clean up silly Windows -- stuff?
21463             return; 
21464         }
21465         var lcname = node.tagName.toLowerCase();
21466         // we ignore whitelists... ?? = not really the way to go, but we probably have not got a full
21467         // whitelist of tags..
21468         
21469         if (this.black.indexOf(lcname) > -1 && this.clearUp ) {
21470             // remove node.
21471             node.parentNode.removeChild(node);
21472             return;
21473             
21474         }
21475         
21476         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
21477         
21478         // remove <a name=....> as rendering on yahoo mailer is borked with this.
21479         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
21480         
21481         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
21482         //    remove_keep_children = true;
21483         //}
21484         
21485         if (remove_keep_children) {
21486             this.cleanUpChildren(node);
21487             // inserts everything just before this node...
21488             while (node.childNodes.length) {
21489                 var cn = node.childNodes[0];
21490                 node.removeChild(cn);
21491                 node.parentNode.insertBefore(cn, node);
21492             }
21493             node.parentNode.removeChild(node);
21494             return;
21495         }
21496         
21497         if (!node.attributes || !node.attributes.length) {
21498             this.cleanUpChildren(node);
21499             return;
21500         }
21501         
21502         function cleanAttr(n,v)
21503         {
21504             
21505             if (v.match(/^\./) || v.match(/^\//)) {
21506                 return;
21507             }
21508             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/) || v.match(/^ftp:/)) {
21509                 return;
21510             }
21511             if (v.match(/^#/)) {
21512                 return;
21513             }
21514 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
21515             node.removeAttribute(n);
21516             
21517         }
21518         
21519         var cwhite = this.cwhite;
21520         var cblack = this.cblack;
21521             
21522         function cleanStyle(n,v)
21523         {
21524             if (v.match(/expression/)) { //XSS?? should we even bother..
21525                 node.removeAttribute(n);
21526                 return;
21527             }
21528             
21529             var parts = v.split(/;/);
21530             var clean = [];
21531             
21532             Roo.each(parts, function(p) {
21533                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
21534                 if (!p.length) {
21535                     return true;
21536                 }
21537                 var l = p.split(':').shift().replace(/\s+/g,'');
21538                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
21539                 
21540                 if ( cwhite.length && cblack.indexOf(l) > -1) {
21541 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
21542                     //node.removeAttribute(n);
21543                     return true;
21544                 }
21545                 //Roo.log()
21546                 // only allow 'c whitelisted system attributes'
21547                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
21548 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
21549                     //node.removeAttribute(n);
21550                     return true;
21551                 }
21552                 
21553                 
21554                  
21555                 
21556                 clean.push(p);
21557                 return true;
21558             });
21559             if (clean.length) { 
21560                 node.setAttribute(n, clean.join(';'));
21561             } else {
21562                 node.removeAttribute(n);
21563             }
21564             
21565         }
21566         
21567         
21568         for (var i = node.attributes.length-1; i > -1 ; i--) {
21569             var a = node.attributes[i];
21570             //console.log(a);
21571             
21572             if (a.name.toLowerCase().substr(0,2)=='on')  {
21573                 node.removeAttribute(a.name);
21574                 continue;
21575             }
21576             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
21577                 node.removeAttribute(a.name);
21578                 continue;
21579             }
21580             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
21581                 cleanAttr(a.name,a.value); // fixme..
21582                 continue;
21583             }
21584             if (a.name == 'style') {
21585                 cleanStyle(a.name,a.value);
21586                 continue;
21587             }
21588             /// clean up MS crap..
21589             // tecnically this should be a list of valid class'es..
21590             
21591             
21592             if (a.name == 'class') {
21593                 if (a.value.match(/^Mso/)) {
21594                     node.className = '';
21595                 }
21596                 
21597                 if (a.value.match(/^body$/)) {
21598                     node.className = '';
21599                 }
21600                 continue;
21601             }
21602             
21603             // style cleanup!?
21604             // class cleanup?
21605             
21606         }
21607         
21608         
21609         this.cleanUpChildren(node);
21610         
21611         
21612     },
21613     
21614     /**
21615      * Clean up MS wordisms...
21616      */
21617     cleanWord : function(node)
21618     {
21619         if (!node) {
21620             this.cleanWord(this.doc.body);
21621             return;
21622         }
21623         
21624         if(
21625                 node.nodeName == 'SPAN' &&
21626                 !node.hasAttributes() &&
21627                 node.childNodes.length == 1 &&
21628                 node.firstChild.nodeName == "#text"
21629         ) {
21630             var text = ' ' + node.innerHTML + ' ';
21631             var textNode = document.createTextNode(text);
21632             node.parentNode.insertBefore(textNode, node);
21633             node.parentNode.removeChild(node);
21634         }
21635         
21636         if (node.nodeName == "#text") {
21637             // clean up silly Windows -- stuff?
21638             return; 
21639         }
21640         if (node.nodeName == "#comment") {
21641             node.parentNode.removeChild(node);
21642             // clean up silly Windows -- stuff?
21643             return; 
21644         }
21645         
21646         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
21647             node.parentNode.removeChild(node);
21648             return;
21649         }
21650         
21651         // remove - but keep children..
21652         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|font)/)) {
21653             while (node.childNodes.length) {
21654                 var cn = node.childNodes[0];
21655                 node.removeChild(cn);
21656                 node.parentNode.insertBefore(cn, node);
21657             }
21658             node.parentNode.removeChild(node);
21659             this.iterateChildren(node, this.cleanWord);
21660             return;
21661         }
21662         // clean styles
21663         if (node.className.length) {
21664             
21665             var cn = node.className.split(/\W+/);
21666             var cna = [];
21667             Roo.each(cn, function(cls) {
21668                 if (cls.match(/Mso[a-zA-Z]+/)) {
21669                     return;
21670                 }
21671                 cna.push(cls);
21672             });
21673             node.className = cna.length ? cna.join(' ') : '';
21674             if (!cna.length) {
21675                 node.removeAttribute("class");
21676             }
21677         }
21678         
21679         if (node.hasAttribute("lang")) {
21680             node.removeAttribute("lang");
21681         }
21682         
21683         if (node.hasAttribute("style")) {
21684             
21685             var styles = node.getAttribute("style").split(";");
21686             var nstyle = [];
21687             Roo.each(styles, function(s) {
21688                 if (!s.match(/:/)) {
21689                     return;
21690                 }
21691                 var kv = s.split(":");
21692                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
21693                     return;
21694                 }
21695                 // what ever is left... we allow.
21696                 nstyle.push(s);
21697             });
21698             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
21699             if (!nstyle.length) {
21700                 node.removeAttribute('style');
21701             }
21702         }
21703         this.iterateChildren(node, this.cleanWord);
21704         
21705         
21706         
21707     },
21708     /**
21709      * iterateChildren of a Node, calling fn each time, using this as the scole..
21710      * @param {DomNode} node node to iterate children of.
21711      * @param {Function} fn method of this class to call on each item.
21712      */
21713     iterateChildren : function(node, fn)
21714     {
21715         if (!node.childNodes.length) {
21716                 return;
21717         }
21718         for (var i = node.childNodes.length-1; i > -1 ; i--) {
21719            fn.call(this, node.childNodes[i])
21720         }
21721     },
21722     
21723     
21724     /**
21725      * cleanTableWidths.
21726      *
21727      * Quite often pasting from word etc.. results in tables with column and widths.
21728      * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
21729      *
21730      */
21731     cleanTableWidths : function(node)
21732     {
21733          
21734          
21735         if (!node) {
21736             this.cleanTableWidths(this.doc.body);
21737             return;
21738         }
21739         
21740         // ignore list...
21741         if (node.nodeName == "#text" || node.nodeName == "#comment") {
21742             return; 
21743         }
21744         Roo.log(node.tagName);
21745         if (!node.tagName.toLowerCase().match(/^(table|td|tr)$/)) {
21746             this.iterateChildren(node, this.cleanTableWidths);
21747             return;
21748         }
21749         if (node.hasAttribute('width')) {
21750             node.removeAttribute('width');
21751         }
21752         
21753          
21754         if (node.hasAttribute("style")) {
21755             // pretty basic...
21756             
21757             var styles = node.getAttribute("style").split(";");
21758             var nstyle = [];
21759             Roo.each(styles, function(s) {
21760                 if (!s.match(/:/)) {
21761                     return;
21762                 }
21763                 var kv = s.split(":");
21764                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
21765                     return;
21766                 }
21767                 // what ever is left... we allow.
21768                 nstyle.push(s);
21769             });
21770             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
21771             if (!nstyle.length) {
21772                 node.removeAttribute('style');
21773             }
21774         }
21775         
21776         this.iterateChildren(node, this.cleanTableWidths);
21777         
21778         
21779     },
21780     
21781     
21782     
21783     
21784     domToHTML : function(currentElement, depth, nopadtext) {
21785         
21786         depth = depth || 0;
21787         nopadtext = nopadtext || false;
21788     
21789         if (!currentElement) {
21790             return this.domToHTML(this.doc.body);
21791         }
21792         
21793         //Roo.log(currentElement);
21794         var j;
21795         var allText = false;
21796         var nodeName = currentElement.nodeName;
21797         var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
21798         
21799         if  (nodeName == '#text') {
21800             
21801             return nopadtext ? currentElement.nodeValue : currentElement.nodeValue.trim();
21802         }
21803         
21804         
21805         var ret = '';
21806         if (nodeName != 'BODY') {
21807              
21808             var i = 0;
21809             // Prints the node tagName, such as <A>, <IMG>, etc
21810             if (tagName) {
21811                 var attr = [];
21812                 for(i = 0; i < currentElement.attributes.length;i++) {
21813                     // quoting?
21814                     var aname = currentElement.attributes.item(i).name;
21815                     if (!currentElement.attributes.item(i).value.length) {
21816                         continue;
21817                     }
21818                     attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
21819                 }
21820                 
21821                 ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
21822             } 
21823             else {
21824                 
21825                 // eack
21826             }
21827         } else {
21828             tagName = false;
21829         }
21830         if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
21831             return ret;
21832         }
21833         if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
21834             nopadtext = true;
21835         }
21836         
21837         
21838         // Traverse the tree
21839         i = 0;
21840         var currentElementChild = currentElement.childNodes.item(i);
21841         var allText = true;
21842         var innerHTML  = '';
21843         lastnode = '';
21844         while (currentElementChild) {
21845             // Formatting code (indent the tree so it looks nice on the screen)
21846             var nopad = nopadtext;
21847             if (lastnode == 'SPAN') {
21848                 nopad  = true;
21849             }
21850             // text
21851             if  (currentElementChild.nodeName == '#text') {
21852                 var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
21853                 toadd = nopadtext ? toadd : toadd.trim();
21854                 if (!nopad && toadd.length > 80) {
21855                     innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
21856                 }
21857                 innerHTML  += toadd;
21858                 
21859                 i++;
21860                 currentElementChild = currentElement.childNodes.item(i);
21861                 lastNode = '';
21862                 continue;
21863             }
21864             allText = false;
21865             
21866             innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
21867                 
21868             // Recursively traverse the tree structure of the child node
21869             innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
21870             lastnode = currentElementChild.nodeName;
21871             i++;
21872             currentElementChild=currentElement.childNodes.item(i);
21873         }
21874         
21875         ret += innerHTML;
21876         
21877         if (!allText) {
21878                 // The remaining code is mostly for formatting the tree
21879             ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
21880         }
21881         
21882         
21883         if (tagName) {
21884             ret+= "</"+tagName+">";
21885         }
21886         return ret;
21887         
21888     },
21889         
21890     applyBlacklists : function()
21891     {
21892         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
21893         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
21894         
21895         this.white = [];
21896         this.black = [];
21897         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
21898             if (b.indexOf(tag) > -1) {
21899                 return;
21900             }
21901             this.white.push(tag);
21902             
21903         }, this);
21904         
21905         Roo.each(w, function(tag) {
21906             if (b.indexOf(tag) > -1) {
21907                 return;
21908             }
21909             if (this.white.indexOf(tag) > -1) {
21910                 return;
21911             }
21912             this.white.push(tag);
21913             
21914         }, this);
21915         
21916         
21917         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
21918             if (w.indexOf(tag) > -1) {
21919                 return;
21920             }
21921             this.black.push(tag);
21922             
21923         }, this);
21924         
21925         Roo.each(b, function(tag) {
21926             if (w.indexOf(tag) > -1) {
21927                 return;
21928             }
21929             if (this.black.indexOf(tag) > -1) {
21930                 return;
21931             }
21932             this.black.push(tag);
21933             
21934         }, this);
21935         
21936         
21937         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
21938         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
21939         
21940         this.cwhite = [];
21941         this.cblack = [];
21942         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
21943             if (b.indexOf(tag) > -1) {
21944                 return;
21945             }
21946             this.cwhite.push(tag);
21947             
21948         }, this);
21949         
21950         Roo.each(w, function(tag) {
21951             if (b.indexOf(tag) > -1) {
21952                 return;
21953             }
21954             if (this.cwhite.indexOf(tag) > -1) {
21955                 return;
21956             }
21957             this.cwhite.push(tag);
21958             
21959         }, this);
21960         
21961         
21962         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
21963             if (w.indexOf(tag) > -1) {
21964                 return;
21965             }
21966             this.cblack.push(tag);
21967             
21968         }, this);
21969         
21970         Roo.each(b, function(tag) {
21971             if (w.indexOf(tag) > -1) {
21972                 return;
21973             }
21974             if (this.cblack.indexOf(tag) > -1) {
21975                 return;
21976             }
21977             this.cblack.push(tag);
21978             
21979         }, this);
21980     },
21981     
21982     setStylesheets : function(stylesheets)
21983     {
21984         if(typeof(stylesheets) == 'string'){
21985             Roo.get(this.iframe.contentDocument.head).createChild({
21986                 tag : 'link',
21987                 rel : 'stylesheet',
21988                 type : 'text/css',
21989                 href : stylesheets
21990             });
21991             
21992             return;
21993         }
21994         var _this = this;
21995      
21996         Roo.each(stylesheets, function(s) {
21997             if(!s.length){
21998                 return;
21999             }
22000             
22001             Roo.get(_this.iframe.contentDocument.head).createChild({
22002                 tag : 'link',
22003                 rel : 'stylesheet',
22004                 type : 'text/css',
22005                 href : s
22006             });
22007         });
22008
22009         
22010     },
22011     
22012     removeStylesheets : function()
22013     {
22014         var _this = this;
22015         
22016         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
22017             s.remove();
22018         });
22019     },
22020     
22021     setStyle : function(style)
22022     {
22023         Roo.get(this.iframe.contentDocument.head).createChild({
22024             tag : 'style',
22025             type : 'text/css',
22026             html : style
22027         });
22028
22029         return;
22030     }
22031     
22032     // hide stuff that is not compatible
22033     /**
22034      * @event blur
22035      * @hide
22036      */
22037     /**
22038      * @event change
22039      * @hide
22040      */
22041     /**
22042      * @event focus
22043      * @hide
22044      */
22045     /**
22046      * @event specialkey
22047      * @hide
22048      */
22049     /**
22050      * @cfg {String} fieldClass @hide
22051      */
22052     /**
22053      * @cfg {String} focusClass @hide
22054      */
22055     /**
22056      * @cfg {String} autoCreate @hide
22057      */
22058     /**
22059      * @cfg {String} inputType @hide
22060      */
22061     /**
22062      * @cfg {String} invalidClass @hide
22063      */
22064     /**
22065      * @cfg {String} invalidText @hide
22066      */
22067     /**
22068      * @cfg {String} msgFx @hide
22069      */
22070     /**
22071      * @cfg {String} validateOnBlur @hide
22072      */
22073 });
22074
22075 Roo.HtmlEditorCore.white = [
22076         'area', 'br', 'img', 'input', 'hr', 'wbr',
22077         
22078        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
22079        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
22080        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
22081        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
22082        'table',   'ul',         'xmp', 
22083        
22084        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
22085       'thead',   'tr', 
22086      
22087       'dir', 'menu', 'ol', 'ul', 'dl',
22088        
22089       'embed',  'object'
22090 ];
22091
22092
22093 Roo.HtmlEditorCore.black = [
22094     //    'embed',  'object', // enable - backend responsiblity to clean thiese
22095         'applet', // 
22096         'base',   'basefont', 'bgsound', 'blink',  'body', 
22097         'frame',  'frameset', 'head',    'html',   'ilayer', 
22098         'iframe', 'layer',  'link',     'meta',    'object',   
22099         'script', 'style' ,'title',  'xml' // clean later..
22100 ];
22101 Roo.HtmlEditorCore.clean = [
22102     'script', 'style', 'title', 'xml'
22103 ];
22104 Roo.HtmlEditorCore.remove = [
22105     'font'
22106 ];
22107 // attributes..
22108
22109 Roo.HtmlEditorCore.ablack = [
22110     'on'
22111 ];
22112     
22113 Roo.HtmlEditorCore.aclean = [ 
22114     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
22115 ];
22116
22117 // protocols..
22118 Roo.HtmlEditorCore.pwhite= [
22119         'http',  'https',  'mailto'
22120 ];
22121
22122 // white listed style attributes.
22123 Roo.HtmlEditorCore.cwhite= [
22124       //  'text-align', /// default is to allow most things..
22125       
22126          
22127 //        'font-size'//??
22128 ];
22129
22130 // black listed style attributes.
22131 Roo.HtmlEditorCore.cblack= [
22132       //  'font-size' -- this can be set by the project 
22133 ];
22134
22135
22136 Roo.HtmlEditorCore.swapCodes   =[ 
22137     [    8211, "--" ], 
22138     [    8212, "--" ], 
22139     [    8216,  "'" ],  
22140     [    8217, "'" ],  
22141     [    8220, '"' ],  
22142     [    8221, '"' ],  
22143     [    8226, "*" ],  
22144     [    8230, "..." ]
22145 ]; 
22146
22147     //<script type="text/javascript">
22148
22149 /*
22150  * Ext JS Library 1.1.1
22151  * Copyright(c) 2006-2007, Ext JS, LLC.
22152  * Licence LGPL
22153  * 
22154  */
22155  
22156  
22157 Roo.form.HtmlEditor = function(config){
22158     
22159     
22160     
22161     Roo.form.HtmlEditor.superclass.constructor.call(this, config);
22162     
22163     if (!this.toolbars) {
22164         this.toolbars = [];
22165     }
22166     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
22167     
22168     
22169 };
22170
22171 /**
22172  * @class Roo.form.HtmlEditor
22173  * @extends Roo.form.Field
22174  * Provides a lightweight HTML Editor component.
22175  *
22176  * This has been tested on Fireforx / Chrome.. IE may not be so great..
22177  * 
22178  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
22179  * supported by this editor.</b><br/><br/>
22180  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
22181  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
22182  */
22183 Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
22184     /**
22185      * @cfg {Boolean} clearUp
22186      */
22187     clearUp : true,
22188       /**
22189      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
22190      */
22191     toolbars : false,
22192    
22193      /**
22194      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
22195      *                        Roo.resizable.
22196      */
22197     resizable : false,
22198      /**
22199      * @cfg {Number} height (in pixels)
22200      */   
22201     height: 300,
22202    /**
22203      * @cfg {Number} width (in pixels)
22204      */   
22205     width: 500,
22206     
22207     /**
22208      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
22209      * 
22210      */
22211     stylesheets: false,
22212     
22213     
22214      /**
22215      * @cfg {Array} blacklist of css styles style attributes (blacklist overrides whitelist)
22216      * 
22217      */
22218     cblack: false,
22219     /**
22220      * @cfg {Array} whitelist of css styles style attributes (blacklist overrides whitelist)
22221      * 
22222      */
22223     cwhite: false,
22224     
22225      /**
22226      * @cfg {Array} blacklist of html tags - in addition to standard blacklist.
22227      * 
22228      */
22229     black: false,
22230     /**
22231      * @cfg {Array} whitelist of html tags - in addition to statndard whitelist
22232      * 
22233      */
22234     white: false,
22235     
22236     // id of frame..
22237     frameId: false,
22238     
22239     // private properties
22240     validationEvent : false,
22241     deferHeight: true,
22242     initialized : false,
22243     activated : false,
22244     
22245     onFocus : Roo.emptyFn,
22246     iframePad:3,
22247     hideMode:'offsets',
22248     
22249     actionMode : 'container', // defaults to hiding it...
22250     
22251     defaultAutoCreate : { // modified by initCompnoent..
22252         tag: "textarea",
22253         style:"width:500px;height:300px;",
22254         autocomplete: "new-password"
22255     },
22256
22257     // private
22258     initComponent : function(){
22259         this.addEvents({
22260             /**
22261              * @event initialize
22262              * Fires when the editor is fully initialized (including the iframe)
22263              * @param {HtmlEditor} this
22264              */
22265             initialize: true,
22266             /**
22267              * @event activate
22268              * Fires when the editor is first receives the focus. Any insertion must wait
22269              * until after this event.
22270              * @param {HtmlEditor} this
22271              */
22272             activate: true,
22273              /**
22274              * @event beforesync
22275              * Fires before the textarea is updated with content from the editor iframe. Return false
22276              * to cancel the sync.
22277              * @param {HtmlEditor} this
22278              * @param {String} html
22279              */
22280             beforesync: true,
22281              /**
22282              * @event beforepush
22283              * Fires before the iframe editor is updated with content from the textarea. Return false
22284              * to cancel the push.
22285              * @param {HtmlEditor} this
22286              * @param {String} html
22287              */
22288             beforepush: true,
22289              /**
22290              * @event sync
22291              * Fires when the textarea is updated with content from the editor iframe.
22292              * @param {HtmlEditor} this
22293              * @param {String} html
22294              */
22295             sync: true,
22296              /**
22297              * @event push
22298              * Fires when the iframe editor is updated with content from the textarea.
22299              * @param {HtmlEditor} this
22300              * @param {String} html
22301              */
22302             push: true,
22303              /**
22304              * @event editmodechange
22305              * Fires when the editor switches edit modes
22306              * @param {HtmlEditor} this
22307              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
22308              */
22309             editmodechange: true,
22310             /**
22311              * @event editorevent
22312              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
22313              * @param {HtmlEditor} this
22314              */
22315             editorevent: true,
22316             /**
22317              * @event firstfocus
22318              * Fires when on first focus - needed by toolbars..
22319              * @param {HtmlEditor} this
22320              */
22321             firstfocus: true,
22322             /**
22323              * @event autosave
22324              * Auto save the htmlEditor value as a file into Events
22325              * @param {HtmlEditor} this
22326              */
22327             autosave: true,
22328             /**
22329              * @event savedpreview
22330              * preview the saved version of htmlEditor
22331              * @param {HtmlEditor} this
22332              */
22333             savedpreview: true,
22334             
22335             /**
22336             * @event stylesheetsclick
22337             * Fires when press the Sytlesheets button
22338             * @param {Roo.HtmlEditorCore} this
22339             */
22340             stylesheetsclick: true
22341         });
22342         this.defaultAutoCreate =  {
22343             tag: "textarea",
22344             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
22345             autocomplete: "new-password"
22346         };
22347     },
22348
22349     /**
22350      * Protected method that will not generally be called directly. It
22351      * is called when the editor creates its toolbar. Override this method if you need to
22352      * add custom toolbar buttons.
22353      * @param {HtmlEditor} editor
22354      */
22355     createToolbar : function(editor){
22356         Roo.log("create toolbars");
22357         if (!editor.toolbars || !editor.toolbars.length) {
22358             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
22359         }
22360         
22361         for (var i =0 ; i < editor.toolbars.length;i++) {
22362             editor.toolbars[i] = Roo.factory(
22363                     typeof(editor.toolbars[i]) == 'string' ?
22364                         { xtype: editor.toolbars[i]} : editor.toolbars[i],
22365                 Roo.form.HtmlEditor);
22366             editor.toolbars[i].init(editor);
22367         }
22368          
22369         
22370     },
22371
22372      
22373     // private
22374     onRender : function(ct, position)
22375     {
22376         var _t = this;
22377         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
22378         
22379         this.wrap = this.el.wrap({
22380             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
22381         });
22382         
22383         this.editorcore.onRender(ct, position);
22384          
22385         if (this.resizable) {
22386             this.resizeEl = new Roo.Resizable(this.wrap, {
22387                 pinned : true,
22388                 wrap: true,
22389                 dynamic : true,
22390                 minHeight : this.height,
22391                 height: this.height,
22392                 handles : this.resizable,
22393                 width: this.width,
22394                 listeners : {
22395                     resize : function(r, w, h) {
22396                         _t.onResize(w,h); // -something
22397                     }
22398                 }
22399             });
22400             
22401         }
22402         this.createToolbar(this);
22403        
22404         
22405         if(!this.width){
22406             this.setSize(this.wrap.getSize());
22407         }
22408         if (this.resizeEl) {
22409             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
22410             // should trigger onReize..
22411         }
22412         
22413         this.keyNav = new Roo.KeyNav(this.el, {
22414             
22415             "tab" : function(e){
22416                 e.preventDefault();
22417                 
22418                 var value = this.getValue();
22419                 
22420                 var start = this.el.dom.selectionStart;
22421                 var end = this.el.dom.selectionEnd;
22422                 
22423                 if(!e.shiftKey){
22424                     
22425                     this.setValue(value.substring(0, start) + "\t" + value.substring(end));
22426                     this.el.dom.setSelectionRange(end + 1, end + 1);
22427                     return;
22428                 }
22429                 
22430                 var f = value.substring(0, start).split("\t");
22431                 
22432                 if(f.pop().length != 0){
22433                     return;
22434                 }
22435                 
22436                 this.setValue(f.join("\t") + value.substring(end));
22437                 this.el.dom.setSelectionRange(start - 1, start - 1);
22438                 
22439             },
22440             
22441             "home" : function(e){
22442                 e.preventDefault();
22443                 
22444                 var curr = this.el.dom.selectionStart;
22445                 var lines = this.getValue().split("\n");
22446                 
22447                 if(!lines.length){
22448                     return;
22449                 }
22450                 
22451                 if(e.ctrlKey){
22452                     this.el.dom.setSelectionRange(0, 0);
22453                     return;
22454                 }
22455                 
22456                 var pos = 0;
22457                 
22458                 for (var i = 0; i < lines.length;i++) {
22459                     pos += lines[i].length;
22460                     
22461                     if(i != 0){
22462                         pos += 1;
22463                     }
22464                     
22465                     if(pos < curr){
22466                         continue;
22467                     }
22468                     
22469                     pos -= lines[i].length;
22470                     
22471                     break;
22472                 }
22473                 
22474                 if(!e.shiftKey){
22475                     this.el.dom.setSelectionRange(pos, pos);
22476                     return;
22477                 }
22478                 
22479                 this.el.dom.selectionStart = pos;
22480                 this.el.dom.selectionEnd = curr;
22481             },
22482             
22483             "end" : function(e){
22484                 e.preventDefault();
22485                 
22486                 var curr = this.el.dom.selectionStart;
22487                 var lines = this.getValue().split("\n");
22488                 
22489                 if(!lines.length){
22490                     return;
22491                 }
22492                 
22493                 if(e.ctrlKey){
22494                     this.el.dom.setSelectionRange(this.getValue().length, this.getValue().length);
22495                     return;
22496                 }
22497                 
22498                 var pos = 0;
22499                 
22500                 for (var i = 0; i < lines.length;i++) {
22501                     
22502                     pos += lines[i].length;
22503                     
22504                     if(i != 0){
22505                         pos += 1;
22506                     }
22507                     
22508                     if(pos < curr){
22509                         continue;
22510                     }
22511                     
22512                     break;
22513                 }
22514                 
22515                 if(!e.shiftKey){
22516                     this.el.dom.setSelectionRange(pos, pos);
22517                     return;
22518                 }
22519                 
22520                 this.el.dom.selectionStart = curr;
22521                 this.el.dom.selectionEnd = pos;
22522             },
22523
22524             scope : this,
22525
22526             doRelay : function(foo, bar, hname){
22527                 return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
22528             },
22529
22530             forceKeyDown: true
22531         });
22532         
22533 //        if(this.autosave && this.w){
22534 //            this.autoSaveFn = setInterval(this.autosave, 1000);
22535 //        }
22536     },
22537
22538     // private
22539     onResize : function(w, h)
22540     {
22541         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
22542         var ew = false;
22543         var eh = false;
22544         
22545         if(this.el ){
22546             if(typeof w == 'number'){
22547                 var aw = w - this.wrap.getFrameWidth('lr');
22548                 this.el.setWidth(this.adjustWidth('textarea', aw));
22549                 ew = aw;
22550             }
22551             if(typeof h == 'number'){
22552                 var tbh = 0;
22553                 for (var i =0; i < this.toolbars.length;i++) {
22554                     // fixme - ask toolbars for heights?
22555                     tbh += this.toolbars[i].tb.el.getHeight();
22556                     if (this.toolbars[i].footer) {
22557                         tbh += this.toolbars[i].footer.el.getHeight();
22558                     }
22559                 }
22560                 
22561                 
22562                 
22563                 
22564                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
22565                 ah -= 5; // knock a few pixes off for look..
22566 //                Roo.log(ah);
22567                 this.el.setHeight(this.adjustWidth('textarea', ah));
22568                 var eh = ah;
22569             }
22570         }
22571         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
22572         this.editorcore.onResize(ew,eh);
22573         
22574     },
22575
22576     /**
22577      * Toggles the editor between standard and source edit mode.
22578      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
22579      */
22580     toggleSourceEdit : function(sourceEditMode)
22581     {
22582         this.editorcore.toggleSourceEdit(sourceEditMode);
22583         
22584         if(this.editorcore.sourceEditMode){
22585             Roo.log('editor - showing textarea');
22586             
22587 //            Roo.log('in');
22588 //            Roo.log(this.syncValue());
22589             this.editorcore.syncValue();
22590             this.el.removeClass('x-hidden');
22591             this.el.dom.removeAttribute('tabIndex');
22592             this.el.focus();
22593             
22594             for (var i = 0; i < this.toolbars.length; i++) {
22595                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
22596                     this.toolbars[i].tb.hide();
22597                     this.toolbars[i].footer.hide();
22598                 }
22599             }
22600             
22601         }else{
22602             Roo.log('editor - hiding textarea');
22603 //            Roo.log('out')
22604 //            Roo.log(this.pushValue()); 
22605             this.editorcore.pushValue();
22606             
22607             this.el.addClass('x-hidden');
22608             this.el.dom.setAttribute('tabIndex', -1);
22609             
22610             for (var i = 0; i < this.toolbars.length; i++) {
22611                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
22612                     this.toolbars[i].tb.show();
22613                     this.toolbars[i].footer.show();
22614                 }
22615             }
22616             
22617             //this.deferFocus();
22618         }
22619         
22620         this.setSize(this.wrap.getSize());
22621         this.onResize(this.wrap.getSize().width, this.wrap.getSize().height);
22622         
22623         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
22624     },
22625  
22626     // private (for BoxComponent)
22627     adjustSize : Roo.BoxComponent.prototype.adjustSize,
22628
22629     // private (for BoxComponent)
22630     getResizeEl : function(){
22631         return this.wrap;
22632     },
22633
22634     // private (for BoxComponent)
22635     getPositionEl : function(){
22636         return this.wrap;
22637     },
22638
22639     // private
22640     initEvents : function(){
22641         this.originalValue = this.getValue();
22642     },
22643
22644     /**
22645      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
22646      * @method
22647      */
22648     markInvalid : Roo.emptyFn,
22649     /**
22650      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
22651      * @method
22652      */
22653     clearInvalid : Roo.emptyFn,
22654
22655     setValue : function(v){
22656         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
22657         this.editorcore.pushValue();
22658     },
22659
22660      
22661     // private
22662     deferFocus : function(){
22663         this.focus.defer(10, this);
22664     },
22665
22666     // doc'ed in Field
22667     focus : function(){
22668         this.editorcore.focus();
22669         
22670     },
22671       
22672
22673     // private
22674     onDestroy : function(){
22675         
22676         
22677         
22678         if(this.rendered){
22679             
22680             for (var i =0; i < this.toolbars.length;i++) {
22681                 // fixme - ask toolbars for heights?
22682                 this.toolbars[i].onDestroy();
22683             }
22684             
22685             this.wrap.dom.innerHTML = '';
22686             this.wrap.remove();
22687         }
22688     },
22689
22690     // private
22691     onFirstFocus : function(){
22692         //Roo.log("onFirstFocus");
22693         this.editorcore.onFirstFocus();
22694          for (var i =0; i < this.toolbars.length;i++) {
22695             this.toolbars[i].onFirstFocus();
22696         }
22697         
22698     },
22699     
22700     // private
22701     syncValue : function()
22702     {
22703         this.editorcore.syncValue();
22704     },
22705     
22706     pushValue : function()
22707     {
22708         this.editorcore.pushValue();
22709     },
22710     
22711     setStylesheets : function(stylesheets)
22712     {
22713         this.editorcore.setStylesheets(stylesheets);
22714     },
22715     
22716     removeStylesheets : function()
22717     {
22718         this.editorcore.removeStylesheets();
22719     }
22720      
22721     
22722     // hide stuff that is not compatible
22723     /**
22724      * @event blur
22725      * @hide
22726      */
22727     /**
22728      * @event change
22729      * @hide
22730      */
22731     /**
22732      * @event focus
22733      * @hide
22734      */
22735     /**
22736      * @event specialkey
22737      * @hide
22738      */
22739     /**
22740      * @cfg {String} fieldClass @hide
22741      */
22742     /**
22743      * @cfg {String} focusClass @hide
22744      */
22745     /**
22746      * @cfg {String} autoCreate @hide
22747      */
22748     /**
22749      * @cfg {String} inputType @hide
22750      */
22751     /**
22752      * @cfg {String} invalidClass @hide
22753      */
22754     /**
22755      * @cfg {String} invalidText @hide
22756      */
22757     /**
22758      * @cfg {String} msgFx @hide
22759      */
22760     /**
22761      * @cfg {String} validateOnBlur @hide
22762      */
22763 });
22764  
22765     // <script type="text/javascript">
22766 /*
22767  * Based on
22768  * Ext JS Library 1.1.1
22769  * Copyright(c) 2006-2007, Ext JS, LLC.
22770  *  
22771  
22772  */
22773
22774 /**
22775  * @class Roo.form.HtmlEditorToolbar1
22776  * Basic Toolbar
22777  * 
22778  * Usage:
22779  *
22780  new Roo.form.HtmlEditor({
22781     ....
22782     toolbars : [
22783         new Roo.form.HtmlEditorToolbar1({
22784             disable : { fonts: 1 , format: 1, ..., ... , ...],
22785             btns : [ .... ]
22786         })
22787     }
22788      
22789  * 
22790  * @cfg {Object} disable List of elements to disable..
22791  * @cfg {Array} btns List of additional buttons.
22792  * 
22793  * 
22794  * NEEDS Extra CSS? 
22795  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
22796  */
22797  
22798 Roo.form.HtmlEditor.ToolbarStandard = function(config)
22799 {
22800     
22801     Roo.apply(this, config);
22802     
22803     // default disabled, based on 'good practice'..
22804     this.disable = this.disable || {};
22805     Roo.applyIf(this.disable, {
22806         fontSize : true,
22807         colors : true,
22808         specialElements : true
22809     });
22810     
22811     
22812     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
22813     // dont call parent... till later.
22814 }
22815
22816 Roo.apply(Roo.form.HtmlEditor.ToolbarStandard.prototype,  {
22817     
22818     tb: false,
22819     
22820     rendered: false,
22821     
22822     editor : false,
22823     editorcore : false,
22824     /**
22825      * @cfg {Object} disable  List of toolbar elements to disable
22826          
22827      */
22828     disable : false,
22829     
22830     
22831      /**
22832      * @cfg {String} createLinkText The default text for the create link prompt
22833      */
22834     createLinkText : 'Please enter the URL for the link:',
22835     /**
22836      * @cfg {String} defaultLinkValue The default value for the create link prompt (defaults to http:/ /)
22837      */
22838     defaultLinkValue : 'http:/'+'/',
22839    
22840     
22841       /**
22842      * @cfg {Array} fontFamilies An array of available font families
22843      */
22844     fontFamilies : [
22845         'Arial',
22846         'Courier New',
22847         'Tahoma',
22848         'Times New Roman',
22849         'Verdana'
22850     ],
22851     
22852     specialChars : [
22853            "&#169;",
22854           "&#174;",     
22855           "&#8482;",    
22856           "&#163;" ,    
22857          // "&#8212;",    
22858           "&#8230;",    
22859           "&#247;" ,    
22860         //  "&#225;" ,     ?? a acute?
22861            "&#8364;"    , //Euro
22862        //   "&#8220;"    ,
22863         //  "&#8221;"    ,
22864         //  "&#8226;"    ,
22865           "&#176;"  //   , // degrees
22866
22867          // "&#233;"     , // e ecute
22868          // "&#250;"     , // u ecute?
22869     ],
22870     
22871     specialElements : [
22872         {
22873             text: "Insert Table",
22874             xtype: 'MenuItem',
22875             xns : Roo.Menu,
22876             ihtml :  '<table><tr><td>Cell</td></tr></table>' 
22877                 
22878         },
22879         {    
22880             text: "Insert Image",
22881             xtype: 'MenuItem',
22882             xns : Roo.Menu,
22883             ihtml : '<img src="about:blank"/>'
22884             
22885         }
22886         
22887          
22888     ],
22889     
22890     
22891     inputElements : [ 
22892             "form", "input:text", "input:hidden", "input:checkbox", "input:radio", "input:password", 
22893             "input:submit", "input:button", "select", "textarea", "label" ],
22894     formats : [
22895         ["p"] ,  
22896         ["h1"],["h2"],["h3"],["h4"],["h5"],["h6"], 
22897         ["pre"],[ "code"], 
22898         ["abbr"],[ "acronym"],[ "address"],[ "cite"],[ "samp"],[ "var"],
22899         ['div'],['span']
22900     ],
22901     
22902     cleanStyles : [
22903         "font-size"
22904     ],
22905      /**
22906      * @cfg {String} defaultFont default font to use.
22907      */
22908     defaultFont: 'tahoma',
22909    
22910     fontSelect : false,
22911     
22912     
22913     formatCombo : false,
22914     
22915     init : function(editor)
22916     {
22917         this.editor = editor;
22918         this.editorcore = editor.editorcore ? editor.editorcore : editor;
22919         var editorcore = this.editorcore;
22920         
22921         var _t = this;
22922         
22923         var fid = editorcore.frameId;
22924         var etb = this;
22925         function btn(id, toggle, handler){
22926             var xid = fid + '-'+ id ;
22927             return {
22928                 id : xid,
22929                 cmd : id,
22930                 cls : 'x-btn-icon x-edit-'+id,
22931                 enableToggle:toggle !== false,
22932                 scope: _t, // was editor...
22933                 handler:handler||_t.relayBtnCmd,
22934                 clickEvent:'mousedown',
22935                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
22936                 tabIndex:-1
22937             };
22938         }
22939         
22940         
22941         
22942         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
22943         this.tb = tb;
22944          // stop form submits
22945         tb.el.on('click', function(e){
22946             e.preventDefault(); // what does this do?
22947         });
22948
22949         if(!this.disable.font) { // && !Roo.isSafari){
22950             /* why no safari for fonts 
22951             editor.fontSelect = tb.el.createChild({
22952                 tag:'select',
22953                 tabIndex: -1,
22954                 cls:'x-font-select',
22955                 html: this.createFontOptions()
22956             });
22957             
22958             editor.fontSelect.on('change', function(){
22959                 var font = editor.fontSelect.dom.value;
22960                 editor.relayCmd('fontname', font);
22961                 editor.deferFocus();
22962             }, editor);
22963             
22964             tb.add(
22965                 editor.fontSelect.dom,
22966                 '-'
22967             );
22968             */
22969             
22970         };
22971         if(!this.disable.formats){
22972             this.formatCombo = new Roo.form.ComboBox({
22973                 store: new Roo.data.SimpleStore({
22974                     id : 'tag',
22975                     fields: ['tag'],
22976                     data : this.formats // from states.js
22977                 }),
22978                 blockFocus : true,
22979                 name : '',
22980                 //autoCreate : {tag: "div",  size: "20"},
22981                 displayField:'tag',
22982                 typeAhead: false,
22983                 mode: 'local',
22984                 editable : false,
22985                 triggerAction: 'all',
22986                 emptyText:'Add tag',
22987                 selectOnFocus:true,
22988                 width:135,
22989                 listeners : {
22990                     'select': function(c, r, i) {
22991                         editorcore.insertTag(r.get('tag'));
22992                         editor.focus();
22993                     }
22994                 }
22995
22996             });
22997             tb.addField(this.formatCombo);
22998             
22999         }
23000         
23001         if(!this.disable.format){
23002             tb.add(
23003                 btn('bold'),
23004                 btn('italic'),
23005                 btn('underline'),
23006                 btn('strikethrough')
23007             );
23008         };
23009         if(!this.disable.fontSize){
23010             tb.add(
23011                 '-',
23012                 
23013                 
23014                 btn('increasefontsize', false, editorcore.adjustFont),
23015                 btn('decreasefontsize', false, editorcore.adjustFont)
23016             );
23017         };
23018         
23019         
23020         if(!this.disable.colors){
23021             tb.add(
23022                 '-', {
23023                     id:editorcore.frameId +'-forecolor',
23024                     cls:'x-btn-icon x-edit-forecolor',
23025                     clickEvent:'mousedown',
23026                     tooltip: this.buttonTips['forecolor'] || undefined,
23027                     tabIndex:-1,
23028                     menu : new Roo.menu.ColorMenu({
23029                         allowReselect: true,
23030                         focus: Roo.emptyFn,
23031                         value:'000000',
23032                         plain:true,
23033                         selectHandler: function(cp, color){
23034                             editorcore.execCmd('forecolor', Roo.isSafari || Roo.isIE ? '#'+color : color);
23035                             editor.deferFocus();
23036                         },
23037                         scope: editorcore,
23038                         clickEvent:'mousedown'
23039                     })
23040                 }, {
23041                     id:editorcore.frameId +'backcolor',
23042                     cls:'x-btn-icon x-edit-backcolor',
23043                     clickEvent:'mousedown',
23044                     tooltip: this.buttonTips['backcolor'] || undefined,
23045                     tabIndex:-1,
23046                     menu : new Roo.menu.ColorMenu({
23047                         focus: Roo.emptyFn,
23048                         value:'FFFFFF',
23049                         plain:true,
23050                         allowReselect: true,
23051                         selectHandler: function(cp, color){
23052                             if(Roo.isGecko){
23053                                 editorcore.execCmd('useCSS', false);
23054                                 editorcore.execCmd('hilitecolor', color);
23055                                 editorcore.execCmd('useCSS', true);
23056                                 editor.deferFocus();
23057                             }else{
23058                                 editorcore.execCmd(Roo.isOpera ? 'hilitecolor' : 'backcolor', 
23059                                     Roo.isSafari || Roo.isIE ? '#'+color : color);
23060                                 editor.deferFocus();
23061                             }
23062                         },
23063                         scope:editorcore,
23064                         clickEvent:'mousedown'
23065                     })
23066                 }
23067             );
23068         };
23069         // now add all the items...
23070         
23071
23072         if(!this.disable.alignments){
23073             tb.add(
23074                 '-',
23075                 btn('justifyleft'),
23076                 btn('justifycenter'),
23077                 btn('justifyright')
23078             );
23079         };
23080
23081         //if(!Roo.isSafari){
23082             if(!this.disable.links){
23083                 tb.add(
23084                     '-',
23085                     btn('createlink', false, this.createLink)    /// MOVE TO HERE?!!?!?!?!
23086                 );
23087             };
23088
23089             if(!this.disable.lists){
23090                 tb.add(
23091                     '-',
23092                     btn('insertorderedlist'),
23093                     btn('insertunorderedlist')
23094                 );
23095             }
23096             if(!this.disable.sourceEdit){
23097                 tb.add(
23098                     '-',
23099                     btn('sourceedit', true, function(btn){
23100                         this.toggleSourceEdit(btn.pressed);
23101                     })
23102                 );
23103             }
23104         //}
23105         
23106         var smenu = { };
23107         // special menu.. - needs to be tidied up..
23108         if (!this.disable.special) {
23109             smenu = {
23110                 text: "&#169;",
23111                 cls: 'x-edit-none',
23112                 
23113                 menu : {
23114                     items : []
23115                 }
23116             };
23117             for (var i =0; i < this.specialChars.length; i++) {
23118                 smenu.menu.items.push({
23119                     
23120                     html: this.specialChars[i],
23121                     handler: function(a,b) {
23122                         editorcore.insertAtCursor(String.fromCharCode(a.html.replace('&#','').replace(';', '')));
23123                         //editor.insertAtCursor(a.html);
23124                         
23125                     },
23126                     tabIndex:-1
23127                 });
23128             }
23129             
23130             
23131             tb.add(smenu);
23132             
23133             
23134         }
23135         
23136         var cmenu = { };
23137         if (!this.disable.cleanStyles) {
23138             cmenu = {
23139                 cls: 'x-btn-icon x-btn-clear',
23140                 
23141                 menu : {
23142                     items : []
23143                 }
23144             };
23145             for (var i =0; i < this.cleanStyles.length; i++) {
23146                 cmenu.menu.items.push({
23147                     actiontype : this.cleanStyles[i],
23148                     html: 'Remove ' + this.cleanStyles[i],
23149                     handler: function(a,b) {
23150 //                        Roo.log(a);
23151 //                        Roo.log(b);
23152                         var c = Roo.get(editorcore.doc.body);
23153                         c.select('[style]').each(function(s) {
23154                             s.dom.style.removeProperty(a.actiontype);
23155                         });
23156                         editorcore.syncValue();
23157                     },
23158                     tabIndex:-1
23159                 });
23160             }
23161              cmenu.menu.items.push({
23162                 actiontype : 'tablewidths',
23163                 html: 'Remove Table Widths',
23164                 handler: function(a,b) {
23165                     editorcore.cleanTableWidths();
23166                     editorcore.syncValue();
23167                 },
23168                 tabIndex:-1
23169             });
23170             cmenu.menu.items.push({
23171                 actiontype : 'word',
23172                 html: 'Remove MS Word Formating',
23173                 handler: function(a,b) {
23174                     editorcore.cleanWord();
23175                     editorcore.syncValue();
23176                 },
23177                 tabIndex:-1
23178             });
23179             
23180             cmenu.menu.items.push({
23181                 actiontype : 'all',
23182                 html: 'Remove All Styles',
23183                 handler: function(a,b) {
23184                     
23185                     var c = Roo.get(editorcore.doc.body);
23186                     c.select('[style]').each(function(s) {
23187                         s.dom.removeAttribute('style');
23188                     });
23189                     editorcore.syncValue();
23190                 },
23191                 tabIndex:-1
23192             });
23193             
23194             cmenu.menu.items.push({
23195                 actiontype : 'all',
23196                 html: 'Remove All CSS Classes',
23197                 handler: function(a,b) {
23198                     
23199                     var c = Roo.get(editorcore.doc.body);
23200                     c.select('[class]').each(function(s) {
23201                         s.dom.className = '';
23202                     });
23203                     editorcore.syncValue();
23204                 },
23205                 tabIndex:-1
23206             });
23207             
23208              cmenu.menu.items.push({
23209                 actiontype : 'tidy',
23210                 html: 'Tidy HTML Source',
23211                 handler: function(a,b) {
23212                     editorcore.doc.body.innerHTML = editorcore.domToHTML();
23213                     editorcore.syncValue();
23214                 },
23215                 tabIndex:-1
23216             });
23217             
23218             
23219             tb.add(cmenu);
23220         }
23221          
23222         if (!this.disable.specialElements) {
23223             var semenu = {
23224                 text: "Other;",
23225                 cls: 'x-edit-none',
23226                 menu : {
23227                     items : []
23228                 }
23229             };
23230             for (var i =0; i < this.specialElements.length; i++) {
23231                 semenu.menu.items.push(
23232                     Roo.apply({ 
23233                         handler: function(a,b) {
23234                             editor.insertAtCursor(this.ihtml);
23235                         }
23236                     }, this.specialElements[i])
23237                 );
23238                     
23239             }
23240             
23241             tb.add(semenu);
23242             
23243             
23244         }
23245          
23246         
23247         if (this.btns) {
23248             for(var i =0; i< this.btns.length;i++) {
23249                 var b = Roo.factory(this.btns[i],Roo.form);
23250                 b.cls =  'x-edit-none';
23251                 
23252                 if(typeof(this.btns[i].cls) != 'undefined' && this.btns[i].cls.indexOf('x-init-enable') !== -1){
23253                     b.cls += ' x-init-enable';
23254                 }
23255                 
23256                 b.scope = editorcore;
23257                 tb.add(b);
23258             }
23259         
23260         }
23261         
23262         
23263         
23264         // disable everything...
23265         
23266         this.tb.items.each(function(item){
23267             
23268            if(
23269                 item.id != editorcore.frameId+ '-sourceedit' && 
23270                 (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)
23271             ){
23272                 
23273                 item.disable();
23274             }
23275         });
23276         this.rendered = true;
23277         
23278         // the all the btns;
23279         editor.on('editorevent', this.updateToolbar, this);
23280         // other toolbars need to implement this..
23281         //editor.on('editmodechange', this.updateToolbar, this);
23282     },
23283     
23284     
23285     relayBtnCmd : function(btn) {
23286         this.editorcore.relayCmd(btn.cmd);
23287     },
23288     // private used internally
23289     createLink : function(){
23290         Roo.log("create link?");
23291         var url = prompt(this.createLinkText, this.defaultLinkValue);
23292         if(url && url != 'http:/'+'/'){
23293             this.editorcore.relayCmd('createlink', url);
23294         }
23295     },
23296
23297     
23298     /**
23299      * Protected method that will not generally be called directly. It triggers
23300      * a toolbar update by reading the markup state of the current selection in the editor.
23301      */
23302     updateToolbar: function(){
23303
23304         if(!this.editorcore.activated){
23305             this.editor.onFirstFocus();
23306             return;
23307         }
23308
23309         var btns = this.tb.items.map, 
23310             doc = this.editorcore.doc,
23311             frameId = this.editorcore.frameId;
23312
23313         if(!this.disable.font && !Roo.isSafari){
23314             /*
23315             var name = (doc.queryCommandValue('FontName')||this.editor.defaultFont).toLowerCase();
23316             if(name != this.fontSelect.dom.value){
23317                 this.fontSelect.dom.value = name;
23318             }
23319             */
23320         }
23321         if(!this.disable.format){
23322             btns[frameId + '-bold'].toggle(doc.queryCommandState('bold'));
23323             btns[frameId + '-italic'].toggle(doc.queryCommandState('italic'));
23324             btns[frameId + '-underline'].toggle(doc.queryCommandState('underline'));
23325             btns[frameId + '-strikethrough'].toggle(doc.queryCommandState('strikethrough'));
23326         }
23327         if(!this.disable.alignments){
23328             btns[frameId + '-justifyleft'].toggle(doc.queryCommandState('justifyleft'));
23329             btns[frameId + '-justifycenter'].toggle(doc.queryCommandState('justifycenter'));
23330             btns[frameId + '-justifyright'].toggle(doc.queryCommandState('justifyright'));
23331         }
23332         if(!Roo.isSafari && !this.disable.lists){
23333             btns[frameId + '-insertorderedlist'].toggle(doc.queryCommandState('insertorderedlist'));
23334             btns[frameId + '-insertunorderedlist'].toggle(doc.queryCommandState('insertunorderedlist'));
23335         }
23336         
23337         var ans = this.editorcore.getAllAncestors();
23338         if (this.formatCombo) {
23339             
23340             
23341             var store = this.formatCombo.store;
23342             this.formatCombo.setValue("");
23343             for (var i =0; i < ans.length;i++) {
23344                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
23345                     // select it..
23346                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
23347                     break;
23348                 }
23349             }
23350         }
23351         
23352         
23353         
23354         // hides menus... - so this cant be on a menu...
23355         Roo.menu.MenuMgr.hideAll();
23356
23357         //this.editorsyncValue();
23358     },
23359    
23360     
23361     createFontOptions : function(){
23362         var buf = [], fs = this.fontFamilies, ff, lc;
23363         
23364         
23365         
23366         for(var i = 0, len = fs.length; i< len; i++){
23367             ff = fs[i];
23368             lc = ff.toLowerCase();
23369             buf.push(
23370                 '<option value="',lc,'" style="font-family:',ff,';"',
23371                     (this.defaultFont == lc ? ' selected="true">' : '>'),
23372                     ff,
23373                 '</option>'
23374             );
23375         }
23376         return buf.join('');
23377     },
23378     
23379     toggleSourceEdit : function(sourceEditMode){
23380         
23381         Roo.log("toolbar toogle");
23382         if(sourceEditMode === undefined){
23383             sourceEditMode = !this.sourceEditMode;
23384         }
23385         this.sourceEditMode = sourceEditMode === true;
23386         var btn = this.tb.items.get(this.editorcore.frameId +'-sourceedit');
23387         // just toggle the button?
23388         if(btn.pressed !== this.sourceEditMode){
23389             btn.toggle(this.sourceEditMode);
23390             return;
23391         }
23392         
23393         if(sourceEditMode){
23394             Roo.log("disabling buttons");
23395             this.tb.items.each(function(item){
23396                 if(item.cmd != 'sourceedit' && (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)){
23397                     item.disable();
23398                 }
23399             });
23400           
23401         }else{
23402             Roo.log("enabling buttons");
23403             if(this.editorcore.initialized){
23404                 this.tb.items.each(function(item){
23405                     item.enable();
23406                 });
23407             }
23408             
23409         }
23410         Roo.log("calling toggole on editor");
23411         // tell the editor that it's been pressed..
23412         this.editor.toggleSourceEdit(sourceEditMode);
23413        
23414     },
23415      /**
23416      * Object collection of toolbar tooltips for the buttons in the editor. The key
23417      * is the command id associated with that button and the value is a valid QuickTips object.
23418      * For example:
23419 <pre><code>
23420 {
23421     bold : {
23422         title: 'Bold (Ctrl+B)',
23423         text: 'Make the selected text bold.',
23424         cls: 'x-html-editor-tip'
23425     },
23426     italic : {
23427         title: 'Italic (Ctrl+I)',
23428         text: 'Make the selected text italic.',
23429         cls: 'x-html-editor-tip'
23430     },
23431     ...
23432 </code></pre>
23433     * @type Object
23434      */
23435     buttonTips : {
23436         bold : {
23437             title: 'Bold (Ctrl+B)',
23438             text: 'Make the selected text bold.',
23439             cls: 'x-html-editor-tip'
23440         },
23441         italic : {
23442             title: 'Italic (Ctrl+I)',
23443             text: 'Make the selected text italic.',
23444             cls: 'x-html-editor-tip'
23445         },
23446         underline : {
23447             title: 'Underline (Ctrl+U)',
23448             text: 'Underline the selected text.',
23449             cls: 'x-html-editor-tip'
23450         },
23451         strikethrough : {
23452             title: 'Strikethrough',
23453             text: 'Strikethrough the selected text.',
23454             cls: 'x-html-editor-tip'
23455         },
23456         increasefontsize : {
23457             title: 'Grow Text',
23458             text: 'Increase the font size.',
23459             cls: 'x-html-editor-tip'
23460         },
23461         decreasefontsize : {
23462             title: 'Shrink Text',
23463             text: 'Decrease the font size.',
23464             cls: 'x-html-editor-tip'
23465         },
23466         backcolor : {
23467             title: 'Text Highlight Color',
23468             text: 'Change the background color of the selected text.',
23469             cls: 'x-html-editor-tip'
23470         },
23471         forecolor : {
23472             title: 'Font Color',
23473             text: 'Change the color of the selected text.',
23474             cls: 'x-html-editor-tip'
23475         },
23476         justifyleft : {
23477             title: 'Align Text Left',
23478             text: 'Align text to the left.',
23479             cls: 'x-html-editor-tip'
23480         },
23481         justifycenter : {
23482             title: 'Center Text',
23483             text: 'Center text in the editor.',
23484             cls: 'x-html-editor-tip'
23485         },
23486         justifyright : {
23487             title: 'Align Text Right',
23488             text: 'Align text to the right.',
23489             cls: 'x-html-editor-tip'
23490         },
23491         insertunorderedlist : {
23492             title: 'Bullet List',
23493             text: 'Start a bulleted list.',
23494             cls: 'x-html-editor-tip'
23495         },
23496         insertorderedlist : {
23497             title: 'Numbered List',
23498             text: 'Start a numbered list.',
23499             cls: 'x-html-editor-tip'
23500         },
23501         createlink : {
23502             title: 'Hyperlink',
23503             text: 'Make the selected text a hyperlink.',
23504             cls: 'x-html-editor-tip'
23505         },
23506         sourceedit : {
23507             title: 'Source Edit',
23508             text: 'Switch to source editing mode.',
23509             cls: 'x-html-editor-tip'
23510         }
23511     },
23512     // private
23513     onDestroy : function(){
23514         if(this.rendered){
23515             
23516             this.tb.items.each(function(item){
23517                 if(item.menu){
23518                     item.menu.removeAll();
23519                     if(item.menu.el){
23520                         item.menu.el.destroy();
23521                     }
23522                 }
23523                 item.destroy();
23524             });
23525              
23526         }
23527     },
23528     onFirstFocus: function() {
23529         this.tb.items.each(function(item){
23530            item.enable();
23531         });
23532     }
23533 });
23534
23535
23536
23537
23538 // <script type="text/javascript">
23539 /*
23540  * Based on
23541  * Ext JS Library 1.1.1
23542  * Copyright(c) 2006-2007, Ext JS, LLC.
23543  *  
23544  
23545  */
23546
23547  
23548 /**
23549  * @class Roo.form.HtmlEditor.ToolbarContext
23550  * Context Toolbar
23551  * 
23552  * Usage:
23553  *
23554  new Roo.form.HtmlEditor({
23555     ....
23556     toolbars : [
23557         { xtype: 'ToolbarStandard', styles : {} }
23558         { xtype: 'ToolbarContext', disable : {} }
23559     ]
23560 })
23561
23562      
23563  * 
23564  * @config : {Object} disable List of elements to disable.. (not done yet.)
23565  * @config : {Object} styles  Map of styles available.
23566  * 
23567  */
23568
23569 Roo.form.HtmlEditor.ToolbarContext = function(config)
23570 {
23571     
23572     Roo.apply(this, config);
23573     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
23574     // dont call parent... till later.
23575     this.styles = this.styles || {};
23576 }
23577
23578  
23579
23580 Roo.form.HtmlEditor.ToolbarContext.types = {
23581     'IMG' : {
23582         width : {
23583             title: "Width",
23584             width: 40
23585         },
23586         height:  {
23587             title: "Height",
23588             width: 40
23589         },
23590         align: {
23591             title: "Align",
23592             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
23593             width : 80
23594             
23595         },
23596         border: {
23597             title: "Border",
23598             width: 40
23599         },
23600         alt: {
23601             title: "Alt",
23602             width: 120
23603         },
23604         src : {
23605             title: "Src",
23606             width: 220
23607         }
23608         
23609     },
23610     'A' : {
23611         name : {
23612             title: "Name",
23613             width: 50
23614         },
23615         target:  {
23616             title: "Target",
23617             width: 120
23618         },
23619         href:  {
23620             title: "Href",
23621             width: 220
23622         } // border?
23623         
23624     },
23625     'TABLE' : {
23626         rows : {
23627             title: "Rows",
23628             width: 20
23629         },
23630         cols : {
23631             title: "Cols",
23632             width: 20
23633         },
23634         width : {
23635             title: "Width",
23636             width: 40
23637         },
23638         height : {
23639             title: "Height",
23640             width: 40
23641         },
23642         border : {
23643             title: "Border",
23644             width: 20
23645         }
23646     },
23647     'TD' : {
23648         width : {
23649             title: "Width",
23650             width: 40
23651         },
23652         height : {
23653             title: "Height",
23654             width: 40
23655         },   
23656         align: {
23657             title: "Align",
23658             opts : [[""],[ "left"],[ "center"],[ "right"],[ "justify"],[ "char"]],
23659             width: 80
23660         },
23661         valign: {
23662             title: "Valign",
23663             opts : [[""],[ "top"],[ "middle"],[ "bottom"],[ "baseline"]],
23664             width: 80
23665         },
23666         colspan: {
23667             title: "Colspan",
23668             width: 20
23669             
23670         },
23671          'font-family'  : {
23672             title : "Font",
23673             style : 'fontFamily',
23674             displayField: 'display',
23675             optname : 'font-family',
23676             width: 140
23677         }
23678     },
23679     'INPUT' : {
23680         name : {
23681             title: "name",
23682             width: 120
23683         },
23684         value : {
23685             title: "Value",
23686             width: 120
23687         },
23688         width : {
23689             title: "Width",
23690             width: 40
23691         }
23692     },
23693     'LABEL' : {
23694         'for' : {
23695             title: "For",
23696             width: 120
23697         }
23698     },
23699     'TEXTAREA' : {
23700           name : {
23701             title: "name",
23702             width: 120
23703         },
23704         rows : {
23705             title: "Rows",
23706             width: 20
23707         },
23708         cols : {
23709             title: "Cols",
23710             width: 20
23711         }
23712     },
23713     'SELECT' : {
23714         name : {
23715             title: "name",
23716             width: 120
23717         },
23718         selectoptions : {
23719             title: "Options",
23720             width: 200
23721         }
23722     },
23723     
23724     // should we really allow this??
23725     // should this just be 
23726     'BODY' : {
23727         title : {
23728             title: "Title",
23729             width: 200,
23730             disabled : true
23731         }
23732     },
23733     'SPAN' : {
23734         'font-family'  : {
23735             title : "Font",
23736             style : 'fontFamily',
23737             displayField: 'display',
23738             optname : 'font-family',
23739             width: 140
23740         }
23741     },
23742     'DIV' : {
23743         'font-family'  : {
23744             title : "Font",
23745             style : 'fontFamily',
23746             displayField: 'display',
23747             optname : 'font-family',
23748             width: 140
23749         }
23750     },
23751      'P' : {
23752         'font-family'  : {
23753             title : "Font",
23754             style : 'fontFamily',
23755             displayField: 'display',
23756             optname : 'font-family',
23757             width: 140
23758         }
23759     },
23760     
23761     '*' : {
23762         // empty..
23763     }
23764
23765 };
23766
23767 // this should be configurable.. - you can either set it up using stores, or modify options somehwere..
23768 Roo.form.HtmlEditor.ToolbarContext.stores = false;
23769
23770 Roo.form.HtmlEditor.ToolbarContext.options = {
23771         'font-family'  : [ 
23772                 [ 'Helvetica,Arial,sans-serif', 'Helvetica'],
23773                 [ 'Courier New', 'Courier New'],
23774                 [ 'Tahoma', 'Tahoma'],
23775                 [ 'Times New Roman,serif', 'Times'],
23776                 [ 'Verdana','Verdana' ]
23777         ]
23778 };
23779
23780 // fixme - these need to be configurable..
23781  
23782
23783 //Roo.form.HtmlEditor.ToolbarContext.types
23784
23785
23786 Roo.apply(Roo.form.HtmlEditor.ToolbarContext.prototype,  {
23787     
23788     tb: false,
23789     
23790     rendered: false,
23791     
23792     editor : false,
23793     editorcore : false,
23794     /**
23795      * @cfg {Object} disable  List of toolbar elements to disable
23796          
23797      */
23798     disable : false,
23799     /**
23800      * @cfg {Object} styles List of styles 
23801      *    eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } 
23802      *
23803      * These must be defined in the page, so they get rendered correctly..
23804      * .headline { }
23805      * TD.underline { }
23806      * 
23807      */
23808     styles : false,
23809     
23810     options: false,
23811     
23812     toolbars : false,
23813     
23814     init : function(editor)
23815     {
23816         this.editor = editor;
23817         this.editorcore = editor.editorcore ? editor.editorcore : editor;
23818         var editorcore = this.editorcore;
23819         
23820         var fid = editorcore.frameId;
23821         var etb = this;
23822         function btn(id, toggle, handler){
23823             var xid = fid + '-'+ id ;
23824             return {
23825                 id : xid,
23826                 cmd : id,
23827                 cls : 'x-btn-icon x-edit-'+id,
23828                 enableToggle:toggle !== false,
23829                 scope: editorcore, // was editor...
23830                 handler:handler||editorcore.relayBtnCmd,
23831                 clickEvent:'mousedown',
23832                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
23833                 tabIndex:-1
23834             };
23835         }
23836         // create a new element.
23837         var wdiv = editor.wrap.createChild({
23838                 tag: 'div'
23839             }, editor.wrap.dom.firstChild.nextSibling, true);
23840         
23841         // can we do this more than once??
23842         
23843          // stop form submits
23844       
23845  
23846         // disable everything...
23847         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
23848         this.toolbars = {};
23849            
23850         for (var i in  ty) {
23851           
23852             this.toolbars[i] = this.buildToolbar(ty[i],i);
23853         }
23854         this.tb = this.toolbars.BODY;
23855         this.tb.el.show();
23856         this.buildFooter();
23857         this.footer.show();
23858         editor.on('hide', function( ) { this.footer.hide() }, this);
23859         editor.on('show', function( ) { this.footer.show() }, this);
23860         
23861          
23862         this.rendered = true;
23863         
23864         // the all the btns;
23865         editor.on('editorevent', this.updateToolbar, this);
23866         // other toolbars need to implement this..
23867         //editor.on('editmodechange', this.updateToolbar, this);
23868     },
23869     
23870     
23871     
23872     /**
23873      * Protected method that will not generally be called directly. It triggers
23874      * a toolbar update by reading the markup state of the current selection in the editor.
23875      *
23876      * Note you can force an update by calling on('editorevent', scope, false)
23877      */
23878     updateToolbar: function(editor,ev,sel){
23879
23880         //Roo.log(ev);
23881         // capture mouse up - this is handy for selecting images..
23882         // perhaps should go somewhere else...
23883         if(!this.editorcore.activated){
23884              this.editor.onFirstFocus();
23885             return;
23886         }
23887         
23888         
23889         
23890         // http://developer.yahoo.com/yui/docs/simple-editor.js.html
23891         // selectNode - might want to handle IE?
23892         if (ev &&
23893             (ev.type == 'mouseup' || ev.type == 'click' ) &&
23894             ev.target && ev.target.tagName == 'IMG') {
23895             // they have click on an image...
23896             // let's see if we can change the selection...
23897             sel = ev.target;
23898          
23899               var nodeRange = sel.ownerDocument.createRange();
23900             try {
23901                 nodeRange.selectNode(sel);
23902             } catch (e) {
23903                 nodeRange.selectNodeContents(sel);
23904             }
23905             //nodeRange.collapse(true);
23906             var s = this.editorcore.win.getSelection();
23907             s.removeAllRanges();
23908             s.addRange(nodeRange);
23909         }  
23910         
23911       
23912         var updateFooter = sel ? false : true;
23913         
23914         
23915         var ans = this.editorcore.getAllAncestors();
23916         
23917         // pick
23918         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
23919         
23920         if (!sel) { 
23921             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editorcore.doc.body;
23922             sel = sel ? sel : this.editorcore.doc.body;
23923             sel = sel.tagName.length ? sel : this.editorcore.doc.body;
23924             
23925         }
23926         // pick a menu that exists..
23927         var tn = sel.tagName.toUpperCase();
23928         //sel = typeof(ty[tn]) != 'undefined' ? sel : this.editor.doc.body;
23929         
23930         tn = sel.tagName.toUpperCase();
23931         
23932         var lastSel = this.tb.selectedNode;
23933         
23934         this.tb.selectedNode = sel;
23935         
23936         // if current menu does not match..
23937         
23938         if ((this.tb.name != tn) || (lastSel != this.tb.selectedNode) || ev === false) {
23939                 
23940             this.tb.el.hide();
23941             ///console.log("show: " + tn);
23942             this.tb =  typeof(ty[tn]) != 'undefined' ? this.toolbars[tn] : this.toolbars['*'];
23943             this.tb.el.show();
23944             // update name
23945             this.tb.items.first().el.innerHTML = tn + ':&nbsp;';
23946             
23947             
23948             // update attributes
23949             if (this.tb.fields) {
23950                 this.tb.fields.each(function(e) {
23951                     if (e.stylename) {
23952                         e.setValue(sel.style[e.stylename]);
23953                         return;
23954                     } 
23955                    e.setValue(sel.getAttribute(e.attrname));
23956                 });
23957             }
23958             
23959             var hasStyles = false;
23960             for(var i in this.styles) {
23961                 hasStyles = true;
23962                 break;
23963             }
23964             
23965             // update styles
23966             if (hasStyles) { 
23967                 var st = this.tb.fields.item(0);
23968                 
23969                 st.store.removeAll();
23970                
23971                 
23972                 var cn = sel.className.split(/\s+/);
23973                 
23974                 var avs = [];
23975                 if (this.styles['*']) {
23976                     
23977                     Roo.each(this.styles['*'], function(v) {
23978                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
23979                     });
23980                 }
23981                 if (this.styles[tn]) { 
23982                     Roo.each(this.styles[tn], function(v) {
23983                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
23984                     });
23985                 }
23986                 
23987                 st.store.loadData(avs);
23988                 st.collapse();
23989                 st.setValue(cn);
23990             }
23991             // flag our selected Node.
23992             this.tb.selectedNode = sel;
23993            
23994            
23995             Roo.menu.MenuMgr.hideAll();
23996
23997         }
23998         
23999         if (!updateFooter) {
24000             //this.footDisp.dom.innerHTML = ''; 
24001             return;
24002         }
24003         // update the footer
24004         //
24005         var html = '';
24006         
24007         this.footerEls = ans.reverse();
24008         Roo.each(this.footerEls, function(a,i) {
24009             if (!a) { return; }
24010             html += html.length ? ' &gt; '  :  '';
24011             
24012             html += '<span class="x-ed-loc-' + i + '">' + a.tagName + '</span>';
24013             
24014         });
24015        
24016         // 
24017         var sz = this.footDisp.up('td').getSize();
24018         this.footDisp.dom.style.width = (sz.width -10) + 'px';
24019         this.footDisp.dom.style.marginLeft = '5px';
24020         
24021         this.footDisp.dom.style.overflow = 'hidden';
24022         
24023         this.footDisp.dom.innerHTML = html;
24024             
24025         //this.editorsyncValue();
24026     },
24027      
24028     
24029    
24030        
24031     // private
24032     onDestroy : function(){
24033         if(this.rendered){
24034             
24035             this.tb.items.each(function(item){
24036                 if(item.menu){
24037                     item.menu.removeAll();
24038                     if(item.menu.el){
24039                         item.menu.el.destroy();
24040                     }
24041                 }
24042                 item.destroy();
24043             });
24044              
24045         }
24046     },
24047     onFirstFocus: function() {
24048         // need to do this for all the toolbars..
24049         this.tb.items.each(function(item){
24050            item.enable();
24051         });
24052     },
24053     buildToolbar: function(tlist, nm)
24054     {
24055         var editor = this.editor;
24056         var editorcore = this.editorcore;
24057          // create a new element.
24058         var wdiv = editor.wrap.createChild({
24059                 tag: 'div'
24060             }, editor.wrap.dom.firstChild.nextSibling, true);
24061         
24062        
24063         var tb = new Roo.Toolbar(wdiv);
24064         // add the name..
24065         
24066         tb.add(nm+ ":&nbsp;");
24067         
24068         var styles = [];
24069         for(var i in this.styles) {
24070             styles.push(i);
24071         }
24072         
24073         // styles...
24074         if (styles && styles.length) {
24075             
24076             // this needs a multi-select checkbox...
24077             tb.addField( new Roo.form.ComboBox({
24078                 store: new Roo.data.SimpleStore({
24079                     id : 'val',
24080                     fields: ['val', 'selected'],
24081                     data : [] 
24082                 }),
24083                 name : '-roo-edit-className',
24084                 attrname : 'className',
24085                 displayField: 'val',
24086                 typeAhead: false,
24087                 mode: 'local',
24088                 editable : false,
24089                 triggerAction: 'all',
24090                 emptyText:'Select Style',
24091                 selectOnFocus:true,
24092                 width: 130,
24093                 listeners : {
24094                     'select': function(c, r, i) {
24095                         // initial support only for on class per el..
24096                         tb.selectedNode.className =  r ? r.get('val') : '';
24097                         editorcore.syncValue();
24098                     }
24099                 }
24100     
24101             }));
24102         }
24103         
24104         var tbc = Roo.form.HtmlEditor.ToolbarContext;
24105         var tbops = tbc.options;
24106         
24107         for (var i in tlist) {
24108             
24109             var item = tlist[i];
24110             tb.add(item.title + ":&nbsp;");
24111             
24112             
24113             //optname == used so you can configure the options available..
24114             var opts = item.opts ? item.opts : false;
24115             if (item.optname) {
24116                 opts = tbops[item.optname];
24117            
24118             }
24119             
24120             if (opts) {
24121                 // opts == pulldown..
24122                 tb.addField( new Roo.form.ComboBox({
24123                     store:   typeof(tbc.stores[i]) != 'undefined' ?  Roo.factory(tbc.stores[i],Roo.data) : new Roo.data.SimpleStore({
24124                         id : 'val',
24125                         fields: ['val', 'display'],
24126                         data : opts  
24127                     }),
24128                     name : '-roo-edit-' + i,
24129                     attrname : i,
24130                     stylename : item.style ? item.style : false,
24131                     displayField: item.displayField ? item.displayField : 'val',
24132                     valueField :  'val',
24133                     typeAhead: false,
24134                     mode: typeof(tbc.stores[i]) != 'undefined'  ? 'remote' : 'local',
24135                     editable : false,
24136                     triggerAction: 'all',
24137                     emptyText:'Select',
24138                     selectOnFocus:true,
24139                     width: item.width ? item.width  : 130,
24140                     listeners : {
24141                         'select': function(c, r, i) {
24142                             if (c.stylename) {
24143                                 tb.selectedNode.style[c.stylename] =  r.get('val');
24144                                 return;
24145                             }
24146                             tb.selectedNode.setAttribute(c.attrname, r.get('val'));
24147                         }
24148                     }
24149
24150                 }));
24151                 continue;
24152                     
24153                  
24154                 
24155                 tb.addField( new Roo.form.TextField({
24156                     name: i,
24157                     width: 100,
24158                     //allowBlank:false,
24159                     value: ''
24160                 }));
24161                 continue;
24162             }
24163             tb.addField( new Roo.form.TextField({
24164                 name: '-roo-edit-' + i,
24165                 attrname : i,
24166                 
24167                 width: item.width,
24168                 //allowBlank:true,
24169                 value: '',
24170                 listeners: {
24171                     'change' : function(f, nv, ov) {
24172                         tb.selectedNode.setAttribute(f.attrname, nv);
24173                         editorcore.syncValue();
24174                     }
24175                 }
24176             }));
24177              
24178         }
24179         
24180         var _this = this;
24181         
24182         if(nm == 'BODY'){
24183             tb.addSeparator();
24184         
24185             tb.addButton( {
24186                 text: 'Stylesheets',
24187
24188                 listeners : {
24189                     click : function ()
24190                     {
24191                         _this.editor.fireEvent('stylesheetsclick', _this.editor);
24192                     }
24193                 }
24194             });
24195         }
24196         
24197         tb.addFill();
24198         tb.addButton( {
24199             text: 'Remove Tag',
24200     
24201             listeners : {
24202                 click : function ()
24203                 {
24204                     // remove
24205                     // undo does not work.
24206                      
24207                     var sn = tb.selectedNode;
24208                     
24209                     var pn = sn.parentNode;
24210                     
24211                     var stn =  sn.childNodes[0];
24212                     var en = sn.childNodes[sn.childNodes.length - 1 ];
24213                     while (sn.childNodes.length) {
24214                         var node = sn.childNodes[0];
24215                         sn.removeChild(node);
24216                         //Roo.log(node);
24217                         pn.insertBefore(node, sn);
24218                         
24219                     }
24220                     pn.removeChild(sn);
24221                     var range = editorcore.createRange();
24222         
24223                     range.setStart(stn,0);
24224                     range.setEnd(en,0); //????
24225                     //range.selectNode(sel);
24226                     
24227                     
24228                     var selection = editorcore.getSelection();
24229                     selection.removeAllRanges();
24230                     selection.addRange(range);
24231                     
24232                     
24233                     
24234                     //_this.updateToolbar(null, null, pn);
24235                     _this.updateToolbar(null, null, null);
24236                     _this.footDisp.dom.innerHTML = ''; 
24237                 }
24238             }
24239             
24240                     
24241                 
24242             
24243         });
24244         
24245         
24246         tb.el.on('click', function(e){
24247             e.preventDefault(); // what does this do?
24248         });
24249         tb.el.setVisibilityMode( Roo.Element.DISPLAY);
24250         tb.el.hide();
24251         tb.name = nm;
24252         // dont need to disable them... as they will get hidden
24253         return tb;
24254          
24255         
24256     },
24257     buildFooter : function()
24258     {
24259         
24260         var fel = this.editor.wrap.createChild();
24261         this.footer = new Roo.Toolbar(fel);
24262         // toolbar has scrolly on left / right?
24263         var footDisp= new Roo.Toolbar.Fill();
24264         var _t = this;
24265         this.footer.add(
24266             {
24267                 text : '&lt;',
24268                 xtype: 'Button',
24269                 handler : function() {
24270                     _t.footDisp.scrollTo('left',0,true)
24271                 }
24272             }
24273         );
24274         this.footer.add( footDisp );
24275         this.footer.add( 
24276             {
24277                 text : '&gt;',
24278                 xtype: 'Button',
24279                 handler : function() {
24280                     // no animation..
24281                     _t.footDisp.select('span').last().scrollIntoView(_t.footDisp,true);
24282                 }
24283             }
24284         );
24285         var fel = Roo.get(footDisp.el);
24286         fel.addClass('x-editor-context');
24287         this.footDispWrap = fel; 
24288         this.footDispWrap.overflow  = 'hidden';
24289         
24290         this.footDisp = fel.createChild();
24291         this.footDispWrap.on('click', this.onContextClick, this)
24292         
24293         
24294     },
24295     onContextClick : function (ev,dom)
24296     {
24297         ev.preventDefault();
24298         var  cn = dom.className;
24299         //Roo.log(cn);
24300         if (!cn.match(/x-ed-loc-/)) {
24301             return;
24302         }
24303         var n = cn.split('-').pop();
24304         var ans = this.footerEls;
24305         var sel = ans[n];
24306         
24307          // pick
24308         var range = this.editorcore.createRange();
24309         
24310         range.selectNodeContents(sel);
24311         //range.selectNode(sel);
24312         
24313         
24314         var selection = this.editorcore.getSelection();
24315         selection.removeAllRanges();
24316         selection.addRange(range);
24317         
24318         
24319         
24320         this.updateToolbar(null, null, sel);
24321         
24322         
24323     }
24324     
24325     
24326     
24327     
24328     
24329 });
24330
24331
24332
24333
24334
24335 /*
24336  * Based on:
24337  * Ext JS Library 1.1.1
24338  * Copyright(c) 2006-2007, Ext JS, LLC.
24339  *
24340  * Originally Released Under LGPL - original licence link has changed is not relivant.
24341  *
24342  * Fork - LGPL
24343  * <script type="text/javascript">
24344  */
24345  
24346 /**
24347  * @class Roo.form.BasicForm
24348  * @extends Roo.util.Observable
24349  * Supplies the functionality to do "actions" on forms and initialize Roo.form.Field types on existing markup.
24350  * @constructor
24351  * @param {String/HTMLElement/Roo.Element} el The form element or its id
24352  * @param {Object} config Configuration options
24353  */
24354 Roo.form.BasicForm = function(el, config){
24355     this.allItems = [];
24356     this.childForms = [];
24357     Roo.apply(this, config);
24358     /*
24359      * The Roo.form.Field items in this form.
24360      * @type MixedCollection
24361      */
24362      
24363      
24364     this.items = new Roo.util.MixedCollection(false, function(o){
24365         return o.id || (o.id = Roo.id());
24366     });
24367     this.addEvents({
24368         /**
24369          * @event beforeaction
24370          * Fires before any action is performed. Return false to cancel the action.
24371          * @param {Form} this
24372          * @param {Action} action The action to be performed
24373          */
24374         beforeaction: true,
24375         /**
24376          * @event actionfailed
24377          * Fires when an action fails.
24378          * @param {Form} this
24379          * @param {Action} action The action that failed
24380          */
24381         actionfailed : true,
24382         /**
24383          * @event actioncomplete
24384          * Fires when an action is completed.
24385          * @param {Form} this
24386          * @param {Action} action The action that completed
24387          */
24388         actioncomplete : true
24389     });
24390     if(el){
24391         this.initEl(el);
24392     }
24393     Roo.form.BasicForm.superclass.constructor.call(this);
24394     
24395     Roo.form.BasicForm.popover.apply();
24396 };
24397
24398 Roo.extend(Roo.form.BasicForm, Roo.util.Observable, {
24399     /**
24400      * @cfg {String} method
24401      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
24402      */
24403     /**
24404      * @cfg {DataReader} reader
24405      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing "load" actions.
24406      * This is optional as there is built-in support for processing JSON.
24407      */
24408     /**
24409      * @cfg {DataReader} errorReader
24410      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on "submit" actions.
24411      * This is completely optional as there is built-in support for processing JSON.
24412      */
24413     /**
24414      * @cfg {String} url
24415      * The URL to use for form actions if one isn't supplied in the action options.
24416      */
24417     /**
24418      * @cfg {Boolean} fileUpload
24419      * Set to true if this form is a file upload.
24420      */
24421      
24422     /**
24423      * @cfg {Object} baseParams
24424      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
24425      */
24426      /**
24427      
24428     /**
24429      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
24430      */
24431     timeout: 30,
24432
24433     // private
24434     activeAction : null,
24435
24436     /**
24437      * @cfg {Boolean} trackResetOnLoad If set to true, form.reset() resets to the last loaded
24438      * or setValues() data instead of when the form was first created.
24439      */
24440     trackResetOnLoad : false,
24441     
24442     
24443     /**
24444      * childForms - used for multi-tab forms
24445      * @type {Array}
24446      */
24447     childForms : false,
24448     
24449     /**
24450      * allItems - full list of fields.
24451      * @type {Array}
24452      */
24453     allItems : false,
24454     
24455     /**
24456      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
24457      * element by passing it or its id or mask the form itself by passing in true.
24458      * @type Mixed
24459      */
24460     waitMsgTarget : false,
24461     
24462     /**
24463      * @type Boolean
24464      */
24465     disableMask : false,
24466     
24467     /**
24468      * @cfg {Boolean} errorMask (true|false) default false
24469      */
24470     errorMask : false,
24471     
24472     /**
24473      * @cfg {Number} maskOffset Default 100
24474      */
24475     maskOffset : 100,
24476
24477     // private
24478     initEl : function(el){
24479         this.el = Roo.get(el);
24480         this.id = this.el.id || Roo.id();
24481         this.el.on('submit', this.onSubmit, this);
24482         this.el.addClass('x-form');
24483     },
24484
24485     // private
24486     onSubmit : function(e){
24487         e.stopEvent();
24488     },
24489
24490     /**
24491      * Returns true if client-side validation on the form is successful.
24492      * @return Boolean
24493      */
24494     isValid : function(){
24495         var valid = true;
24496         var target = false;
24497         this.items.each(function(f){
24498             if(f.validate()){
24499                 return;
24500             }
24501             
24502             valid = false;
24503                 
24504             if(!target && f.el.isVisible(true)){
24505                 target = f;
24506             }
24507         });
24508         
24509         if(this.errorMask && !valid){
24510             Roo.form.BasicForm.popover.mask(this, target);
24511         }
24512         
24513         return valid;
24514     },
24515
24516     /**
24517      * DEPRICATED Returns true if any fields in this form have changed since their original load. 
24518      * @return Boolean
24519      */
24520     isDirty : function(){
24521         var dirty = false;
24522         this.items.each(function(f){
24523            if(f.isDirty()){
24524                dirty = true;
24525                return false;
24526            }
24527         });
24528         return dirty;
24529     },
24530     
24531     /**
24532      * Returns true if any fields in this form have changed since their original load. (New version)
24533      * @return Boolean
24534      */
24535     
24536     hasChanged : function()
24537     {
24538         var dirty = false;
24539         this.items.each(function(f){
24540            if(f.hasChanged()){
24541                dirty = true;
24542                return false;
24543            }
24544         });
24545         return dirty;
24546         
24547     },
24548     /**
24549      * Resets all hasChanged to 'false' -
24550      * The old 'isDirty' used 'original value..' however this breaks reset() and a few other things.
24551      * So hasChanged storage is only to be used for this purpose
24552      * @return Boolean
24553      */
24554     resetHasChanged : function()
24555     {
24556         this.items.each(function(f){
24557            f.resetHasChanged();
24558         });
24559         
24560     },
24561     
24562     
24563     /**
24564      * Performs a predefined action (submit or load) or custom actions you define on this form.
24565      * @param {String} actionName The name of the action type
24566      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
24567      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
24568      * accept other config options):
24569      * <pre>
24570 Property          Type             Description
24571 ----------------  ---------------  ----------------------------------------------------------------------------------
24572 url               String           The url for the action (defaults to the form's url)
24573 method            String           The form method to use (defaults to the form's method, or POST if not defined)
24574 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
24575 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
24576                                    validate the form on the client (defaults to false)
24577      * </pre>
24578      * @return {BasicForm} this
24579      */
24580     doAction : function(action, options){
24581         if(typeof action == 'string'){
24582             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
24583         }
24584         if(this.fireEvent('beforeaction', this, action) !== false){
24585             this.beforeAction(action);
24586             action.run.defer(100, action);
24587         }
24588         return this;
24589     },
24590
24591     /**
24592      * Shortcut to do a submit action.
24593      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
24594      * @return {BasicForm} this
24595      */
24596     submit : function(options){
24597         this.doAction('submit', options);
24598         return this;
24599     },
24600
24601     /**
24602      * Shortcut to do a load action.
24603      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
24604      * @return {BasicForm} this
24605      */
24606     load : function(options){
24607         this.doAction('load', options);
24608         return this;
24609     },
24610
24611     /**
24612      * Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block.
24613      * @param {Record} record The record to edit
24614      * @return {BasicForm} this
24615      */
24616     updateRecord : function(record){
24617         record.beginEdit();
24618         var fs = record.fields;
24619         fs.each(function(f){
24620             var field = this.findField(f.name);
24621             if(field){
24622                 record.set(f.name, field.getValue());
24623             }
24624         }, this);
24625         record.endEdit();
24626         return this;
24627     },
24628
24629     /**
24630      * Loads an Roo.data.Record into this form.
24631      * @param {Record} record The record to load
24632      * @return {BasicForm} this
24633      */
24634     loadRecord : function(record){
24635         this.setValues(record.data);
24636         return this;
24637     },
24638
24639     // private
24640     beforeAction : function(action){
24641         var o = action.options;
24642         
24643         if(!this.disableMask) {
24644             if(this.waitMsgTarget === true){
24645                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
24646             }else if(this.waitMsgTarget){
24647                 this.waitMsgTarget = Roo.get(this.waitMsgTarget);
24648                 this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
24649             }else {
24650                 Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
24651             }
24652         }
24653         
24654          
24655     },
24656
24657     // private
24658     afterAction : function(action, success){
24659         this.activeAction = null;
24660         var o = action.options;
24661         
24662         if(!this.disableMask) {
24663             if(this.waitMsgTarget === true){
24664                 this.el.unmask();
24665             }else if(this.waitMsgTarget){
24666                 this.waitMsgTarget.unmask();
24667             }else{
24668                 Roo.MessageBox.updateProgress(1);
24669                 Roo.MessageBox.hide();
24670             }
24671         }
24672         
24673         if(success){
24674             if(o.reset){
24675                 this.reset();
24676             }
24677             Roo.callback(o.success, o.scope, [this, action]);
24678             this.fireEvent('actioncomplete', this, action);
24679             
24680         }else{
24681             
24682             // failure condition..
24683             // we have a scenario where updates need confirming.
24684             // eg. if a locking scenario exists..
24685             // we look for { errors : { needs_confirm : true }} in the response.
24686             if (
24687                 (typeof(action.result) != 'undefined')  &&
24688                 (typeof(action.result.errors) != 'undefined')  &&
24689                 (typeof(action.result.errors.needs_confirm) != 'undefined')
24690            ){
24691                 var _t = this;
24692                 Roo.MessageBox.confirm(
24693                     "Change requires confirmation",
24694                     action.result.errorMsg,
24695                     function(r) {
24696                         if (r != 'yes') {
24697                             return;
24698                         }
24699                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
24700                     }
24701                     
24702                 );
24703                 
24704                 
24705                 
24706                 return;
24707             }
24708             
24709             Roo.callback(o.failure, o.scope, [this, action]);
24710             // show an error message if no failed handler is set..
24711             if (!this.hasListener('actionfailed')) {
24712                 Roo.MessageBox.alert("Error",
24713                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
24714                         action.result.errorMsg :
24715                         "Saving Failed, please check your entries or try again"
24716                 );
24717             }
24718             
24719             this.fireEvent('actionfailed', this, action);
24720         }
24721         
24722     },
24723
24724     /**
24725      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
24726      * @param {String} id The value to search for
24727      * @return Field
24728      */
24729     findField : function(id){
24730         var field = this.items.get(id);
24731         if(!field){
24732             this.items.each(function(f){
24733                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
24734                     field = f;
24735                     return false;
24736                 }
24737             });
24738         }
24739         return field || null;
24740     },
24741
24742     /**
24743      * Add a secondary form to this one, 
24744      * Used to provide tabbed forms. One form is primary, with hidden values 
24745      * which mirror the elements from the other forms.
24746      * 
24747      * @param {Roo.form.Form} form to add.
24748      * 
24749      */
24750     addForm : function(form)
24751     {
24752        
24753         if (this.childForms.indexOf(form) > -1) {
24754             // already added..
24755             return;
24756         }
24757         this.childForms.push(form);
24758         var n = '';
24759         Roo.each(form.allItems, function (fe) {
24760             
24761             n = typeof(fe.getName) == 'undefined' ? fe.name : fe.getName();
24762             if (this.findField(n)) { // already added..
24763                 return;
24764             }
24765             var add = new Roo.form.Hidden({
24766                 name : n
24767             });
24768             add.render(this.el);
24769             
24770             this.add( add );
24771         }, this);
24772         
24773     },
24774     /**
24775      * Mark fields in this form invalid in bulk.
24776      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
24777      * @return {BasicForm} this
24778      */
24779     markInvalid : function(errors){
24780         if(errors instanceof Array){
24781             for(var i = 0, len = errors.length; i < len; i++){
24782                 var fieldError = errors[i];
24783                 var f = this.findField(fieldError.id);
24784                 if(f){
24785                     f.markInvalid(fieldError.msg);
24786                 }
24787             }
24788         }else{
24789             var field, id;
24790             for(id in errors){
24791                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
24792                     field.markInvalid(errors[id]);
24793                 }
24794             }
24795         }
24796         Roo.each(this.childForms || [], function (f) {
24797             f.markInvalid(errors);
24798         });
24799         
24800         return this;
24801     },
24802
24803     /**
24804      * Set values for fields in this form in bulk.
24805      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
24806      * @return {BasicForm} this
24807      */
24808     setValues : function(values){
24809         if(values instanceof Array){ // array of objects
24810             for(var i = 0, len = values.length; i < len; i++){
24811                 var v = values[i];
24812                 var f = this.findField(v.id);
24813                 if(f){
24814                     f.setValue(v.value);
24815                     if(this.trackResetOnLoad){
24816                         f.originalValue = f.getValue();
24817                     }
24818                 }
24819             }
24820         }else{ // object hash
24821             var field, id;
24822             for(id in values){
24823                 if(typeof values[id] != 'function' && (field = this.findField(id))){
24824                     
24825                     if (field.setFromData && 
24826                         field.valueField && 
24827                         field.displayField &&
24828                         // combos' with local stores can 
24829                         // be queried via setValue()
24830                         // to set their value..
24831                         (field.store && !field.store.isLocal)
24832                         ) {
24833                         // it's a combo
24834                         var sd = { };
24835                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
24836                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
24837                         field.setFromData(sd);
24838                         
24839                     } else {
24840                         field.setValue(values[id]);
24841                     }
24842                     
24843                     
24844                     if(this.trackResetOnLoad){
24845                         field.originalValue = field.getValue();
24846                     }
24847                 }
24848             }
24849         }
24850         this.resetHasChanged();
24851         
24852         
24853         Roo.each(this.childForms || [], function (f) {
24854             f.setValues(values);
24855             f.resetHasChanged();
24856         });
24857                 
24858         return this;
24859     },
24860
24861     /**
24862      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
24863      * they are returned as an array.
24864      * @param {Boolean} asString
24865      * @return {Object}
24866      */
24867     getValues : function(asString){
24868         if (this.childForms) {
24869             // copy values from the child forms
24870             Roo.each(this.childForms, function (f) {
24871                 this.setValues(f.getValues());
24872             }, this);
24873         }
24874         
24875         
24876         
24877         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
24878         if(asString === true){
24879             return fs;
24880         }
24881         return Roo.urlDecode(fs);
24882     },
24883     
24884     /**
24885      * Returns the fields in this form as an object with key/value pairs. 
24886      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
24887      * @return {Object}
24888      */
24889     getFieldValues : function(with_hidden)
24890     {
24891         if (this.childForms) {
24892             // copy values from the child forms
24893             // should this call getFieldValues - probably not as we do not currently copy
24894             // hidden fields when we generate..
24895             Roo.each(this.childForms, function (f) {
24896                 this.setValues(f.getValues());
24897             }, this);
24898         }
24899         
24900         var ret = {};
24901         this.items.each(function(f){
24902             if (!f.getName()) {
24903                 return;
24904             }
24905             var v = f.getValue();
24906             if (f.inputType =='radio') {
24907                 if (typeof(ret[f.getName()]) == 'undefined') {
24908                     ret[f.getName()] = ''; // empty..
24909                 }
24910                 
24911                 if (!f.el.dom.checked) {
24912                     return;
24913                     
24914                 }
24915                 v = f.el.dom.value;
24916                 
24917             }
24918             
24919             // not sure if this supported any more..
24920             if ((typeof(v) == 'object') && f.getRawValue) {
24921                 v = f.getRawValue() ; // dates..
24922             }
24923             // combo boxes where name != hiddenName...
24924             if (f.name != f.getName()) {
24925                 ret[f.name] = f.getRawValue();
24926             }
24927             ret[f.getName()] = v;
24928         });
24929         
24930         return ret;
24931     },
24932
24933     /**
24934      * Clears all invalid messages in this form.
24935      * @return {BasicForm} this
24936      */
24937     clearInvalid : function(){
24938         this.items.each(function(f){
24939            f.clearInvalid();
24940         });
24941         
24942         Roo.each(this.childForms || [], function (f) {
24943             f.clearInvalid();
24944         });
24945         
24946         
24947         return this;
24948     },
24949
24950     /**
24951      * Resets this form.
24952      * @return {BasicForm} this
24953      */
24954     reset : function(){
24955         this.items.each(function(f){
24956             f.reset();
24957         });
24958         
24959         Roo.each(this.childForms || [], function (f) {
24960             f.reset();
24961         });
24962         this.resetHasChanged();
24963         
24964         return this;
24965     },
24966
24967     /**
24968      * Add Roo.form components to this form.
24969      * @param {Field} field1
24970      * @param {Field} field2 (optional)
24971      * @param {Field} etc (optional)
24972      * @return {BasicForm} this
24973      */
24974     add : function(){
24975         this.items.addAll(Array.prototype.slice.call(arguments, 0));
24976         return this;
24977     },
24978
24979
24980     /**
24981      * Removes a field from the items collection (does NOT remove its markup).
24982      * @param {Field} field
24983      * @return {BasicForm} this
24984      */
24985     remove : function(field){
24986         this.items.remove(field);
24987         return this;
24988     },
24989
24990     /**
24991      * Looks at the fields in this form, checks them for an id attribute,
24992      * and calls applyTo on the existing dom element with that id.
24993      * @return {BasicForm} this
24994      */
24995     render : function(){
24996         this.items.each(function(f){
24997             if(f.isFormField && !f.rendered && document.getElementById(f.id)){ // if the element exists
24998                 f.applyTo(f.id);
24999             }
25000         });
25001         return this;
25002     },
25003
25004     /**
25005      * Calls {@link Ext#apply} for all fields in this form with the passed object.
25006      * @param {Object} values
25007      * @return {BasicForm} this
25008      */
25009     applyToFields : function(o){
25010         this.items.each(function(f){
25011            Roo.apply(f, o);
25012         });
25013         return this;
25014     },
25015
25016     /**
25017      * Calls {@link Ext#applyIf} for all field in this form with the passed object.
25018      * @param {Object} values
25019      * @return {BasicForm} this
25020      */
25021     applyIfToFields : function(o){
25022         this.items.each(function(f){
25023            Roo.applyIf(f, o);
25024         });
25025         return this;
25026     }
25027 });
25028
25029 // back compat
25030 Roo.BasicForm = Roo.form.BasicForm;
25031
25032 Roo.apply(Roo.form.BasicForm, {
25033     
25034     popover : {
25035         
25036         padding : 5,
25037         
25038         isApplied : false,
25039         
25040         isMasked : false,
25041         
25042         form : false,
25043         
25044         target : false,
25045         
25046         toolTip : false,
25047         
25048         intervalID : false,
25049         
25050         maskEl : false,
25051         
25052         apply : function()
25053         {
25054             if(this.isApplied){
25055                 return;
25056             }
25057             
25058             this.maskEl = {
25059                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
25060                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
25061                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
25062                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
25063             };
25064             
25065             this.maskEl.top.enableDisplayMode("block");
25066             this.maskEl.left.enableDisplayMode("block");
25067             this.maskEl.bottom.enableDisplayMode("block");
25068             this.maskEl.right.enableDisplayMode("block");
25069             
25070 //            this.toolTip = new Roo.bootstrap.Tooltip({
25071 //                cls : 'roo-form-error-popover',
25072 //                alignment : {
25073 //                    'left' : ['r-l', [-2,0], 'right'],
25074 //                    'right' : ['l-r', [2,0], 'left'],
25075 //                    'bottom' : ['tl-bl', [0,2], 'top'],
25076 //                    'top' : [ 'bl-tl', [0,-2], 'bottom']
25077 //                }
25078 //            });
25079 //            
25080 //            this.toolTip.render(Roo.get(document.body));
25081 //
25082 //            this.toolTip.el.enableDisplayMode("block");
25083             
25084             Roo.get(document.body).on('click', function(){
25085                 this.unmask();
25086             }, this);
25087             
25088             Roo.get(document.body).on('touchstart', function(){
25089                 this.unmask();
25090             }, this);
25091             
25092             this.isApplied = true
25093         },
25094         
25095         mask : function(form, target)
25096         {
25097             this.form = form;
25098             
25099             this.target = target;
25100             
25101             if(!this.form.errorMask || !target.el){
25102                 return;
25103             }
25104             
25105             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.x-layout-active-content', 100, true) || Roo.get(document.body);
25106             
25107             Roo.log(scrollable);
25108             
25109             var ot = this.target.el.calcOffsetsTo(scrollable);
25110             
25111             var scrollTo = ot[1] - this.form.maskOffset;
25112             
25113             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
25114             
25115             scrollable.scrollTo('top', scrollTo);
25116             
25117             var box = this.target.el.getBox();
25118             Roo.log(box);
25119             
25120             var zIndex = Roo.BasicDialog.lastZIndex++;
25121             
25122             Roo.log(this.maskEl);
25123             
25124             this.maskEl.top.setStyle('position', 'absolute');
25125             this.maskEl.top.setStyle('z-index', zIndex);
25126             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
25127             this.maskEl.top.setLeft(0);
25128             this.maskEl.top.setTop(0);
25129             this.maskEl.top.show();
25130             
25131             this.maskEl.left.setStyle('position', 'absolute');
25132             this.maskEl.left.setStyle('z-index', zIndex);
25133             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
25134             this.maskEl.left.setLeft(0);
25135             this.maskEl.left.setTop(box.y - this.padding);
25136             this.maskEl.left.show();
25137
25138             this.maskEl.bottom.setStyle('position', 'absolute');
25139             this.maskEl.bottom.setStyle('z-index', zIndex);
25140             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
25141             this.maskEl.bottom.setLeft(0);
25142             this.maskEl.bottom.setTop(box.bottom + this.padding);
25143             this.maskEl.bottom.show();
25144
25145             this.maskEl.right.setStyle('position', 'absolute');
25146             this.maskEl.right.setStyle('z-index', zIndex);
25147             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
25148             this.maskEl.right.setLeft(box.right + this.padding);
25149             this.maskEl.right.setTop(box.y - this.padding);
25150             this.maskEl.right.show();
25151
25152 //            this.toolTip.bindEl = this.target.el;
25153 //
25154 //            this.toolTip.el.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
25155
25156             var tip = this.target.blankText;
25157
25158             if(this.target.getValue() !== '' ) {
25159                 
25160                 if (this.target.invalidText.length) {
25161                     tip = this.target.invalidText;
25162                 } else if (this.target.regexText.length){
25163                     tip = this.target.regexText;
25164                 }
25165             }
25166
25167 //            this.toolTip.show(tip);
25168
25169             this.intervalID = window.setInterval(function() {
25170                 Roo.bootstrap.Form.popover.unmask();
25171             }, 10000);
25172
25173             window.onwheel = function(){ return false;};
25174             
25175             (function(){ this.isMasked = true; }).defer(500, this);
25176             
25177         },
25178         
25179         unmask : function()
25180         {
25181             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
25182                 return;
25183             }
25184             
25185             this.maskEl.top.setStyle('position', 'absolute');
25186             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
25187             this.maskEl.top.hide();
25188
25189             this.maskEl.left.setStyle('position', 'absolute');
25190             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
25191             this.maskEl.left.hide();
25192
25193             this.maskEl.bottom.setStyle('position', 'absolute');
25194             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
25195             this.maskEl.bottom.hide();
25196
25197             this.maskEl.right.setStyle('position', 'absolute');
25198             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
25199             this.maskEl.right.hide();
25200             
25201 //            this.toolTip.hide();
25202             
25203 //            this.toolTip.el.hide();
25204             
25205             window.onwheel = function(){ return true;};
25206             
25207             if(this.intervalID){
25208                 window.clearInterval(this.intervalID);
25209                 this.intervalID = false;
25210             }
25211             
25212             this.isMasked = false;
25213             
25214         }
25215         
25216     }
25217     
25218 });/*
25219  * Based on:
25220  * Ext JS Library 1.1.1
25221  * Copyright(c) 2006-2007, Ext JS, LLC.
25222  *
25223  * Originally Released Under LGPL - original licence link has changed is not relivant.
25224  *
25225  * Fork - LGPL
25226  * <script type="text/javascript">
25227  */
25228
25229 /**
25230  * @class Roo.form.Form
25231  * @extends Roo.form.BasicForm
25232  * Adds the ability to dynamically render forms with JavaScript to {@link Roo.form.BasicForm}.
25233  * @constructor
25234  * @param {Object} config Configuration options
25235  */
25236 Roo.form.Form = function(config){
25237     var xitems =  [];
25238     if (config.items) {
25239         xitems = config.items;
25240         delete config.items;
25241     }
25242    
25243     
25244     Roo.form.Form.superclass.constructor.call(this, null, config);
25245     this.url = this.url || this.action;
25246     if(!this.root){
25247         this.root = new Roo.form.Layout(Roo.applyIf({
25248             id: Roo.id()
25249         }, config));
25250     }
25251     this.active = this.root;
25252     /**
25253      * Array of all the buttons that have been added to this form via {@link addButton}
25254      * @type Array
25255      */
25256     this.buttons = [];
25257     this.allItems = [];
25258     this.addEvents({
25259         /**
25260          * @event clientvalidation
25261          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
25262          * @param {Form} this
25263          * @param {Boolean} valid true if the form has passed client-side validation
25264          */
25265         clientvalidation: true,
25266         /**
25267          * @event rendered
25268          * Fires when the form is rendered
25269          * @param {Roo.form.Form} form
25270          */
25271         rendered : true
25272     });
25273     
25274     if (this.progressUrl) {
25275             // push a hidden field onto the list of fields..
25276             this.addxtype( {
25277                     xns: Roo.form, 
25278                     xtype : 'Hidden', 
25279                     name : 'UPLOAD_IDENTIFIER' 
25280             });
25281         }
25282         
25283     
25284     Roo.each(xitems, this.addxtype, this);
25285     
25286 };
25287
25288 Roo.extend(Roo.form.Form, Roo.form.BasicForm, {
25289     /**
25290      * @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
25291      */
25292     /**
25293      * @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
25294      */
25295     /**
25296      * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "center")
25297      */
25298     buttonAlign:'center',
25299
25300     /**
25301      * @cfg {Number} minButtonWidth Minimum width of all buttons in pixels (defaults to 75)
25302      */
25303     minButtonWidth:75,
25304
25305     /**
25306      * @cfg {String} labelAlign Valid values are "left," "top" and "right" (defaults to "left").
25307      * This property cascades to child containers if not set.
25308      */
25309     labelAlign:'left',
25310
25311     /**
25312      * @cfg {Boolean} monitorValid If true the form monitors its valid state <b>client-side</b> and
25313      * fires a looping event with that state. This is required to bind buttons to the valid
25314      * state using the config value formBind:true on the button.
25315      */
25316     monitorValid : false,
25317
25318     /**
25319      * @cfg {Number} monitorPoll The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)
25320      */
25321     monitorPoll : 200,
25322     
25323     /**
25324      * @cfg {String} progressUrl - Url to return progress data 
25325      */
25326     
25327     progressUrl : false,
25328     /**
25329      * @cfg {boolean|FormData} formData - true to use new 'FormData' post, or set to a new FormData({dom form}) Object, if
25330      * sending a formdata with extra parameters - eg uploaded elements.
25331      */
25332     
25333     formData : false,
25334     
25335     /**
25336      * Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the
25337      * fields are added and the column is closed. If no fields are passed the column remains open
25338      * until end() is called.
25339      * @param {Object} config The config to pass to the column
25340      * @param {Field} field1 (optional)
25341      * @param {Field} field2 (optional)
25342      * @param {Field} etc (optional)
25343      * @return Column The column container object
25344      */
25345     column : function(c){
25346         var col = new Roo.form.Column(c);
25347         this.start(col);
25348         if(arguments.length > 1){ // duplicate code required because of Opera
25349             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
25350             this.end();
25351         }
25352         return col;
25353     },
25354
25355     /**
25356      * Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the
25357      * fields are added and the fieldset is closed. If no fields are passed the fieldset remains open
25358      * until end() is called.
25359      * @param {Object} config The config to pass to the fieldset
25360      * @param {Field} field1 (optional)
25361      * @param {Field} field2 (optional)
25362      * @param {Field} etc (optional)
25363      * @return FieldSet The fieldset container object
25364      */
25365     fieldset : function(c){
25366         var fs = new Roo.form.FieldSet(c);
25367         this.start(fs);
25368         if(arguments.length > 1){ // duplicate code required because of Opera
25369             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
25370             this.end();
25371         }
25372         return fs;
25373     },
25374
25375     /**
25376      * Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the
25377      * fields are added and the container is closed. If no fields are passed the container remains open
25378      * until end() is called.
25379      * @param {Object} config The config to pass to the Layout
25380      * @param {Field} field1 (optional)
25381      * @param {Field} field2 (optional)
25382      * @param {Field} etc (optional)
25383      * @return Layout The container object
25384      */
25385     container : function(c){
25386         var l = new Roo.form.Layout(c);
25387         this.start(l);
25388         if(arguments.length > 1){ // duplicate code required because of Opera
25389             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
25390             this.end();
25391         }
25392         return l;
25393     },
25394
25395     /**
25396      * Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass.
25397      * @param {Object} container A Roo.form.Layout or subclass of Layout
25398      * @return {Form} this
25399      */
25400     start : function(c){
25401         // cascade label info
25402         Roo.applyIf(c, {'labelAlign': this.active.labelAlign, 'labelWidth': this.active.labelWidth, 'itemCls': this.active.itemCls});
25403         this.active.stack.push(c);
25404         c.ownerCt = this.active;
25405         this.active = c;
25406         return this;
25407     },
25408
25409     /**
25410      * Closes the current open container
25411      * @return {Form} this
25412      */
25413     end : function(){
25414         if(this.active == this.root){
25415             return this;
25416         }
25417         this.active = this.active.ownerCt;
25418         return this;
25419     },
25420
25421     /**
25422      * Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method
25423      * can also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display
25424      * as the label of the field.
25425      * @param {Field} field1
25426      * @param {Field} field2 (optional)
25427      * @param {Field} etc. (optional)
25428      * @return {Form} this
25429      */
25430     add : function(){
25431         this.active.stack.push.apply(this.active.stack, arguments);
25432         this.allItems.push.apply(this.allItems,arguments);
25433         var r = [];
25434         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
25435             if(a[i].isFormField){
25436                 r.push(a[i]);
25437             }
25438         }
25439         if(r.length > 0){
25440             Roo.form.Form.superclass.add.apply(this, r);
25441         }
25442         return this;
25443     },
25444     
25445
25446     
25447     
25448     
25449      /**
25450      * Find any element that has been added to a form, using it's ID or name
25451      * This can include framesets, columns etc. along with regular fields..
25452      * @param {String} id - id or name to find.
25453      
25454      * @return {Element} e - or false if nothing found.
25455      */
25456     findbyId : function(id)
25457     {
25458         var ret = false;
25459         if (!id) {
25460             return ret;
25461         }
25462         Roo.each(this.allItems, function(f){
25463             if (f.id == id || f.name == id ){
25464                 ret = f;
25465                 return false;
25466             }
25467         });
25468         return ret;
25469     },
25470
25471     
25472     
25473     /**
25474      * Render this form into the passed container. This should only be called once!
25475      * @param {String/HTMLElement/Element} container The element this component should be rendered into
25476      * @return {Form} this
25477      */
25478     render : function(ct)
25479     {
25480         
25481         
25482         
25483         ct = Roo.get(ct);
25484         var o = this.autoCreate || {
25485             tag: 'form',
25486             method : this.method || 'POST',
25487             id : this.id || Roo.id()
25488         };
25489         this.initEl(ct.createChild(o));
25490
25491         this.root.render(this.el);
25492         
25493        
25494              
25495         this.items.each(function(f){
25496             f.render('x-form-el-'+f.id);
25497         });
25498
25499         if(this.buttons.length > 0){
25500             // tables are required to maintain order and for correct IE layout
25501             var tb = this.el.createChild({cls:'x-form-btns-ct', cn: {
25502                 cls:"x-form-btns x-form-btns-"+this.buttonAlign,
25503                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
25504             }}, null, true);
25505             var tr = tb.getElementsByTagName('tr')[0];
25506             for(var i = 0, len = this.buttons.length; i < len; i++) {
25507                 var b = this.buttons[i];
25508                 var td = document.createElement('td');
25509                 td.className = 'x-form-btn-td';
25510                 b.render(tr.appendChild(td));
25511             }
25512         }
25513         if(this.monitorValid){ // initialize after render
25514             this.startMonitoring();
25515         }
25516         this.fireEvent('rendered', this);
25517         return this;
25518     },
25519
25520     /**
25521      * Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered.
25522      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
25523      * object or a valid Roo.DomHelper element config
25524      * @param {Function} handler The function called when the button is clicked
25525      * @param {Object} scope (optional) The scope of the handler function
25526      * @return {Roo.Button}
25527      */
25528     addButton : function(config, handler, scope){
25529         var bc = {
25530             handler: handler,
25531             scope: scope,
25532             minWidth: this.minButtonWidth,
25533             hideParent:true
25534         };
25535         if(typeof config == "string"){
25536             bc.text = config;
25537         }else{
25538             Roo.apply(bc, config);
25539         }
25540         var btn = new Roo.Button(null, bc);
25541         this.buttons.push(btn);
25542         return btn;
25543     },
25544
25545      /**
25546      * Adds a series of form elements (using the xtype property as the factory method.
25547      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)
25548      * @param {Object} config 
25549      */
25550     
25551     addxtype : function()
25552     {
25553         var ar = Array.prototype.slice.call(arguments, 0);
25554         var ret = false;
25555         for(var i = 0; i < ar.length; i++) {
25556             if (!ar[i]) {
25557                 continue; // skip -- if this happends something invalid got sent, we 
25558                 // should ignore it, as basically that interface element will not show up
25559                 // and that should be pretty obvious!!
25560             }
25561             
25562             if (Roo.form[ar[i].xtype]) {
25563                 ar[i].form = this;
25564                 var fe = Roo.factory(ar[i], Roo.form);
25565                 if (!ret) {
25566                     ret = fe;
25567                 }
25568                 fe.form = this;
25569                 if (fe.store) {
25570                     fe.store.form = this;
25571                 }
25572                 if (fe.isLayout) {  
25573                          
25574                     this.start(fe);
25575                     this.allItems.push(fe);
25576                     if (fe.items && fe.addxtype) {
25577                         fe.addxtype.apply(fe, fe.items);
25578                         delete fe.items;
25579                     }
25580                      this.end();
25581                     continue;
25582                 }
25583                 
25584                 
25585                  
25586                 this.add(fe);
25587               //  console.log('adding ' + ar[i].xtype);
25588             }
25589             if (ar[i].xtype == 'Button') {  
25590                 //console.log('adding button');
25591                 //console.log(ar[i]);
25592                 this.addButton(ar[i]);
25593                 this.allItems.push(fe);
25594                 continue;
25595             }
25596             
25597             if (ar[i].xtype == 'end') { // so we can add fieldsets... / layout etc.
25598                 alert('end is not supported on xtype any more, use items');
25599             //    this.end();
25600             //    //console.log('adding end');
25601             }
25602             
25603         }
25604         return ret;
25605     },
25606     
25607     /**
25608      * Starts monitoring of the valid state of this form. Usually this is done by passing the config
25609      * option "monitorValid"
25610      */
25611     startMonitoring : function(){
25612         if(!this.bound){
25613             this.bound = true;
25614             Roo.TaskMgr.start({
25615                 run : this.bindHandler,
25616                 interval : this.monitorPoll || 200,
25617                 scope: this
25618             });
25619         }
25620     },
25621
25622     /**
25623      * Stops monitoring of the valid state of this form
25624      */
25625     stopMonitoring : function(){
25626         this.bound = false;
25627     },
25628
25629     // private
25630     bindHandler : function(){
25631         if(!this.bound){
25632             return false; // stops binding
25633         }
25634         var valid = true;
25635         this.items.each(function(f){
25636             if(!f.isValid(true)){
25637                 valid = false;
25638                 return false;
25639             }
25640         });
25641         for(var i = 0, len = this.buttons.length; i < len; i++){
25642             var btn = this.buttons[i];
25643             if(btn.formBind === true && btn.disabled === valid){
25644                 btn.setDisabled(!valid);
25645             }
25646         }
25647         this.fireEvent('clientvalidation', this, valid);
25648     }
25649     
25650     
25651     
25652     
25653     
25654     
25655     
25656     
25657 });
25658
25659
25660 // back compat
25661 Roo.Form = Roo.form.Form;
25662 /*
25663  * Based on:
25664  * Ext JS Library 1.1.1
25665  * Copyright(c) 2006-2007, Ext JS, LLC.
25666  *
25667  * Originally Released Under LGPL - original licence link has changed is not relivant.
25668  *
25669  * Fork - LGPL
25670  * <script type="text/javascript">
25671  */
25672
25673 // as we use this in bootstrap.
25674 Roo.namespace('Roo.form');
25675  /**
25676  * @class Roo.form.Action
25677  * Internal Class used to handle form actions
25678  * @constructor
25679  * @param {Roo.form.BasicForm} el The form element or its id
25680  * @param {Object} config Configuration options
25681  */
25682
25683  
25684  
25685 // define the action interface
25686 Roo.form.Action = function(form, options){
25687     this.form = form;
25688     this.options = options || {};
25689 };
25690 /**
25691  * Client Validation Failed
25692  * @const 
25693  */
25694 Roo.form.Action.CLIENT_INVALID = 'client';
25695 /**
25696  * Server Validation Failed
25697  * @const 
25698  */
25699 Roo.form.Action.SERVER_INVALID = 'server';
25700  /**
25701  * Connect to Server Failed
25702  * @const 
25703  */
25704 Roo.form.Action.CONNECT_FAILURE = 'connect';
25705 /**
25706  * Reading Data from Server Failed
25707  * @const 
25708  */
25709 Roo.form.Action.LOAD_FAILURE = 'load';
25710
25711 Roo.form.Action.prototype = {
25712     type : 'default',
25713     failureType : undefined,
25714     response : undefined,
25715     result : undefined,
25716
25717     // interface method
25718     run : function(options){
25719
25720     },
25721
25722     // interface method
25723     success : function(response){
25724
25725     },
25726
25727     // interface method
25728     handleResponse : function(response){
25729
25730     },
25731
25732     // default connection failure
25733     failure : function(response){
25734         
25735         this.response = response;
25736         this.failureType = Roo.form.Action.CONNECT_FAILURE;
25737         this.form.afterAction(this, false);
25738     },
25739
25740     processResponse : function(response){
25741         this.response = response;
25742         if(!response.responseText){
25743             return true;
25744         }
25745         this.result = this.handleResponse(response);
25746         return this.result;
25747     },
25748
25749     // utility functions used internally
25750     getUrl : function(appendParams){
25751         var url = this.options.url || this.form.url || this.form.el.dom.action;
25752         if(appendParams){
25753             var p = this.getParams();
25754             if(p){
25755                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
25756             }
25757         }
25758         return url;
25759     },
25760
25761     getMethod : function(){
25762         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
25763     },
25764
25765     getParams : function(){
25766         var bp = this.form.baseParams;
25767         var p = this.options.params;
25768         if(p){
25769             if(typeof p == "object"){
25770                 p = Roo.urlEncode(Roo.applyIf(p, bp));
25771             }else if(typeof p == 'string' && bp){
25772                 p += '&' + Roo.urlEncode(bp);
25773             }
25774         }else if(bp){
25775             p = Roo.urlEncode(bp);
25776         }
25777         return p;
25778     },
25779
25780     createCallback : function(){
25781         return {
25782             success: this.success,
25783             failure: this.failure,
25784             scope: this,
25785             timeout: (this.form.timeout*1000),
25786             upload: this.form.fileUpload ? this.success : undefined
25787         };
25788     }
25789 };
25790
25791 Roo.form.Action.Submit = function(form, options){
25792     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
25793 };
25794
25795 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
25796     type : 'submit',
25797
25798     haveProgress : false,
25799     uploadComplete : false,
25800     
25801     // uploadProgress indicator.
25802     uploadProgress : function()
25803     {
25804         if (!this.form.progressUrl) {
25805             return;
25806         }
25807         
25808         if (!this.haveProgress) {
25809             Roo.MessageBox.progress("Uploading", "Uploading");
25810         }
25811         if (this.uploadComplete) {
25812            Roo.MessageBox.hide();
25813            return;
25814         }
25815         
25816         this.haveProgress = true;
25817    
25818         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
25819         
25820         var c = new Roo.data.Connection();
25821         c.request({
25822             url : this.form.progressUrl,
25823             params: {
25824                 id : uid
25825             },
25826             method: 'GET',
25827             success : function(req){
25828                //console.log(data);
25829                 var rdata = false;
25830                 var edata;
25831                 try  {
25832                    rdata = Roo.decode(req.responseText)
25833                 } catch (e) {
25834                     Roo.log("Invalid data from server..");
25835                     Roo.log(edata);
25836                     return;
25837                 }
25838                 if (!rdata || !rdata.success) {
25839                     Roo.log(rdata);
25840                     Roo.MessageBox.alert(Roo.encode(rdata));
25841                     return;
25842                 }
25843                 var data = rdata.data;
25844                 
25845                 if (this.uploadComplete) {
25846                    Roo.MessageBox.hide();
25847                    return;
25848                 }
25849                    
25850                 if (data){
25851                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
25852                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
25853                     );
25854                 }
25855                 this.uploadProgress.defer(2000,this);
25856             },
25857        
25858             failure: function(data) {
25859                 Roo.log('progress url failed ');
25860                 Roo.log(data);
25861             },
25862             scope : this
25863         });
25864            
25865     },
25866     
25867     
25868     run : function()
25869     {
25870         // run get Values on the form, so it syncs any secondary forms.
25871         this.form.getValues();
25872         
25873         var o = this.options;
25874         var method = this.getMethod();
25875         var isPost = method == 'POST';
25876         if(o.clientValidation === false || this.form.isValid()){
25877             
25878             if (this.form.progressUrl) {
25879                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
25880                     (new Date() * 1) + '' + Math.random());
25881                     
25882             } 
25883             
25884             
25885             Roo.Ajax.request(Roo.apply(this.createCallback(), {
25886                 form:this.form.el.dom,
25887                 url:this.getUrl(!isPost),
25888                 method: method,
25889                 params:isPost ? this.getParams() : null,
25890                 isUpload: this.form.fileUpload,
25891                 formData : this.form.formData
25892             }));
25893             
25894             this.uploadProgress();
25895
25896         }else if (o.clientValidation !== false){ // client validation failed
25897             this.failureType = Roo.form.Action.CLIENT_INVALID;
25898             this.form.afterAction(this, false);
25899         }
25900     },
25901
25902     success : function(response)
25903     {
25904         this.uploadComplete= true;
25905         if (this.haveProgress) {
25906             Roo.MessageBox.hide();
25907         }
25908         
25909         
25910         var result = this.processResponse(response);
25911         if(result === true || result.success){
25912             this.form.afterAction(this, true);
25913             return;
25914         }
25915         if(result.errors){
25916             this.form.markInvalid(result.errors);
25917             this.failureType = Roo.form.Action.SERVER_INVALID;
25918         }
25919         this.form.afterAction(this, false);
25920     },
25921     failure : function(response)
25922     {
25923         this.uploadComplete= true;
25924         if (this.haveProgress) {
25925             Roo.MessageBox.hide();
25926         }
25927         
25928         this.response = response;
25929         this.failureType = Roo.form.Action.CONNECT_FAILURE;
25930         this.form.afterAction(this, false);
25931     },
25932     
25933     handleResponse : function(response){
25934         if(this.form.errorReader){
25935             var rs = this.form.errorReader.read(response);
25936             var errors = [];
25937             if(rs.records){
25938                 for(var i = 0, len = rs.records.length; i < len; i++) {
25939                     var r = rs.records[i];
25940                     errors[i] = r.data;
25941                 }
25942             }
25943             if(errors.length < 1){
25944                 errors = null;
25945             }
25946             return {
25947                 success : rs.success,
25948                 errors : errors
25949             };
25950         }
25951         var ret = false;
25952         try {
25953             ret = Roo.decode(response.responseText);
25954         } catch (e) {
25955             ret = {
25956                 success: false,
25957                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
25958                 errors : []
25959             };
25960         }
25961         return ret;
25962         
25963     }
25964 });
25965
25966
25967 Roo.form.Action.Load = function(form, options){
25968     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
25969     this.reader = this.form.reader;
25970 };
25971
25972 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
25973     type : 'load',
25974
25975     run : function(){
25976         
25977         Roo.Ajax.request(Roo.apply(
25978                 this.createCallback(), {
25979                     method:this.getMethod(),
25980                     url:this.getUrl(false),
25981                     params:this.getParams()
25982         }));
25983     },
25984
25985     success : function(response){
25986         
25987         var result = this.processResponse(response);
25988         if(result === true || !result.success || !result.data){
25989             this.failureType = Roo.form.Action.LOAD_FAILURE;
25990             this.form.afterAction(this, false);
25991             return;
25992         }
25993         this.form.clearInvalid();
25994         this.form.setValues(result.data);
25995         this.form.afterAction(this, true);
25996     },
25997
25998     handleResponse : function(response){
25999         if(this.form.reader){
26000             var rs = this.form.reader.read(response);
26001             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
26002             return {
26003                 success : rs.success,
26004                 data : data
26005             };
26006         }
26007         return Roo.decode(response.responseText);
26008     }
26009 });
26010
26011 Roo.form.Action.ACTION_TYPES = {
26012     'load' : Roo.form.Action.Load,
26013     'submit' : Roo.form.Action.Submit
26014 };/*
26015  * Based on:
26016  * Ext JS Library 1.1.1
26017  * Copyright(c) 2006-2007, Ext JS, LLC.
26018  *
26019  * Originally Released Under LGPL - original licence link has changed is not relivant.
26020  *
26021  * Fork - LGPL
26022  * <script type="text/javascript">
26023  */
26024  
26025 /**
26026  * @class Roo.form.Layout
26027  * @extends Roo.Component
26028  * Creates a container for layout and rendering of fields in an {@link Roo.form.Form}.
26029  * @constructor
26030  * @param {Object} config Configuration options
26031  */
26032 Roo.form.Layout = function(config){
26033     var xitems = [];
26034     if (config.items) {
26035         xitems = config.items;
26036         delete config.items;
26037     }
26038     Roo.form.Layout.superclass.constructor.call(this, config);
26039     this.stack = [];
26040     Roo.each(xitems, this.addxtype, this);
26041      
26042 };
26043
26044 Roo.extend(Roo.form.Layout, Roo.Component, {
26045     /**
26046      * @cfg {String/Object} autoCreate
26047      * A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})
26048      */
26049     /**
26050      * @cfg {String/Object/Function} style
26051      * A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
26052      * a function which returns such a specification.
26053      */
26054     /**
26055      * @cfg {String} labelAlign
26056      * Valid values are "left," "top" and "right" (defaults to "left")
26057      */
26058     /**
26059      * @cfg {Number} labelWidth
26060      * Fixed width in pixels of all field labels (defaults to undefined)
26061      */
26062     /**
26063      * @cfg {Boolean} clear
26064      * True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)
26065      */
26066     clear : true,
26067     /**
26068      * @cfg {String} labelSeparator
26069      * The separator to use after field labels (defaults to ':')
26070      */
26071     labelSeparator : ':',
26072     /**
26073      * @cfg {Boolean} hideLabels
26074      * True to suppress the display of field labels in this layout (defaults to false)
26075      */
26076     hideLabels : false,
26077
26078     // private
26079     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct'},
26080     
26081     isLayout : true,
26082     
26083     // private
26084     onRender : function(ct, position){
26085         if(this.el){ // from markup
26086             this.el = Roo.get(this.el);
26087         }else {  // generate
26088             var cfg = this.getAutoCreate();
26089             this.el = ct.createChild(cfg, position);
26090         }
26091         if(this.style){
26092             this.el.applyStyles(this.style);
26093         }
26094         if(this.labelAlign){
26095             this.el.addClass('x-form-label-'+this.labelAlign);
26096         }
26097         if(this.hideLabels){
26098             this.labelStyle = "display:none";
26099             this.elementStyle = "padding-left:0;";
26100         }else{
26101             if(typeof this.labelWidth == 'number'){
26102                 this.labelStyle = "width:"+this.labelWidth+"px;";
26103                 this.elementStyle = "padding-left:"+((this.labelWidth+(typeof this.labelPad == 'number' ? this.labelPad : 5))+'px')+";";
26104             }
26105             if(this.labelAlign == 'top'){
26106                 this.labelStyle = "width:auto;";
26107                 this.elementStyle = "padding-left:0;";
26108             }
26109         }
26110         var stack = this.stack;
26111         var slen = stack.length;
26112         if(slen > 0){
26113             if(!this.fieldTpl){
26114                 var t = new Roo.Template(
26115                     '<div class="x-form-item {5}">',
26116                         '<label for="{0}" style="{2}">{1}{4}</label>',
26117                         '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
26118                         '</div>',
26119                     '</div><div class="x-form-clear-left"></div>'
26120                 );
26121                 t.disableFormats = true;
26122                 t.compile();
26123                 Roo.form.Layout.prototype.fieldTpl = t;
26124             }
26125             for(var i = 0; i < slen; i++) {
26126                 if(stack[i].isFormField){
26127                     this.renderField(stack[i]);
26128                 }else{
26129                     this.renderComponent(stack[i]);
26130                 }
26131             }
26132         }
26133         if(this.clear){
26134             this.el.createChild({cls:'x-form-clear'});
26135         }
26136     },
26137
26138     // private
26139     renderField : function(f){
26140         f.fieldEl = Roo.get(this.fieldTpl.append(this.el, [
26141                f.id, //0
26142                f.fieldLabel, //1
26143                f.labelStyle||this.labelStyle||'', //2
26144                this.elementStyle||'', //3
26145                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator, //4
26146                f.itemCls||this.itemCls||''  //5
26147        ], true).getPrevSibling());
26148     },
26149
26150     // private
26151     renderComponent : function(c){
26152         c.render(c.isLayout ? this.el : this.el.createChild());    
26153     },
26154     /**
26155      * Adds a object form elements (using the xtype property as the factory method.)
26156      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column
26157      * @param {Object} config 
26158      */
26159     addxtype : function(o)
26160     {
26161         // create the lement.
26162         o.form = this.form;
26163         var fe = Roo.factory(o, Roo.form);
26164         this.form.allItems.push(fe);
26165         this.stack.push(fe);
26166         
26167         if (fe.isFormField) {
26168             this.form.items.add(fe);
26169         }
26170          
26171         return fe;
26172     }
26173 });
26174
26175 /**
26176  * @class Roo.form.Column
26177  * @extends Roo.form.Layout
26178  * Creates a column container for layout and rendering of fields in an {@link Roo.form.Form}.
26179  * @constructor
26180  * @param {Object} config Configuration options
26181  */
26182 Roo.form.Column = function(config){
26183     Roo.form.Column.superclass.constructor.call(this, config);
26184 };
26185
26186 Roo.extend(Roo.form.Column, Roo.form.Layout, {
26187     /**
26188      * @cfg {Number/String} width
26189      * The fixed width of the column in pixels or CSS value (defaults to "auto")
26190      */
26191     /**
26192      * @cfg {String/Object} autoCreate
26193      * A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})
26194      */
26195
26196     // private
26197     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-column'},
26198
26199     // private
26200     onRender : function(ct, position){
26201         Roo.form.Column.superclass.onRender.call(this, ct, position);
26202         if(this.width){
26203             this.el.setWidth(this.width);
26204         }
26205     }
26206 });
26207
26208
26209 /**
26210  * @class Roo.form.Row
26211  * @extends Roo.form.Layout
26212  * Creates a row container for layout and rendering of fields in an {@link Roo.form.Form}.
26213  * @constructor
26214  * @param {Object} config Configuration options
26215  */
26216
26217  
26218 Roo.form.Row = function(config){
26219     Roo.form.Row.superclass.constructor.call(this, config);
26220 };
26221  
26222 Roo.extend(Roo.form.Row, Roo.form.Layout, {
26223       /**
26224      * @cfg {Number/String} width
26225      * The fixed width of the column in pixels or CSS value (defaults to "auto")
26226      */
26227     /**
26228      * @cfg {Number/String} height
26229      * The fixed height of the column in pixels or CSS value (defaults to "auto")
26230      */
26231     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-row'},
26232     
26233     padWidth : 20,
26234     // private
26235     onRender : function(ct, position){
26236         //console.log('row render');
26237         if(!this.rowTpl){
26238             var t = new Roo.Template(
26239                 '<div class="x-form-item {5}" style="float:left;width:{6}px">',
26240                     '<label for="{0}" style="{2}">{1}{4}</label>',
26241                     '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
26242                     '</div>',
26243                 '</div>'
26244             );
26245             t.disableFormats = true;
26246             t.compile();
26247             Roo.form.Layout.prototype.rowTpl = t;
26248         }
26249         this.fieldTpl = this.rowTpl;
26250         
26251         //console.log('lw' + this.labelWidth +', la:' + this.labelAlign);
26252         var labelWidth = 100;
26253         
26254         if ((this.labelAlign != 'top')) {
26255             if (typeof this.labelWidth == 'number') {
26256                 labelWidth = this.labelWidth
26257             }
26258             this.padWidth =  20 + labelWidth;
26259             
26260         }
26261         
26262         Roo.form.Column.superclass.onRender.call(this, ct, position);
26263         if(this.width){
26264             this.el.setWidth(this.width);
26265         }
26266         if(this.height){
26267             this.el.setHeight(this.height);
26268         }
26269     },
26270     
26271     // private
26272     renderField : function(f){
26273         f.fieldEl = this.fieldTpl.append(this.el, [
26274                f.id, f.fieldLabel,
26275                f.labelStyle||this.labelStyle||'',
26276                this.elementStyle||'',
26277                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator,
26278                f.itemCls||this.itemCls||'',
26279                f.width ? f.width + this.padWidth : 160 + this.padWidth
26280        ],true);
26281     }
26282 });
26283  
26284
26285 /**
26286  * @class Roo.form.FieldSet
26287  * @extends Roo.form.Layout
26288  * Creates a fieldset container for layout and rendering of fields in an {@link Roo.form.Form}.
26289  * @constructor
26290  * @param {Object} config Configuration options
26291  */
26292 Roo.form.FieldSet = function(config){
26293     Roo.form.FieldSet.superclass.constructor.call(this, config);
26294 };
26295
26296 Roo.extend(Roo.form.FieldSet, Roo.form.Layout, {
26297     /**
26298      * @cfg {String} legend
26299      * The text to display as the legend for the FieldSet (defaults to '')
26300      */
26301     /**
26302      * @cfg {String/Object} autoCreate
26303      * A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})
26304      */
26305
26306     // private
26307     defaultAutoCreate : {tag: 'fieldset', cn: {tag:'legend'}},
26308
26309     // private
26310     onRender : function(ct, position){
26311         Roo.form.FieldSet.superclass.onRender.call(this, ct, position);
26312         if(this.legend){
26313             this.setLegend(this.legend);
26314         }
26315     },
26316
26317     // private
26318     setLegend : function(text){
26319         if(this.rendered){
26320             this.el.child('legend').update(text);
26321         }
26322     }
26323 });/*
26324  * Based on:
26325  * Ext JS Library 1.1.1
26326  * Copyright(c) 2006-2007, Ext JS, LLC.
26327  *
26328  * Originally Released Under LGPL - original licence link has changed is not relivant.
26329  *
26330  * Fork - LGPL
26331  * <script type="text/javascript">
26332  */
26333 /**
26334  * @class Roo.form.VTypes
26335  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
26336  * @singleton
26337  */
26338 Roo.form.VTypes = function(){
26339     // closure these in so they are only created once.
26340     var alpha = /^[a-zA-Z_]+$/;
26341     var alphanum = /^[a-zA-Z0-9_]+$/;
26342     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
26343     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
26344
26345     // All these messages and functions are configurable
26346     return {
26347         /**
26348          * The function used to validate email addresses
26349          * @param {String} value The email address
26350          */
26351         'email' : function(v){
26352             return email.test(v);
26353         },
26354         /**
26355          * The error text to display when the email validation function returns false
26356          * @type String
26357          */
26358         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
26359         /**
26360          * The keystroke filter mask to be applied on email input
26361          * @type RegExp
26362          */
26363         'emailMask' : /[a-z0-9_\.\-@]/i,
26364
26365         /**
26366          * The function used to validate URLs
26367          * @param {String} value The URL
26368          */
26369         'url' : function(v){
26370             return url.test(v);
26371         },
26372         /**
26373          * The error text to display when the url validation function returns false
26374          * @type String
26375          */
26376         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
26377         
26378         /**
26379          * The function used to validate alpha values
26380          * @param {String} value The value
26381          */
26382         'alpha' : function(v){
26383             return alpha.test(v);
26384         },
26385         /**
26386          * The error text to display when the alpha validation function returns false
26387          * @type String
26388          */
26389         'alphaText' : 'This field should only contain letters and _',
26390         /**
26391          * The keystroke filter mask to be applied on alpha input
26392          * @type RegExp
26393          */
26394         'alphaMask' : /[a-z_]/i,
26395
26396         /**
26397          * The function used to validate alphanumeric values
26398          * @param {String} value The value
26399          */
26400         'alphanum' : function(v){
26401             return alphanum.test(v);
26402         },
26403         /**
26404          * The error text to display when the alphanumeric validation function returns false
26405          * @type String
26406          */
26407         'alphanumText' : 'This field should only contain letters, numbers and _',
26408         /**
26409          * The keystroke filter mask to be applied on alphanumeric input
26410          * @type RegExp
26411          */
26412         'alphanumMask' : /[a-z0-9_]/i
26413     };
26414 }();//<script type="text/javascript">
26415
26416 /**
26417  * @class Roo.form.FCKeditor
26418  * @extends Roo.form.TextArea
26419  * Wrapper around the FCKEditor http://www.fckeditor.net
26420  * @constructor
26421  * Creates a new FCKeditor
26422  * @param {Object} config Configuration options
26423  */
26424 Roo.form.FCKeditor = function(config){
26425     Roo.form.FCKeditor.superclass.constructor.call(this, config);
26426     this.addEvents({
26427          /**
26428          * @event editorinit
26429          * Fired when the editor is initialized - you can add extra handlers here..
26430          * @param {FCKeditor} this
26431          * @param {Object} the FCK object.
26432          */
26433         editorinit : true
26434     });
26435     
26436     
26437 };
26438 Roo.form.FCKeditor.editors = { };
26439 Roo.extend(Roo.form.FCKeditor, Roo.form.TextArea,
26440 {
26441     //defaultAutoCreate : {
26442     //    tag : "textarea",style   : "width:100px;height:60px;" ,autocomplete    : "off"
26443     //},
26444     // private
26445     /**
26446      * @cfg {Object} fck options - see fck manual for details.
26447      */
26448     fckconfig : false,
26449     
26450     /**
26451      * @cfg {Object} fck toolbar set (Basic or Default)
26452      */
26453     toolbarSet : 'Basic',
26454     /**
26455      * @cfg {Object} fck BasePath
26456      */ 
26457     basePath : '/fckeditor/',
26458     
26459     
26460     frame : false,
26461     
26462     value : '',
26463     
26464    
26465     onRender : function(ct, position)
26466     {
26467         if(!this.el){
26468             this.defaultAutoCreate = {
26469                 tag: "textarea",
26470                 style:"width:300px;height:60px;",
26471                 autocomplete: "new-password"
26472             };
26473         }
26474         Roo.form.FCKeditor.superclass.onRender.call(this, ct, position);
26475         /*
26476         if(this.grow){
26477             this.textSizeEl = Roo.DomHelper.append(document.body, {tag: "pre", cls: "x-form-grow-sizer"});
26478             if(this.preventScrollbars){
26479                 this.el.setStyle("overflow", "hidden");
26480             }
26481             this.el.setHeight(this.growMin);
26482         }
26483         */
26484         //console.log('onrender' + this.getId() );
26485         Roo.form.FCKeditor.editors[this.getId()] = this;
26486          
26487
26488         this.replaceTextarea() ;
26489         
26490     },
26491     
26492     getEditor : function() {
26493         return this.fckEditor;
26494     },
26495     /**
26496      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
26497      * @param {Mixed} value The value to set
26498      */
26499     
26500     
26501     setValue : function(value)
26502     {
26503         //console.log('setValue: ' + value);
26504         
26505         if(typeof(value) == 'undefined') { // not sure why this is happending...
26506             return;
26507         }
26508         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
26509         
26510         //if(!this.el || !this.getEditor()) {
26511         //    this.value = value;
26512             //this.setValue.defer(100,this,[value]);    
26513         //    return;
26514         //} 
26515         
26516         if(!this.getEditor()) {
26517             return;
26518         }
26519         
26520         this.getEditor().SetData(value);
26521         
26522         //
26523
26524     },
26525
26526     /**
26527      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
26528      * @return {Mixed} value The field value
26529      */
26530     getValue : function()
26531     {
26532         
26533         if (this.frame && this.frame.dom.style.display == 'none') {
26534             return Roo.form.FCKeditor.superclass.getValue.call(this);
26535         }
26536         
26537         if(!this.el || !this.getEditor()) {
26538            
26539            // this.getValue.defer(100,this); 
26540             return this.value;
26541         }
26542        
26543         
26544         var value=this.getEditor().GetData();
26545         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
26546         return Roo.form.FCKeditor.superclass.getValue.call(this);
26547         
26548
26549     },
26550
26551     /**
26552      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
26553      * @return {Mixed} value The field value
26554      */
26555     getRawValue : function()
26556     {
26557         if (this.frame && this.frame.dom.style.display == 'none') {
26558             return Roo.form.FCKeditor.superclass.getRawValue.call(this);
26559         }
26560         
26561         if(!this.el || !this.getEditor()) {
26562             //this.getRawValue.defer(100,this); 
26563             return this.value;
26564             return;
26565         }
26566         
26567         
26568         
26569         var value=this.getEditor().GetData();
26570         Roo.form.FCKeditor.superclass.setRawValue.apply(this,[value]);
26571         return Roo.form.FCKeditor.superclass.getRawValue.call(this);
26572          
26573     },
26574     
26575     setSize : function(w,h) {
26576         
26577         
26578         
26579         //if (this.frame && this.frame.dom.style.display == 'none') {
26580         //    Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
26581         //    return;
26582         //}
26583         //if(!this.el || !this.getEditor()) {
26584         //    this.setSize.defer(100,this, [w,h]); 
26585         //    return;
26586         //}
26587         
26588         
26589         
26590         Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
26591         
26592         this.frame.dom.setAttribute('width', w);
26593         this.frame.dom.setAttribute('height', h);
26594         this.frame.setSize(w,h);
26595         
26596     },
26597     
26598     toggleSourceEdit : function(value) {
26599         
26600       
26601          
26602         this.el.dom.style.display = value ? '' : 'none';
26603         this.frame.dom.style.display = value ?  'none' : '';
26604         
26605     },
26606     
26607     
26608     focus: function(tag)
26609     {
26610         if (this.frame.dom.style.display == 'none') {
26611             return Roo.form.FCKeditor.superclass.focus.call(this);
26612         }
26613         if(!this.el || !this.getEditor()) {
26614             this.focus.defer(100,this, [tag]); 
26615             return;
26616         }
26617         
26618         
26619         
26620         
26621         var tgs = this.getEditor().EditorDocument.getElementsByTagName(tag);
26622         this.getEditor().Focus();
26623         if (tgs.length) {
26624             if (!this.getEditor().Selection.GetSelection()) {
26625                 this.focus.defer(100,this, [tag]); 
26626                 return;
26627             }
26628             
26629             
26630             var r = this.getEditor().EditorDocument.createRange();
26631             r.setStart(tgs[0],0);
26632             r.setEnd(tgs[0],0);
26633             this.getEditor().Selection.GetSelection().removeAllRanges();
26634             this.getEditor().Selection.GetSelection().addRange(r);
26635             this.getEditor().Focus();
26636         }
26637         
26638     },
26639     
26640     
26641     
26642     replaceTextarea : function()
26643     {
26644         if ( document.getElementById( this.getId() + '___Frame' ) ) {
26645             return ;
26646         }
26647         //if ( !this.checkBrowser || this._isCompatibleBrowser() )
26648         //{
26649             // We must check the elements firstly using the Id and then the name.
26650         var oTextarea = document.getElementById( this.getId() );
26651         
26652         var colElementsByName = document.getElementsByName( this.getId() ) ;
26653          
26654         oTextarea.style.display = 'none' ;
26655
26656         if ( oTextarea.tabIndex ) {            
26657             this.TabIndex = oTextarea.tabIndex ;
26658         }
26659         
26660         this._insertHtmlBefore( this._getConfigHtml(), oTextarea ) ;
26661         this._insertHtmlBefore( this._getIFrameHtml(), oTextarea ) ;
26662         this.frame = Roo.get(this.getId() + '___Frame')
26663     },
26664     
26665     _getConfigHtml : function()
26666     {
26667         var sConfig = '' ;
26668
26669         for ( var o in this.fckconfig ) {
26670             sConfig += sConfig.length > 0  ? '&amp;' : '';
26671             sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.fckconfig[o] ) ;
26672         }
26673
26674         return '<input type="hidden" id="' + this.getId() + '___Config" value="' + sConfig + '" style="display:none" />' ;
26675     },
26676     
26677     
26678     _getIFrameHtml : function()
26679     {
26680         var sFile = 'fckeditor.html' ;
26681         /* no idea what this is about..
26682         try
26683         {
26684             if ( (/fcksource=true/i).test( window.top.location.search ) )
26685                 sFile = 'fckeditor.original.html' ;
26686         }
26687         catch (e) { 
26688         */
26689
26690         var sLink = this.basePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.getId() ) ;
26691         sLink += this.toolbarSet ? ( '&amp;Toolbar=' + this.toolbarSet)  : '';
26692         
26693         
26694         var html = '<iframe id="' + this.getId() +
26695             '___Frame" src="' + sLink +
26696             '" width="' + this.width +
26697             '" height="' + this.height + '"' +
26698             (this.tabIndex ?  ' tabindex="' + this.tabIndex + '"' :'' ) +
26699             ' frameborder="0" scrolling="no"></iframe>' ;
26700
26701         return html ;
26702     },
26703     
26704     _insertHtmlBefore : function( html, element )
26705     {
26706         if ( element.insertAdjacentHTML )       {
26707             // IE
26708             element.insertAdjacentHTML( 'beforeBegin', html ) ;
26709         } else { // Gecko
26710             var oRange = document.createRange() ;
26711             oRange.setStartBefore( element ) ;
26712             var oFragment = oRange.createContextualFragment( html );
26713             element.parentNode.insertBefore( oFragment, element ) ;
26714         }
26715     }
26716     
26717     
26718   
26719     
26720     
26721     
26722     
26723
26724 });
26725
26726 //Roo.reg('fckeditor', Roo.form.FCKeditor);
26727
26728 function FCKeditor_OnComplete(editorInstance){
26729     var f = Roo.form.FCKeditor.editors[editorInstance.Name];
26730     f.fckEditor = editorInstance;
26731     //console.log("loaded");
26732     f.fireEvent('editorinit', f, editorInstance);
26733
26734   
26735
26736  
26737
26738
26739
26740
26741
26742
26743
26744
26745
26746
26747
26748
26749
26750
26751
26752 //<script type="text/javascript">
26753 /**
26754  * @class Roo.form.GridField
26755  * @extends Roo.form.Field
26756  * Embed a grid (or editable grid into a form)
26757  * STATUS ALPHA
26758  * 
26759  * This embeds a grid in a form, the value of the field should be the json encoded array of rows
26760  * it needs 
26761  * xgrid.store = Roo.data.Store
26762  * xgrid.store.proxy = Roo.data.MemoryProxy (data = [] )
26763  * xgrid.store.reader = Roo.data.JsonReader 
26764  * 
26765  * 
26766  * @constructor
26767  * Creates a new GridField
26768  * @param {Object} config Configuration options
26769  */
26770 Roo.form.GridField = function(config){
26771     Roo.form.GridField.superclass.constructor.call(this, config);
26772      
26773 };
26774
26775 Roo.extend(Roo.form.GridField, Roo.form.Field,  {
26776     /**
26777      * @cfg {Number} width  - used to restrict width of grid..
26778      */
26779     width : 100,
26780     /**
26781      * @cfg {Number} height - used to restrict height of grid..
26782      */
26783     height : 50,
26784      /**
26785      * @cfg {Object} xgrid (xtype'd description of grid) { xtype : 'Grid', dataSource: .... }
26786          * 
26787          *}
26788      */
26789     xgrid : false, 
26790     /**
26791      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
26792      * {tag: "input", type: "checkbox", autocomplete: "off"})
26793      */
26794    // defaultAutoCreate : { tag: 'div' },
26795     defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'new-password'},
26796     /**
26797      * @cfg {String} addTitle Text to include for adding a title.
26798      */
26799     addTitle : false,
26800     //
26801     onResize : function(){
26802         Roo.form.Field.superclass.onResize.apply(this, arguments);
26803     },
26804
26805     initEvents : function(){
26806         // Roo.form.Checkbox.superclass.initEvents.call(this);
26807         // has no events...
26808        
26809     },
26810
26811
26812     getResizeEl : function(){
26813         return this.wrap;
26814     },
26815
26816     getPositionEl : function(){
26817         return this.wrap;
26818     },
26819
26820     // private
26821     onRender : function(ct, position){
26822         
26823         this.style = this.style || 'overflow: hidden; border:1px solid #c3daf9;';
26824         var style = this.style;
26825         delete this.style;
26826         
26827         Roo.form.GridField.superclass.onRender.call(this, ct, position);
26828         this.wrap = this.el.wrap({cls: ''}); // not sure why ive done thsi...
26829         this.viewEl = this.wrap.createChild({ tag: 'div' });
26830         if (style) {
26831             this.viewEl.applyStyles(style);
26832         }
26833         if (this.width) {
26834             this.viewEl.setWidth(this.width);
26835         }
26836         if (this.height) {
26837             this.viewEl.setHeight(this.height);
26838         }
26839         //if(this.inputValue !== undefined){
26840         //this.setValue(this.value);
26841         
26842         
26843         this.grid = new Roo.grid[this.xgrid.xtype](this.viewEl, this.xgrid);
26844         
26845         
26846         this.grid.render();
26847         this.grid.getDataSource().on('remove', this.refreshValue, this);
26848         this.grid.getDataSource().on('update', this.refreshValue, this);
26849         this.grid.on('afteredit', this.refreshValue, this);
26850  
26851     },
26852      
26853     
26854     /**
26855      * Sets the value of the item. 
26856      * @param {String} either an object  or a string..
26857      */
26858     setValue : function(v){
26859         //this.value = v;
26860         v = v || []; // empty set..
26861         // this does not seem smart - it really only affects memoryproxy grids..
26862         if (this.grid && this.grid.getDataSource() && typeof(v) != 'undefined') {
26863             var ds = this.grid.getDataSource();
26864             // assumes a json reader..
26865             var data = {}
26866             data[ds.reader.meta.root ] =  typeof(v) == 'string' ? Roo.decode(v) : v;
26867             ds.loadData( data);
26868         }
26869         // clear selection so it does not get stale.
26870         if (this.grid.sm) { 
26871             this.grid.sm.clearSelections();
26872         }
26873         
26874         Roo.form.GridField.superclass.setValue.call(this, v);
26875         this.refreshValue();
26876         // should load data in the grid really....
26877     },
26878     
26879     // private
26880     refreshValue: function() {
26881          var val = [];
26882         this.grid.getDataSource().each(function(r) {
26883             val.push(r.data);
26884         });
26885         this.el.dom.value = Roo.encode(val);
26886     }
26887     
26888      
26889     
26890     
26891 });/*
26892  * Based on:
26893  * Ext JS Library 1.1.1
26894  * Copyright(c) 2006-2007, Ext JS, LLC.
26895  *
26896  * Originally Released Under LGPL - original licence link has changed is not relivant.
26897  *
26898  * Fork - LGPL
26899  * <script type="text/javascript">
26900  */
26901 /**
26902  * @class Roo.form.DisplayField
26903  * @extends Roo.form.Field
26904  * A generic Field to display non-editable data.
26905  * @cfg {Boolean} closable (true|false) default false
26906  * @constructor
26907  * Creates a new Display Field item.
26908  * @param {Object} config Configuration options
26909  */
26910 Roo.form.DisplayField = function(config){
26911     Roo.form.DisplayField.superclass.constructor.call(this, config);
26912     
26913     this.addEvents({
26914         /**
26915          * @event close
26916          * Fires after the click the close btn
26917              * @param {Roo.form.DisplayField} this
26918              */
26919         close : true
26920     });
26921 };
26922
26923 Roo.extend(Roo.form.DisplayField, Roo.form.TextField,  {
26924     inputType:      'hidden',
26925     allowBlank:     true,
26926     readOnly:         true,
26927     
26928  
26929     /**
26930      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
26931      */
26932     focusClass : undefined,
26933     /**
26934      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
26935      */
26936     fieldClass: 'x-form-field',
26937     
26938      /**
26939      * @cfg {Function} valueRenderer The renderer for the field (so you can reformat output). should return raw HTML
26940      */
26941     valueRenderer: undefined,
26942     
26943     width: 100,
26944     /**
26945      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
26946      * {tag: "input", type: "checkbox", autocomplete: "off"})
26947      */
26948      
26949  //   defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
26950  
26951     closable : false,
26952     
26953     onResize : function(){
26954         Roo.form.DisplayField.superclass.onResize.apply(this, arguments);
26955         
26956     },
26957
26958     initEvents : function(){
26959         // Roo.form.Checkbox.superclass.initEvents.call(this);
26960         // has no events...
26961         
26962         if(this.closable){
26963             this.closeEl.on('click', this.onClose, this);
26964         }
26965        
26966     },
26967
26968
26969     getResizeEl : function(){
26970         return this.wrap;
26971     },
26972
26973     getPositionEl : function(){
26974         return this.wrap;
26975     },
26976
26977     // private
26978     onRender : function(ct, position){
26979         
26980         Roo.form.DisplayField.superclass.onRender.call(this, ct, position);
26981         //if(this.inputValue !== undefined){
26982         this.wrap = this.el.wrap();
26983         
26984         this.viewEl = this.wrap.createChild({ tag: 'div', cls: 'x-form-displayfield'});
26985         
26986         if(this.closable){
26987             this.closeEl = this.wrap.createChild({ tag: 'div', cls: 'x-dlg-close'});
26988         }
26989         
26990         if (this.bodyStyle) {
26991             this.viewEl.applyStyles(this.bodyStyle);
26992         }
26993         //this.viewEl.setStyle('padding', '2px');
26994         
26995         this.setValue(this.value);
26996         
26997     },
26998 /*
26999     // private
27000     initValue : Roo.emptyFn,
27001
27002   */
27003
27004         // private
27005     onClick : function(){
27006         
27007     },
27008
27009     /**
27010      * Sets the checked state of the checkbox.
27011      * @param {Boolean/String} checked True, 'true', '1', or 'on' to check the checkbox, any other value will uncheck it.
27012      */
27013     setValue : function(v){
27014         this.value = v;
27015         var html = this.valueRenderer ?  this.valueRenderer(v) : String.format('{0}', v);
27016         // this might be called before we have a dom element..
27017         if (!this.viewEl) {
27018             return;
27019         }
27020         this.viewEl.dom.innerHTML = html;
27021         Roo.form.DisplayField.superclass.setValue.call(this, v);
27022
27023     },
27024     
27025     onClose : function(e)
27026     {
27027         e.preventDefault();
27028         
27029         this.fireEvent('close', this);
27030     }
27031 });/*
27032  * 
27033  * Licence- LGPL
27034  * 
27035  */
27036
27037 /**
27038  * @class Roo.form.DayPicker
27039  * @extends Roo.form.Field
27040  * A Day picker show [M] [T] [W] ....
27041  * @constructor
27042  * Creates a new Day Picker
27043  * @param {Object} config Configuration options
27044  */
27045 Roo.form.DayPicker= function(config){
27046     Roo.form.DayPicker.superclass.constructor.call(this, config);
27047      
27048 };
27049
27050 Roo.extend(Roo.form.DayPicker, Roo.form.Field,  {
27051     /**
27052      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
27053      */
27054     focusClass : undefined,
27055     /**
27056      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
27057      */
27058     fieldClass: "x-form-field",
27059    
27060     /**
27061      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
27062      * {tag: "input", type: "checkbox", autocomplete: "off"})
27063      */
27064     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "new-password"},
27065     
27066    
27067     actionMode : 'viewEl', 
27068     //
27069     // private
27070  
27071     inputType : 'hidden',
27072     
27073      
27074     inputElement: false, // real input element?
27075     basedOn: false, // ????
27076     
27077     isFormField: true, // not sure where this is needed!!!!
27078
27079     onResize : function(){
27080         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
27081         if(!this.boxLabel){
27082             this.el.alignTo(this.wrap, 'c-c');
27083         }
27084     },
27085
27086     initEvents : function(){
27087         Roo.form.Checkbox.superclass.initEvents.call(this);
27088         this.el.on("click", this.onClick,  this);
27089         this.el.on("change", this.onClick,  this);
27090     },
27091
27092
27093     getResizeEl : function(){
27094         return this.wrap;
27095     },
27096
27097     getPositionEl : function(){
27098         return this.wrap;
27099     },
27100
27101     
27102     // private
27103     onRender : function(ct, position){
27104         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
27105        
27106         this.wrap = this.el.wrap({cls: 'x-form-daypick-item '});
27107         
27108         var r1 = '<table><tr>';
27109         var r2 = '<tr class="x-form-daypick-icons">';
27110         for (var i=0; i < 7; i++) {
27111             r1+= '<td><div>' + Date.dayNames[i].substring(0,3) + '</div></td>';
27112             r2+= '<td><img class="x-menu-item-icon" src="' + Roo.BLANK_IMAGE_URL  +'"></td>';
27113         }
27114         
27115         var viewEl = this.wrap.createChild( r1 + '</tr>' + r2 + '</tr></table>');
27116         viewEl.select('img').on('click', this.onClick, this);
27117         this.viewEl = viewEl;   
27118         
27119         
27120         // this will not work on Chrome!!!
27121         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
27122         this.el.on('propertychange', this.setFromHidden,  this);  //ie
27123         
27124         
27125           
27126
27127     },
27128
27129     // private
27130     initValue : Roo.emptyFn,
27131
27132     /**
27133      * Returns the checked state of the checkbox.
27134      * @return {Boolean} True if checked, else false
27135      */
27136     getValue : function(){
27137         return this.el.dom.value;
27138         
27139     },
27140
27141         // private
27142     onClick : function(e){ 
27143         //this.setChecked(!this.checked);
27144         Roo.get(e.target).toggleClass('x-menu-item-checked');
27145         this.refreshValue();
27146         //if(this.el.dom.checked != this.checked){
27147         //    this.setValue(this.el.dom.checked);
27148        // }
27149     },
27150     
27151     // private
27152     refreshValue : function()
27153     {
27154         var val = '';
27155         this.viewEl.select('img',true).each(function(e,i,n)  {
27156             val += e.is(".x-menu-item-checked") ? String(n) : '';
27157         });
27158         this.setValue(val, true);
27159     },
27160
27161     /**
27162      * Sets the checked state of the checkbox.
27163      * On is always based on a string comparison between inputValue and the param.
27164      * @param {Boolean/String} value - the value to set 
27165      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
27166      */
27167     setValue : function(v,suppressEvent){
27168         if (!this.el.dom) {
27169             return;
27170         }
27171         var old = this.el.dom.value ;
27172         this.el.dom.value = v;
27173         if (suppressEvent) {
27174             return ;
27175         }
27176          
27177         // update display..
27178         this.viewEl.select('img',true).each(function(e,i,n)  {
27179             
27180             var on = e.is(".x-menu-item-checked");
27181             var newv = v.indexOf(String(n)) > -1;
27182             if (on != newv) {
27183                 e.toggleClass('x-menu-item-checked');
27184             }
27185             
27186         });
27187         
27188         
27189         this.fireEvent('change', this, v, old);
27190         
27191         
27192     },
27193    
27194     // handle setting of hidden value by some other method!!?!?
27195     setFromHidden: function()
27196     {
27197         if(!this.el){
27198             return;
27199         }
27200         //console.log("SET FROM HIDDEN");
27201         //alert('setFrom hidden');
27202         this.setValue(this.el.dom.value);
27203     },
27204     
27205     onDestroy : function()
27206     {
27207         if(this.viewEl){
27208             Roo.get(this.viewEl).remove();
27209         }
27210          
27211         Roo.form.DayPicker.superclass.onDestroy.call(this);
27212     }
27213
27214 });/*
27215  * RooJS Library 1.1.1
27216  * Copyright(c) 2008-2011  Alan Knowles
27217  *
27218  * License - LGPL
27219  */
27220  
27221
27222 /**
27223  * @class Roo.form.ComboCheck
27224  * @extends Roo.form.ComboBox
27225  * A combobox for multiple select items.
27226  *
27227  * FIXME - could do with a reset button..
27228  * 
27229  * @constructor
27230  * Create a new ComboCheck
27231  * @param {Object} config Configuration options
27232  */
27233 Roo.form.ComboCheck = function(config){
27234     Roo.form.ComboCheck.superclass.constructor.call(this, config);
27235     // should verify some data...
27236     // like
27237     // hiddenName = required..
27238     // displayField = required
27239     // valudField == required
27240     var req= [ 'hiddenName', 'displayField', 'valueField' ];
27241     var _t = this;
27242     Roo.each(req, function(e) {
27243         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
27244             throw "Roo.form.ComboCheck : missing value for: " + e;
27245         }
27246     });
27247     
27248     
27249 };
27250
27251 Roo.extend(Roo.form.ComboCheck, Roo.form.ComboBox, {
27252      
27253      
27254     editable : false,
27255      
27256     selectedClass: 'x-menu-item-checked', 
27257     
27258     // private
27259     onRender : function(ct, position){
27260         var _t = this;
27261         
27262         
27263         
27264         if(!this.tpl){
27265             var cls = 'x-combo-list';
27266
27267             
27268             this.tpl =  new Roo.Template({
27269                 html :  '<div class="'+cls+'-item x-menu-check-item">' +
27270                    '<img class="x-menu-item-icon" style="margin: 0px;" src="' + Roo.BLANK_IMAGE_URL + '">' + 
27271                    '<span>{' + this.displayField + '}</span>' +
27272                     '</div>' 
27273                 
27274             });
27275         }
27276  
27277         
27278         Roo.form.ComboCheck.superclass.onRender.call(this, ct, position);
27279         this.view.singleSelect = false;
27280         this.view.multiSelect = true;
27281         this.view.toggleSelect = true;
27282         this.pageTb.add(new Roo.Toolbar.Fill(), {
27283             
27284             text: 'Done',
27285             handler: function()
27286             {
27287                 _t.collapse();
27288             }
27289         });
27290     },
27291     
27292     onViewOver : function(e, t){
27293         // do nothing...
27294         return;
27295         
27296     },
27297     
27298     onViewClick : function(doFocus,index){
27299         return;
27300         
27301     },
27302     select: function () {
27303         //Roo.log("SELECT CALLED");
27304     },
27305      
27306     selectByValue : function(xv, scrollIntoView){
27307         var ar = this.getValueArray();
27308         var sels = [];
27309         
27310         Roo.each(ar, function(v) {
27311             if(v === undefined || v === null){
27312                 return;
27313             }
27314             var r = this.findRecord(this.valueField, v);
27315             if(r){
27316                 sels.push(this.store.indexOf(r))
27317                 
27318             }
27319         },this);
27320         this.view.select(sels);
27321         return false;
27322     },
27323     
27324     
27325     
27326     onSelect : function(record, index){
27327        // Roo.log("onselect Called");
27328        // this is only called by the clear button now..
27329         this.view.clearSelections();
27330         this.setValue('[]');
27331         if (this.value != this.valueBefore) {
27332             this.fireEvent('change', this, this.value, this.valueBefore);
27333             this.valueBefore = this.value;
27334         }
27335     },
27336     getValueArray : function()
27337     {
27338         var ar = [] ;
27339         
27340         try {
27341             //Roo.log(this.value);
27342             if (typeof(this.value) == 'undefined') {
27343                 return [];
27344             }
27345             var ar = Roo.decode(this.value);
27346             return  ar instanceof Array ? ar : []; //?? valid?
27347             
27348         } catch(e) {
27349             Roo.log(e + "\nRoo.form.ComboCheck:getValueArray  invalid data:" + this.getValue());
27350             return [];
27351         }
27352          
27353     },
27354     expand : function ()
27355     {
27356         
27357         Roo.form.ComboCheck.superclass.expand.call(this);
27358         this.valueBefore = typeof(this.value) == 'undefined' ? '' : this.value;
27359         //this.valueBefore = typeof(this.valueBefore) == 'undefined' ? '' : this.valueBefore;
27360         
27361
27362     },
27363     
27364     collapse : function(){
27365         Roo.form.ComboCheck.superclass.collapse.call(this);
27366         var sl = this.view.getSelectedIndexes();
27367         var st = this.store;
27368         var nv = [];
27369         var tv = [];
27370         var r;
27371         Roo.each(sl, function(i) {
27372             r = st.getAt(i);
27373             nv.push(r.get(this.valueField));
27374         },this);
27375         this.setValue(Roo.encode(nv));
27376         if (this.value != this.valueBefore) {
27377
27378             this.fireEvent('change', this, this.value, this.valueBefore);
27379             this.valueBefore = this.value;
27380         }
27381         
27382     },
27383     
27384     setValue : function(v){
27385         // Roo.log(v);
27386         this.value = v;
27387         
27388         var vals = this.getValueArray();
27389         var tv = [];
27390         Roo.each(vals, function(k) {
27391             var r = this.findRecord(this.valueField, k);
27392             if(r){
27393                 tv.push(r.data[this.displayField]);
27394             }else if(this.valueNotFoundText !== undefined){
27395                 tv.push( this.valueNotFoundText );
27396             }
27397         },this);
27398        // Roo.log(tv);
27399         
27400         Roo.form.ComboBox.superclass.setValue.call(this, tv.join(', '));
27401         this.hiddenField.value = v;
27402         this.value = v;
27403     }
27404     
27405 });/*
27406  * Based on:
27407  * Ext JS Library 1.1.1
27408  * Copyright(c) 2006-2007, Ext JS, LLC.
27409  *
27410  * Originally Released Under LGPL - original licence link has changed is not relivant.
27411  *
27412  * Fork - LGPL
27413  * <script type="text/javascript">
27414  */
27415  
27416 /**
27417  * @class Roo.form.Signature
27418  * @extends Roo.form.Field
27419  * Signature field.  
27420  * @constructor
27421  * 
27422  * @param {Object} config Configuration options
27423  */
27424
27425 Roo.form.Signature = function(config){
27426     Roo.form.Signature.superclass.constructor.call(this, config);
27427     
27428     this.addEvents({// not in used??
27429          /**
27430          * @event confirm
27431          * Fires when the 'confirm' icon is pressed (add a listener to enable add button)
27432              * @param {Roo.form.Signature} combo This combo box
27433              */
27434         'confirm' : true,
27435         /**
27436          * @event reset
27437          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
27438              * @param {Roo.form.ComboBox} combo This combo box
27439              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
27440              */
27441         'reset' : true
27442     });
27443 };
27444
27445 Roo.extend(Roo.form.Signature, Roo.form.Field,  {
27446     /**
27447      * @cfg {Object} labels Label to use when rendering a form.
27448      * defaults to 
27449      * labels : { 
27450      *      clear : "Clear",
27451      *      confirm : "Confirm"
27452      *  }
27453      */
27454     labels : { 
27455         clear : "Clear",
27456         confirm : "Confirm"
27457     },
27458     /**
27459      * @cfg {Number} width The signature panel width (defaults to 300)
27460      */
27461     width: 300,
27462     /**
27463      * @cfg {Number} height The signature panel height (defaults to 100)
27464      */
27465     height : 100,
27466     /**
27467      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to false)
27468      */
27469     allowBlank : false,
27470     
27471     //private
27472     // {Object} signPanel The signature SVG panel element (defaults to {})
27473     signPanel : {},
27474     // {Boolean} isMouseDown False to validate that the mouse down event (defaults to false)
27475     isMouseDown : false,
27476     // {Boolean} isConfirmed validate the signature is confirmed or not for submitting form (defaults to false)
27477     isConfirmed : false,
27478     // {String} signatureTmp SVG mapping string (defaults to empty string)
27479     signatureTmp : '',
27480     
27481     
27482     defaultAutoCreate : { // modified by initCompnoent..
27483         tag: "input",
27484         type:"hidden"
27485     },
27486
27487     // private
27488     onRender : function(ct, position){
27489         
27490         Roo.form.Signature.superclass.onRender.call(this, ct, position);
27491         
27492         this.wrap = this.el.wrap({
27493             cls:'x-form-signature-wrap', style : 'width: ' + this.width + 'px', cn:{cls:'x-form-signature'}
27494         });
27495         
27496         this.createToolbar(this);
27497         this.signPanel = this.wrap.createChild({
27498                 tag: 'div',
27499                 style: 'width: ' + this.width + 'px; height: ' + this.height + 'px; border: 0;'
27500             }, this.el
27501         );
27502             
27503         this.svgID = Roo.id();
27504         this.svgEl = this.signPanel.createChild({
27505               xmlns : 'http://www.w3.org/2000/svg',
27506               tag : 'svg',
27507               id : this.svgID + "-svg",
27508               width: this.width,
27509               height: this.height,
27510               viewBox: '0 0 '+this.width+' '+this.height,
27511               cn : [
27512                 {
27513                     tag: "rect",
27514                     id: this.svgID + "-svg-r",
27515                     width: this.width,
27516                     height: this.height,
27517                     fill: "#ffa"
27518                 },
27519                 {
27520                     tag: "line",
27521                     id: this.svgID + "-svg-l",
27522                     x1: "0", // start
27523                     y1: (this.height*0.8), // start set the line in 80% of height
27524                     x2: this.width, // end
27525                     y2: (this.height*0.8), // end set the line in 80% of height
27526                     'stroke': "#666",
27527                     'stroke-width': "1",
27528                     'stroke-dasharray': "3",
27529                     'shape-rendering': "crispEdges",
27530                     'pointer-events': "none"
27531                 },
27532                 {
27533                     tag: "path",
27534                     id: this.svgID + "-svg-p",
27535                     'stroke': "navy",
27536                     'stroke-width': "3",
27537                     'fill': "none",
27538                     'pointer-events': 'none'
27539                 }
27540               ]
27541         });
27542         this.createSVG();
27543         this.svgBox = this.svgEl.dom.getScreenCTM();
27544     },
27545     createSVG : function(){ 
27546         var svg = this.signPanel;
27547         var r = svg.select('#'+ this.svgID + '-svg-r', true).first().dom;
27548         var t = this;
27549
27550         r.addEventListener('mousedown', function(e) { return t.down(e); }, false);
27551         r.addEventListener('mousemove', function(e) { return t.move(e); }, false);
27552         r.addEventListener('mouseup', function(e) { return t.up(e); }, false);
27553         r.addEventListener('mouseout', function(e) { return t.up(e); }, false);
27554         r.addEventListener('touchstart', function(e) { return t.down(e); }, false);
27555         r.addEventListener('touchmove', function(e) { return t.move(e); }, false);
27556         r.addEventListener('touchend', function(e) { return t.up(e); }, false);
27557         
27558     },
27559     isTouchEvent : function(e){
27560         return e.type.match(/^touch/);
27561     },
27562     getCoords : function (e) {
27563         var pt    = this.svgEl.dom.createSVGPoint();
27564         pt.x = e.clientX; 
27565         pt.y = e.clientY;
27566         if (this.isTouchEvent(e)) {
27567             pt.x =  e.targetTouches[0].clientX;
27568             pt.y = e.targetTouches[0].clientY;
27569         }
27570         var a = this.svgEl.dom.getScreenCTM();
27571         var b = a.inverse();
27572         var mx = pt.matrixTransform(b);
27573         return mx.x + ',' + mx.y;
27574     },
27575     //mouse event headler 
27576     down : function (e) {
27577         this.signatureTmp += 'M' + this.getCoords(e) + ' ';
27578         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr('d', this.signatureTmp);
27579         
27580         this.isMouseDown = true;
27581         
27582         e.preventDefault();
27583     },
27584     move : function (e) {
27585         if (this.isMouseDown) {
27586             this.signatureTmp += 'L' + this.getCoords(e) + ' ';
27587             this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', this.signatureTmp);
27588         }
27589         
27590         e.preventDefault();
27591     },
27592     up : function (e) {
27593         this.isMouseDown = false;
27594         var sp = this.signatureTmp.split(' ');
27595         
27596         if(sp.length > 1){
27597             if(!sp[sp.length-2].match(/^L/)){
27598                 sp.pop();
27599                 sp.pop();
27600                 sp.push("");
27601                 this.signatureTmp = sp.join(" ");
27602             }
27603         }
27604         if(this.getValue() != this.signatureTmp){
27605             this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
27606             this.isConfirmed = false;
27607         }
27608         e.preventDefault();
27609     },
27610     
27611     /**
27612      * Protected method that will not generally be called directly. It
27613      * is called when the editor creates its toolbar. Override this method if you need to
27614      * add custom toolbar buttons.
27615      * @param {HtmlEditor} editor
27616      */
27617     createToolbar : function(editor){
27618          function btn(id, toggle, handler){
27619             var xid = fid + '-'+ id ;
27620             return {
27621                 id : xid,
27622                 cmd : id,
27623                 cls : 'x-btn-icon x-edit-'+id,
27624                 enableToggle:toggle !== false,
27625                 scope: editor, // was editor...
27626                 handler:handler||editor.relayBtnCmd,
27627                 clickEvent:'mousedown',
27628                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
27629                 tabIndex:-1
27630             };
27631         }
27632         
27633         
27634         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
27635         this.tb = tb;
27636         this.tb.add(
27637            {
27638                 cls : ' x-signature-btn x-signature-'+id,
27639                 scope: editor, // was editor...
27640                 handler: this.reset,
27641                 clickEvent:'mousedown',
27642                 text: this.labels.clear
27643             },
27644             {
27645                  xtype : 'Fill',
27646                  xns: Roo.Toolbar
27647             }, 
27648             {
27649                 cls : '  x-signature-btn x-signature-'+id,
27650                 scope: editor, // was editor...
27651                 handler: this.confirmHandler,
27652                 clickEvent:'mousedown',
27653                 text: this.labels.confirm
27654             }
27655         );
27656     
27657     },
27658     //public
27659     /**
27660      * when user is clicked confirm then show this image.....
27661      * 
27662      * @return {String} Image Data URI
27663      */
27664     getImageDataURI : function(){
27665         var svg = this.svgEl.dom.parentNode.innerHTML;
27666         var src = 'data:image/svg+xml;base64,'+window.btoa(svg);
27667         return src; 
27668     },
27669     /**
27670      * 
27671      * @return {Boolean} this.isConfirmed
27672      */
27673     getConfirmed : function(){
27674         return this.isConfirmed;
27675     },
27676     /**
27677      * 
27678      * @return {Number} this.width
27679      */
27680     getWidth : function(){
27681         return this.width;
27682     },
27683     /**
27684      * 
27685      * @return {Number} this.height
27686      */
27687     getHeight : function(){
27688         return this.height;
27689     },
27690     // private
27691     getSignature : function(){
27692         return this.signatureTmp;
27693     },
27694     // private
27695     reset : function(){
27696         this.signatureTmp = '';
27697         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
27698         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', '');
27699         this.isConfirmed = false;
27700         Roo.form.Signature.superclass.reset.call(this);
27701     },
27702     setSignature : function(s){
27703         this.signatureTmp = s;
27704         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
27705         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', s);
27706         this.setValue(s);
27707         this.isConfirmed = false;
27708         Roo.form.Signature.superclass.reset.call(this);
27709     }, 
27710     test : function(){
27711 //        Roo.log(this.signPanel.dom.contentWindow.up())
27712     },
27713     //private
27714     setConfirmed : function(){
27715         
27716         
27717         
27718 //        Roo.log(Roo.get(this.signPanel.dom.contentWindow.r).attr('fill', '#cfc'));
27719     },
27720     // private
27721     confirmHandler : function(){
27722         if(!this.getSignature()){
27723             return;
27724         }
27725         
27726         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#cfc');
27727         this.setValue(this.getSignature());
27728         this.isConfirmed = true;
27729         
27730         this.fireEvent('confirm', this);
27731     },
27732     // private
27733     // Subclasses should provide the validation implementation by overriding this
27734     validateValue : function(value){
27735         if(this.allowBlank){
27736             return true;
27737         }
27738         
27739         if(this.isConfirmed){
27740             return true;
27741         }
27742         return false;
27743     }
27744 });/*
27745  * Based on:
27746  * Ext JS Library 1.1.1
27747  * Copyright(c) 2006-2007, Ext JS, LLC.
27748  *
27749  * Originally Released Under LGPL - original licence link has changed is not relivant.
27750  *
27751  * Fork - LGPL
27752  * <script type="text/javascript">
27753  */
27754  
27755
27756 /**
27757  * @class Roo.form.ComboBox
27758  * @extends Roo.form.TriggerField
27759  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
27760  * @constructor
27761  * Create a new ComboBox.
27762  * @param {Object} config Configuration options
27763  */
27764 Roo.form.Select = function(config){
27765     Roo.form.Select.superclass.constructor.call(this, config);
27766      
27767 };
27768
27769 Roo.extend(Roo.form.Select , Roo.form.ComboBox, {
27770     /**
27771      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
27772      */
27773     /**
27774      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
27775      * rendering into an Roo.Editor, defaults to false)
27776      */
27777     /**
27778      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
27779      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
27780      */
27781     /**
27782      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
27783      */
27784     /**
27785      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
27786      * the dropdown list (defaults to undefined, with no header element)
27787      */
27788
27789      /**
27790      * @cfg {String/Roo.Template} tpl The template to use to render the output
27791      */
27792      
27793     // private
27794     defaultAutoCreate : {tag: "select"  },
27795     /**
27796      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
27797      */
27798     listWidth: undefined,
27799     /**
27800      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
27801      * mode = 'remote' or 'text' if mode = 'local')
27802      */
27803     displayField: undefined,
27804     /**
27805      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
27806      * mode = 'remote' or 'value' if mode = 'local'). 
27807      * Note: use of a valueField requires the user make a selection
27808      * in order for a value to be mapped.
27809      */
27810     valueField: undefined,
27811     
27812     
27813     /**
27814      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
27815      * field's data value (defaults to the underlying DOM element's name)
27816      */
27817     hiddenName: undefined,
27818     /**
27819      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
27820      */
27821     listClass: '',
27822     /**
27823      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
27824      */
27825     selectedClass: 'x-combo-selected',
27826     /**
27827      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
27828      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
27829      * which displays a downward arrow icon).
27830      */
27831     triggerClass : 'x-form-arrow-trigger',
27832     /**
27833      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
27834      */
27835     shadow:'sides',
27836     /**
27837      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
27838      * anchor positions (defaults to 'tl-bl')
27839      */
27840     listAlign: 'tl-bl?',
27841     /**
27842      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
27843      */
27844     maxHeight: 300,
27845     /**
27846      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
27847      * query specified by the allQuery config option (defaults to 'query')
27848      */
27849     triggerAction: 'query',
27850     /**
27851      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
27852      * (defaults to 4, does not apply if editable = false)
27853      */
27854     minChars : 4,
27855     /**
27856      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
27857      * delay (typeAheadDelay) if it matches a known value (defaults to false)
27858      */
27859     typeAhead: false,
27860     /**
27861      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
27862      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
27863      */
27864     queryDelay: 500,
27865     /**
27866      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
27867      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
27868      */
27869     pageSize: 0,
27870     /**
27871      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
27872      * when editable = true (defaults to false)
27873      */
27874     selectOnFocus:false,
27875     /**
27876      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
27877      */
27878     queryParam: 'query',
27879     /**
27880      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
27881      * when mode = 'remote' (defaults to 'Loading...')
27882      */
27883     loadingText: 'Loading...',
27884     /**
27885      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
27886      */
27887     resizable: false,
27888     /**
27889      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
27890      */
27891     handleHeight : 8,
27892     /**
27893      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
27894      * traditional select (defaults to true)
27895      */
27896     editable: true,
27897     /**
27898      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
27899      */
27900     allQuery: '',
27901     /**
27902      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
27903      */
27904     mode: 'remote',
27905     /**
27906      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
27907      * listWidth has a higher value)
27908      */
27909     minListWidth : 70,
27910     /**
27911      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
27912      * allow the user to set arbitrary text into the field (defaults to false)
27913      */
27914     forceSelection:false,
27915     /**
27916      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
27917      * if typeAhead = true (defaults to 250)
27918      */
27919     typeAheadDelay : 250,
27920     /**
27921      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
27922      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
27923      */
27924     valueNotFoundText : undefined,
27925     
27926     /**
27927      * @cfg {String} defaultValue The value displayed after loading the store.
27928      */
27929     defaultValue: '',
27930     
27931     /**
27932      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
27933      */
27934     blockFocus : false,
27935     
27936     /**
27937      * @cfg {Boolean} disableClear Disable showing of clear button.
27938      */
27939     disableClear : false,
27940     /**
27941      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
27942      */
27943     alwaysQuery : false,
27944     
27945     //private
27946     addicon : false,
27947     editicon: false,
27948     
27949     // element that contains real text value.. (when hidden is used..)
27950      
27951     // private
27952     onRender : function(ct, position){
27953         Roo.form.Field.prototype.onRender.call(this, ct, position);
27954         
27955         if(this.store){
27956             this.store.on('beforeload', this.onBeforeLoad, this);
27957             this.store.on('load', this.onLoad, this);
27958             this.store.on('loadexception', this.onLoadException, this);
27959             this.store.load({});
27960         }
27961         
27962         
27963         
27964     },
27965
27966     // private
27967     initEvents : function(){
27968         //Roo.form.ComboBox.superclass.initEvents.call(this);
27969  
27970     },
27971
27972     onDestroy : function(){
27973        
27974         if(this.store){
27975             this.store.un('beforeload', this.onBeforeLoad, this);
27976             this.store.un('load', this.onLoad, this);
27977             this.store.un('loadexception', this.onLoadException, this);
27978         }
27979         //Roo.form.ComboBox.superclass.onDestroy.call(this);
27980     },
27981
27982     // private
27983     fireKey : function(e){
27984         if(e.isNavKeyPress() && !this.list.isVisible()){
27985             this.fireEvent("specialkey", this, e);
27986         }
27987     },
27988
27989     // private
27990     onResize: function(w, h){
27991         
27992         return; 
27993     
27994         
27995     },
27996
27997     /**
27998      * Allow or prevent the user from directly editing the field text.  If false is passed,
27999      * the user will only be able to select from the items defined in the dropdown list.  This method
28000      * is the runtime equivalent of setting the 'editable' config option at config time.
28001      * @param {Boolean} value True to allow the user to directly edit the field text
28002      */
28003     setEditable : function(value){
28004          
28005     },
28006
28007     // private
28008     onBeforeLoad : function(){
28009         
28010         Roo.log("Select before load");
28011         return;
28012     
28013         this.innerList.update(this.loadingText ?
28014                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
28015         //this.restrictHeight();
28016         this.selectedIndex = -1;
28017     },
28018
28019     // private
28020     onLoad : function(){
28021
28022     
28023         var dom = this.el.dom;
28024         dom.innerHTML = '';
28025          var od = dom.ownerDocument;
28026          
28027         if (this.emptyText) {
28028             var op = od.createElement('option');
28029             op.setAttribute('value', '');
28030             op.innerHTML = String.format('{0}', this.emptyText);
28031             dom.appendChild(op);
28032         }
28033         if(this.store.getCount() > 0){
28034            
28035             var vf = this.valueField;
28036             var df = this.displayField;
28037             this.store.data.each(function(r) {
28038                 // which colmsn to use... testing - cdoe / title..
28039                 var op = od.createElement('option');
28040                 op.setAttribute('value', r.data[vf]);
28041                 op.innerHTML = String.format('{0}', r.data[df]);
28042                 dom.appendChild(op);
28043             });
28044             if (typeof(this.defaultValue != 'undefined')) {
28045                 this.setValue(this.defaultValue);
28046             }
28047             
28048              
28049         }else{
28050             //this.onEmptyResults();
28051         }
28052         //this.el.focus();
28053     },
28054     // private
28055     onLoadException : function()
28056     {
28057         dom.innerHTML = '';
28058             
28059         Roo.log("Select on load exception");
28060         return;
28061     
28062         this.collapse();
28063         Roo.log(this.store.reader.jsonData);
28064         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
28065             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
28066         }
28067         
28068         
28069     },
28070     // private
28071     onTypeAhead : function(){
28072          
28073     },
28074
28075     // private
28076     onSelect : function(record, index){
28077         Roo.log('on select?');
28078         return;
28079         if(this.fireEvent('beforeselect', this, record, index) !== false){
28080             this.setFromData(index > -1 ? record.data : false);
28081             this.collapse();
28082             this.fireEvent('select', this, record, index);
28083         }
28084     },
28085
28086     /**
28087      * Returns the currently selected field value or empty string if no value is set.
28088      * @return {String} value The selected value
28089      */
28090     getValue : function(){
28091         var dom = this.el.dom;
28092         this.value = dom.options[dom.selectedIndex].value;
28093         return this.value;
28094         
28095     },
28096
28097     /**
28098      * Clears any text/value currently set in the field
28099      */
28100     clearValue : function(){
28101         this.value = '';
28102         this.el.dom.selectedIndex = this.emptyText ? 0 : -1;
28103         
28104     },
28105
28106     /**
28107      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
28108      * will be displayed in the field.  If the value does not match the data value of an existing item,
28109      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
28110      * Otherwise the field will be blank (although the value will still be set).
28111      * @param {String} value The value to match
28112      */
28113     setValue : function(v){
28114         var d = this.el.dom;
28115         for (var i =0; i < d.options.length;i++) {
28116             if (v == d.options[i].value) {
28117                 d.selectedIndex = i;
28118                 this.value = v;
28119                 return;
28120             }
28121         }
28122         this.clearValue();
28123     },
28124     /**
28125      * @property {Object} the last set data for the element
28126      */
28127     
28128     lastData : false,
28129     /**
28130      * Sets the value of the field based on a object which is related to the record format for the store.
28131      * @param {Object} value the value to set as. or false on reset?
28132      */
28133     setFromData : function(o){
28134         Roo.log('setfrom data?');
28135          
28136         
28137         
28138     },
28139     // private
28140     reset : function(){
28141         this.clearValue();
28142     },
28143     // private
28144     findRecord : function(prop, value){
28145         
28146         return false;
28147     
28148         var record;
28149         if(this.store.getCount() > 0){
28150             this.store.each(function(r){
28151                 if(r.data[prop] == value){
28152                     record = r;
28153                     return false;
28154                 }
28155                 return true;
28156             });
28157         }
28158         return record;
28159     },
28160     
28161     getName: function()
28162     {
28163         // returns hidden if it's set..
28164         if (!this.rendered) {return ''};
28165         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
28166         
28167     },
28168      
28169
28170     
28171
28172     // private
28173     onEmptyResults : function(){
28174         Roo.log('empty results');
28175         //this.collapse();
28176     },
28177
28178     /**
28179      * Returns true if the dropdown list is expanded, else false.
28180      */
28181     isExpanded : function(){
28182         return false;
28183     },
28184
28185     /**
28186      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
28187      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
28188      * @param {String} value The data value of the item to select
28189      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
28190      * selected item if it is not currently in view (defaults to true)
28191      * @return {Boolean} True if the value matched an item in the list, else false
28192      */
28193     selectByValue : function(v, scrollIntoView){
28194         Roo.log('select By Value');
28195         return false;
28196     
28197         if(v !== undefined && v !== null){
28198             var r = this.findRecord(this.valueField || this.displayField, v);
28199             if(r){
28200                 this.select(this.store.indexOf(r), scrollIntoView);
28201                 return true;
28202             }
28203         }
28204         return false;
28205     },
28206
28207     /**
28208      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
28209      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
28210      * @param {Number} index The zero-based index of the list item to select
28211      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
28212      * selected item if it is not currently in view (defaults to true)
28213      */
28214     select : function(index, scrollIntoView){
28215         Roo.log('select ');
28216         return  ;
28217         
28218         this.selectedIndex = index;
28219         this.view.select(index);
28220         if(scrollIntoView !== false){
28221             var el = this.view.getNode(index);
28222             if(el){
28223                 this.innerList.scrollChildIntoView(el, false);
28224             }
28225         }
28226     },
28227
28228       
28229
28230     // private
28231     validateBlur : function(){
28232         
28233         return;
28234         
28235     },
28236
28237     // private
28238     initQuery : function(){
28239         this.doQuery(this.getRawValue());
28240     },
28241
28242     // private
28243     doForce : function(){
28244         if(this.el.dom.value.length > 0){
28245             this.el.dom.value =
28246                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
28247              
28248         }
28249     },
28250
28251     /**
28252      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
28253      * query allowing the query action to be canceled if needed.
28254      * @param {String} query The SQL query to execute
28255      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
28256      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
28257      * saved in the current store (defaults to false)
28258      */
28259     doQuery : function(q, forceAll){
28260         
28261         Roo.log('doQuery?');
28262         if(q === undefined || q === null){
28263             q = '';
28264         }
28265         var qe = {
28266             query: q,
28267             forceAll: forceAll,
28268             combo: this,
28269             cancel:false
28270         };
28271         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
28272             return false;
28273         }
28274         q = qe.query;
28275         forceAll = qe.forceAll;
28276         if(forceAll === true || (q.length >= this.minChars)){
28277             if(this.lastQuery != q || this.alwaysQuery){
28278                 this.lastQuery = q;
28279                 if(this.mode == 'local'){
28280                     this.selectedIndex = -1;
28281                     if(forceAll){
28282                         this.store.clearFilter();
28283                     }else{
28284                         this.store.filter(this.displayField, q);
28285                     }
28286                     this.onLoad();
28287                 }else{
28288                     this.store.baseParams[this.queryParam] = q;
28289                     this.store.load({
28290                         params: this.getParams(q)
28291                     });
28292                     this.expand();
28293                 }
28294             }else{
28295                 this.selectedIndex = -1;
28296                 this.onLoad();   
28297             }
28298         }
28299     },
28300
28301     // private
28302     getParams : function(q){
28303         var p = {};
28304         //p[this.queryParam] = q;
28305         if(this.pageSize){
28306             p.start = 0;
28307             p.limit = this.pageSize;
28308         }
28309         return p;
28310     },
28311
28312     /**
28313      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
28314      */
28315     collapse : function(){
28316         
28317     },
28318
28319     // private
28320     collapseIf : function(e){
28321         
28322     },
28323
28324     /**
28325      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
28326      */
28327     expand : function(){
28328         
28329     } ,
28330
28331     // private
28332      
28333
28334     /** 
28335     * @cfg {Boolean} grow 
28336     * @hide 
28337     */
28338     /** 
28339     * @cfg {Number} growMin 
28340     * @hide 
28341     */
28342     /** 
28343     * @cfg {Number} growMax 
28344     * @hide 
28345     */
28346     /**
28347      * @hide
28348      * @method autoSize
28349      */
28350     
28351     setWidth : function()
28352     {
28353         
28354     },
28355     getResizeEl : function(){
28356         return this.el;
28357     }
28358 });//<script type="text/javasscript">
28359  
28360
28361 /**
28362  * @class Roo.DDView
28363  * A DnD enabled version of Roo.View.
28364  * @param {Element/String} container The Element in which to create the View.
28365  * @param {String} tpl The template string used to create the markup for each element of the View
28366  * @param {Object} config The configuration properties. These include all the config options of
28367  * {@link Roo.View} plus some specific to this class.<br>
28368  * <p>
28369  * Drag/drop is implemented by adding {@link Roo.data.Record}s to the target DDView. If copying is
28370  * not being performed, the original {@link Roo.data.Record} is removed from the source DDView.<br>
28371  * <p>
28372  * The following extra CSS rules are needed to provide insertion point highlighting:<pre><code>
28373 .x-view-drag-insert-above {
28374         border-top:1px dotted #3366cc;
28375 }
28376 .x-view-drag-insert-below {
28377         border-bottom:1px dotted #3366cc;
28378 }
28379 </code></pre>
28380  * 
28381  */
28382  
28383 Roo.DDView = function(container, tpl, config) {
28384     Roo.DDView.superclass.constructor.apply(this, arguments);
28385     this.getEl().setStyle("outline", "0px none");
28386     this.getEl().unselectable();
28387     if (this.dragGroup) {
28388                 this.setDraggable(this.dragGroup.split(","));
28389     }
28390     if (this.dropGroup) {
28391                 this.setDroppable(this.dropGroup.split(","));
28392     }
28393     if (this.deletable) {
28394         this.setDeletable();
28395     }
28396     this.isDirtyFlag = false;
28397         this.addEvents({
28398                 "drop" : true
28399         });
28400 };
28401
28402 Roo.extend(Roo.DDView, Roo.View, {
28403 /**     @cfg {String/Array} dragGroup The ddgroup name(s) for the View's DragZone. */
28404 /**     @cfg {String/Array} dropGroup The ddgroup name(s) for the View's DropZone. */
28405 /**     @cfg {Boolean} copy Causes drag operations to copy nodes rather than move. */
28406 /**     @cfg {Boolean} allowCopy Causes ctrl/drag operations to copy nodes rather than move. */
28407
28408         isFormField: true,
28409
28410         reset: Roo.emptyFn,
28411         
28412         clearInvalid: Roo.form.Field.prototype.clearInvalid,
28413
28414         validate: function() {
28415                 return true;
28416         },
28417         
28418         destroy: function() {
28419                 this.purgeListeners();
28420                 this.getEl.removeAllListeners();
28421                 this.getEl().remove();
28422                 if (this.dragZone) {
28423                         if (this.dragZone.destroy) {
28424                                 this.dragZone.destroy();
28425                         }
28426                 }
28427                 if (this.dropZone) {
28428                         if (this.dropZone.destroy) {
28429                                 this.dropZone.destroy();
28430                         }
28431                 }
28432         },
28433
28434 /**     Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}. */
28435         getName: function() {
28436                 return this.name;
28437         },
28438
28439 /**     Loads the View from a JSON string representing the Records to put into the Store. */
28440         setValue: function(v) {
28441                 if (!this.store) {
28442                         throw "DDView.setValue(). DDView must be constructed with a valid Store";
28443                 }
28444                 var data = {};
28445                 data[this.store.reader.meta.root] = v ? [].concat(v) : [];
28446                 this.store.proxy = new Roo.data.MemoryProxy(data);
28447                 this.store.load();
28448         },
28449
28450 /**     @return {String} a parenthesised list of the ids of the Records in the View. */
28451         getValue: function() {
28452                 var result = '(';
28453                 this.store.each(function(rec) {
28454                         result += rec.id + ',';
28455                 });
28456                 return result.substr(0, result.length - 1) + ')';
28457         },
28458         
28459         getIds: function() {
28460                 var i = 0, result = new Array(this.store.getCount());
28461                 this.store.each(function(rec) {
28462                         result[i++] = rec.id;
28463                 });
28464                 return result;
28465         },
28466         
28467         isDirty: function() {
28468                 return this.isDirtyFlag;
28469         },
28470
28471 /**
28472  *      Part of the Roo.dd.DropZone interface. If no target node is found, the
28473  *      whole Element becomes the target, and this causes the drop gesture to append.
28474  */
28475     getTargetFromEvent : function(e) {
28476                 var target = e.getTarget();
28477                 while ((target !== null) && (target.parentNode != this.el.dom)) {
28478                 target = target.parentNode;
28479                 }
28480                 if (!target) {
28481                         target = this.el.dom.lastChild || this.el.dom;
28482                 }
28483                 return target;
28484     },
28485
28486 /**
28487  *      Create the drag data which consists of an object which has the property "ddel" as
28488  *      the drag proxy element. 
28489  */
28490     getDragData : function(e) {
28491         var target = this.findItemFromChild(e.getTarget());
28492                 if(target) {
28493                         this.handleSelection(e);
28494                         var selNodes = this.getSelectedNodes();
28495             var dragData = {
28496                 source: this,
28497                 copy: this.copy || (this.allowCopy && e.ctrlKey),
28498                 nodes: selNodes,
28499                 records: []
28500                         };
28501                         var selectedIndices = this.getSelectedIndexes();
28502                         for (var i = 0; i < selectedIndices.length; i++) {
28503                                 dragData.records.push(this.store.getAt(selectedIndices[i]));
28504                         }
28505                         if (selNodes.length == 1) {
28506                                 dragData.ddel = target.cloneNode(true); // the div element
28507                         } else {
28508                                 var div = document.createElement('div'); // create the multi element drag "ghost"
28509                                 div.className = 'multi-proxy';
28510                                 for (var i = 0, len = selNodes.length; i < len; i++) {
28511                                         div.appendChild(selNodes[i].cloneNode(true));
28512                                 }
28513                                 dragData.ddel = div;
28514                         }
28515             //console.log(dragData)
28516             //console.log(dragData.ddel.innerHTML)
28517                         return dragData;
28518                 }
28519         //console.log('nodragData')
28520                 return false;
28521     },
28522     
28523 /**     Specify to which ddGroup items in this DDView may be dragged. */
28524     setDraggable: function(ddGroup) {
28525         if (ddGroup instanceof Array) {
28526                 Roo.each(ddGroup, this.setDraggable, this);
28527                 return;
28528         }
28529         if (this.dragZone) {
28530                 this.dragZone.addToGroup(ddGroup);
28531         } else {
28532                         this.dragZone = new Roo.dd.DragZone(this.getEl(), {
28533                                 containerScroll: true,
28534                                 ddGroup: ddGroup 
28535
28536                         });
28537 //                      Draggability implies selection. DragZone's mousedown selects the element.
28538                         if (!this.multiSelect) { this.singleSelect = true; }
28539
28540 //                      Wire the DragZone's handlers up to methods in *this*
28541                         this.dragZone.getDragData = this.getDragData.createDelegate(this);
28542                 }
28543     },
28544
28545 /**     Specify from which ddGroup this DDView accepts drops. */
28546     setDroppable: function(ddGroup) {
28547         if (ddGroup instanceof Array) {
28548                 Roo.each(ddGroup, this.setDroppable, this);
28549                 return;
28550         }
28551         if (this.dropZone) {
28552                 this.dropZone.addToGroup(ddGroup);
28553         } else {
28554                         this.dropZone = new Roo.dd.DropZone(this.getEl(), {
28555                                 containerScroll: true,
28556                                 ddGroup: ddGroup
28557                         });
28558
28559 //                      Wire the DropZone's handlers up to methods in *this*
28560                         this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
28561                         this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
28562                         this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
28563                         this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
28564                         this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
28565                 }
28566     },
28567
28568 /**     Decide whether to drop above or below a View node. */
28569     getDropPoint : function(e, n, dd){
28570         if (n == this.el.dom) { return "above"; }
28571                 var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
28572                 var c = t + (b - t) / 2;
28573                 var y = Roo.lib.Event.getPageY(e);
28574                 if(y <= c) {
28575                         return "above";
28576                 }else{
28577                         return "below";
28578                 }
28579     },
28580
28581     onNodeEnter : function(n, dd, e, data){
28582                 return false;
28583     },
28584     
28585     onNodeOver : function(n, dd, e, data){
28586                 var pt = this.getDropPoint(e, n, dd);
28587                 // set the insert point style on the target node
28588                 var dragElClass = this.dropNotAllowed;
28589                 if (pt) {
28590                         var targetElClass;
28591                         if (pt == "above"){
28592                                 dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
28593                                 targetElClass = "x-view-drag-insert-above";
28594                         } else {
28595                                 dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
28596                                 targetElClass = "x-view-drag-insert-below";
28597                         }
28598                         if (this.lastInsertClass != targetElClass){
28599                                 Roo.fly(n).replaceClass(this.lastInsertClass, targetElClass);
28600                                 this.lastInsertClass = targetElClass;
28601                         }
28602                 }
28603                 return dragElClass;
28604         },
28605
28606     onNodeOut : function(n, dd, e, data){
28607                 this.removeDropIndicators(n);
28608     },
28609
28610     onNodeDrop : function(n, dd, e, data){
28611         if (this.fireEvent("drop", this, n, dd, e, data) === false) {
28612                 return false;
28613         }
28614         var pt = this.getDropPoint(e, n, dd);
28615                 var insertAt = (n == this.el.dom) ? this.nodes.length : n.nodeIndex;
28616                 if (pt == "below") { insertAt++; }
28617                 for (var i = 0; i < data.records.length; i++) {
28618                         var r = data.records[i];
28619                         var dup = this.store.getById(r.id);
28620                         if (dup && (dd != this.dragZone)) {
28621                                 Roo.fly(this.getNode(this.store.indexOf(dup))).frame("red", 1);
28622                         } else {
28623                                 if (data.copy) {
28624                                         this.store.insert(insertAt++, r.copy());
28625                                 } else {
28626                                         data.source.isDirtyFlag = true;
28627                                         r.store.remove(r);
28628                                         this.store.insert(insertAt++, r);
28629                                 }
28630                                 this.isDirtyFlag = true;
28631                         }
28632                 }
28633                 this.dragZone.cachedTarget = null;
28634                 return true;
28635     },
28636
28637     removeDropIndicators : function(n){
28638                 if(n){
28639                         Roo.fly(n).removeClass([
28640                                 "x-view-drag-insert-above",
28641                                 "x-view-drag-insert-below"]);
28642                         this.lastInsertClass = "_noclass";
28643                 }
28644     },
28645
28646 /**
28647  *      Utility method. Add a delete option to the DDView's context menu.
28648  *      @param {String} imageUrl The URL of the "delete" icon image.
28649  */
28650         setDeletable: function(imageUrl) {
28651                 if (!this.singleSelect && !this.multiSelect) {
28652                         this.singleSelect = true;
28653                 }
28654                 var c = this.getContextMenu();
28655                 this.contextMenu.on("itemclick", function(item) {
28656                         switch (item.id) {
28657                                 case "delete":
28658                                         this.remove(this.getSelectedIndexes());
28659                                         break;
28660                         }
28661                 }, this);
28662                 this.contextMenu.add({
28663                         icon: imageUrl,
28664                         id: "delete",
28665                         text: 'Delete'
28666                 });
28667         },
28668         
28669 /**     Return the context menu for this DDView. */
28670         getContextMenu: function() {
28671                 if (!this.contextMenu) {
28672 //                      Create the View's context menu
28673                         this.contextMenu = new Roo.menu.Menu({
28674                                 id: this.id + "-contextmenu"
28675                         });
28676                         this.el.on("contextmenu", this.showContextMenu, this);
28677                 }
28678                 return this.contextMenu;
28679         },
28680         
28681         disableContextMenu: function() {
28682                 if (this.contextMenu) {
28683                         this.el.un("contextmenu", this.showContextMenu, this);
28684                 }
28685         },
28686
28687         showContextMenu: function(e, item) {
28688         item = this.findItemFromChild(e.getTarget());
28689                 if (item) {
28690                         e.stopEvent();
28691                         this.select(this.getNode(item), this.multiSelect && e.ctrlKey, true);
28692                         this.contextMenu.showAt(e.getXY());
28693             }
28694     },
28695
28696 /**
28697  *      Remove {@link Roo.data.Record}s at the specified indices.
28698  *      @param {Array/Number} selectedIndices The index (or Array of indices) of Records to remove.
28699  */
28700     remove: function(selectedIndices) {
28701                 selectedIndices = [].concat(selectedIndices);
28702                 for (var i = 0; i < selectedIndices.length; i++) {
28703                         var rec = this.store.getAt(selectedIndices[i]);
28704                         this.store.remove(rec);
28705                 }
28706     },
28707
28708 /**
28709  *      Double click fires the event, but also, if this is draggable, and there is only one other
28710  *      related DropZone, it transfers the selected node.
28711  */
28712     onDblClick : function(e){
28713         var item = this.findItemFromChild(e.getTarget());
28714         if(item){
28715             if (this.fireEvent("dblclick", this, this.indexOf(item), item, e) === false) {
28716                 return false;
28717             }
28718             if (this.dragGroup) {
28719                     var targets = Roo.dd.DragDropMgr.getRelated(this.dragZone, true);
28720                     while (targets.indexOf(this.dropZone) > -1) {
28721                             targets.remove(this.dropZone);
28722                                 }
28723                     if (targets.length == 1) {
28724                                         this.dragZone.cachedTarget = null;
28725                         var el = Roo.get(targets[0].getEl());
28726                         var box = el.getBox(true);
28727                         targets[0].onNodeDrop(el.dom, {
28728                                 target: el.dom,
28729                                 xy: [box.x, box.y + box.height - 1]
28730                         }, null, this.getDragData(e));
28731                     }
28732                 }
28733         }
28734     },
28735     
28736     handleSelection: function(e) {
28737                 this.dragZone.cachedTarget = null;
28738         var item = this.findItemFromChild(e.getTarget());
28739         if (!item) {
28740                 this.clearSelections(true);
28741                 return;
28742         }
28743                 if (item && (this.multiSelect || this.singleSelect)){
28744                         if(this.multiSelect && e.shiftKey && (!e.ctrlKey) && this.lastSelection){
28745                                 this.select(this.getNodes(this.indexOf(this.lastSelection), item.nodeIndex), false);
28746                         }else if (this.isSelected(this.getNode(item)) && e.ctrlKey){
28747                                 this.unselect(item);
28748                         } else {
28749                                 this.select(item, this.multiSelect && e.ctrlKey);
28750                                 this.lastSelection = item;
28751                         }
28752                 }
28753     },
28754
28755     onItemClick : function(item, index, e){
28756                 if(this.fireEvent("beforeclick", this, index, item, e) === false){
28757                         return false;
28758                 }
28759                 return true;
28760     },
28761
28762     unselect : function(nodeInfo, suppressEvent){
28763                 var node = this.getNode(nodeInfo);
28764                 if(node && this.isSelected(node)){
28765                         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
28766                                 Roo.fly(node).removeClass(this.selectedClass);
28767                                 this.selections.remove(node);
28768                                 if(!suppressEvent){
28769                                         this.fireEvent("selectionchange", this, this.selections);
28770                                 }
28771                         }
28772                 }
28773     }
28774 });
28775 /*
28776  * Based on:
28777  * Ext JS Library 1.1.1
28778  * Copyright(c) 2006-2007, Ext JS, LLC.
28779  *
28780  * Originally Released Under LGPL - original licence link has changed is not relivant.
28781  *
28782  * Fork - LGPL
28783  * <script type="text/javascript">
28784  */
28785  
28786 /**
28787  * @class Roo.LayoutManager
28788  * @extends Roo.util.Observable
28789  * Base class for layout managers.
28790  */
28791 Roo.LayoutManager = function(container, config){
28792     Roo.LayoutManager.superclass.constructor.call(this);
28793     this.el = Roo.get(container);
28794     // ie scrollbar fix
28795     if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
28796         document.body.scroll = "no";
28797     }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
28798         this.el.position('relative');
28799     }
28800     this.id = this.el.id;
28801     this.el.addClass("x-layout-container");
28802     /** false to disable window resize monitoring @type Boolean */
28803     this.monitorWindowResize = true;
28804     this.regions = {};
28805     this.addEvents({
28806         /**
28807          * @event layout
28808          * Fires when a layout is performed. 
28809          * @param {Roo.LayoutManager} this
28810          */
28811         "layout" : true,
28812         /**
28813          * @event regionresized
28814          * Fires when the user resizes a region. 
28815          * @param {Roo.LayoutRegion} region The resized region
28816          * @param {Number} newSize The new size (width for east/west, height for north/south)
28817          */
28818         "regionresized" : true,
28819         /**
28820          * @event regioncollapsed
28821          * Fires when a region is collapsed. 
28822          * @param {Roo.LayoutRegion} region The collapsed region
28823          */
28824         "regioncollapsed" : true,
28825         /**
28826          * @event regionexpanded
28827          * Fires when a region is expanded.  
28828          * @param {Roo.LayoutRegion} region The expanded region
28829          */
28830         "regionexpanded" : true
28831     });
28832     this.updating = false;
28833     Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
28834 };
28835
28836 Roo.extend(Roo.LayoutManager, Roo.util.Observable, {
28837     /**
28838      * Returns true if this layout is currently being updated
28839      * @return {Boolean}
28840      */
28841     isUpdating : function(){
28842         return this.updating; 
28843     },
28844     
28845     /**
28846      * Suspend the LayoutManager from doing auto-layouts while
28847      * making multiple add or remove calls
28848      */
28849     beginUpdate : function(){
28850         this.updating = true;    
28851     },
28852     
28853     /**
28854      * Restore auto-layouts and optionally disable the manager from performing a layout
28855      * @param {Boolean} noLayout true to disable a layout update 
28856      */
28857     endUpdate : function(noLayout){
28858         this.updating = false;
28859         if(!noLayout){
28860             this.layout();
28861         }    
28862     },
28863     
28864     layout: function(){
28865         
28866     },
28867     
28868     onRegionResized : function(region, newSize){
28869         this.fireEvent("regionresized", region, newSize);
28870         this.layout();
28871     },
28872     
28873     onRegionCollapsed : function(region){
28874         this.fireEvent("regioncollapsed", region);
28875     },
28876     
28877     onRegionExpanded : function(region){
28878         this.fireEvent("regionexpanded", region);
28879     },
28880         
28881     /**
28882      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
28883      * performs box-model adjustments.
28884      * @return {Object} The size as an object {width: (the width), height: (the height)}
28885      */
28886     getViewSize : function(){
28887         var size;
28888         if(this.el.dom != document.body){
28889             size = this.el.getSize();
28890         }else{
28891             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
28892         }
28893         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
28894         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
28895         return size;
28896     },
28897     
28898     /**
28899      * Returns the Element this layout is bound to.
28900      * @return {Roo.Element}
28901      */
28902     getEl : function(){
28903         return this.el;
28904     },
28905     
28906     /**
28907      * Returns the specified region.
28908      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
28909      * @return {Roo.LayoutRegion}
28910      */
28911     getRegion : function(target){
28912         return this.regions[target.toLowerCase()];
28913     },
28914     
28915     onWindowResize : function(){
28916         if(this.monitorWindowResize){
28917             this.layout();
28918         }
28919     }
28920 });/*
28921  * Based on:
28922  * Ext JS Library 1.1.1
28923  * Copyright(c) 2006-2007, Ext JS, LLC.
28924  *
28925  * Originally Released Under LGPL - original licence link has changed is not relivant.
28926  *
28927  * Fork - LGPL
28928  * <script type="text/javascript">
28929  */
28930 /**
28931  * @class Roo.BorderLayout
28932  * @extends Roo.LayoutManager
28933  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
28934  * please see: <br><br>
28935  * <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>
28936  * <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>
28937  * Example:
28938  <pre><code>
28939  var layout = new Roo.BorderLayout(document.body, {
28940     north: {
28941         initialSize: 25,
28942         titlebar: false
28943     },
28944     west: {
28945         split:true,
28946         initialSize: 200,
28947         minSize: 175,
28948         maxSize: 400,
28949         titlebar: true,
28950         collapsible: true
28951     },
28952     east: {
28953         split:true,
28954         initialSize: 202,
28955         minSize: 175,
28956         maxSize: 400,
28957         titlebar: true,
28958         collapsible: true
28959     },
28960     south: {
28961         split:true,
28962         initialSize: 100,
28963         minSize: 100,
28964         maxSize: 200,
28965         titlebar: true,
28966         collapsible: true
28967     },
28968     center: {
28969         titlebar: true,
28970         autoScroll:true,
28971         resizeTabs: true,
28972         minTabWidth: 50,
28973         preferredTabWidth: 150
28974     }
28975 });
28976
28977 // shorthand
28978 var CP = Roo.ContentPanel;
28979
28980 layout.beginUpdate();
28981 layout.add("north", new CP("north", "North"));
28982 layout.add("south", new CP("south", {title: "South", closable: true}));
28983 layout.add("west", new CP("west", {title: "West"}));
28984 layout.add("east", new CP("autoTabs", {title: "Auto Tabs", closable: true}));
28985 layout.add("center", new CP("center1", {title: "Close Me", closable: true}));
28986 layout.add("center", new CP("center2", {title: "Center Panel", closable: false}));
28987 layout.getRegion("center").showPanel("center1");
28988 layout.endUpdate();
28989 </code></pre>
28990
28991 <b>The container the layout is rendered into can be either the body element or any other element.
28992 If it is not the body element, the container needs to either be an absolute positioned element,
28993 or you will need to add "position:relative" to the css of the container.  You will also need to specify
28994 the container size if it is not the body element.</b>
28995
28996 * @constructor
28997 * Create a new BorderLayout
28998 * @param {String/HTMLElement/Element} container The container this layout is bound to
28999 * @param {Object} config Configuration options
29000  */
29001 Roo.BorderLayout = function(container, config){
29002     config = config || {};
29003     Roo.BorderLayout.superclass.constructor.call(this, container, config);
29004     this.factory = config.factory || Roo.BorderLayout.RegionFactory;
29005     for(var i = 0, len = this.factory.validRegions.length; i < len; i++) {
29006         var target = this.factory.validRegions[i];
29007         if(config[target]){
29008             this.addRegion(target, config[target]);
29009         }
29010     }
29011 };
29012
29013 Roo.extend(Roo.BorderLayout, Roo.LayoutManager, {
29014     /**
29015      * Creates and adds a new region if it doesn't already exist.
29016      * @param {String} target The target region key (north, south, east, west or center).
29017      * @param {Object} config The regions config object
29018      * @return {BorderLayoutRegion} The new region
29019      */
29020     addRegion : function(target, config){
29021         if(!this.regions[target]){
29022             var r = this.factory.create(target, this, config);
29023             this.bindRegion(target, r);
29024         }
29025         return this.regions[target];
29026     },
29027
29028     // private (kinda)
29029     bindRegion : function(name, r){
29030         this.regions[name] = r;
29031         r.on("visibilitychange", this.layout, this);
29032         r.on("paneladded", this.layout, this);
29033         r.on("panelremoved", this.layout, this);
29034         r.on("invalidated", this.layout, this);
29035         r.on("resized", this.onRegionResized, this);
29036         r.on("collapsed", this.onRegionCollapsed, this);
29037         r.on("expanded", this.onRegionExpanded, this);
29038     },
29039
29040     /**
29041      * Performs a layout update.
29042      */
29043     layout : function(){
29044         if(this.updating) {
29045             return;
29046         }
29047         var size = this.getViewSize();
29048         var w = size.width;
29049         var h = size.height;
29050         var centerW = w;
29051         var centerH = h;
29052         var centerY = 0;
29053         var centerX = 0;
29054         //var x = 0, y = 0;
29055
29056         var rs = this.regions;
29057         var north = rs["north"];
29058         var south = rs["south"]; 
29059         var west = rs["west"];
29060         var east = rs["east"];
29061         var center = rs["center"];
29062         //if(this.hideOnLayout){ // not supported anymore
29063             //c.el.setStyle("display", "none");
29064         //}
29065         if(north && north.isVisible()){
29066             var b = north.getBox();
29067             var m = north.getMargins();
29068             b.width = w - (m.left+m.right);
29069             b.x = m.left;
29070             b.y = m.top;
29071             centerY = b.height + b.y + m.bottom;
29072             centerH -= centerY;
29073             north.updateBox(this.safeBox(b));
29074         }
29075         if(south && south.isVisible()){
29076             var b = south.getBox();
29077             var m = south.getMargins();
29078             b.width = w - (m.left+m.right);
29079             b.x = m.left;
29080             var totalHeight = (b.height + m.top + m.bottom);
29081             b.y = h - totalHeight + m.top;
29082             centerH -= totalHeight;
29083             south.updateBox(this.safeBox(b));
29084         }
29085         if(west && west.isVisible()){
29086             var b = west.getBox();
29087             var m = west.getMargins();
29088             b.height = centerH - (m.top+m.bottom);
29089             b.x = m.left;
29090             b.y = centerY + m.top;
29091             var totalWidth = (b.width + m.left + m.right);
29092             centerX += totalWidth;
29093             centerW -= totalWidth;
29094             west.updateBox(this.safeBox(b));
29095         }
29096         if(east && east.isVisible()){
29097             var b = east.getBox();
29098             var m = east.getMargins();
29099             b.height = centerH - (m.top+m.bottom);
29100             var totalWidth = (b.width + m.left + m.right);
29101             b.x = w - totalWidth + m.left;
29102             b.y = centerY + m.top;
29103             centerW -= totalWidth;
29104             east.updateBox(this.safeBox(b));
29105         }
29106         if(center){
29107             var m = center.getMargins();
29108             var centerBox = {
29109                 x: centerX + m.left,
29110                 y: centerY + m.top,
29111                 width: centerW - (m.left+m.right),
29112                 height: centerH - (m.top+m.bottom)
29113             };
29114             //if(this.hideOnLayout){
29115                 //center.el.setStyle("display", "block");
29116             //}
29117             center.updateBox(this.safeBox(centerBox));
29118         }
29119         this.el.repaint();
29120         this.fireEvent("layout", this);
29121     },
29122
29123     // private
29124     safeBox : function(box){
29125         box.width = Math.max(0, box.width);
29126         box.height = Math.max(0, box.height);
29127         return box;
29128     },
29129
29130     /**
29131      * Adds a ContentPanel (or subclass) to this layout.
29132      * @param {String} target The target region key (north, south, east, west or center).
29133      * @param {Roo.ContentPanel} panel The panel to add
29134      * @return {Roo.ContentPanel} The added panel
29135      */
29136     add : function(target, panel){
29137          
29138         target = target.toLowerCase();
29139         return this.regions[target].add(panel);
29140     },
29141
29142     /**
29143      * Remove a ContentPanel (or subclass) to this layout.
29144      * @param {String} target The target region key (north, south, east, west or center).
29145      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
29146      * @return {Roo.ContentPanel} The removed panel
29147      */
29148     remove : function(target, panel){
29149         target = target.toLowerCase();
29150         return this.regions[target].remove(panel);
29151     },
29152
29153     /**
29154      * Searches all regions for a panel with the specified id
29155      * @param {String} panelId
29156      * @return {Roo.ContentPanel} The panel or null if it wasn't found
29157      */
29158     findPanel : function(panelId){
29159         var rs = this.regions;
29160         for(var target in rs){
29161             if(typeof rs[target] != "function"){
29162                 var p = rs[target].getPanel(panelId);
29163                 if(p){
29164                     return p;
29165                 }
29166             }
29167         }
29168         return null;
29169     },
29170
29171     /**
29172      * Searches all regions for a panel with the specified id and activates (shows) it.
29173      * @param {String/ContentPanel} panelId The panels id or the panel itself
29174      * @return {Roo.ContentPanel} The shown panel or null
29175      */
29176     showPanel : function(panelId) {
29177       var rs = this.regions;
29178       for(var target in rs){
29179          var r = rs[target];
29180          if(typeof r != "function"){
29181             if(r.hasPanel(panelId)){
29182                return r.showPanel(panelId);
29183             }
29184          }
29185       }
29186       return null;
29187    },
29188
29189    /**
29190      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
29191      * @param {Roo.state.Provider} provider (optional) An alternate state provider
29192      */
29193     restoreState : function(provider){
29194         if(!provider){
29195             provider = Roo.state.Manager;
29196         }
29197         var sm = new Roo.LayoutStateManager();
29198         sm.init(this, provider);
29199     },
29200
29201     /**
29202      * Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config
29203      * object should contain properties for each region to add ContentPanels to, and each property's value should be
29204      * a valid ContentPanel config object.  Example:
29205      * <pre><code>
29206 // Create the main layout
29207 var layout = new Roo.BorderLayout('main-ct', {
29208     west: {
29209         split:true,
29210         minSize: 175,
29211         titlebar: true
29212     },
29213     center: {
29214         title:'Components'
29215     }
29216 }, 'main-ct');
29217
29218 // Create and add multiple ContentPanels at once via configs
29219 layout.batchAdd({
29220    west: {
29221        id: 'source-files',
29222        autoCreate:true,
29223        title:'Ext Source Files',
29224        autoScroll:true,
29225        fitToFrame:true
29226    },
29227    center : {
29228        el: cview,
29229        autoScroll:true,
29230        fitToFrame:true,
29231        toolbar: tb,
29232        resizeEl:'cbody'
29233    }
29234 });
29235 </code></pre>
29236      * @param {Object} regions An object containing ContentPanel configs by region name
29237      */
29238     batchAdd : function(regions){
29239         this.beginUpdate();
29240         for(var rname in regions){
29241             var lr = this.regions[rname];
29242             if(lr){
29243                 this.addTypedPanels(lr, regions[rname]);
29244             }
29245         }
29246         this.endUpdate();
29247     },
29248
29249     // private
29250     addTypedPanels : function(lr, ps){
29251         if(typeof ps == 'string'){
29252             lr.add(new Roo.ContentPanel(ps));
29253         }
29254         else if(ps instanceof Array){
29255             for(var i =0, len = ps.length; i < len; i++){
29256                 this.addTypedPanels(lr, ps[i]);
29257             }
29258         }
29259         else if(!ps.events){ // raw config?
29260             var el = ps.el;
29261             delete ps.el; // prevent conflict
29262             lr.add(new Roo.ContentPanel(el || Roo.id(), ps));
29263         }
29264         else {  // panel object assumed!
29265             lr.add(ps);
29266         }
29267     },
29268     /**
29269      * Adds a xtype elements to the layout.
29270      * <pre><code>
29271
29272 layout.addxtype({
29273        xtype : 'ContentPanel',
29274        region: 'west',
29275        items: [ .... ]
29276    }
29277 );
29278
29279 layout.addxtype({
29280         xtype : 'NestedLayoutPanel',
29281         region: 'west',
29282         layout: {
29283            center: { },
29284            west: { }   
29285         },
29286         items : [ ... list of content panels or nested layout panels.. ]
29287    }
29288 );
29289 </code></pre>
29290      * @param {Object} cfg Xtype definition of item to add.
29291      */
29292     addxtype : function(cfg)
29293     {
29294         // basically accepts a pannel...
29295         // can accept a layout region..!?!?
29296         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
29297         
29298         if (!cfg.xtype.match(/Panel$/)) {
29299             return false;
29300         }
29301         var ret = false;
29302         
29303         if (typeof(cfg.region) == 'undefined') {
29304             Roo.log("Failed to add Panel, region was not set");
29305             Roo.log(cfg);
29306             return false;
29307         }
29308         var region = cfg.region;
29309         delete cfg.region;
29310         
29311           
29312         var xitems = [];
29313         if (cfg.items) {
29314             xitems = cfg.items;
29315             delete cfg.items;
29316         }
29317         var nb = false;
29318         
29319         switch(cfg.xtype) 
29320         {
29321             case 'ContentPanel':  // ContentPanel (el, cfg)
29322             case 'ScrollPanel':  // ContentPanel (el, cfg)
29323             case 'ViewPanel': 
29324                 if(cfg.autoCreate) {
29325                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
29326                 } else {
29327                     var el = this.el.createChild();
29328                     ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
29329                 }
29330                 
29331                 this.add(region, ret);
29332                 break;
29333             
29334             
29335             case 'TreePanel': // our new panel!
29336                 cfg.el = this.el.createChild();
29337                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
29338                 this.add(region, ret);
29339                 break;
29340             
29341             case 'NestedLayoutPanel': 
29342                 // create a new Layout (which is  a Border Layout...
29343                 var el = this.el.createChild();
29344                 var clayout = cfg.layout;
29345                 delete cfg.layout;
29346                 clayout.items   = clayout.items  || [];
29347                 // replace this exitems with the clayout ones..
29348                 xitems = clayout.items;
29349                  
29350                 
29351                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
29352                     cfg.background = false;
29353                 }
29354                 var layout = new Roo.BorderLayout(el, clayout);
29355                 
29356                 ret = new Roo[cfg.xtype](layout, cfg); // new panel!!!!!
29357                 //console.log('adding nested layout panel '  + cfg.toSource());
29358                 this.add(region, ret);
29359                 nb = {}; /// find first...
29360                 break;
29361                 
29362             case 'GridPanel': 
29363             
29364                 // needs grid and region
29365                 
29366                 //var el = this.getRegion(region).el.createChild();
29367                 var el = this.el.createChild();
29368                 // create the grid first...
29369                 
29370                 var grid = new Roo.grid[cfg.grid.xtype](el, cfg.grid);
29371                 delete cfg.grid;
29372                 if (region == 'center' && this.active ) {
29373                     cfg.background = false;
29374                 }
29375                 ret = new Roo[cfg.xtype](grid, cfg); // new panel!!!!!
29376                 
29377                 this.add(region, ret);
29378                 if (cfg.background) {
29379                     ret.on('activate', function(gp) {
29380                         if (!gp.grid.rendered) {
29381                             gp.grid.render();
29382                         }
29383                     });
29384                 } else {
29385                     grid.render();
29386                 }
29387                 break;
29388            
29389            
29390            
29391                 
29392                 
29393                 
29394             default:
29395                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
29396                     
29397                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
29398                     this.add(region, ret);
29399                 } else {
29400                 
29401                     alert("Can not add '" + cfg.xtype + "' to BorderLayout");
29402                     return null;
29403                 }
29404                 
29405              // GridPanel (grid, cfg)
29406             
29407         }
29408         this.beginUpdate();
29409         // add children..
29410         var region = '';
29411         var abn = {};
29412         Roo.each(xitems, function(i)  {
29413             region = nb && i.region ? i.region : false;
29414             
29415             var add = ret.addxtype(i);
29416            
29417             if (region) {
29418                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
29419                 if (!i.background) {
29420                     abn[region] = nb[region] ;
29421                 }
29422             }
29423             
29424         });
29425         this.endUpdate();
29426
29427         // make the last non-background panel active..
29428         //if (nb) { Roo.log(abn); }
29429         if (nb) {
29430             
29431             for(var r in abn) {
29432                 region = this.getRegion(r);
29433                 if (region) {
29434                     // tried using nb[r], but it does not work..
29435                      
29436                     region.showPanel(abn[r]);
29437                    
29438                 }
29439             }
29440         }
29441         return ret;
29442         
29443     }
29444 });
29445
29446 /**
29447  * Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling
29448  * the beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be
29449  * provided with each region config, which allows you to add ContentPanel configs in addition to the region configs
29450  * during creation.  The following code is equivalent to the constructor-based example at the beginning of this class:
29451  * <pre><code>
29452 // shorthand
29453 var CP = Roo.ContentPanel;
29454
29455 var layout = Roo.BorderLayout.create({
29456     north: {
29457         initialSize: 25,
29458         titlebar: false,
29459         panels: [new CP("north", "North")]
29460     },
29461     west: {
29462         split:true,
29463         initialSize: 200,
29464         minSize: 175,
29465         maxSize: 400,
29466         titlebar: true,
29467         collapsible: true,
29468         panels: [new CP("west", {title: "West"})]
29469     },
29470     east: {
29471         split:true,
29472         initialSize: 202,
29473         minSize: 175,
29474         maxSize: 400,
29475         titlebar: true,
29476         collapsible: true,
29477         panels: [new CP("autoTabs", {title: "Auto Tabs", closable: true})]
29478     },
29479     south: {
29480         split:true,
29481         initialSize: 100,
29482         minSize: 100,
29483         maxSize: 200,
29484         titlebar: true,
29485         collapsible: true,
29486         panels: [new CP("south", {title: "South", closable: true})]
29487     },
29488     center: {
29489         titlebar: true,
29490         autoScroll:true,
29491         resizeTabs: true,
29492         minTabWidth: 50,
29493         preferredTabWidth: 150,
29494         panels: [
29495             new CP("center1", {title: "Close Me", closable: true}),
29496             new CP("center2", {title: "Center Panel", closable: false})
29497         ]
29498     }
29499 }, document.body);
29500
29501 layout.getRegion("center").showPanel("center1");
29502 </code></pre>
29503  * @param config
29504  * @param targetEl
29505  */
29506 Roo.BorderLayout.create = function(config, targetEl){
29507     var layout = new Roo.BorderLayout(targetEl || document.body, config);
29508     layout.beginUpdate();
29509     var regions = Roo.BorderLayout.RegionFactory.validRegions;
29510     for(var j = 0, jlen = regions.length; j < jlen; j++){
29511         var lr = regions[j];
29512         if(layout.regions[lr] && config[lr].panels){
29513             var r = layout.regions[lr];
29514             var ps = config[lr].panels;
29515             layout.addTypedPanels(r, ps);
29516         }
29517     }
29518     layout.endUpdate();
29519     return layout;
29520 };
29521
29522 // private
29523 Roo.BorderLayout.RegionFactory = {
29524     // private
29525     validRegions : ["north","south","east","west","center"],
29526
29527     // private
29528     create : function(target, mgr, config){
29529         target = target.toLowerCase();
29530         if(config.lightweight || config.basic){
29531             return new Roo.BasicLayoutRegion(mgr, config, target);
29532         }
29533         switch(target){
29534             case "north":
29535                 return new Roo.NorthLayoutRegion(mgr, config);
29536             case "south":
29537                 return new Roo.SouthLayoutRegion(mgr, config);
29538             case "east":
29539                 return new Roo.EastLayoutRegion(mgr, config);
29540             case "west":
29541                 return new Roo.WestLayoutRegion(mgr, config);
29542             case "center":
29543                 return new Roo.CenterLayoutRegion(mgr, config);
29544         }
29545         throw 'Layout region "'+target+'" not supported.';
29546     }
29547 };/*
29548  * Based on:
29549  * Ext JS Library 1.1.1
29550  * Copyright(c) 2006-2007, Ext JS, LLC.
29551  *
29552  * Originally Released Under LGPL - original licence link has changed is not relivant.
29553  *
29554  * Fork - LGPL
29555  * <script type="text/javascript">
29556  */
29557  
29558 /**
29559  * @class Roo.BasicLayoutRegion
29560  * @extends Roo.util.Observable
29561  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
29562  * and does not have a titlebar, tabs or any other features. All it does is size and position 
29563  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
29564  */
29565 Roo.BasicLayoutRegion = function(mgr, config, pos, skipConfig){
29566     this.mgr = mgr;
29567     this.position  = pos;
29568     this.events = {
29569         /**
29570          * @scope Roo.BasicLayoutRegion
29571          */
29572         
29573         /**
29574          * @event beforeremove
29575          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
29576          * @param {Roo.LayoutRegion} this
29577          * @param {Roo.ContentPanel} panel The panel
29578          * @param {Object} e The cancel event object
29579          */
29580         "beforeremove" : true,
29581         /**
29582          * @event invalidated
29583          * Fires when the layout for this region is changed.
29584          * @param {Roo.LayoutRegion} this
29585          */
29586         "invalidated" : true,
29587         /**
29588          * @event visibilitychange
29589          * Fires when this region is shown or hidden 
29590          * @param {Roo.LayoutRegion} this
29591          * @param {Boolean} visibility true or false
29592          */
29593         "visibilitychange" : true,
29594         /**
29595          * @event paneladded
29596          * Fires when a panel is added. 
29597          * @param {Roo.LayoutRegion} this
29598          * @param {Roo.ContentPanel} panel The panel
29599          */
29600         "paneladded" : true,
29601         /**
29602          * @event panelremoved
29603          * Fires when a panel is removed. 
29604          * @param {Roo.LayoutRegion} this
29605          * @param {Roo.ContentPanel} panel The panel
29606          */
29607         "panelremoved" : true,
29608         /**
29609          * @event beforecollapse
29610          * Fires when this region before collapse.
29611          * @param {Roo.LayoutRegion} this
29612          */
29613         "beforecollapse" : true,
29614         /**
29615          * @event collapsed
29616          * Fires when this region is collapsed.
29617          * @param {Roo.LayoutRegion} this
29618          */
29619         "collapsed" : true,
29620         /**
29621          * @event expanded
29622          * Fires when this region is expanded.
29623          * @param {Roo.LayoutRegion} this
29624          */
29625         "expanded" : true,
29626         /**
29627          * @event slideshow
29628          * Fires when this region is slid into view.
29629          * @param {Roo.LayoutRegion} this
29630          */
29631         "slideshow" : true,
29632         /**
29633          * @event slidehide
29634          * Fires when this region slides out of view. 
29635          * @param {Roo.LayoutRegion} this
29636          */
29637         "slidehide" : true,
29638         /**
29639          * @event panelactivated
29640          * Fires when a panel is activated. 
29641          * @param {Roo.LayoutRegion} this
29642          * @param {Roo.ContentPanel} panel The activated panel
29643          */
29644         "panelactivated" : true,
29645         /**
29646          * @event resized
29647          * Fires when the user resizes this region. 
29648          * @param {Roo.LayoutRegion} this
29649          * @param {Number} newSize The new size (width for east/west, height for north/south)
29650          */
29651         "resized" : true
29652     };
29653     /** A collection of panels in this region. @type Roo.util.MixedCollection */
29654     this.panels = new Roo.util.MixedCollection();
29655     this.panels.getKey = this.getPanelId.createDelegate(this);
29656     this.box = null;
29657     this.activePanel = null;
29658     // ensure listeners are added...
29659     
29660     if (config.listeners || config.events) {
29661         Roo.BasicLayoutRegion.superclass.constructor.call(this, {
29662             listeners : config.listeners || {},
29663             events : config.events || {}
29664         });
29665     }
29666     
29667     if(skipConfig !== true){
29668         this.applyConfig(config);
29669     }
29670 };
29671
29672 Roo.extend(Roo.BasicLayoutRegion, Roo.util.Observable, {
29673     getPanelId : function(p){
29674         return p.getId();
29675     },
29676     
29677     applyConfig : function(config){
29678         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
29679         this.config = config;
29680         
29681     },
29682     
29683     /**
29684      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
29685      * the width, for horizontal (north, south) the height.
29686      * @param {Number} newSize The new width or height
29687      */
29688     resizeTo : function(newSize){
29689         var el = this.el ? this.el :
29690                  (this.activePanel ? this.activePanel.getEl() : null);
29691         if(el){
29692             switch(this.position){
29693                 case "east":
29694                 case "west":
29695                     el.setWidth(newSize);
29696                     this.fireEvent("resized", this, newSize);
29697                 break;
29698                 case "north":
29699                 case "south":
29700                     el.setHeight(newSize);
29701                     this.fireEvent("resized", this, newSize);
29702                 break;                
29703             }
29704         }
29705     },
29706     
29707     getBox : function(){
29708         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
29709     },
29710     
29711     getMargins : function(){
29712         return this.margins;
29713     },
29714     
29715     updateBox : function(box){
29716         this.box = box;
29717         var el = this.activePanel.getEl();
29718         el.dom.style.left = box.x + "px";
29719         el.dom.style.top = box.y + "px";
29720         this.activePanel.setSize(box.width, box.height);
29721     },
29722     
29723     /**
29724      * Returns the container element for this region.
29725      * @return {Roo.Element}
29726      */
29727     getEl : function(){
29728         return this.activePanel;
29729     },
29730     
29731     /**
29732      * Returns true if this region is currently visible.
29733      * @return {Boolean}
29734      */
29735     isVisible : function(){
29736         return this.activePanel ? true : false;
29737     },
29738     
29739     setActivePanel : function(panel){
29740         panel = this.getPanel(panel);
29741         if(this.activePanel && this.activePanel != panel){
29742             this.activePanel.setActiveState(false);
29743             this.activePanel.getEl().setLeftTop(-10000,-10000);
29744         }
29745         this.activePanel = panel;
29746         panel.setActiveState(true);
29747         if(this.box){
29748             panel.setSize(this.box.width, this.box.height);
29749         }
29750         this.fireEvent("panelactivated", this, panel);
29751         this.fireEvent("invalidated");
29752     },
29753     
29754     /**
29755      * Show the specified panel.
29756      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
29757      * @return {Roo.ContentPanel} The shown panel or null
29758      */
29759     showPanel : function(panel){
29760         if(panel = this.getPanel(panel)){
29761             this.setActivePanel(panel);
29762         }
29763         return panel;
29764     },
29765     
29766     /**
29767      * Get the active panel for this region.
29768      * @return {Roo.ContentPanel} The active panel or null
29769      */
29770     getActivePanel : function(){
29771         return this.activePanel;
29772     },
29773     
29774     /**
29775      * Add the passed ContentPanel(s)
29776      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
29777      * @return {Roo.ContentPanel} The panel added (if only one was added)
29778      */
29779     add : function(panel){
29780         if(arguments.length > 1){
29781             for(var i = 0, len = arguments.length; i < len; i++) {
29782                 this.add(arguments[i]);
29783             }
29784             return null;
29785         }
29786         if(this.hasPanel(panel)){
29787             this.showPanel(panel);
29788             return panel;
29789         }
29790         var el = panel.getEl();
29791         if(el.dom.parentNode != this.mgr.el.dom){
29792             this.mgr.el.dom.appendChild(el.dom);
29793         }
29794         if(panel.setRegion){
29795             panel.setRegion(this);
29796         }
29797         this.panels.add(panel);
29798         el.setStyle("position", "absolute");
29799         if(!panel.background){
29800             this.setActivePanel(panel);
29801             if(this.config.initialSize && this.panels.getCount()==1){
29802                 this.resizeTo(this.config.initialSize);
29803             }
29804         }
29805         this.fireEvent("paneladded", this, panel);
29806         return panel;
29807     },
29808     
29809     /**
29810      * Returns true if the panel is in this region.
29811      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
29812      * @return {Boolean}
29813      */
29814     hasPanel : function(panel){
29815         if(typeof panel == "object"){ // must be panel obj
29816             panel = panel.getId();
29817         }
29818         return this.getPanel(panel) ? true : false;
29819     },
29820     
29821     /**
29822      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
29823      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
29824      * @param {Boolean} preservePanel Overrides the config preservePanel option
29825      * @return {Roo.ContentPanel} The panel that was removed
29826      */
29827     remove : function(panel, preservePanel){
29828         panel = this.getPanel(panel);
29829         if(!panel){
29830             return null;
29831         }
29832         var e = {};
29833         this.fireEvent("beforeremove", this, panel, e);
29834         if(e.cancel === true){
29835             return null;
29836         }
29837         var panelId = panel.getId();
29838         this.panels.removeKey(panelId);
29839         return panel;
29840     },
29841     
29842     /**
29843      * Returns the panel specified or null if it's not in this region.
29844      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
29845      * @return {Roo.ContentPanel}
29846      */
29847     getPanel : function(id){
29848         if(typeof id == "object"){ // must be panel obj
29849             return id;
29850         }
29851         return this.panels.get(id);
29852     },
29853     
29854     /**
29855      * Returns this regions position (north/south/east/west/center).
29856      * @return {String} 
29857      */
29858     getPosition: function(){
29859         return this.position;    
29860     }
29861 });/*
29862  * Based on:
29863  * Ext JS Library 1.1.1
29864  * Copyright(c) 2006-2007, Ext JS, LLC.
29865  *
29866  * Originally Released Under LGPL - original licence link has changed is not relivant.
29867  *
29868  * Fork - LGPL
29869  * <script type="text/javascript">
29870  */
29871  
29872 /**
29873  * @class Roo.LayoutRegion
29874  * @extends Roo.BasicLayoutRegion
29875  * This class represents a region in a layout manager.
29876  * @cfg {Boolean}   collapsible     False to disable collapsing (defaults to true)
29877  * @cfg {Boolean}   collapsed       True to set the initial display to collapsed (defaults to false)
29878  * @cfg {Boolean}   floatable       False to disable floating (defaults to true)
29879  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
29880  * @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})
29881  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
29882  * @cfg {String}    collapsedTitle  Optional string message to display in the collapsed block of a north or south region
29883  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
29884  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
29885  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
29886  * @cfg {String}    title           The title for the region (overrides panel titles)
29887  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
29888  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
29889  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
29890  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
29891  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
29892  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
29893  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
29894  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
29895  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
29896  * @cfg {Boolean}   showPin         True to show a pin button
29897  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
29898  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
29899  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
29900  * @cfg {Number}    width           For East/West panels
29901  * @cfg {Number}    height          For North/South panels
29902  * @cfg {Boolean}   split           To show the splitter
29903  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
29904  */
29905 Roo.LayoutRegion = function(mgr, config, pos){
29906     Roo.LayoutRegion.superclass.constructor.call(this, mgr, config, pos, true);
29907     var dh = Roo.DomHelper;
29908     /** This region's container element 
29909     * @type Roo.Element */
29910     this.el = dh.append(mgr.el.dom, {tag: "div", cls: "x-layout-panel x-layout-panel-" + this.position}, true);
29911     /** This region's title element 
29912     * @type Roo.Element */
29913
29914     this.titleEl = dh.append(this.el.dom, {tag: "div", unselectable: "on", cls: "x-unselectable x-layout-panel-hd x-layout-title-"+this.position, children:[
29915         {tag: "span", cls: "x-unselectable x-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
29916         {tag: "div", cls: "x-unselectable x-layout-panel-hd-tools", unselectable: "on"}
29917     ]}, true);
29918     this.titleEl.enableDisplayMode();
29919     /** This region's title text element 
29920     * @type HTMLElement */
29921     this.titleTextEl = this.titleEl.dom.firstChild;
29922     this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
29923     this.closeBtn = this.createTool(this.tools.dom, "x-layout-close");
29924     this.closeBtn.enableDisplayMode();
29925     this.closeBtn.on("click", this.closeClicked, this);
29926     this.closeBtn.hide();
29927
29928     this.createBody(config);
29929     this.visible = true;
29930     this.collapsed = false;
29931
29932     if(config.hideWhenEmpty){
29933         this.hide();
29934         this.on("paneladded", this.validateVisibility, this);
29935         this.on("panelremoved", this.validateVisibility, this);
29936     }
29937     this.applyConfig(config);
29938 };
29939
29940 Roo.extend(Roo.LayoutRegion, Roo.BasicLayoutRegion, {
29941
29942     createBody : function(){
29943         /** This region's body element 
29944         * @type Roo.Element */
29945         this.bodyEl = this.el.createChild({tag: "div", cls: "x-layout-panel-body"});
29946     },
29947
29948     applyConfig : function(c){
29949         if(c.collapsible && this.position != "center" && !this.collapsedEl){
29950             var dh = Roo.DomHelper;
29951             if(c.titlebar !== false){
29952                 this.collapseBtn = this.createTool(this.tools.dom, "x-layout-collapse-"+this.position);
29953                 this.collapseBtn.on("click", this.collapse, this);
29954                 this.collapseBtn.enableDisplayMode();
29955
29956                 if(c.showPin === true || this.showPin){
29957                     this.stickBtn = this.createTool(this.tools.dom, "x-layout-stick");
29958                     this.stickBtn.enableDisplayMode();
29959                     this.stickBtn.on("click", this.expand, this);
29960                     this.stickBtn.hide();
29961                 }
29962             }
29963             /** This region's collapsed element
29964             * @type Roo.Element */
29965             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
29966                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
29967             ]}, true);
29968             if(c.floatable !== false){
29969                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
29970                this.collapsedEl.on("click", this.collapseClick, this);
29971             }
29972
29973             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
29974                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
29975                    id: "message", unselectable: "on", style:{"float":"left"}});
29976                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
29977              }
29978             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
29979             this.expandBtn.on("click", this.expand, this);
29980         }
29981         if(this.collapseBtn){
29982             this.collapseBtn.setVisible(c.collapsible == true);
29983         }
29984         this.cmargins = c.cmargins || this.cmargins ||
29985                          (this.position == "west" || this.position == "east" ?
29986                              {top: 0, left: 2, right:2, bottom: 0} :
29987                              {top: 2, left: 0, right:0, bottom: 2});
29988         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
29989         this.bottomTabs = c.tabPosition != "top";
29990         this.autoScroll = c.autoScroll || false;
29991         if(this.autoScroll){
29992             this.bodyEl.setStyle("overflow", "auto");
29993         }else{
29994             this.bodyEl.setStyle("overflow", "hidden");
29995         }
29996         //if(c.titlebar !== false){
29997             if((!c.titlebar && !c.title) || c.titlebar === false){
29998                 this.titleEl.hide();
29999             }else{
30000                 this.titleEl.show();
30001                 if(c.title){
30002                     this.titleTextEl.innerHTML = c.title;
30003                 }
30004             }
30005         //}
30006         this.duration = c.duration || .30;
30007         this.slideDuration = c.slideDuration || .45;
30008         this.config = c;
30009         if(c.collapsed){
30010             this.collapse(true);
30011         }
30012         if(c.hidden){
30013             this.hide();
30014         }
30015     },
30016     /**
30017      * Returns true if this region is currently visible.
30018      * @return {Boolean}
30019      */
30020     isVisible : function(){
30021         return this.visible;
30022     },
30023
30024     /**
30025      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
30026      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
30027      */
30028     setCollapsedTitle : function(title){
30029         title = title || "&#160;";
30030         if(this.collapsedTitleTextEl){
30031             this.collapsedTitleTextEl.innerHTML = title;
30032         }
30033     },
30034
30035     getBox : function(){
30036         var b;
30037         if(!this.collapsed){
30038             b = this.el.getBox(false, true);
30039         }else{
30040             b = this.collapsedEl.getBox(false, true);
30041         }
30042         return b;
30043     },
30044
30045     getMargins : function(){
30046         return this.collapsed ? this.cmargins : this.margins;
30047     },
30048
30049     highlight : function(){
30050         this.el.addClass("x-layout-panel-dragover");
30051     },
30052
30053     unhighlight : function(){
30054         this.el.removeClass("x-layout-panel-dragover");
30055     },
30056
30057     updateBox : function(box){
30058         this.box = box;
30059         if(!this.collapsed){
30060             this.el.dom.style.left = box.x + "px";
30061             this.el.dom.style.top = box.y + "px";
30062             this.updateBody(box.width, box.height);
30063         }else{
30064             this.collapsedEl.dom.style.left = box.x + "px";
30065             this.collapsedEl.dom.style.top = box.y + "px";
30066             this.collapsedEl.setSize(box.width, box.height);
30067         }
30068         if(this.tabs){
30069             this.tabs.autoSizeTabs();
30070         }
30071     },
30072
30073     updateBody : function(w, h){
30074         if(w !== null){
30075             this.el.setWidth(w);
30076             w -= this.el.getBorderWidth("rl");
30077             if(this.config.adjustments){
30078                 w += this.config.adjustments[0];
30079             }
30080         }
30081         if(h !== null){
30082             this.el.setHeight(h);
30083             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
30084             h -= this.el.getBorderWidth("tb");
30085             if(this.config.adjustments){
30086                 h += this.config.adjustments[1];
30087             }
30088             this.bodyEl.setHeight(h);
30089             if(this.tabs){
30090                 h = this.tabs.syncHeight(h);
30091             }
30092         }
30093         if(this.panelSize){
30094             w = w !== null ? w : this.panelSize.width;
30095             h = h !== null ? h : this.panelSize.height;
30096         }
30097         if(this.activePanel){
30098             var el = this.activePanel.getEl();
30099             w = w !== null ? w : el.getWidth();
30100             h = h !== null ? h : el.getHeight();
30101             this.panelSize = {width: w, height: h};
30102             this.activePanel.setSize(w, h);
30103         }
30104         if(Roo.isIE && this.tabs){
30105             this.tabs.el.repaint();
30106         }
30107     },
30108
30109     /**
30110      * Returns the container element for this region.
30111      * @return {Roo.Element}
30112      */
30113     getEl : function(){
30114         return this.el;
30115     },
30116
30117     /**
30118      * Hides this region.
30119      */
30120     hide : function(){
30121         if(!this.collapsed){
30122             this.el.dom.style.left = "-2000px";
30123             this.el.hide();
30124         }else{
30125             this.collapsedEl.dom.style.left = "-2000px";
30126             this.collapsedEl.hide();
30127         }
30128         this.visible = false;
30129         this.fireEvent("visibilitychange", this, false);
30130     },
30131
30132     /**
30133      * Shows this region if it was previously hidden.
30134      */
30135     show : function(){
30136         if(!this.collapsed){
30137             this.el.show();
30138         }else{
30139             this.collapsedEl.show();
30140         }
30141         this.visible = true;
30142         this.fireEvent("visibilitychange", this, true);
30143     },
30144
30145     closeClicked : function(){
30146         if(this.activePanel){
30147             this.remove(this.activePanel);
30148         }
30149     },
30150
30151     collapseClick : function(e){
30152         if(this.isSlid){
30153            e.stopPropagation();
30154            this.slideIn();
30155         }else{
30156            e.stopPropagation();
30157            this.slideOut();
30158         }
30159     },
30160
30161     /**
30162      * Collapses this region.
30163      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
30164      */
30165     collapse : function(skipAnim, skipCheck = false){
30166         if(this.collapsed) {
30167             return;
30168         }
30169         
30170         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
30171             
30172             this.collapsed = true;
30173             if(this.split){
30174                 this.split.el.hide();
30175             }
30176             if(this.config.animate && skipAnim !== true){
30177                 this.fireEvent("invalidated", this);
30178                 this.animateCollapse();
30179             }else{
30180                 this.el.setLocation(-20000,-20000);
30181                 this.el.hide();
30182                 this.collapsedEl.show();
30183                 this.fireEvent("collapsed", this);
30184                 this.fireEvent("invalidated", this);
30185             }
30186         }
30187         
30188     },
30189
30190     animateCollapse : function(){
30191         // overridden
30192     },
30193
30194     /**
30195      * Expands this region if it was previously collapsed.
30196      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
30197      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
30198      */
30199     expand : function(e, skipAnim){
30200         if(e) {
30201             e.stopPropagation();
30202         }
30203         if(!this.collapsed || this.el.hasActiveFx()) {
30204             return;
30205         }
30206         if(this.isSlid){
30207             this.afterSlideIn();
30208             skipAnim = true;
30209         }
30210         this.collapsed = false;
30211         if(this.config.animate && skipAnim !== true){
30212             this.animateExpand();
30213         }else{
30214             this.el.show();
30215             if(this.split){
30216                 this.split.el.show();
30217             }
30218             this.collapsedEl.setLocation(-2000,-2000);
30219             this.collapsedEl.hide();
30220             this.fireEvent("invalidated", this);
30221             this.fireEvent("expanded", this);
30222         }
30223     },
30224
30225     animateExpand : function(){
30226         // overridden
30227     },
30228
30229     initTabs : function()
30230     {
30231         this.bodyEl.setStyle("overflow", "hidden");
30232         var ts = new Roo.TabPanel(
30233                 this.bodyEl.dom,
30234                 {
30235                     tabPosition: this.bottomTabs ? 'bottom' : 'top',
30236                     disableTooltips: this.config.disableTabTips,
30237                     toolbar : this.config.toolbar
30238                 }
30239         );
30240         if(this.config.hideTabs){
30241             ts.stripWrap.setDisplayed(false);
30242         }
30243         this.tabs = ts;
30244         ts.resizeTabs = this.config.resizeTabs === true;
30245         ts.minTabWidth = this.config.minTabWidth || 40;
30246         ts.maxTabWidth = this.config.maxTabWidth || 250;
30247         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
30248         ts.monitorResize = false;
30249         ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
30250         ts.bodyEl.addClass('x-layout-tabs-body');
30251         this.panels.each(this.initPanelAsTab, this);
30252     },
30253
30254     initPanelAsTab : function(panel){
30255         var ti = this.tabs.addTab(panel.getEl().id, panel.getTitle(), null,
30256                     this.config.closeOnTab && panel.isClosable());
30257         if(panel.tabTip !== undefined){
30258             ti.setTooltip(panel.tabTip);
30259         }
30260         ti.on("activate", function(){
30261               this.setActivePanel(panel);
30262         }, this);
30263         if(this.config.closeOnTab){
30264             ti.on("beforeclose", function(t, e){
30265                 e.cancel = true;
30266                 this.remove(panel);
30267             }, this);
30268         }
30269         return ti;
30270     },
30271
30272     updatePanelTitle : function(panel, title){
30273         if(this.activePanel == panel){
30274             this.updateTitle(title);
30275         }
30276         if(this.tabs){
30277             var ti = this.tabs.getTab(panel.getEl().id);
30278             ti.setText(title);
30279             if(panel.tabTip !== undefined){
30280                 ti.setTooltip(panel.tabTip);
30281             }
30282         }
30283     },
30284
30285     updateTitle : function(title){
30286         if(this.titleTextEl && !this.config.title){
30287             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
30288         }
30289     },
30290
30291     setActivePanel : function(panel){
30292         panel = this.getPanel(panel);
30293         if(this.activePanel && this.activePanel != panel){
30294             this.activePanel.setActiveState(false);
30295         }
30296         this.activePanel = panel;
30297         panel.setActiveState(true);
30298         if(this.panelSize){
30299             panel.setSize(this.panelSize.width, this.panelSize.height);
30300         }
30301         if(this.closeBtn){
30302             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
30303         }
30304         this.updateTitle(panel.getTitle());
30305         if(this.tabs){
30306             this.fireEvent("invalidated", this);
30307         }
30308         this.fireEvent("panelactivated", this, panel);
30309     },
30310
30311     /**
30312      * Shows the specified panel.
30313      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
30314      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
30315      */
30316     showPanel : function(panel)
30317     {
30318         panel = this.getPanel(panel);
30319         if(panel){
30320             if(this.tabs){
30321                 var tab = this.tabs.getTab(panel.getEl().id);
30322                 if(tab.isHidden()){
30323                     this.tabs.unhideTab(tab.id);
30324                 }
30325                 tab.activate();
30326             }else{
30327                 this.setActivePanel(panel);
30328             }
30329         }
30330         return panel;
30331     },
30332
30333     /**
30334      * Get the active panel for this region.
30335      * @return {Roo.ContentPanel} The active panel or null
30336      */
30337     getActivePanel : function(){
30338         return this.activePanel;
30339     },
30340
30341     validateVisibility : function(){
30342         if(this.panels.getCount() < 1){
30343             this.updateTitle("&#160;");
30344             this.closeBtn.hide();
30345             this.hide();
30346         }else{
30347             if(!this.isVisible()){
30348                 this.show();
30349             }
30350         }
30351     },
30352
30353     /**
30354      * Adds the passed ContentPanel(s) to this region.
30355      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
30356      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
30357      */
30358     add : function(panel){
30359         if(arguments.length > 1){
30360             for(var i = 0, len = arguments.length; i < len; i++) {
30361                 this.add(arguments[i]);
30362             }
30363             return null;
30364         }
30365         if(this.hasPanel(panel)){
30366             this.showPanel(panel);
30367             return panel;
30368         }
30369         panel.setRegion(this);
30370         this.panels.add(panel);
30371         if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
30372             this.bodyEl.dom.appendChild(panel.getEl().dom);
30373             if(panel.background !== true){
30374                 this.setActivePanel(panel);
30375             }
30376             this.fireEvent("paneladded", this, panel);
30377             return panel;
30378         }
30379         if(!this.tabs){
30380             this.initTabs();
30381         }else{
30382             this.initPanelAsTab(panel);
30383         }
30384         if(panel.background !== true){
30385             this.tabs.activate(panel.getEl().id);
30386         }
30387         this.fireEvent("paneladded", this, panel);
30388         return panel;
30389     },
30390
30391     /**
30392      * Hides the tab for the specified panel.
30393      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
30394      */
30395     hidePanel : function(panel){
30396         if(this.tabs && (panel = this.getPanel(panel))){
30397             this.tabs.hideTab(panel.getEl().id);
30398         }
30399     },
30400
30401     /**
30402      * Unhides the tab for a previously hidden panel.
30403      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
30404      */
30405     unhidePanel : function(panel){
30406         if(this.tabs && (panel = this.getPanel(panel))){
30407             this.tabs.unhideTab(panel.getEl().id);
30408         }
30409     },
30410
30411     clearPanels : function(){
30412         while(this.panels.getCount() > 0){
30413              this.remove(this.panels.first());
30414         }
30415     },
30416
30417     /**
30418      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
30419      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
30420      * @param {Boolean} preservePanel Overrides the config preservePanel option
30421      * @return {Roo.ContentPanel} The panel that was removed
30422      */
30423     remove : function(panel, preservePanel){
30424         panel = this.getPanel(panel);
30425         if(!panel){
30426             return null;
30427         }
30428         var e = {};
30429         this.fireEvent("beforeremove", this, panel, e);
30430         if(e.cancel === true){
30431             return null;
30432         }
30433         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
30434         var panelId = panel.getId();
30435         this.panels.removeKey(panelId);
30436         if(preservePanel){
30437             document.body.appendChild(panel.getEl().dom);
30438         }
30439         if(this.tabs){
30440             this.tabs.removeTab(panel.getEl().id);
30441         }else if (!preservePanel){
30442             this.bodyEl.dom.removeChild(panel.getEl().dom);
30443         }
30444         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
30445             var p = this.panels.first();
30446             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
30447             tempEl.appendChild(p.getEl().dom);
30448             this.bodyEl.update("");
30449             this.bodyEl.dom.appendChild(p.getEl().dom);
30450             tempEl = null;
30451             this.updateTitle(p.getTitle());
30452             this.tabs = null;
30453             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
30454             this.setActivePanel(p);
30455         }
30456         panel.setRegion(null);
30457         if(this.activePanel == panel){
30458             this.activePanel = null;
30459         }
30460         if(this.config.autoDestroy !== false && preservePanel !== true){
30461             try{panel.destroy();}catch(e){}
30462         }
30463         this.fireEvent("panelremoved", this, panel);
30464         return panel;
30465     },
30466
30467     /**
30468      * Returns the TabPanel component used by this region
30469      * @return {Roo.TabPanel}
30470      */
30471     getTabs : function(){
30472         return this.tabs;
30473     },
30474
30475     createTool : function(parentEl, className){
30476         var btn = Roo.DomHelper.append(parentEl, {tag: "div", cls: "x-layout-tools-button",
30477             children: [{tag: "div", cls: "x-layout-tools-button-inner " + className, html: "&#160;"}]}, true);
30478         btn.addClassOnOver("x-layout-tools-button-over");
30479         return btn;
30480     }
30481 });/*
30482  * Based on:
30483  * Ext JS Library 1.1.1
30484  * Copyright(c) 2006-2007, Ext JS, LLC.
30485  *
30486  * Originally Released Under LGPL - original licence link has changed is not relivant.
30487  *
30488  * Fork - LGPL
30489  * <script type="text/javascript">
30490  */
30491  
30492
30493
30494 /**
30495  * @class Roo.SplitLayoutRegion
30496  * @extends Roo.LayoutRegion
30497  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
30498  */
30499 Roo.SplitLayoutRegion = function(mgr, config, pos, cursor){
30500     this.cursor = cursor;
30501     Roo.SplitLayoutRegion.superclass.constructor.call(this, mgr, config, pos);
30502 };
30503
30504 Roo.extend(Roo.SplitLayoutRegion, Roo.LayoutRegion, {
30505     splitTip : "Drag to resize.",
30506     collapsibleSplitTip : "Drag to resize. Double click to hide.",
30507     useSplitTips : false,
30508
30509     applyConfig : function(config){
30510         Roo.SplitLayoutRegion.superclass.applyConfig.call(this, config);
30511         if(config.split){
30512             if(!this.split){
30513                 var splitEl = Roo.DomHelper.append(this.mgr.el.dom, 
30514                         {tag: "div", id: this.el.id + "-split", cls: "x-layout-split x-layout-split-"+this.position, html: "&#160;"});
30515                 /** The SplitBar for this region 
30516                 * @type Roo.SplitBar */
30517                 this.split = new Roo.SplitBar(splitEl, this.el, this.orientation);
30518                 this.split.on("moved", this.onSplitMove, this);
30519                 this.split.useShim = config.useShim === true;
30520                 this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
30521                 if(this.useSplitTips){
30522                     this.split.el.dom.title = config.collapsible ? this.collapsibleSplitTip : this.splitTip;
30523                 }
30524                 if(config.collapsible){
30525                     this.split.el.on("dblclick", this.collapse,  this);
30526                 }
30527             }
30528             if(typeof config.minSize != "undefined"){
30529                 this.split.minSize = config.minSize;
30530             }
30531             if(typeof config.maxSize != "undefined"){
30532                 this.split.maxSize = config.maxSize;
30533             }
30534             if(config.hideWhenEmpty || config.hidden || config.collapsed){
30535                 this.hideSplitter();
30536             }
30537         }
30538     },
30539
30540     getHMaxSize : function(){
30541          var cmax = this.config.maxSize || 10000;
30542          var center = this.mgr.getRegion("center");
30543          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
30544     },
30545
30546     getVMaxSize : function(){
30547          var cmax = this.config.maxSize || 10000;
30548          var center = this.mgr.getRegion("center");
30549          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
30550     },
30551
30552     onSplitMove : function(split, newSize){
30553         this.fireEvent("resized", this, newSize);
30554     },
30555     
30556     /** 
30557      * Returns the {@link Roo.SplitBar} for this region.
30558      * @return {Roo.SplitBar}
30559      */
30560     getSplitBar : function(){
30561         return this.split;
30562     },
30563     
30564     hide : function(){
30565         this.hideSplitter();
30566         Roo.SplitLayoutRegion.superclass.hide.call(this);
30567     },
30568
30569     hideSplitter : function(){
30570         if(this.split){
30571             this.split.el.setLocation(-2000,-2000);
30572             this.split.el.hide();
30573         }
30574     },
30575
30576     show : function(){
30577         if(this.split){
30578             this.split.el.show();
30579         }
30580         Roo.SplitLayoutRegion.superclass.show.call(this);
30581     },
30582     
30583     beforeSlide: function(){
30584         if(Roo.isGecko){// firefox overflow auto bug workaround
30585             this.bodyEl.clip();
30586             if(this.tabs) {
30587                 this.tabs.bodyEl.clip();
30588             }
30589             if(this.activePanel){
30590                 this.activePanel.getEl().clip();
30591                 
30592                 if(this.activePanel.beforeSlide){
30593                     this.activePanel.beforeSlide();
30594                 }
30595             }
30596         }
30597     },
30598     
30599     afterSlide : function(){
30600         if(Roo.isGecko){// firefox overflow auto bug workaround
30601             this.bodyEl.unclip();
30602             if(this.tabs) {
30603                 this.tabs.bodyEl.unclip();
30604             }
30605             if(this.activePanel){
30606                 this.activePanel.getEl().unclip();
30607                 if(this.activePanel.afterSlide){
30608                     this.activePanel.afterSlide();
30609                 }
30610             }
30611         }
30612     },
30613
30614     initAutoHide : function(){
30615         if(this.autoHide !== false){
30616             if(!this.autoHideHd){
30617                 var st = new Roo.util.DelayedTask(this.slideIn, this);
30618                 this.autoHideHd = {
30619                     "mouseout": function(e){
30620                         if(!e.within(this.el, true)){
30621                             st.delay(500);
30622                         }
30623                     },
30624                     "mouseover" : function(e){
30625                         st.cancel();
30626                     },
30627                     scope : this
30628                 };
30629             }
30630             this.el.on(this.autoHideHd);
30631         }
30632     },
30633
30634     clearAutoHide : function(){
30635         if(this.autoHide !== false){
30636             this.el.un("mouseout", this.autoHideHd.mouseout);
30637             this.el.un("mouseover", this.autoHideHd.mouseover);
30638         }
30639     },
30640
30641     clearMonitor : function(){
30642         Roo.get(document).un("click", this.slideInIf, this);
30643     },
30644
30645     // these names are backwards but not changed for compat
30646     slideOut : function(){
30647         if(this.isSlid || this.el.hasActiveFx()){
30648             return;
30649         }
30650         this.isSlid = true;
30651         if(this.collapseBtn){
30652             this.collapseBtn.hide();
30653         }
30654         this.closeBtnState = this.closeBtn.getStyle('display');
30655         this.closeBtn.hide();
30656         if(this.stickBtn){
30657             this.stickBtn.show();
30658         }
30659         this.el.show();
30660         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
30661         this.beforeSlide();
30662         this.el.setStyle("z-index", 10001);
30663         this.el.slideIn(this.getSlideAnchor(), {
30664             callback: function(){
30665                 this.afterSlide();
30666                 this.initAutoHide();
30667                 Roo.get(document).on("click", this.slideInIf, this);
30668                 this.fireEvent("slideshow", this);
30669             },
30670             scope: this,
30671             block: true
30672         });
30673     },
30674
30675     afterSlideIn : function(){
30676         this.clearAutoHide();
30677         this.isSlid = false;
30678         this.clearMonitor();
30679         this.el.setStyle("z-index", "");
30680         if(this.collapseBtn){
30681             this.collapseBtn.show();
30682         }
30683         this.closeBtn.setStyle('display', this.closeBtnState);
30684         if(this.stickBtn){
30685             this.stickBtn.hide();
30686         }
30687         this.fireEvent("slidehide", this);
30688     },
30689
30690     slideIn : function(cb){
30691         if(!this.isSlid || this.el.hasActiveFx()){
30692             Roo.callback(cb);
30693             return;
30694         }
30695         this.isSlid = false;
30696         this.beforeSlide();
30697         this.el.slideOut(this.getSlideAnchor(), {
30698             callback: function(){
30699                 this.el.setLeftTop(-10000, -10000);
30700                 this.afterSlide();
30701                 this.afterSlideIn();
30702                 Roo.callback(cb);
30703             },
30704             scope: this,
30705             block: true
30706         });
30707     },
30708     
30709     slideInIf : function(e){
30710         if(!e.within(this.el)){
30711             this.slideIn();
30712         }
30713     },
30714
30715     animateCollapse : function(){
30716         this.beforeSlide();
30717         this.el.setStyle("z-index", 20000);
30718         var anchor = this.getSlideAnchor();
30719         this.el.slideOut(anchor, {
30720             callback : function(){
30721                 this.el.setStyle("z-index", "");
30722                 this.collapsedEl.slideIn(anchor, {duration:.3});
30723                 this.afterSlide();
30724                 this.el.setLocation(-10000,-10000);
30725                 this.el.hide();
30726                 this.fireEvent("collapsed", this);
30727             },
30728             scope: this,
30729             block: true
30730         });
30731     },
30732
30733     animateExpand : function(){
30734         this.beforeSlide();
30735         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
30736         this.el.setStyle("z-index", 20000);
30737         this.collapsedEl.hide({
30738             duration:.1
30739         });
30740         this.el.slideIn(this.getSlideAnchor(), {
30741             callback : function(){
30742                 this.el.setStyle("z-index", "");
30743                 this.afterSlide();
30744                 if(this.split){
30745                     this.split.el.show();
30746                 }
30747                 this.fireEvent("invalidated", this);
30748                 this.fireEvent("expanded", this);
30749             },
30750             scope: this,
30751             block: true
30752         });
30753     },
30754
30755     anchors : {
30756         "west" : "left",
30757         "east" : "right",
30758         "north" : "top",
30759         "south" : "bottom"
30760     },
30761
30762     sanchors : {
30763         "west" : "l",
30764         "east" : "r",
30765         "north" : "t",
30766         "south" : "b"
30767     },
30768
30769     canchors : {
30770         "west" : "tl-tr",
30771         "east" : "tr-tl",
30772         "north" : "tl-bl",
30773         "south" : "bl-tl"
30774     },
30775
30776     getAnchor : function(){
30777         return this.anchors[this.position];
30778     },
30779
30780     getCollapseAnchor : function(){
30781         return this.canchors[this.position];
30782     },
30783
30784     getSlideAnchor : function(){
30785         return this.sanchors[this.position];
30786     },
30787
30788     getAlignAdj : function(){
30789         var cm = this.cmargins;
30790         switch(this.position){
30791             case "west":
30792                 return [0, 0];
30793             break;
30794             case "east":
30795                 return [0, 0];
30796             break;
30797             case "north":
30798                 return [0, 0];
30799             break;
30800             case "south":
30801                 return [0, 0];
30802             break;
30803         }
30804     },
30805
30806     getExpandAdj : function(){
30807         var c = this.collapsedEl, cm = this.cmargins;
30808         switch(this.position){
30809             case "west":
30810                 return [-(cm.right+c.getWidth()+cm.left), 0];
30811             break;
30812             case "east":
30813                 return [cm.right+c.getWidth()+cm.left, 0];
30814             break;
30815             case "north":
30816                 return [0, -(cm.top+cm.bottom+c.getHeight())];
30817             break;
30818             case "south":
30819                 return [0, cm.top+cm.bottom+c.getHeight()];
30820             break;
30821         }
30822     }
30823 });/*
30824  * Based on:
30825  * Ext JS Library 1.1.1
30826  * Copyright(c) 2006-2007, Ext JS, LLC.
30827  *
30828  * Originally Released Under LGPL - original licence link has changed is not relivant.
30829  *
30830  * Fork - LGPL
30831  * <script type="text/javascript">
30832  */
30833 /*
30834  * These classes are private internal classes
30835  */
30836 Roo.CenterLayoutRegion = function(mgr, config){
30837     Roo.LayoutRegion.call(this, mgr, config, "center");
30838     this.visible = true;
30839     this.minWidth = config.minWidth || 20;
30840     this.minHeight = config.minHeight || 20;
30841 };
30842
30843 Roo.extend(Roo.CenterLayoutRegion, Roo.LayoutRegion, {
30844     hide : function(){
30845         // center panel can't be hidden
30846     },
30847     
30848     show : function(){
30849         // center panel can't be hidden
30850     },
30851     
30852     getMinWidth: function(){
30853         return this.minWidth;
30854     },
30855     
30856     getMinHeight: function(){
30857         return this.minHeight;
30858     }
30859 });
30860
30861
30862 Roo.NorthLayoutRegion = function(mgr, config){
30863     Roo.LayoutRegion.call(this, mgr, config, "north", "n-resize");
30864     if(this.split){
30865         this.split.placement = Roo.SplitBar.TOP;
30866         this.split.orientation = Roo.SplitBar.VERTICAL;
30867         this.split.el.addClass("x-layout-split-v");
30868     }
30869     var size = config.initialSize || config.height;
30870     if(typeof size != "undefined"){
30871         this.el.setHeight(size);
30872     }
30873 };
30874 Roo.extend(Roo.NorthLayoutRegion, Roo.SplitLayoutRegion, {
30875     orientation: Roo.SplitBar.VERTICAL,
30876     getBox : function(){
30877         if(this.collapsed){
30878             return this.collapsedEl.getBox();
30879         }
30880         var box = this.el.getBox();
30881         if(this.split){
30882             box.height += this.split.el.getHeight();
30883         }
30884         return box;
30885     },
30886     
30887     updateBox : function(box){
30888         if(this.split && !this.collapsed){
30889             box.height -= this.split.el.getHeight();
30890             this.split.el.setLeft(box.x);
30891             this.split.el.setTop(box.y+box.height);
30892             this.split.el.setWidth(box.width);
30893         }
30894         if(this.collapsed){
30895             this.updateBody(box.width, null);
30896         }
30897         Roo.LayoutRegion.prototype.updateBox.call(this, box);
30898     }
30899 });
30900
30901 Roo.SouthLayoutRegion = function(mgr, config){
30902     Roo.SplitLayoutRegion.call(this, mgr, config, "south", "s-resize");
30903     if(this.split){
30904         this.split.placement = Roo.SplitBar.BOTTOM;
30905         this.split.orientation = Roo.SplitBar.VERTICAL;
30906         this.split.el.addClass("x-layout-split-v");
30907     }
30908     var size = config.initialSize || config.height;
30909     if(typeof size != "undefined"){
30910         this.el.setHeight(size);
30911     }
30912 };
30913 Roo.extend(Roo.SouthLayoutRegion, Roo.SplitLayoutRegion, {
30914     orientation: Roo.SplitBar.VERTICAL,
30915     getBox : function(){
30916         if(this.collapsed){
30917             return this.collapsedEl.getBox();
30918         }
30919         var box = this.el.getBox();
30920         if(this.split){
30921             var sh = this.split.el.getHeight();
30922             box.height += sh;
30923             box.y -= sh;
30924         }
30925         return box;
30926     },
30927     
30928     updateBox : function(box){
30929         if(this.split && !this.collapsed){
30930             var sh = this.split.el.getHeight();
30931             box.height -= sh;
30932             box.y += sh;
30933             this.split.el.setLeft(box.x);
30934             this.split.el.setTop(box.y-sh);
30935             this.split.el.setWidth(box.width);
30936         }
30937         if(this.collapsed){
30938             this.updateBody(box.width, null);
30939         }
30940         Roo.LayoutRegion.prototype.updateBox.call(this, box);
30941     }
30942 });
30943
30944 Roo.EastLayoutRegion = function(mgr, config){
30945     Roo.SplitLayoutRegion.call(this, mgr, config, "east", "e-resize");
30946     if(this.split){
30947         this.split.placement = Roo.SplitBar.RIGHT;
30948         this.split.orientation = Roo.SplitBar.HORIZONTAL;
30949         this.split.el.addClass("x-layout-split-h");
30950     }
30951     var size = config.initialSize || config.width;
30952     if(typeof size != "undefined"){
30953         this.el.setWidth(size);
30954     }
30955 };
30956 Roo.extend(Roo.EastLayoutRegion, Roo.SplitLayoutRegion, {
30957     orientation: Roo.SplitBar.HORIZONTAL,
30958     getBox : function(){
30959         if(this.collapsed){
30960             return this.collapsedEl.getBox();
30961         }
30962         var box = this.el.getBox();
30963         if(this.split){
30964             var sw = this.split.el.getWidth();
30965             box.width += sw;
30966             box.x -= sw;
30967         }
30968         return box;
30969     },
30970
30971     updateBox : function(box){
30972         if(this.split && !this.collapsed){
30973             var sw = this.split.el.getWidth();
30974             box.width -= sw;
30975             this.split.el.setLeft(box.x);
30976             this.split.el.setTop(box.y);
30977             this.split.el.setHeight(box.height);
30978             box.x += sw;
30979         }
30980         if(this.collapsed){
30981             this.updateBody(null, box.height);
30982         }
30983         Roo.LayoutRegion.prototype.updateBox.call(this, box);
30984     }
30985 });
30986
30987 Roo.WestLayoutRegion = function(mgr, config){
30988     Roo.SplitLayoutRegion.call(this, mgr, config, "west", "w-resize");
30989     if(this.split){
30990         this.split.placement = Roo.SplitBar.LEFT;
30991         this.split.orientation = Roo.SplitBar.HORIZONTAL;
30992         this.split.el.addClass("x-layout-split-h");
30993     }
30994     var size = config.initialSize || config.width;
30995     if(typeof size != "undefined"){
30996         this.el.setWidth(size);
30997     }
30998 };
30999 Roo.extend(Roo.WestLayoutRegion, Roo.SplitLayoutRegion, {
31000     orientation: Roo.SplitBar.HORIZONTAL,
31001     getBox : function(){
31002         if(this.collapsed){
31003             return this.collapsedEl.getBox();
31004         }
31005         var box = this.el.getBox();
31006         if(this.split){
31007             box.width += this.split.el.getWidth();
31008         }
31009         return box;
31010     },
31011     
31012     updateBox : function(box){
31013         if(this.split && !this.collapsed){
31014             var sw = this.split.el.getWidth();
31015             box.width -= sw;
31016             this.split.el.setLeft(box.x+box.width);
31017             this.split.el.setTop(box.y);
31018             this.split.el.setHeight(box.height);
31019         }
31020         if(this.collapsed){
31021             this.updateBody(null, box.height);
31022         }
31023         Roo.LayoutRegion.prototype.updateBox.call(this, box);
31024     }
31025 });
31026 /*
31027  * Based on:
31028  * Ext JS Library 1.1.1
31029  * Copyright(c) 2006-2007, Ext JS, LLC.
31030  *
31031  * Originally Released Under LGPL - original licence link has changed is not relivant.
31032  *
31033  * Fork - LGPL
31034  * <script type="text/javascript">
31035  */
31036  
31037  
31038 /*
31039  * Private internal class for reading and applying state
31040  */
31041 Roo.LayoutStateManager = function(layout){
31042      // default empty state
31043      this.state = {
31044         north: {},
31045         south: {},
31046         east: {},
31047         west: {}       
31048     };
31049 };
31050
31051 Roo.LayoutStateManager.prototype = {
31052     init : function(layout, provider){
31053         this.provider = provider;
31054         var state = provider.get(layout.id+"-layout-state");
31055         if(state){
31056             var wasUpdating = layout.isUpdating();
31057             if(!wasUpdating){
31058                 layout.beginUpdate();
31059             }
31060             for(var key in state){
31061                 if(typeof state[key] != "function"){
31062                     var rstate = state[key];
31063                     var r = layout.getRegion(key);
31064                     if(r && rstate){
31065                         if(rstate.size){
31066                             r.resizeTo(rstate.size);
31067                         }
31068                         if(rstate.collapsed == true){
31069                             r.collapse(true);
31070                         }else{
31071                             r.expand(null, true);
31072                         }
31073                     }
31074                 }
31075             }
31076             if(!wasUpdating){
31077                 layout.endUpdate();
31078             }
31079             this.state = state; 
31080         }
31081         this.layout = layout;
31082         layout.on("regionresized", this.onRegionResized, this);
31083         layout.on("regioncollapsed", this.onRegionCollapsed, this);
31084         layout.on("regionexpanded", this.onRegionExpanded, this);
31085     },
31086     
31087     storeState : function(){
31088         this.provider.set(this.layout.id+"-layout-state", this.state);
31089     },
31090     
31091     onRegionResized : function(region, newSize){
31092         this.state[region.getPosition()].size = newSize;
31093         this.storeState();
31094     },
31095     
31096     onRegionCollapsed : function(region){
31097         this.state[region.getPosition()].collapsed = true;
31098         this.storeState();
31099     },
31100     
31101     onRegionExpanded : function(region){
31102         this.state[region.getPosition()].collapsed = false;
31103         this.storeState();
31104     }
31105 };/*
31106  * Based on:
31107  * Ext JS Library 1.1.1
31108  * Copyright(c) 2006-2007, Ext JS, LLC.
31109  *
31110  * Originally Released Under LGPL - original licence link has changed is not relivant.
31111  *
31112  * Fork - LGPL
31113  * <script type="text/javascript">
31114  */
31115 /**
31116  * @class Roo.ContentPanel
31117  * @extends Roo.util.Observable
31118  * A basic ContentPanel element.
31119  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
31120  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
31121  * @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
31122  * @cfg {Boolean}   closable      True if the panel can be closed/removed
31123  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
31124  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
31125  * @cfg {Toolbar}   toolbar       A toolbar for this panel
31126  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
31127  * @cfg {String} title          The title for this panel
31128  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
31129  * @cfg {String} url            Calls {@link #setUrl} with this value
31130  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
31131  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
31132  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
31133  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
31134
31135  * @constructor
31136  * Create a new ContentPanel.
31137  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
31138  * @param {String/Object} config A string to set only the title or a config object
31139  * @param {String} content (optional) Set the HTML content for this panel
31140  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
31141  */
31142 Roo.ContentPanel = function(el, config, content){
31143     
31144      
31145     /*
31146     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
31147         config = el;
31148         el = Roo.id();
31149     }
31150     if (config && config.parentLayout) { 
31151         el = config.parentLayout.el.createChild(); 
31152     }
31153     */
31154     if(el.autoCreate){ // xtype is available if this is called from factory
31155         config = el;
31156         el = Roo.id();
31157     }
31158     this.el = Roo.get(el);
31159     if(!this.el && config && config.autoCreate){
31160         if(typeof config.autoCreate == "object"){
31161             if(!config.autoCreate.id){
31162                 config.autoCreate.id = config.id||el;
31163             }
31164             this.el = Roo.DomHelper.append(document.body,
31165                         config.autoCreate, true);
31166         }else{
31167             this.el = Roo.DomHelper.append(document.body,
31168                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
31169         }
31170     }
31171     this.closable = false;
31172     this.loaded = false;
31173     this.active = false;
31174     if(typeof config == "string"){
31175         this.title = config;
31176     }else{
31177         Roo.apply(this, config);
31178     }
31179     
31180     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
31181         this.wrapEl = this.el.wrap();
31182         this.toolbar.container = this.el.insertSibling(false, 'before');
31183         this.toolbar = new Roo.Toolbar(this.toolbar);
31184     }
31185     
31186     // xtype created footer. - not sure if will work as we normally have to render first..
31187     if (this.footer && !this.footer.el && this.footer.xtype) {
31188         if (!this.wrapEl) {
31189             this.wrapEl = this.el.wrap();
31190         }
31191     
31192         this.footer.container = this.wrapEl.createChild();
31193          
31194         this.footer = Roo.factory(this.footer, Roo);
31195         
31196     }
31197     
31198     if(this.resizeEl){
31199         this.resizeEl = Roo.get(this.resizeEl, true);
31200     }else{
31201         this.resizeEl = this.el;
31202     }
31203     // handle view.xtype
31204     
31205  
31206     
31207     
31208     this.addEvents({
31209         /**
31210          * @event activate
31211          * Fires when this panel is activated. 
31212          * @param {Roo.ContentPanel} this
31213          */
31214         "activate" : true,
31215         /**
31216          * @event deactivate
31217          * Fires when this panel is activated. 
31218          * @param {Roo.ContentPanel} this
31219          */
31220         "deactivate" : true,
31221
31222         /**
31223          * @event resize
31224          * Fires when this panel is resized if fitToFrame is true.
31225          * @param {Roo.ContentPanel} this
31226          * @param {Number} width The width after any component adjustments
31227          * @param {Number} height The height after any component adjustments
31228          */
31229         "resize" : true,
31230         
31231          /**
31232          * @event render
31233          * Fires when this tab is created
31234          * @param {Roo.ContentPanel} this
31235          */
31236         "render" : true
31237          
31238         
31239     });
31240     
31241
31242     
31243     
31244     if(this.autoScroll){
31245         this.resizeEl.setStyle("overflow", "auto");
31246     } else {
31247         // fix randome scrolling
31248         this.el.on('scroll', function() {
31249             Roo.log('fix random scolling');
31250             this.scrollTo('top',0); 
31251         });
31252     }
31253     content = content || this.content;
31254     if(content){
31255         this.setContent(content);
31256     }
31257     if(config && config.url){
31258         this.setUrl(this.url, this.params, this.loadOnce);
31259     }
31260     
31261     
31262     
31263     Roo.ContentPanel.superclass.constructor.call(this);
31264     
31265     if (this.view && typeof(this.view.xtype) != 'undefined') {
31266         this.view.el = this.el.appendChild(document.createElement("div"));
31267         this.view = Roo.factory(this.view); 
31268         this.view.render  &&  this.view.render(false, '');  
31269     }
31270     
31271     
31272     this.fireEvent('render', this);
31273 };
31274
31275 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
31276     tabTip:'',
31277     setRegion : function(region){
31278         this.region = region;
31279         if(region){
31280            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
31281         }else{
31282            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
31283         } 
31284     },
31285     
31286     /**
31287      * Returns the toolbar for this Panel if one was configured. 
31288      * @return {Roo.Toolbar} 
31289      */
31290     getToolbar : function(){
31291         return this.toolbar;
31292     },
31293     
31294     setActiveState : function(active){
31295         this.active = active;
31296         if(!active){
31297             this.fireEvent("deactivate", this);
31298         }else{
31299             this.fireEvent("activate", this);
31300         }
31301     },
31302     /**
31303      * Updates this panel's element
31304      * @param {String} content The new content
31305      * @param {Boolean} loadScripts (optional) true to look for and process scripts
31306     */
31307     setContent : function(content, loadScripts){
31308         this.el.update(content, loadScripts);
31309     },
31310
31311     ignoreResize : function(w, h){
31312         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
31313             return true;
31314         }else{
31315             this.lastSize = {width: w, height: h};
31316             return false;
31317         }
31318     },
31319     /**
31320      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
31321      * @return {Roo.UpdateManager} The UpdateManager
31322      */
31323     getUpdateManager : function(){
31324         return this.el.getUpdateManager();
31325     },
31326      /**
31327      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
31328      * @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:
31329 <pre><code>
31330 panel.load({
31331     url: "your-url.php",
31332     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
31333     callback: yourFunction,
31334     scope: yourObject, //(optional scope)
31335     discardUrl: false,
31336     nocache: false,
31337     text: "Loading...",
31338     timeout: 30,
31339     scripts: false
31340 });
31341 </code></pre>
31342      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
31343      * 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.
31344      * @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}
31345      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
31346      * @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.
31347      * @return {Roo.ContentPanel} this
31348      */
31349     load : function(){
31350         var um = this.el.getUpdateManager();
31351         um.update.apply(um, arguments);
31352         return this;
31353     },
31354
31355
31356     /**
31357      * 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.
31358      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
31359      * @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)
31360      * @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)
31361      * @return {Roo.UpdateManager} The UpdateManager
31362      */
31363     setUrl : function(url, params, loadOnce){
31364         if(this.refreshDelegate){
31365             this.removeListener("activate", this.refreshDelegate);
31366         }
31367         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
31368         this.on("activate", this.refreshDelegate);
31369         return this.el.getUpdateManager();
31370     },
31371     
31372     _handleRefresh : function(url, params, loadOnce){
31373         if(!loadOnce || !this.loaded){
31374             var updater = this.el.getUpdateManager();
31375             updater.update(url, params, this._setLoaded.createDelegate(this));
31376         }
31377     },
31378     
31379     _setLoaded : function(){
31380         this.loaded = true;
31381     }, 
31382     
31383     /**
31384      * Returns this panel's id
31385      * @return {String} 
31386      */
31387     getId : function(){
31388         return this.el.id;
31389     },
31390     
31391     /** 
31392      * Returns this panel's element - used by regiosn to add.
31393      * @return {Roo.Element} 
31394      */
31395     getEl : function(){
31396         return this.wrapEl || this.el;
31397     },
31398     
31399     adjustForComponents : function(width, height)
31400     {
31401         //Roo.log('adjustForComponents ');
31402         if(this.resizeEl != this.el){
31403             width -= this.el.getFrameWidth('lr');
31404             height -= this.el.getFrameWidth('tb');
31405         }
31406         if(this.toolbar){
31407             var te = this.toolbar.getEl();
31408             height -= te.getHeight();
31409             te.setWidth(width);
31410         }
31411         if(this.footer){
31412             var te = this.footer.getEl();
31413             //Roo.log("footer:" + te.getHeight());
31414             
31415             height -= te.getHeight();
31416             te.setWidth(width);
31417         }
31418         
31419         
31420         if(this.adjustments){
31421             width += this.adjustments[0];
31422             height += this.adjustments[1];
31423         }
31424         return {"width": width, "height": height};
31425     },
31426     
31427     setSize : function(width, height){
31428         if(this.fitToFrame && !this.ignoreResize(width, height)){
31429             if(this.fitContainer && this.resizeEl != this.el){
31430                 this.el.setSize(width, height);
31431             }
31432             var size = this.adjustForComponents(width, height);
31433             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
31434             this.fireEvent('resize', this, size.width, size.height);
31435         }
31436     },
31437     
31438     /**
31439      * Returns this panel's title
31440      * @return {String} 
31441      */
31442     getTitle : function(){
31443         return this.title;
31444     },
31445     
31446     /**
31447      * Set this panel's title
31448      * @param {String} title
31449      */
31450     setTitle : function(title){
31451         this.title = title;
31452         if(this.region){
31453             this.region.updatePanelTitle(this, title);
31454         }
31455     },
31456     
31457     /**
31458      * Returns true is this panel was configured to be closable
31459      * @return {Boolean} 
31460      */
31461     isClosable : function(){
31462         return this.closable;
31463     },
31464     
31465     beforeSlide : function(){
31466         this.el.clip();
31467         this.resizeEl.clip();
31468     },
31469     
31470     afterSlide : function(){
31471         this.el.unclip();
31472         this.resizeEl.unclip();
31473     },
31474     
31475     /**
31476      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
31477      *   Will fail silently if the {@link #setUrl} method has not been called.
31478      *   This does not activate the panel, just updates its content.
31479      */
31480     refresh : function(){
31481         if(this.refreshDelegate){
31482            this.loaded = false;
31483            this.refreshDelegate();
31484         }
31485     },
31486     
31487     /**
31488      * Destroys this panel
31489      */
31490     destroy : function(){
31491         this.el.removeAllListeners();
31492         var tempEl = document.createElement("span");
31493         tempEl.appendChild(this.el.dom);
31494         tempEl.innerHTML = "";
31495         this.el.remove();
31496         this.el = null;
31497     },
31498     
31499     /**
31500      * form - if the content panel contains a form - this is a reference to it.
31501      * @type {Roo.form.Form}
31502      */
31503     form : false,
31504     /**
31505      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
31506      *    This contains a reference to it.
31507      * @type {Roo.View}
31508      */
31509     view : false,
31510     
31511       /**
31512      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
31513      * <pre><code>
31514
31515 layout.addxtype({
31516        xtype : 'Form',
31517        items: [ .... ]
31518    }
31519 );
31520
31521 </code></pre>
31522      * @param {Object} cfg Xtype definition of item to add.
31523      */
31524     
31525     addxtype : function(cfg) {
31526         // add form..
31527         if (cfg.xtype.match(/^Form$/)) {
31528             
31529             var el;
31530             //if (this.footer) {
31531             //    el = this.footer.container.insertSibling(false, 'before');
31532             //} else {
31533                 el = this.el.createChild();
31534             //}
31535
31536             this.form = new  Roo.form.Form(cfg);
31537             
31538             
31539             if ( this.form.allItems.length) {
31540                 this.form.render(el.dom);
31541             }
31542             return this.form;
31543         }
31544         // should only have one of theses..
31545         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
31546             // views.. should not be just added - used named prop 'view''
31547             
31548             cfg.el = this.el.appendChild(document.createElement("div"));
31549             // factory?
31550             
31551             var ret = new Roo.factory(cfg);
31552              
31553              ret.render && ret.render(false, ''); // render blank..
31554             this.view = ret;
31555             return ret;
31556         }
31557         return false;
31558     }
31559 });
31560
31561 /**
31562  * @class Roo.GridPanel
31563  * @extends Roo.ContentPanel
31564  * @constructor
31565  * Create a new GridPanel.
31566  * @param {Roo.grid.Grid} grid The grid for this panel
31567  * @param {String/Object} config A string to set only the panel's title, or a config object
31568  */
31569 Roo.GridPanel = function(grid, config){
31570     
31571   
31572     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
31573         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
31574         
31575     this.wrapper.dom.appendChild(grid.getGridEl().dom);
31576     
31577     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
31578     
31579     if(this.toolbar){
31580         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
31581     }
31582     // xtype created footer. - not sure if will work as we normally have to render first..
31583     if (this.footer && !this.footer.el && this.footer.xtype) {
31584         
31585         this.footer.container = this.grid.getView().getFooterPanel(true);
31586         this.footer.dataSource = this.grid.dataSource;
31587         this.footer = Roo.factory(this.footer, Roo);
31588         
31589     }
31590     
31591     grid.monitorWindowResize = false; // turn off autosizing
31592     grid.autoHeight = false;
31593     grid.autoWidth = false;
31594     this.grid = grid;
31595     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
31596 };
31597
31598 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
31599     getId : function(){
31600         return this.grid.id;
31601     },
31602     
31603     /**
31604      * Returns the grid for this panel
31605      * @return {Roo.grid.Grid} 
31606      */
31607     getGrid : function(){
31608         return this.grid;    
31609     },
31610     
31611     setSize : function(width, height){
31612         if(!this.ignoreResize(width, height)){
31613             var grid = this.grid;
31614             var size = this.adjustForComponents(width, height);
31615             grid.getGridEl().setSize(size.width, size.height);
31616             grid.autoSize();
31617         }
31618     },
31619     
31620     beforeSlide : function(){
31621         this.grid.getView().scroller.clip();
31622     },
31623     
31624     afterSlide : function(){
31625         this.grid.getView().scroller.unclip();
31626     },
31627     
31628     destroy : function(){
31629         this.grid.destroy();
31630         delete this.grid;
31631         Roo.GridPanel.superclass.destroy.call(this); 
31632     }
31633 });
31634
31635
31636 /**
31637  * @class Roo.NestedLayoutPanel
31638  * @extends Roo.ContentPanel
31639  * @constructor
31640  * Create a new NestedLayoutPanel.
31641  * 
31642  * 
31643  * @param {Roo.BorderLayout} layout The layout for this panel
31644  * @param {String/Object} config A string to set only the title or a config object
31645  */
31646 Roo.NestedLayoutPanel = function(layout, config)
31647 {
31648     // construct with only one argument..
31649     /* FIXME - implement nicer consturctors
31650     if (layout.layout) {
31651         config = layout;
31652         layout = config.layout;
31653         delete config.layout;
31654     }
31655     if (layout.xtype && !layout.getEl) {
31656         // then layout needs constructing..
31657         layout = Roo.factory(layout, Roo);
31658     }
31659     */
31660     
31661     
31662     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
31663     
31664     layout.monitorWindowResize = false; // turn off autosizing
31665     this.layout = layout;
31666     this.layout.getEl().addClass("x-layout-nested-layout");
31667     
31668     
31669     
31670     
31671 };
31672
31673 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
31674
31675     setSize : function(width, height){
31676         if(!this.ignoreResize(width, height)){
31677             var size = this.adjustForComponents(width, height);
31678             var el = this.layout.getEl();
31679             el.setSize(size.width, size.height);
31680             var touch = el.dom.offsetWidth;
31681             this.layout.layout();
31682             // ie requires a double layout on the first pass
31683             if(Roo.isIE && !this.initialized){
31684                 this.initialized = true;
31685                 this.layout.layout();
31686             }
31687         }
31688     },
31689     
31690     // activate all subpanels if not currently active..
31691     
31692     setActiveState : function(active){
31693         this.active = active;
31694         if(!active){
31695             this.fireEvent("deactivate", this);
31696             return;
31697         }
31698         
31699         this.fireEvent("activate", this);
31700         // not sure if this should happen before or after..
31701         if (!this.layout) {
31702             return; // should not happen..
31703         }
31704         var reg = false;
31705         for (var r in this.layout.regions) {
31706             reg = this.layout.getRegion(r);
31707             if (reg.getActivePanel()) {
31708                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
31709                 reg.setActivePanel(reg.getActivePanel());
31710                 continue;
31711             }
31712             if (!reg.panels.length) {
31713                 continue;
31714             }
31715             reg.showPanel(reg.getPanel(0));
31716         }
31717         
31718         
31719         
31720         
31721     },
31722     
31723     /**
31724      * Returns the nested BorderLayout for this panel
31725      * @return {Roo.BorderLayout} 
31726      */
31727     getLayout : function(){
31728         return this.layout;
31729     },
31730     
31731      /**
31732      * Adds a xtype elements to the layout of the nested panel
31733      * <pre><code>
31734
31735 panel.addxtype({
31736        xtype : 'ContentPanel',
31737        region: 'west',
31738        items: [ .... ]
31739    }
31740 );
31741
31742 panel.addxtype({
31743         xtype : 'NestedLayoutPanel',
31744         region: 'west',
31745         layout: {
31746            center: { },
31747            west: { }   
31748         },
31749         items : [ ... list of content panels or nested layout panels.. ]
31750    }
31751 );
31752 </code></pre>
31753      * @param {Object} cfg Xtype definition of item to add.
31754      */
31755     addxtype : function(cfg) {
31756         return this.layout.addxtype(cfg);
31757     
31758     }
31759 });
31760
31761 Roo.ScrollPanel = function(el, config, content){
31762     config = config || {};
31763     config.fitToFrame = true;
31764     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
31765     
31766     this.el.dom.style.overflow = "hidden";
31767     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
31768     this.el.removeClass("x-layout-inactive-content");
31769     this.el.on("mousewheel", this.onWheel, this);
31770
31771     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
31772     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
31773     up.unselectable(); down.unselectable();
31774     up.on("click", this.scrollUp, this);
31775     down.on("click", this.scrollDown, this);
31776     up.addClassOnOver("x-scroller-btn-over");
31777     down.addClassOnOver("x-scroller-btn-over");
31778     up.addClassOnClick("x-scroller-btn-click");
31779     down.addClassOnClick("x-scroller-btn-click");
31780     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
31781
31782     this.resizeEl = this.el;
31783     this.el = wrap; this.up = up; this.down = down;
31784 };
31785
31786 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
31787     increment : 100,
31788     wheelIncrement : 5,
31789     scrollUp : function(){
31790         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
31791     },
31792
31793     scrollDown : function(){
31794         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
31795     },
31796
31797     afterScroll : function(){
31798         var el = this.resizeEl;
31799         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
31800         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
31801         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
31802     },
31803
31804     setSize : function(){
31805         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
31806         this.afterScroll();
31807     },
31808
31809     onWheel : function(e){
31810         var d = e.getWheelDelta();
31811         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
31812         this.afterScroll();
31813         e.stopEvent();
31814     },
31815
31816     setContent : function(content, loadScripts){
31817         this.resizeEl.update(content, loadScripts);
31818     }
31819
31820 });
31821
31822
31823
31824
31825
31826
31827
31828
31829
31830 /**
31831  * @class Roo.TreePanel
31832  * @extends Roo.ContentPanel
31833  * @constructor
31834  * Create a new TreePanel. - defaults to fit/scoll contents.
31835  * @param {String/Object} config A string to set only the panel's title, or a config object
31836  * @cfg {Roo.tree.TreePanel} tree The tree TreePanel, with config etc.
31837  */
31838 Roo.TreePanel = function(config){
31839     var el = config.el;
31840     var tree = config.tree;
31841     delete config.tree; 
31842     delete config.el; // hopefull!
31843     
31844     // wrapper for IE7 strict & safari scroll issue
31845     
31846     var treeEl = el.createChild();
31847     config.resizeEl = treeEl;
31848     
31849     
31850     
31851     Roo.TreePanel.superclass.constructor.call(this, el, config);
31852  
31853  
31854     this.tree = new Roo.tree.TreePanel(treeEl , tree);
31855     //console.log(tree);
31856     this.on('activate', function()
31857     {
31858         if (this.tree.rendered) {
31859             return;
31860         }
31861         //console.log('render tree');
31862         this.tree.render();
31863     });
31864     // this should not be needed.. - it's actually the 'el' that resizes?
31865     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
31866     
31867     //this.on('resize',  function (cp, w, h) {
31868     //        this.tree.innerCt.setWidth(w);
31869     //        this.tree.innerCt.setHeight(h);
31870     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
31871     //});
31872
31873         
31874     
31875 };
31876
31877 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
31878     fitToFrame : true,
31879     autoScroll : true
31880 });
31881
31882
31883
31884
31885
31886
31887
31888
31889
31890
31891
31892 /*
31893  * Based on:
31894  * Ext JS Library 1.1.1
31895  * Copyright(c) 2006-2007, Ext JS, LLC.
31896  *
31897  * Originally Released Under LGPL - original licence link has changed is not relivant.
31898  *
31899  * Fork - LGPL
31900  * <script type="text/javascript">
31901  */
31902  
31903
31904 /**
31905  * @class Roo.ReaderLayout
31906  * @extends Roo.BorderLayout
31907  * This is a pre-built layout that represents a classic, 5-pane application.  It consists of a header, a primary
31908  * center region containing two nested regions (a top one for a list view and one for item preview below),
31909  * and regions on either side that can be used for navigation, application commands, informational displays, etc.
31910  * The setup and configuration work exactly the same as it does for a {@link Roo.BorderLayout} - this class simply
31911  * expedites the setup of the overall layout and regions for this common application style.
31912  * Example:
31913  <pre><code>
31914 var reader = new Roo.ReaderLayout();
31915 var CP = Roo.ContentPanel;  // shortcut for adding
31916
31917 reader.beginUpdate();
31918 reader.add("north", new CP("north", "North"));
31919 reader.add("west", new CP("west", {title: "West"}));
31920 reader.add("east", new CP("east", {title: "East"}));
31921
31922 reader.regions.listView.add(new CP("listView", "List"));
31923 reader.regions.preview.add(new CP("preview", "Preview"));
31924 reader.endUpdate();
31925 </code></pre>
31926 * @constructor
31927 * Create a new ReaderLayout
31928 * @param {Object} config Configuration options
31929 * @param {String/HTMLElement/Element} container (optional) The container this layout is bound to (defaults to
31930 * document.body if omitted)
31931 */
31932 Roo.ReaderLayout = function(config, renderTo){
31933     var c = config || {size:{}};
31934     Roo.ReaderLayout.superclass.constructor.call(this, renderTo || document.body, {
31935         north: c.north !== false ? Roo.apply({
31936             split:false,
31937             initialSize: 32,
31938             titlebar: false
31939         }, c.north) : false,
31940         west: c.west !== false ? Roo.apply({
31941             split:true,
31942             initialSize: 200,
31943             minSize: 175,
31944             maxSize: 400,
31945             titlebar: true,
31946             collapsible: true,
31947             animate: true,
31948             margins:{left:5,right:0,bottom:5,top:5},
31949             cmargins:{left:5,right:5,bottom:5,top:5}
31950         }, c.west) : false,
31951         east: c.east !== false ? Roo.apply({
31952             split:true,
31953             initialSize: 200,
31954             minSize: 175,
31955             maxSize: 400,
31956             titlebar: true,
31957             collapsible: true,
31958             animate: true,
31959             margins:{left:0,right:5,bottom:5,top:5},
31960             cmargins:{left:5,right:5,bottom:5,top:5}
31961         }, c.east) : false,
31962         center: Roo.apply({
31963             tabPosition: 'top',
31964             autoScroll:false,
31965             closeOnTab: true,
31966             titlebar:false,
31967             margins:{left:c.west!==false ? 0 : 5,right:c.east!==false ? 0 : 5,bottom:5,top:2}
31968         }, c.center)
31969     });
31970
31971     this.el.addClass('x-reader');
31972
31973     this.beginUpdate();
31974
31975     var inner = new Roo.BorderLayout(Roo.get(document.body).createChild(), {
31976         south: c.preview !== false ? Roo.apply({
31977             split:true,
31978             initialSize: 200,
31979             minSize: 100,
31980             autoScroll:true,
31981             collapsible:true,
31982             titlebar: true,
31983             cmargins:{top:5,left:0, right:0, bottom:0}
31984         }, c.preview) : false,
31985         center: Roo.apply({
31986             autoScroll:false,
31987             titlebar:false,
31988             minHeight:200
31989         }, c.listView)
31990     });
31991     this.add('center', new Roo.NestedLayoutPanel(inner,
31992             Roo.apply({title: c.mainTitle || '',tabTip:''},c.innerPanelCfg)));
31993
31994     this.endUpdate();
31995
31996     this.regions.preview = inner.getRegion('south');
31997     this.regions.listView = inner.getRegion('center');
31998 };
31999
32000 Roo.extend(Roo.ReaderLayout, Roo.BorderLayout);/*
32001  * Based on:
32002  * Ext JS Library 1.1.1
32003  * Copyright(c) 2006-2007, Ext JS, LLC.
32004  *
32005  * Originally Released Under LGPL - original licence link has changed is not relivant.
32006  *
32007  * Fork - LGPL
32008  * <script type="text/javascript">
32009  */
32010  
32011 /**
32012  * @class Roo.grid.Grid
32013  * @extends Roo.util.Observable
32014  * This class represents the primary interface of a component based grid control.
32015  * <br><br>Usage:<pre><code>
32016  var grid = new Roo.grid.Grid("my-container-id", {
32017      ds: myDataStore,
32018      cm: myColModel,
32019      selModel: mySelectionModel,
32020      autoSizeColumns: true,
32021      monitorWindowResize: false,
32022      trackMouseOver: true
32023  });
32024  // set any options
32025  grid.render();
32026  * </code></pre>
32027  * <b>Common Problems:</b><br/>
32028  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
32029  * element will correct this<br/>
32030  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
32031  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
32032  * are unpredictable.<br/>
32033  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
32034  * grid to calculate dimensions/offsets.<br/>
32035   * @constructor
32036  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
32037  * The container MUST have some type of size defined for the grid to fill. The container will be
32038  * automatically set to position relative if it isn't already.
32039  * @param {Object} config A config object that sets properties on this grid.
32040  */
32041 Roo.grid.Grid = function(container, config){
32042         // initialize the container
32043         this.container = Roo.get(container);
32044         this.container.update("");
32045         this.container.setStyle("overflow", "hidden");
32046     this.container.addClass('x-grid-container');
32047
32048     this.id = this.container.id;
32049
32050     Roo.apply(this, config);
32051     // check and correct shorthanded configs
32052     if(this.ds){
32053         this.dataSource = this.ds;
32054         delete this.ds;
32055     }
32056     if(this.cm){
32057         this.colModel = this.cm;
32058         delete this.cm;
32059     }
32060     if(this.sm){
32061         this.selModel = this.sm;
32062         delete this.sm;
32063     }
32064
32065     if (this.selModel) {
32066         this.selModel = Roo.factory(this.selModel, Roo.grid);
32067         this.sm = this.selModel;
32068         this.sm.xmodule = this.xmodule || false;
32069     }
32070     if (typeof(this.colModel.config) == 'undefined') {
32071         this.colModel = new Roo.grid.ColumnModel(this.colModel);
32072         this.cm = this.colModel;
32073         this.cm.xmodule = this.xmodule || false;
32074     }
32075     if (this.dataSource) {
32076         this.dataSource= Roo.factory(this.dataSource, Roo.data);
32077         this.ds = this.dataSource;
32078         this.ds.xmodule = this.xmodule || false;
32079          
32080     }
32081     
32082     
32083     
32084     if(this.width){
32085         this.container.setWidth(this.width);
32086     }
32087
32088     if(this.height){
32089         this.container.setHeight(this.height);
32090     }
32091     /** @private */
32092         this.addEvents({
32093         // raw events
32094         /**
32095          * @event click
32096          * The raw click event for the entire grid.
32097          * @param {Roo.EventObject} e
32098          */
32099         "click" : true,
32100         /**
32101          * @event dblclick
32102          * The raw dblclick event for the entire grid.
32103          * @param {Roo.EventObject} e
32104          */
32105         "dblclick" : true,
32106         /**
32107          * @event contextmenu
32108          * The raw contextmenu event for the entire grid.
32109          * @param {Roo.EventObject} e
32110          */
32111         "contextmenu" : true,
32112         /**
32113          * @event mousedown
32114          * The raw mousedown event for the entire grid.
32115          * @param {Roo.EventObject} e
32116          */
32117         "mousedown" : true,
32118         /**
32119          * @event mouseup
32120          * The raw mouseup event for the entire grid.
32121          * @param {Roo.EventObject} e
32122          */
32123         "mouseup" : true,
32124         /**
32125          * @event mouseover
32126          * The raw mouseover event for the entire grid.
32127          * @param {Roo.EventObject} e
32128          */
32129         "mouseover" : true,
32130         /**
32131          * @event mouseout
32132          * The raw mouseout event for the entire grid.
32133          * @param {Roo.EventObject} e
32134          */
32135         "mouseout" : true,
32136         /**
32137          * @event keypress
32138          * The raw keypress event for the entire grid.
32139          * @param {Roo.EventObject} e
32140          */
32141         "keypress" : true,
32142         /**
32143          * @event keydown
32144          * The raw keydown event for the entire grid.
32145          * @param {Roo.EventObject} e
32146          */
32147         "keydown" : true,
32148
32149         // custom events
32150
32151         /**
32152          * @event cellclick
32153          * Fires when a cell is clicked
32154          * @param {Grid} this
32155          * @param {Number} rowIndex
32156          * @param {Number} columnIndex
32157          * @param {Roo.EventObject} e
32158          */
32159         "cellclick" : true,
32160         /**
32161          * @event celldblclick
32162          * Fires when a cell is double clicked
32163          * @param {Grid} this
32164          * @param {Number} rowIndex
32165          * @param {Number} columnIndex
32166          * @param {Roo.EventObject} e
32167          */
32168         "celldblclick" : true,
32169         /**
32170          * @event rowclick
32171          * Fires when a row is clicked
32172          * @param {Grid} this
32173          * @param {Number} rowIndex
32174          * @param {Roo.EventObject} e
32175          */
32176         "rowclick" : true,
32177         /**
32178          * @event rowdblclick
32179          * Fires when a row is double clicked
32180          * @param {Grid} this
32181          * @param {Number} rowIndex
32182          * @param {Roo.EventObject} e
32183          */
32184         "rowdblclick" : true,
32185         /**
32186          * @event headerclick
32187          * Fires when a header is clicked
32188          * @param {Grid} this
32189          * @param {Number} columnIndex
32190          * @param {Roo.EventObject} e
32191          */
32192         "headerclick" : true,
32193         /**
32194          * @event headerdblclick
32195          * Fires when a header cell is double clicked
32196          * @param {Grid} this
32197          * @param {Number} columnIndex
32198          * @param {Roo.EventObject} e
32199          */
32200         "headerdblclick" : true,
32201         /**
32202          * @event rowcontextmenu
32203          * Fires when a row is right clicked
32204          * @param {Grid} this
32205          * @param {Number} rowIndex
32206          * @param {Roo.EventObject} e
32207          */
32208         "rowcontextmenu" : true,
32209         /**
32210          * @event cellcontextmenu
32211          * Fires when a cell is right clicked
32212          * @param {Grid} this
32213          * @param {Number} rowIndex
32214          * @param {Number} cellIndex
32215          * @param {Roo.EventObject} e
32216          */
32217          "cellcontextmenu" : true,
32218         /**
32219          * @event headercontextmenu
32220          * Fires when a header is right clicked
32221          * @param {Grid} this
32222          * @param {Number} columnIndex
32223          * @param {Roo.EventObject} e
32224          */
32225         "headercontextmenu" : true,
32226         /**
32227          * @event bodyscroll
32228          * Fires when the body element is scrolled
32229          * @param {Number} scrollLeft
32230          * @param {Number} scrollTop
32231          */
32232         "bodyscroll" : true,
32233         /**
32234          * @event columnresize
32235          * Fires when the user resizes a column
32236          * @param {Number} columnIndex
32237          * @param {Number} newSize
32238          */
32239         "columnresize" : true,
32240         /**
32241          * @event columnmove
32242          * Fires when the user moves a column
32243          * @param {Number} oldIndex
32244          * @param {Number} newIndex
32245          */
32246         "columnmove" : true,
32247         /**
32248          * @event startdrag
32249          * Fires when row(s) start being dragged
32250          * @param {Grid} this
32251          * @param {Roo.GridDD} dd The drag drop object
32252          * @param {event} e The raw browser event
32253          */
32254         "startdrag" : true,
32255         /**
32256          * @event enddrag
32257          * Fires when a drag operation is complete
32258          * @param {Grid} this
32259          * @param {Roo.GridDD} dd The drag drop object
32260          * @param {event} e The raw browser event
32261          */
32262         "enddrag" : true,
32263         /**
32264          * @event dragdrop
32265          * Fires when dragged row(s) are dropped on a valid DD target
32266          * @param {Grid} this
32267          * @param {Roo.GridDD} dd The drag drop object
32268          * @param {String} targetId The target drag drop object
32269          * @param {event} e The raw browser event
32270          */
32271         "dragdrop" : true,
32272         /**
32273          * @event dragover
32274          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
32275          * @param {Grid} this
32276          * @param {Roo.GridDD} dd The drag drop object
32277          * @param {String} targetId The target drag drop object
32278          * @param {event} e The raw browser event
32279          */
32280         "dragover" : true,
32281         /**
32282          * @event dragenter
32283          *  Fires when the dragged row(s) first cross another DD target while being dragged
32284          * @param {Grid} this
32285          * @param {Roo.GridDD} dd The drag drop object
32286          * @param {String} targetId The target drag drop object
32287          * @param {event} e The raw browser event
32288          */
32289         "dragenter" : true,
32290         /**
32291          * @event dragout
32292          * Fires when the dragged row(s) leave another DD target while being dragged
32293          * @param {Grid} this
32294          * @param {Roo.GridDD} dd The drag drop object
32295          * @param {String} targetId The target drag drop object
32296          * @param {event} e The raw browser event
32297          */
32298         "dragout" : true,
32299         /**
32300          * @event rowclass
32301          * Fires when a row is rendered, so you can change add a style to it.
32302          * @param {GridView} gridview   The grid view
32303          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
32304          */
32305         'rowclass' : true,
32306
32307         /**
32308          * @event render
32309          * Fires when the grid is rendered
32310          * @param {Grid} grid
32311          */
32312         'render' : true
32313     });
32314
32315     Roo.grid.Grid.superclass.constructor.call(this);
32316 };
32317 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
32318     
32319     /**
32320      * @cfg {String} ddGroup - drag drop group.
32321      */
32322
32323     /**
32324      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
32325      */
32326     minColumnWidth : 25,
32327
32328     /**
32329      * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
32330      * <b>on initial render.</b> It is more efficient to explicitly size the columns
32331      * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
32332      */
32333     autoSizeColumns : false,
32334
32335     /**
32336      * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
32337      */
32338     autoSizeHeaders : true,
32339
32340     /**
32341      * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
32342      */
32343     monitorWindowResize : true,
32344
32345     /**
32346      * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
32347      * rows measured to get a columns size. Default is 0 (all rows).
32348      */
32349     maxRowsToMeasure : 0,
32350
32351     /**
32352      * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
32353      */
32354     trackMouseOver : true,
32355
32356     /**
32357     * @cfg {Boolean} enableDrag  True to enable drag of rows. Default is false. (double check if this is needed?)
32358     */
32359     
32360     /**
32361     * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
32362     */
32363     enableDragDrop : false,
32364     
32365     /**
32366     * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
32367     */
32368     enableColumnMove : true,
32369     
32370     /**
32371     * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
32372     */
32373     enableColumnHide : true,
32374     
32375     /**
32376     * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
32377     */
32378     enableRowHeightSync : false,
32379     
32380     /**
32381     * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
32382     */
32383     stripeRows : true,
32384     
32385     /**
32386     * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
32387     */
32388     autoHeight : false,
32389
32390     /**
32391      * @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.
32392      */
32393     autoExpandColumn : false,
32394
32395     /**
32396     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
32397     * Default is 50.
32398     */
32399     autoExpandMin : 50,
32400
32401     /**
32402     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
32403     */
32404     autoExpandMax : 1000,
32405
32406     /**
32407     * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
32408     */
32409     view : null,
32410
32411     /**
32412     * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
32413     */
32414     loadMask : false,
32415     /**
32416     * @cfg {Roo.dd.DropTarget} dropTarget An {@link Roo.dd.DropTarget} config
32417     */
32418     dropTarget: false,
32419     
32420    
32421     
32422     // private
32423     rendered : false,
32424
32425     /**
32426     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
32427     * of a fixed width. Default is false.
32428     */
32429     /**
32430     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
32431     */
32432     /**
32433      * Called once after all setup has been completed and the grid is ready to be rendered.
32434      * @return {Roo.grid.Grid} this
32435      */
32436     render : function()
32437     {
32438         var c = this.container;
32439         // try to detect autoHeight/width mode
32440         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
32441             this.autoHeight = true;
32442         }
32443         var view = this.getView();
32444         view.init(this);
32445
32446         c.on("click", this.onClick, this);
32447         c.on("dblclick", this.onDblClick, this);
32448         c.on("contextmenu", this.onContextMenu, this);
32449         c.on("keydown", this.onKeyDown, this);
32450         if (Roo.isTouch) {
32451             c.on("touchstart", this.onTouchStart, this);
32452         }
32453
32454         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
32455
32456         this.getSelectionModel().init(this);
32457
32458         view.render();
32459
32460         if(this.loadMask){
32461             this.loadMask = new Roo.LoadMask(this.container,
32462                     Roo.apply({store:this.dataSource}, this.loadMask));
32463         }
32464         
32465         
32466         if (this.toolbar && this.toolbar.xtype) {
32467             this.toolbar.container = this.getView().getHeaderPanel(true);
32468             this.toolbar = new Roo.Toolbar(this.toolbar);
32469         }
32470         if (this.footer && this.footer.xtype) {
32471             this.footer.dataSource = this.getDataSource();
32472             this.footer.container = this.getView().getFooterPanel(true);
32473             this.footer = Roo.factory(this.footer, Roo);
32474         }
32475         if (this.dropTarget && this.dropTarget.xtype) {
32476             delete this.dropTarget.xtype;
32477             this.dropTarget =  new Roo.dd.DropTarget(this.getView().mainBody, this.dropTarget);
32478         }
32479         
32480         
32481         this.rendered = true;
32482         this.fireEvent('render', this);
32483         return this;
32484     },
32485
32486         /**
32487          * Reconfigures the grid to use a different Store and Column Model.
32488          * The View will be bound to the new objects and refreshed.
32489          * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
32490          * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
32491          */
32492     reconfigure : function(dataSource, colModel){
32493         if(this.loadMask){
32494             this.loadMask.destroy();
32495             this.loadMask = new Roo.LoadMask(this.container,
32496                     Roo.apply({store:dataSource}, this.loadMask));
32497         }
32498         this.view.bind(dataSource, colModel);
32499         this.dataSource = dataSource;
32500         this.colModel = colModel;
32501         this.view.refresh(true);
32502     },
32503
32504     // private
32505     onKeyDown : function(e){
32506         this.fireEvent("keydown", e);
32507     },
32508
32509     /**
32510      * Destroy this grid.
32511      * @param {Boolean} removeEl True to remove the element
32512      */
32513     destroy : function(removeEl, keepListeners){
32514         if(this.loadMask){
32515             this.loadMask.destroy();
32516         }
32517         var c = this.container;
32518         c.removeAllListeners();
32519         this.view.destroy();
32520         this.colModel.purgeListeners();
32521         if(!keepListeners){
32522             this.purgeListeners();
32523         }
32524         c.update("");
32525         if(removeEl === true){
32526             c.remove();
32527         }
32528     },
32529
32530     // private
32531     processEvent : function(name, e){
32532         // does this fire select???
32533         //Roo.log('grid:processEvent '  + name);
32534         
32535         if (name != 'touchstart' ) {
32536             this.fireEvent(name, e);    
32537         }
32538         
32539         var t = e.getTarget();
32540         var v = this.view;
32541         var header = v.findHeaderIndex(t);
32542         if(header !== false){
32543             var ename = name == 'touchstart' ? 'click' : name;
32544              
32545             this.fireEvent("header" + ename, this, header, e);
32546         }else{
32547             var row = v.findRowIndex(t);
32548             var cell = v.findCellIndex(t);
32549             if (name == 'touchstart') {
32550                 // first touch is always a click.
32551                 // hopefull this happens after selection is updated.?
32552                 name = false;
32553                 
32554                 if (typeof(this.selModel.getSelectedCell) != 'undefined') {
32555                     var cs = this.selModel.getSelectedCell();
32556                     if (row == cs[0] && cell == cs[1]){
32557                         name = 'dblclick';
32558                     }
32559                 }
32560                 if (typeof(this.selModel.getSelections) != 'undefined') {
32561                     var cs = this.selModel.getSelections();
32562                     var ds = this.dataSource;
32563                     if (cs.length == 1 && ds.getAt(row) == cs[0]){
32564                         name = 'dblclick';
32565                     }
32566                 }
32567                 if (!name) {
32568                     return;
32569                 }
32570             }
32571             
32572             
32573             if(row !== false){
32574                 this.fireEvent("row" + name, this, row, e);
32575                 if(cell !== false){
32576                     this.fireEvent("cell" + name, this, row, cell, e);
32577                 }
32578             }
32579         }
32580     },
32581
32582     // private
32583     onClick : function(e){
32584         this.processEvent("click", e);
32585     },
32586    // private
32587     onTouchStart : function(e){
32588         this.processEvent("touchstart", e);
32589     },
32590
32591     // private
32592     onContextMenu : function(e, t){
32593         this.processEvent("contextmenu", e);
32594     },
32595
32596     // private
32597     onDblClick : function(e){
32598         this.processEvent("dblclick", e);
32599     },
32600
32601     // private
32602     walkCells : function(row, col, step, fn, scope){
32603         var cm = this.colModel, clen = cm.getColumnCount();
32604         var ds = this.dataSource, rlen = ds.getCount(), first = true;
32605         if(step < 0){
32606             if(col < 0){
32607                 row--;
32608                 first = false;
32609             }
32610             while(row >= 0){
32611                 if(!first){
32612                     col = clen-1;
32613                 }
32614                 first = false;
32615                 while(col >= 0){
32616                     if(fn.call(scope || this, row, col, cm) === true){
32617                         return [row, col];
32618                     }
32619                     col--;
32620                 }
32621                 row--;
32622             }
32623         } else {
32624             if(col >= clen){
32625                 row++;
32626                 first = false;
32627             }
32628             while(row < rlen){
32629                 if(!first){
32630                     col = 0;
32631                 }
32632                 first = false;
32633                 while(col < clen){
32634                     if(fn.call(scope || this, row, col, cm) === true){
32635                         return [row, col];
32636                     }
32637                     col++;
32638                 }
32639                 row++;
32640             }
32641         }
32642         return null;
32643     },
32644
32645     // private
32646     getSelections : function(){
32647         return this.selModel.getSelections();
32648     },
32649
32650     /**
32651      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
32652      * but if manual update is required this method will initiate it.
32653      */
32654     autoSize : function(){
32655         if(this.rendered){
32656             this.view.layout();
32657             if(this.view.adjustForScroll){
32658                 this.view.adjustForScroll();
32659             }
32660         }
32661     },
32662
32663     /**
32664      * Returns the grid's underlying element.
32665      * @return {Element} The element
32666      */
32667     getGridEl : function(){
32668         return this.container;
32669     },
32670
32671     // private for compatibility, overridden by editor grid
32672     stopEditing : function(){},
32673
32674     /**
32675      * Returns the grid's SelectionModel.
32676      * @return {SelectionModel}
32677      */
32678     getSelectionModel : function(){
32679         if(!this.selModel){
32680             this.selModel = new Roo.grid.RowSelectionModel();
32681         }
32682         return this.selModel;
32683     },
32684
32685     /**
32686      * Returns the grid's DataSource.
32687      * @return {DataSource}
32688      */
32689     getDataSource : function(){
32690         return this.dataSource;
32691     },
32692
32693     /**
32694      * Returns the grid's ColumnModel.
32695      * @return {ColumnModel}
32696      */
32697     getColumnModel : function(){
32698         return this.colModel;
32699     },
32700
32701     /**
32702      * Returns the grid's GridView object.
32703      * @return {GridView}
32704      */
32705     getView : function(){
32706         if(!this.view){
32707             this.view = new Roo.grid.GridView(this.viewConfig);
32708         }
32709         return this.view;
32710     },
32711     /**
32712      * Called to get grid's drag proxy text, by default returns this.ddText.
32713      * @return {String}
32714      */
32715     getDragDropText : function(){
32716         var count = this.selModel.getCount();
32717         return String.format(this.ddText, count, count == 1 ? '' : 's');
32718     }
32719 });
32720 /**
32721  * Configures the text is the drag proxy (defaults to "%0 selected row(s)").
32722  * %0 is replaced with the number of selected rows.
32723  * @type String
32724  */
32725 Roo.grid.Grid.prototype.ddText = "{0} selected row{1}";/*
32726  * Based on:
32727  * Ext JS Library 1.1.1
32728  * Copyright(c) 2006-2007, Ext JS, LLC.
32729  *
32730  * Originally Released Under LGPL - original licence link has changed is not relivant.
32731  *
32732  * Fork - LGPL
32733  * <script type="text/javascript">
32734  */
32735  
32736 Roo.grid.AbstractGridView = function(){
32737         this.grid = null;
32738         
32739         this.events = {
32740             "beforerowremoved" : true,
32741             "beforerowsinserted" : true,
32742             "beforerefresh" : true,
32743             "rowremoved" : true,
32744             "rowsinserted" : true,
32745             "rowupdated" : true,
32746             "refresh" : true
32747         };
32748     Roo.grid.AbstractGridView.superclass.constructor.call(this);
32749 };
32750
32751 Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
32752     rowClass : "x-grid-row",
32753     cellClass : "x-grid-cell",
32754     tdClass : "x-grid-td",
32755     hdClass : "x-grid-hd",
32756     splitClass : "x-grid-hd-split",
32757     
32758     init: function(grid){
32759         this.grid = grid;
32760                 var cid = this.grid.getGridEl().id;
32761         this.colSelector = "#" + cid + " ." + this.cellClass + "-";
32762         this.tdSelector = "#" + cid + " ." + this.tdClass + "-";
32763         this.hdSelector = "#" + cid + " ." + this.hdClass + "-";
32764         this.splitSelector = "#" + cid + " ." + this.splitClass + "-";
32765         },
32766         
32767     getColumnRenderers : function(){
32768         var renderers = [];
32769         var cm = this.grid.colModel;
32770         var colCount = cm.getColumnCount();
32771         for(var i = 0; i < colCount; i++){
32772             renderers[i] = cm.getRenderer(i);
32773         }
32774         return renderers;
32775     },
32776     
32777     getColumnIds : function(){
32778         var ids = [];
32779         var cm = this.grid.colModel;
32780         var colCount = cm.getColumnCount();
32781         for(var i = 0; i < colCount; i++){
32782             ids[i] = cm.getColumnId(i);
32783         }
32784         return ids;
32785     },
32786     
32787     getDataIndexes : function(){
32788         if(!this.indexMap){
32789             this.indexMap = this.buildIndexMap();
32790         }
32791         return this.indexMap.colToData;
32792     },
32793     
32794     getColumnIndexByDataIndex : function(dataIndex){
32795         if(!this.indexMap){
32796             this.indexMap = this.buildIndexMap();
32797         }
32798         return this.indexMap.dataToCol[dataIndex];
32799     },
32800     
32801     /**
32802      * Set a css style for a column dynamically. 
32803      * @param {Number} colIndex The index of the column
32804      * @param {String} name The css property name
32805      * @param {String} value The css value
32806      */
32807     setCSSStyle : function(colIndex, name, value){
32808         var selector = "#" + this.grid.id + " .x-grid-col-" + colIndex;
32809         Roo.util.CSS.updateRule(selector, name, value);
32810     },
32811     
32812     generateRules : function(cm){
32813         var ruleBuf = [], rulesId = this.grid.id + '-cssrules';
32814         Roo.util.CSS.removeStyleSheet(rulesId);
32815         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
32816             var cid = cm.getColumnId(i);
32817             ruleBuf.push(this.colSelector, cid, " {\n", cm.config[i].css, "}\n",
32818                          this.tdSelector, cid, " {\n}\n",
32819                          this.hdSelector, cid, " {\n}\n",
32820                          this.splitSelector, cid, " {\n}\n");
32821         }
32822         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
32823     }
32824 });/*
32825  * Based on:
32826  * Ext JS Library 1.1.1
32827  * Copyright(c) 2006-2007, Ext JS, LLC.
32828  *
32829  * Originally Released Under LGPL - original licence link has changed is not relivant.
32830  *
32831  * Fork - LGPL
32832  * <script type="text/javascript">
32833  */
32834
32835 // private
32836 // This is a support class used internally by the Grid components
32837 Roo.grid.HeaderDragZone = function(grid, hd, hd2){
32838     this.grid = grid;
32839     this.view = grid.getView();
32840     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
32841     Roo.grid.HeaderDragZone.superclass.constructor.call(this, hd);
32842     if(hd2){
32843         this.setHandleElId(Roo.id(hd));
32844         this.setOuterHandleElId(Roo.id(hd2));
32845     }
32846     this.scroll = false;
32847 };
32848 Roo.extend(Roo.grid.HeaderDragZone, Roo.dd.DragZone, {
32849     maxDragWidth: 120,
32850     getDragData : function(e){
32851         var t = Roo.lib.Event.getTarget(e);
32852         var h = this.view.findHeaderCell(t);
32853         if(h){
32854             return {ddel: h.firstChild, header:h};
32855         }
32856         return false;
32857     },
32858
32859     onInitDrag : function(e){
32860         this.view.headersDisabled = true;
32861         var clone = this.dragData.ddel.cloneNode(true);
32862         clone.id = Roo.id();
32863         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
32864         this.proxy.update(clone);
32865         return true;
32866     },
32867
32868     afterValidDrop : function(){
32869         var v = this.view;
32870         setTimeout(function(){
32871             v.headersDisabled = false;
32872         }, 50);
32873     },
32874
32875     afterInvalidDrop : function(){
32876         var v = this.view;
32877         setTimeout(function(){
32878             v.headersDisabled = false;
32879         }, 50);
32880     }
32881 });
32882 /*
32883  * Based on:
32884  * Ext JS Library 1.1.1
32885  * Copyright(c) 2006-2007, Ext JS, LLC.
32886  *
32887  * Originally Released Under LGPL - original licence link has changed is not relivant.
32888  *
32889  * Fork - LGPL
32890  * <script type="text/javascript">
32891  */
32892 // private
32893 // This is a support class used internally by the Grid components
32894 Roo.grid.HeaderDropZone = function(grid, hd, hd2){
32895     this.grid = grid;
32896     this.view = grid.getView();
32897     // split the proxies so they don't interfere with mouse events
32898     this.proxyTop = Roo.DomHelper.append(document.body, {
32899         cls:"col-move-top", html:"&#160;"
32900     }, true);
32901     this.proxyBottom = Roo.DomHelper.append(document.body, {
32902         cls:"col-move-bottom", html:"&#160;"
32903     }, true);
32904     this.proxyTop.hide = this.proxyBottom.hide = function(){
32905         this.setLeftTop(-100,-100);
32906         this.setStyle("visibility", "hidden");
32907     };
32908     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
32909     // temporarily disabled
32910     //Roo.dd.ScrollManager.register(this.view.scroller.dom);
32911     Roo.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
32912 };
32913 Roo.extend(Roo.grid.HeaderDropZone, Roo.dd.DropZone, {
32914     proxyOffsets : [-4, -9],
32915     fly: Roo.Element.fly,
32916
32917     getTargetFromEvent : function(e){
32918         var t = Roo.lib.Event.getTarget(e);
32919         var cindex = this.view.findCellIndex(t);
32920         if(cindex !== false){
32921             return this.view.getHeaderCell(cindex);
32922         }
32923         return null;
32924     },
32925
32926     nextVisible : function(h){
32927         var v = this.view, cm = this.grid.colModel;
32928         h = h.nextSibling;
32929         while(h){
32930             if(!cm.isHidden(v.getCellIndex(h))){
32931                 return h;
32932             }
32933             h = h.nextSibling;
32934         }
32935         return null;
32936     },
32937
32938     prevVisible : function(h){
32939         var v = this.view, cm = this.grid.colModel;
32940         h = h.prevSibling;
32941         while(h){
32942             if(!cm.isHidden(v.getCellIndex(h))){
32943                 return h;
32944             }
32945             h = h.prevSibling;
32946         }
32947         return null;
32948     },
32949
32950     positionIndicator : function(h, n, e){
32951         var x = Roo.lib.Event.getPageX(e);
32952         var r = Roo.lib.Dom.getRegion(n.firstChild);
32953         var px, pt, py = r.top + this.proxyOffsets[1];
32954         if((r.right - x) <= (r.right-r.left)/2){
32955             px = r.right+this.view.borderWidth;
32956             pt = "after";
32957         }else{
32958             px = r.left;
32959             pt = "before";
32960         }
32961         var oldIndex = this.view.getCellIndex(h);
32962         var newIndex = this.view.getCellIndex(n);
32963
32964         if(this.grid.colModel.isFixed(newIndex)){
32965             return false;
32966         }
32967
32968         var locked = this.grid.colModel.isLocked(newIndex);
32969
32970         if(pt == "after"){
32971             newIndex++;
32972         }
32973         if(oldIndex < newIndex){
32974             newIndex--;
32975         }
32976         if(oldIndex == newIndex && (locked == this.grid.colModel.isLocked(oldIndex))){
32977             return false;
32978         }
32979         px +=  this.proxyOffsets[0];
32980         this.proxyTop.setLeftTop(px, py);
32981         this.proxyTop.show();
32982         if(!this.bottomOffset){
32983             this.bottomOffset = this.view.mainHd.getHeight();
32984         }
32985         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
32986         this.proxyBottom.show();
32987         return pt;
32988     },
32989
32990     onNodeEnter : function(n, dd, e, data){
32991         if(data.header != n){
32992             this.positionIndicator(data.header, n, e);
32993         }
32994     },
32995
32996     onNodeOver : function(n, dd, e, data){
32997         var result = false;
32998         if(data.header != n){
32999             result = this.positionIndicator(data.header, n, e);
33000         }
33001         if(!result){
33002             this.proxyTop.hide();
33003             this.proxyBottom.hide();
33004         }
33005         return result ? this.dropAllowed : this.dropNotAllowed;
33006     },
33007
33008     onNodeOut : function(n, dd, e, data){
33009         this.proxyTop.hide();
33010         this.proxyBottom.hide();
33011     },
33012
33013     onNodeDrop : function(n, dd, e, data){
33014         var h = data.header;
33015         if(h != n){
33016             var cm = this.grid.colModel;
33017             var x = Roo.lib.Event.getPageX(e);
33018             var r = Roo.lib.Dom.getRegion(n.firstChild);
33019             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
33020             var oldIndex = this.view.getCellIndex(h);
33021             var newIndex = this.view.getCellIndex(n);
33022             var locked = cm.isLocked(newIndex);
33023             if(pt == "after"){
33024                 newIndex++;
33025             }
33026             if(oldIndex < newIndex){
33027                 newIndex--;
33028             }
33029             if(oldIndex == newIndex && (locked == cm.isLocked(oldIndex))){
33030                 return false;
33031             }
33032             cm.setLocked(oldIndex, locked, true);
33033             cm.moveColumn(oldIndex, newIndex);
33034             this.grid.fireEvent("columnmove", oldIndex, newIndex);
33035             return true;
33036         }
33037         return false;
33038     }
33039 });
33040 /*
33041  * Based on:
33042  * Ext JS Library 1.1.1
33043  * Copyright(c) 2006-2007, Ext JS, LLC.
33044  *
33045  * Originally Released Under LGPL - original licence link has changed is not relivant.
33046  *
33047  * Fork - LGPL
33048  * <script type="text/javascript">
33049  */
33050   
33051 /**
33052  * @class Roo.grid.GridView
33053  * @extends Roo.util.Observable
33054  *
33055  * @constructor
33056  * @param {Object} config
33057  */
33058 Roo.grid.GridView = function(config){
33059     Roo.grid.GridView.superclass.constructor.call(this);
33060     this.el = null;
33061
33062     Roo.apply(this, config);
33063 };
33064
33065 Roo.extend(Roo.grid.GridView, Roo.grid.AbstractGridView, {
33066
33067     unselectable :  'unselectable="on"',
33068     unselectableCls :  'x-unselectable',
33069     
33070     
33071     rowClass : "x-grid-row",
33072
33073     cellClass : "x-grid-col",
33074
33075     tdClass : "x-grid-td",
33076
33077     hdClass : "x-grid-hd",
33078
33079     splitClass : "x-grid-split",
33080
33081     sortClasses : ["sort-asc", "sort-desc"],
33082
33083     enableMoveAnim : false,
33084
33085     hlColor: "C3DAF9",
33086
33087     dh : Roo.DomHelper,
33088
33089     fly : Roo.Element.fly,
33090
33091     css : Roo.util.CSS,
33092
33093     borderWidth: 1,
33094
33095     splitOffset: 3,
33096
33097     scrollIncrement : 22,
33098
33099     cellRE: /(?:.*?)x-grid-(?:hd|cell|csplit)-(?:[\d]+)-([\d]+)(?:.*?)/,
33100
33101     findRE: /\s?(?:x-grid-hd|x-grid-col|x-grid-csplit)\s/,
33102
33103     bind : function(ds, cm){
33104         if(this.ds){
33105             this.ds.un("load", this.onLoad, this);
33106             this.ds.un("datachanged", this.onDataChange, this);
33107             this.ds.un("add", this.onAdd, this);
33108             this.ds.un("remove", this.onRemove, this);
33109             this.ds.un("update", this.onUpdate, this);
33110             this.ds.un("clear", this.onClear, this);
33111         }
33112         if(ds){
33113             ds.on("load", this.onLoad, this);
33114             ds.on("datachanged", this.onDataChange, this);
33115             ds.on("add", this.onAdd, this);
33116             ds.on("remove", this.onRemove, this);
33117             ds.on("update", this.onUpdate, this);
33118             ds.on("clear", this.onClear, this);
33119         }
33120         this.ds = ds;
33121
33122         if(this.cm){
33123             this.cm.un("widthchange", this.onColWidthChange, this);
33124             this.cm.un("headerchange", this.onHeaderChange, this);
33125             this.cm.un("hiddenchange", this.onHiddenChange, this);
33126             this.cm.un("columnmoved", this.onColumnMove, this);
33127             this.cm.un("columnlockchange", this.onColumnLock, this);
33128         }
33129         if(cm){
33130             this.generateRules(cm);
33131             cm.on("widthchange", this.onColWidthChange, this);
33132             cm.on("headerchange", this.onHeaderChange, this);
33133             cm.on("hiddenchange", this.onHiddenChange, this);
33134             cm.on("columnmoved", this.onColumnMove, this);
33135             cm.on("columnlockchange", this.onColumnLock, this);
33136         }
33137         this.cm = cm;
33138     },
33139
33140     init: function(grid){
33141         Roo.grid.GridView.superclass.init.call(this, grid);
33142
33143         this.bind(grid.dataSource, grid.colModel);
33144
33145         grid.on("headerclick", this.handleHeaderClick, this);
33146
33147         if(grid.trackMouseOver){
33148             grid.on("mouseover", this.onRowOver, this);
33149             grid.on("mouseout", this.onRowOut, this);
33150         }
33151         grid.cancelTextSelection = function(){};
33152         this.gridId = grid.id;
33153
33154         var tpls = this.templates || {};
33155
33156         if(!tpls.master){
33157             tpls.master = new Roo.Template(
33158                '<div class="x-grid" hidefocus="true">',
33159                 '<a href="#" class="x-grid-focus" tabIndex="-1"></a>',
33160                   '<div class="x-grid-topbar"></div>',
33161                   '<div class="x-grid-scroller"><div></div></div>',
33162                   '<div class="x-grid-locked">',
33163                       '<div class="x-grid-header">{lockedHeader}</div>',
33164                       '<div class="x-grid-body">{lockedBody}</div>',
33165                   "</div>",
33166                   '<div class="x-grid-viewport">',
33167                       '<div class="x-grid-header">{header}</div>',
33168                       '<div class="x-grid-body">{body}</div>',
33169                   "</div>",
33170                   '<div class="x-grid-bottombar"></div>',
33171                  
33172                   '<div class="x-grid-resize-proxy">&#160;</div>',
33173                "</div>"
33174             );
33175             tpls.master.disableformats = true;
33176         }
33177
33178         if(!tpls.header){
33179             tpls.header = new Roo.Template(
33180                '<table border="0" cellspacing="0" cellpadding="0">',
33181                '<tbody><tr class="x-grid-hd-row">{cells}</tr></tbody>',
33182                "</table>{splits}"
33183             );
33184             tpls.header.disableformats = true;
33185         }
33186         tpls.header.compile();
33187
33188         if(!tpls.hcell){
33189             tpls.hcell = new Roo.Template(
33190                 '<td class="x-grid-hd x-grid-td-{id} {cellId}"><div title="{title}" class="x-grid-hd-inner x-grid-hd-{id}">',
33191                 '<div class="x-grid-hd-text ' + this.unselectableCls +  '" ' + this.unselectable +'>{value}<img class="x-grid-sort-icon" src="', Roo.BLANK_IMAGE_URL, '" /></div>',
33192                 "</div></td>"
33193              );
33194              tpls.hcell.disableFormats = true;
33195         }
33196         tpls.hcell.compile();
33197
33198         if(!tpls.hsplit){
33199             tpls.hsplit = new Roo.Template('<div class="x-grid-split {splitId} x-grid-split-{id}" style="{style} ' +
33200                                             this.unselectableCls +  '" ' + this.unselectable +'>&#160;</div>');
33201             tpls.hsplit.disableFormats = true;
33202         }
33203         tpls.hsplit.compile();
33204
33205         if(!tpls.body){
33206             tpls.body = new Roo.Template(
33207                '<table border="0" cellspacing="0" cellpadding="0">',
33208                "<tbody>{rows}</tbody>",
33209                "</table>"
33210             );
33211             tpls.body.disableFormats = true;
33212         }
33213         tpls.body.compile();
33214
33215         if(!tpls.row){
33216             tpls.row = new Roo.Template('<tr class="x-grid-row {alt}">{cells}</tr>');
33217             tpls.row.disableFormats = true;
33218         }
33219         tpls.row.compile();
33220
33221         if(!tpls.cell){
33222             tpls.cell = new Roo.Template(
33223                 '<td class="x-grid-col x-grid-td-{id} {cellId} {css}" tabIndex="0">',
33224                 '<div class="x-grid-col-{id} x-grid-cell-inner"><div class="x-grid-cell-text ' +
33225                     this.unselectableCls +  '" ' + this.unselectable +'" {attr}>{value}</div></div>',
33226                 "</td>"
33227             );
33228             tpls.cell.disableFormats = true;
33229         }
33230         tpls.cell.compile();
33231
33232         this.templates = tpls;
33233     },
33234
33235     // remap these for backwards compat
33236     onColWidthChange : function(){
33237         this.updateColumns.apply(this, arguments);
33238     },
33239     onHeaderChange : function(){
33240         this.updateHeaders.apply(this, arguments);
33241     }, 
33242     onHiddenChange : function(){
33243         this.handleHiddenChange.apply(this, arguments);
33244     },
33245     onColumnMove : function(){
33246         this.handleColumnMove.apply(this, arguments);
33247     },
33248     onColumnLock : function(){
33249         this.handleLockChange.apply(this, arguments);
33250     },
33251
33252     onDataChange : function(){
33253         this.refresh();
33254         this.updateHeaderSortState();
33255     },
33256
33257     onClear : function(){
33258         this.refresh();
33259     },
33260
33261     onUpdate : function(ds, record){
33262         this.refreshRow(record);
33263     },
33264
33265     refreshRow : function(record){
33266         var ds = this.ds, index;
33267         if(typeof record == 'number'){
33268             index = record;
33269             record = ds.getAt(index);
33270         }else{
33271             index = ds.indexOf(record);
33272         }
33273         this.insertRows(ds, index, index, true);
33274         this.onRemove(ds, record, index+1, true);
33275         this.syncRowHeights(index, index);
33276         this.layout();
33277         this.fireEvent("rowupdated", this, index, record);
33278     },
33279
33280     onAdd : function(ds, records, index){
33281         this.insertRows(ds, index, index + (records.length-1));
33282     },
33283
33284     onRemove : function(ds, record, index, isUpdate){
33285         if(isUpdate !== true){
33286             this.fireEvent("beforerowremoved", this, index, record);
33287         }
33288         var bt = this.getBodyTable(), lt = this.getLockedTable();
33289         if(bt.rows[index]){
33290             bt.firstChild.removeChild(bt.rows[index]);
33291         }
33292         if(lt.rows[index]){
33293             lt.firstChild.removeChild(lt.rows[index]);
33294         }
33295         if(isUpdate !== true){
33296             this.stripeRows(index);
33297             this.syncRowHeights(index, index);
33298             this.layout();
33299             this.fireEvent("rowremoved", this, index, record);
33300         }
33301     },
33302
33303     onLoad : function(){
33304         this.scrollToTop();
33305     },
33306
33307     /**
33308      * Scrolls the grid to the top
33309      */
33310     scrollToTop : function(){
33311         if(this.scroller){
33312             this.scroller.dom.scrollTop = 0;
33313             this.syncScroll();
33314         }
33315     },
33316
33317     /**
33318      * Gets a panel in the header of the grid that can be used for toolbars etc.
33319      * After modifying the contents of this panel a call to grid.autoSize() may be
33320      * required to register any changes in size.
33321      * @param {Boolean} doShow By default the header is hidden. Pass true to show the panel
33322      * @return Roo.Element
33323      */
33324     getHeaderPanel : function(doShow){
33325         if(doShow){
33326             this.headerPanel.show();
33327         }
33328         return this.headerPanel;
33329     },
33330
33331     /**
33332      * Gets a panel in the footer of the grid that can be used for toolbars etc.
33333      * After modifying the contents of this panel a call to grid.autoSize() may be
33334      * required to register any changes in size.
33335      * @param {Boolean} doShow By default the footer is hidden. Pass true to show the panel
33336      * @return Roo.Element
33337      */
33338     getFooterPanel : function(doShow){
33339         if(doShow){
33340             this.footerPanel.show();
33341         }
33342         return this.footerPanel;
33343     },
33344
33345     initElements : function(){
33346         var E = Roo.Element;
33347         var el = this.grid.getGridEl().dom.firstChild;
33348         var cs = el.childNodes;
33349
33350         this.el = new E(el);
33351         
33352          this.focusEl = new E(el.firstChild);
33353         this.focusEl.swallowEvent("click", true);
33354         
33355         this.headerPanel = new E(cs[1]);
33356         this.headerPanel.enableDisplayMode("block");
33357
33358         this.scroller = new E(cs[2]);
33359         this.scrollSizer = new E(this.scroller.dom.firstChild);
33360
33361         this.lockedWrap = new E(cs[3]);
33362         this.lockedHd = new E(this.lockedWrap.dom.firstChild);
33363         this.lockedBody = new E(this.lockedWrap.dom.childNodes[1]);
33364
33365         this.mainWrap = new E(cs[4]);
33366         this.mainHd = new E(this.mainWrap.dom.firstChild);
33367         this.mainBody = new E(this.mainWrap.dom.childNodes[1]);
33368
33369         this.footerPanel = new E(cs[5]);
33370         this.footerPanel.enableDisplayMode("block");
33371
33372         this.resizeProxy = new E(cs[6]);
33373
33374         this.headerSelector = String.format(
33375            '#{0} td.x-grid-hd, #{1} td.x-grid-hd',
33376            this.lockedHd.id, this.mainHd.id
33377         );
33378
33379         this.splitterSelector = String.format(
33380            '#{0} div.x-grid-split, #{1} div.x-grid-split',
33381            this.idToCssName(this.lockedHd.id), this.idToCssName(this.mainHd.id)
33382         );
33383     },
33384     idToCssName : function(s)
33385     {
33386         return s.replace(/[^a-z0-9]+/ig, '-');
33387     },
33388
33389     getHeaderCell : function(index){
33390         return Roo.DomQuery.select(this.headerSelector)[index];
33391     },
33392
33393     getHeaderCellMeasure : function(index){
33394         return this.getHeaderCell(index).firstChild;
33395     },
33396
33397     getHeaderCellText : function(index){
33398         return this.getHeaderCell(index).firstChild.firstChild;
33399     },
33400
33401     getLockedTable : function(){
33402         return this.lockedBody.dom.firstChild;
33403     },
33404
33405     getBodyTable : function(){
33406         return this.mainBody.dom.firstChild;
33407     },
33408
33409     getLockedRow : function(index){
33410         return this.getLockedTable().rows[index];
33411     },
33412
33413     getRow : function(index){
33414         return this.getBodyTable().rows[index];
33415     },
33416
33417     getRowComposite : function(index){
33418         if(!this.rowEl){
33419             this.rowEl = new Roo.CompositeElementLite();
33420         }
33421         var els = [], lrow, mrow;
33422         if(lrow = this.getLockedRow(index)){
33423             els.push(lrow);
33424         }
33425         if(mrow = this.getRow(index)){
33426             els.push(mrow);
33427         }
33428         this.rowEl.elements = els;
33429         return this.rowEl;
33430     },
33431     /**
33432      * Gets the 'td' of the cell
33433      * 
33434      * @param {Integer} rowIndex row to select
33435      * @param {Integer} colIndex column to select
33436      * 
33437      * @return {Object} 
33438      */
33439     getCell : function(rowIndex, colIndex){
33440         var locked = this.cm.getLockedCount();
33441         var source;
33442         if(colIndex < locked){
33443             source = this.lockedBody.dom.firstChild;
33444         }else{
33445             source = this.mainBody.dom.firstChild;
33446             colIndex -= locked;
33447         }
33448         return source.rows[rowIndex].childNodes[colIndex];
33449     },
33450
33451     getCellText : function(rowIndex, colIndex){
33452         return this.getCell(rowIndex, colIndex).firstChild.firstChild;
33453     },
33454
33455     getCellBox : function(cell){
33456         var b = this.fly(cell).getBox();
33457         if(Roo.isOpera){ // opera fails to report the Y
33458             b.y = cell.offsetTop + this.mainBody.getY();
33459         }
33460         return b;
33461     },
33462
33463     getCellIndex : function(cell){
33464         var id = String(cell.className).match(this.cellRE);
33465         if(id){
33466             return parseInt(id[1], 10);
33467         }
33468         return 0;
33469     },
33470
33471     findHeaderIndex : function(n){
33472         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
33473         return r ? this.getCellIndex(r) : false;
33474     },
33475
33476     findHeaderCell : function(n){
33477         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
33478         return r ? r : false;
33479     },
33480
33481     findRowIndex : function(n){
33482         if(!n){
33483             return false;
33484         }
33485         var r = Roo.fly(n).findParent("tr." + this.rowClass, 6);
33486         return r ? r.rowIndex : false;
33487     },
33488
33489     findCellIndex : function(node){
33490         var stop = this.el.dom;
33491         while(node && node != stop){
33492             if(this.findRE.test(node.className)){
33493                 return this.getCellIndex(node);
33494             }
33495             node = node.parentNode;
33496         }
33497         return false;
33498     },
33499
33500     getColumnId : function(index){
33501         return this.cm.getColumnId(index);
33502     },
33503
33504     getSplitters : function()
33505     {
33506         if(this.splitterSelector){
33507            return Roo.DomQuery.select(this.splitterSelector);
33508         }else{
33509             return null;
33510       }
33511     },
33512
33513     getSplitter : function(index){
33514         return this.getSplitters()[index];
33515     },
33516
33517     onRowOver : function(e, t){
33518         var row;
33519         if((row = this.findRowIndex(t)) !== false){
33520             this.getRowComposite(row).addClass("x-grid-row-over");
33521         }
33522     },
33523
33524     onRowOut : function(e, t){
33525         var row;
33526         if((row = this.findRowIndex(t)) !== false && row !== this.findRowIndex(e.getRelatedTarget())){
33527             this.getRowComposite(row).removeClass("x-grid-row-over");
33528         }
33529     },
33530
33531     renderHeaders : function(){
33532         var cm = this.cm;
33533         var ct = this.templates.hcell, ht = this.templates.header, st = this.templates.hsplit;
33534         var cb = [], lb = [], sb = [], lsb = [], p = {};
33535         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
33536             p.cellId = "x-grid-hd-0-" + i;
33537             p.splitId = "x-grid-csplit-0-" + i;
33538             p.id = cm.getColumnId(i);
33539             p.value = cm.getColumnHeader(i) || "";
33540             p.title = cm.getColumnTooltip(i) || (''+p.value).match(/\</)  ? '' :  p.value  || "";
33541             p.style = (this.grid.enableColumnResize === false || !cm.isResizable(i) || cm.isFixed(i)) ? 'cursor:default' : '';
33542             if(!cm.isLocked(i)){
33543                 cb[cb.length] = ct.apply(p);
33544                 sb[sb.length] = st.apply(p);
33545             }else{
33546                 lb[lb.length] = ct.apply(p);
33547                 lsb[lsb.length] = st.apply(p);
33548             }
33549         }
33550         return [ht.apply({cells: lb.join(""), splits:lsb.join("")}),
33551                 ht.apply({cells: cb.join(""), splits:sb.join("")})];
33552     },
33553
33554     updateHeaders : function(){
33555         var html = this.renderHeaders();
33556         this.lockedHd.update(html[0]);
33557         this.mainHd.update(html[1]);
33558     },
33559
33560     /**
33561      * Focuses the specified row.
33562      * @param {Number} row The row index
33563      */
33564     focusRow : function(row)
33565     {
33566         //Roo.log('GridView.focusRow');
33567         var x = this.scroller.dom.scrollLeft;
33568         this.focusCell(row, 0, false);
33569         this.scroller.dom.scrollLeft = x;
33570     },
33571
33572     /**
33573      * Focuses the specified cell.
33574      * @param {Number} row The row index
33575      * @param {Number} col The column index
33576      * @param {Boolean} hscroll false to disable horizontal scrolling
33577      */
33578     focusCell : function(row, col, hscroll)
33579     {
33580         //Roo.log('GridView.focusCell');
33581         var el = this.ensureVisible(row, col, hscroll);
33582         this.focusEl.alignTo(el, "tl-tl");
33583         if(Roo.isGecko){
33584             this.focusEl.focus();
33585         }else{
33586             this.focusEl.focus.defer(1, this.focusEl);
33587         }
33588     },
33589
33590     /**
33591      * Scrolls the specified cell into view
33592      * @param {Number} row The row index
33593      * @param {Number} col The column index
33594      * @param {Boolean} hscroll false to disable horizontal scrolling
33595      */
33596     ensureVisible : function(row, col, hscroll)
33597     {
33598         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
33599         //return null; //disable for testing.
33600         if(typeof row != "number"){
33601             row = row.rowIndex;
33602         }
33603         if(row < 0 && row >= this.ds.getCount()){
33604             return  null;
33605         }
33606         col = (col !== undefined ? col : 0);
33607         var cm = this.grid.colModel;
33608         while(cm.isHidden(col)){
33609             col++;
33610         }
33611
33612         var el = this.getCell(row, col);
33613         if(!el){
33614             return null;
33615         }
33616         var c = this.scroller.dom;
33617
33618         var ctop = parseInt(el.offsetTop, 10);
33619         var cleft = parseInt(el.offsetLeft, 10);
33620         var cbot = ctop + el.offsetHeight;
33621         var cright = cleft + el.offsetWidth;
33622         
33623         var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
33624         var stop = parseInt(c.scrollTop, 10);
33625         var sleft = parseInt(c.scrollLeft, 10);
33626         var sbot = stop + ch;
33627         var sright = sleft + c.clientWidth;
33628         /*
33629         Roo.log('GridView.ensureVisible:' +
33630                 ' ctop:' + ctop +
33631                 ' c.clientHeight:' + c.clientHeight +
33632                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
33633                 ' stop:' + stop +
33634                 ' cbot:' + cbot +
33635                 ' sbot:' + sbot +
33636                 ' ch:' + ch  
33637                 );
33638         */
33639         if(ctop < stop){
33640              c.scrollTop = ctop;
33641             //Roo.log("set scrolltop to ctop DISABLE?");
33642         }else if(cbot > sbot){
33643             //Roo.log("set scrolltop to cbot-ch");
33644             c.scrollTop = cbot-ch;
33645         }
33646         
33647         if(hscroll !== false){
33648             if(cleft < sleft){
33649                 c.scrollLeft = cleft;
33650             }else if(cright > sright){
33651                 c.scrollLeft = cright-c.clientWidth;
33652             }
33653         }
33654          
33655         return el;
33656     },
33657
33658     updateColumns : function(){
33659         this.grid.stopEditing();
33660         var cm = this.grid.colModel, colIds = this.getColumnIds();
33661         //var totalWidth = cm.getTotalWidth();
33662         var pos = 0;
33663         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
33664             //if(cm.isHidden(i)) continue;
33665             var w = cm.getColumnWidth(i);
33666             this.css.updateRule(this.colSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
33667             this.css.updateRule(this.hdSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
33668         }
33669         this.updateSplitters();
33670     },
33671
33672     generateRules : function(cm){
33673         var ruleBuf = [], rulesId = this.idToCssName(this.grid.id)+ '-cssrules';
33674         Roo.util.CSS.removeStyleSheet(rulesId);
33675         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
33676             var cid = cm.getColumnId(i);
33677             var align = '';
33678             if(cm.config[i].align){
33679                 align = 'text-align:'+cm.config[i].align+';';
33680             }
33681             var hidden = '';
33682             if(cm.isHidden(i)){
33683                 hidden = 'display:none;';
33684             }
33685             var width = "width:" + (cm.getColumnWidth(i) - this.borderWidth) + "px;";
33686             ruleBuf.push(
33687                     this.colSelector, cid, " {\n", cm.config[i].css, align, width, "\n}\n",
33688                     this.hdSelector, cid, " {\n", align, width, "}\n",
33689                     this.tdSelector, cid, " {\n",hidden,"\n}\n",
33690                     this.splitSelector, cid, " {\n", hidden , "\n}\n");
33691         }
33692         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
33693     },
33694
33695     updateSplitters : function(){
33696         var cm = this.cm, s = this.getSplitters();
33697         if(s){ // splitters not created yet
33698             var pos = 0, locked = true;
33699             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
33700                 if(cm.isHidden(i)) {
33701                     continue;
33702                 }
33703                 var w = cm.getColumnWidth(i); // make sure it's a number
33704                 if(!cm.isLocked(i) && locked){
33705                     pos = 0;
33706                     locked = false;
33707                 }
33708                 pos += w;
33709                 s[i].style.left = (pos-this.splitOffset) + "px";
33710             }
33711         }
33712     },
33713
33714     handleHiddenChange : function(colModel, colIndex, hidden){
33715         if(hidden){
33716             this.hideColumn(colIndex);
33717         }else{
33718             this.unhideColumn(colIndex);
33719         }
33720     },
33721
33722     hideColumn : function(colIndex){
33723         var cid = this.getColumnId(colIndex);
33724         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "none");
33725         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "none");
33726         if(Roo.isSafari){
33727             this.updateHeaders();
33728         }
33729         this.updateSplitters();
33730         this.layout();
33731     },
33732
33733     unhideColumn : function(colIndex){
33734         var cid = this.getColumnId(colIndex);
33735         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "");
33736         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "");
33737
33738         if(Roo.isSafari){
33739             this.updateHeaders();
33740         }
33741         this.updateSplitters();
33742         this.layout();
33743     },
33744
33745     insertRows : function(dm, firstRow, lastRow, isUpdate){
33746         if(firstRow == 0 && lastRow == dm.getCount()-1){
33747             this.refresh();
33748         }else{
33749             if(!isUpdate){
33750                 this.fireEvent("beforerowsinserted", this, firstRow, lastRow);
33751             }
33752             var s = this.getScrollState();
33753             var markup = this.renderRows(firstRow, lastRow);
33754             this.bufferRows(markup[0], this.getLockedTable(), firstRow);
33755             this.bufferRows(markup[1], this.getBodyTable(), firstRow);
33756             this.restoreScroll(s);
33757             if(!isUpdate){
33758                 this.fireEvent("rowsinserted", this, firstRow, lastRow);
33759                 this.syncRowHeights(firstRow, lastRow);
33760                 this.stripeRows(firstRow);
33761                 this.layout();
33762             }
33763         }
33764     },
33765
33766     bufferRows : function(markup, target, index){
33767         var before = null, trows = target.rows, tbody = target.tBodies[0];
33768         if(index < trows.length){
33769             before = trows[index];
33770         }
33771         var b = document.createElement("div");
33772         b.innerHTML = "<table><tbody>"+markup+"</tbody></table>";
33773         var rows = b.firstChild.rows;
33774         for(var i = 0, len = rows.length; i < len; i++){
33775             if(before){
33776                 tbody.insertBefore(rows[0], before);
33777             }else{
33778                 tbody.appendChild(rows[0]);
33779             }
33780         }
33781         b.innerHTML = "";
33782         b = null;
33783     },
33784
33785     deleteRows : function(dm, firstRow, lastRow){
33786         if(dm.getRowCount()<1){
33787             this.fireEvent("beforerefresh", this);
33788             this.mainBody.update("");
33789             this.lockedBody.update("");
33790             this.fireEvent("refresh", this);
33791         }else{
33792             this.fireEvent("beforerowsdeleted", this, firstRow, lastRow);
33793             var bt = this.getBodyTable();
33794             var tbody = bt.firstChild;
33795             var rows = bt.rows;
33796             for(var rowIndex = firstRow; rowIndex <= lastRow; rowIndex++){
33797                 tbody.removeChild(rows[firstRow]);
33798             }
33799             this.stripeRows(firstRow);
33800             this.fireEvent("rowsdeleted", this, firstRow, lastRow);
33801         }
33802     },
33803
33804     updateRows : function(dataSource, firstRow, lastRow){
33805         var s = this.getScrollState();
33806         this.refresh();
33807         this.restoreScroll(s);
33808     },
33809
33810     handleSort : function(dataSource, sortColumnIndex, sortDir, noRefresh){
33811         if(!noRefresh){
33812            this.refresh();
33813         }
33814         this.updateHeaderSortState();
33815     },
33816
33817     getScrollState : function(){
33818         
33819         var sb = this.scroller.dom;
33820         return {left: sb.scrollLeft, top: sb.scrollTop};
33821     },
33822
33823     stripeRows : function(startRow){
33824         if(!this.grid.stripeRows || this.ds.getCount() < 1){
33825             return;
33826         }
33827         startRow = startRow || 0;
33828         var rows = this.getBodyTable().rows;
33829         var lrows = this.getLockedTable().rows;
33830         var cls = ' x-grid-row-alt ';
33831         for(var i = startRow, len = rows.length; i < len; i++){
33832             var row = rows[i], lrow = lrows[i];
33833             var isAlt = ((i+1) % 2 == 0);
33834             var hasAlt = (' '+row.className + ' ').indexOf(cls) != -1;
33835             if(isAlt == hasAlt){
33836                 continue;
33837             }
33838             if(isAlt){
33839                 row.className += " x-grid-row-alt";
33840             }else{
33841                 row.className = row.className.replace("x-grid-row-alt", "");
33842             }
33843             if(lrow){
33844                 lrow.className = row.className;
33845             }
33846         }
33847     },
33848
33849     restoreScroll : function(state){
33850         //Roo.log('GridView.restoreScroll');
33851         var sb = this.scroller.dom;
33852         sb.scrollLeft = state.left;
33853         sb.scrollTop = state.top;
33854         this.syncScroll();
33855     },
33856
33857     syncScroll : function(){
33858         //Roo.log('GridView.syncScroll');
33859         var sb = this.scroller.dom;
33860         var sh = this.mainHd.dom;
33861         var bs = this.mainBody.dom;
33862         var lv = this.lockedBody.dom;
33863         sh.scrollLeft = bs.scrollLeft = sb.scrollLeft;
33864         lv.scrollTop = bs.scrollTop = sb.scrollTop;
33865     },
33866
33867     handleScroll : function(e){
33868         this.syncScroll();
33869         var sb = this.scroller.dom;
33870         this.grid.fireEvent("bodyscroll", sb.scrollLeft, sb.scrollTop);
33871         e.stopEvent();
33872     },
33873
33874     handleWheel : function(e){
33875         var d = e.getWheelDelta();
33876         this.scroller.dom.scrollTop -= d*22;
33877         // set this here to prevent jumpy scrolling on large tables
33878         this.lockedBody.dom.scrollTop = this.mainBody.dom.scrollTop = this.scroller.dom.scrollTop;
33879         e.stopEvent();
33880     },
33881
33882     renderRows : function(startRow, endRow){
33883         // pull in all the crap needed to render rows
33884         var g = this.grid, cm = g.colModel, ds = g.dataSource, stripe = g.stripeRows;
33885         var colCount = cm.getColumnCount();
33886
33887         if(ds.getCount() < 1){
33888             return ["", ""];
33889         }
33890
33891         // build a map for all the columns
33892         var cs = [];
33893         for(var i = 0; i < colCount; i++){
33894             var name = cm.getDataIndex(i);
33895             cs[i] = {
33896                 name : typeof name == 'undefined' ? ds.fields.get(i).name : name,
33897                 renderer : cm.getRenderer(i),
33898                 id : cm.getColumnId(i),
33899                 locked : cm.isLocked(i),
33900                 has_editor : cm.isCellEditable(i)
33901             };
33902         }
33903
33904         startRow = startRow || 0;
33905         endRow = typeof endRow == "undefined"? ds.getCount()-1 : endRow;
33906
33907         // records to render
33908         var rs = ds.getRange(startRow, endRow);
33909
33910         return this.doRender(cs, rs, ds, startRow, colCount, stripe);
33911     },
33912
33913     // As much as I hate to duplicate code, this was branched because FireFox really hates
33914     // [].join("") on strings. The performance difference was substantial enough to
33915     // branch this function
33916     doRender : Roo.isGecko ?
33917             function(cs, rs, ds, startRow, colCount, stripe){
33918                 var ts = this.templates, ct = ts.cell, rt = ts.row;
33919                 // buffers
33920                 var buf = "", lbuf = "", cb, lcb, c, p = {}, rp = {}, r, rowIndex;
33921                 
33922                 var hasListener = this.grid.hasListener('rowclass');
33923                 var rowcfg = {};
33924                 for(var j = 0, len = rs.length; j < len; j++){
33925                     r = rs[j]; cb = ""; lcb = ""; rowIndex = (j+startRow);
33926                     for(var i = 0; i < colCount; i++){
33927                         c = cs[i];
33928                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
33929                         p.id = c.id;
33930                         p.css = p.attr = "";
33931                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
33932                         if(p.value == undefined || p.value === "") {
33933                             p.value = "&#160;";
33934                         }
33935                         if(c.has_editor){
33936                             p.css += ' x-grid-editable-cell';
33937                         }
33938                         if(c.dirty && typeof r.modified[c.name] !== 'undefined'){
33939                             p.css +=  ' x-grid-dirty-cell';
33940                         }
33941                         var markup = ct.apply(p);
33942                         if(!c.locked){
33943                             cb+= markup;
33944                         }else{
33945                             lcb+= markup;
33946                         }
33947                     }
33948                     var alt = [];
33949                     if(stripe && ((rowIndex+1) % 2 == 0)){
33950                         alt.push("x-grid-row-alt")
33951                     }
33952                     if(r.dirty){
33953                         alt.push(  " x-grid-dirty-row");
33954                     }
33955                     rp.cells = lcb;
33956                     if(this.getRowClass){
33957                         alt.push(this.getRowClass(r, rowIndex));
33958                     }
33959                     if (hasListener) {
33960                         rowcfg = {
33961                              
33962                             record: r,
33963                             rowIndex : rowIndex,
33964                             rowClass : ''
33965                         };
33966                         this.grid.fireEvent('rowclass', this, rowcfg);
33967                         alt.push(rowcfg.rowClass);
33968                     }
33969                     rp.alt = alt.join(" ");
33970                     lbuf+= rt.apply(rp);
33971                     rp.cells = cb;
33972                     buf+=  rt.apply(rp);
33973                 }
33974                 return [lbuf, buf];
33975             } :
33976             function(cs, rs, ds, startRow, colCount, stripe){
33977                 var ts = this.templates, ct = ts.cell, rt = ts.row;
33978                 // buffers
33979                 var buf = [], lbuf = [], cb, lcb, c, p = {}, rp = {}, r, rowIndex;
33980                 var hasListener = this.grid.hasListener('rowclass');
33981  
33982                 var rowcfg = {};
33983                 for(var j = 0, len = rs.length; j < len; j++){
33984                     r = rs[j]; cb = []; lcb = []; rowIndex = (j+startRow);
33985                     for(var i = 0; i < colCount; i++){
33986                         c = cs[i];
33987                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
33988                         p.id = c.id;
33989                         p.css = p.attr = "";
33990                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
33991                         if(p.value == undefined || p.value === "") {
33992                             p.value = "&#160;";
33993                         }
33994                         //Roo.log(c);
33995                          if(c.has_editor){
33996                             p.css += ' x-grid-editable-cell';
33997                         }
33998                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
33999                             p.css += ' x-grid-dirty-cell' 
34000                         }
34001                         
34002                         var markup = ct.apply(p);
34003                         if(!c.locked){
34004                             cb[cb.length] = markup;
34005                         }else{
34006                             lcb[lcb.length] = markup;
34007                         }
34008                     }
34009                     var alt = [];
34010                     if(stripe && ((rowIndex+1) % 2 == 0)){
34011                         alt.push( "x-grid-row-alt");
34012                     }
34013                     if(r.dirty){
34014                         alt.push(" x-grid-dirty-row");
34015                     }
34016                     rp.cells = lcb;
34017                     if(this.getRowClass){
34018                         alt.push( this.getRowClass(r, rowIndex));
34019                     }
34020                     if (hasListener) {
34021                         rowcfg = {
34022                              
34023                             record: r,
34024                             rowIndex : rowIndex,
34025                             rowClass : ''
34026                         };
34027                         this.grid.fireEvent('rowclass', this, rowcfg);
34028                         alt.push(rowcfg.rowClass);
34029                     }
34030                     
34031                     rp.alt = alt.join(" ");
34032                     rp.cells = lcb.join("");
34033                     lbuf[lbuf.length] = rt.apply(rp);
34034                     rp.cells = cb.join("");
34035                     buf[buf.length] =  rt.apply(rp);
34036                 }
34037                 return [lbuf.join(""), buf.join("")];
34038             },
34039
34040     renderBody : function(){
34041         var markup = this.renderRows();
34042         var bt = this.templates.body;
34043         return [bt.apply({rows: markup[0]}), bt.apply({rows: markup[1]})];
34044     },
34045
34046     /**
34047      * Refreshes the grid
34048      * @param {Boolean} headersToo
34049      */
34050     refresh : function(headersToo){
34051         this.fireEvent("beforerefresh", this);
34052         this.grid.stopEditing();
34053         var result = this.renderBody();
34054         this.lockedBody.update(result[0]);
34055         this.mainBody.update(result[1]);
34056         if(headersToo === true){
34057             this.updateHeaders();
34058             this.updateColumns();
34059             this.updateSplitters();
34060             this.updateHeaderSortState();
34061         }
34062         this.syncRowHeights();
34063         this.layout();
34064         this.fireEvent("refresh", this);
34065     },
34066
34067     handleColumnMove : function(cm, oldIndex, newIndex){
34068         this.indexMap = null;
34069         var s = this.getScrollState();
34070         this.refresh(true);
34071         this.restoreScroll(s);
34072         this.afterMove(newIndex);
34073     },
34074
34075     afterMove : function(colIndex){
34076         if(this.enableMoveAnim && Roo.enableFx){
34077             this.fly(this.getHeaderCell(colIndex).firstChild).highlight(this.hlColor);
34078         }
34079         // if multisort - fix sortOrder, and reload..
34080         if (this.grid.dataSource.multiSort) {
34081             // the we can call sort again..
34082             var dm = this.grid.dataSource;
34083             var cm = this.grid.colModel;
34084             var so = [];
34085             for(var i = 0; i < cm.config.length; i++ ) {
34086                 
34087                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined')) {
34088                     continue; // dont' bother, it's not in sort list or being set.
34089                 }
34090                 
34091                 so.push(cm.config[i].dataIndex);
34092             };
34093             dm.sortOrder = so;
34094             dm.load(dm.lastOptions);
34095             
34096             
34097         }
34098         
34099     },
34100
34101     updateCell : function(dm, rowIndex, dataIndex){
34102         var colIndex = this.getColumnIndexByDataIndex(dataIndex);
34103         if(typeof colIndex == "undefined"){ // not present in grid
34104             return;
34105         }
34106         var cm = this.grid.colModel;
34107         var cell = this.getCell(rowIndex, colIndex);
34108         var cellText = this.getCellText(rowIndex, colIndex);
34109
34110         var p = {
34111             cellId : "x-grid-cell-" + rowIndex + "-" + colIndex,
34112             id : cm.getColumnId(colIndex),
34113             css: colIndex == cm.getColumnCount()-1 ? "x-grid-col-last" : ""
34114         };
34115         var renderer = cm.getRenderer(colIndex);
34116         var val = renderer(dm.getValueAt(rowIndex, dataIndex), p, rowIndex, colIndex, dm);
34117         if(typeof val == "undefined" || val === "") {
34118             val = "&#160;";
34119         }
34120         cellText.innerHTML = val;
34121         cell.className = this.cellClass + " " + this.idToCssName(p.cellId) + " " + p.css;
34122         this.syncRowHeights(rowIndex, rowIndex);
34123     },
34124
34125     calcColumnWidth : function(colIndex, maxRowsToMeasure){
34126         var maxWidth = 0;
34127         if(this.grid.autoSizeHeaders){
34128             var h = this.getHeaderCellMeasure(colIndex);
34129             maxWidth = Math.max(maxWidth, h.scrollWidth);
34130         }
34131         var tb, index;
34132         if(this.cm.isLocked(colIndex)){
34133             tb = this.getLockedTable();
34134             index = colIndex;
34135         }else{
34136             tb = this.getBodyTable();
34137             index = colIndex - this.cm.getLockedCount();
34138         }
34139         if(tb && tb.rows){
34140             var rows = tb.rows;
34141             var stopIndex = Math.min(maxRowsToMeasure || rows.length, rows.length);
34142             for(var i = 0; i < stopIndex; i++){
34143                 var cell = rows[i].childNodes[index].firstChild;
34144                 maxWidth = Math.max(maxWidth, cell.scrollWidth);
34145             }
34146         }
34147         return maxWidth + /*margin for error in IE*/ 5;
34148     },
34149     /**
34150      * Autofit a column to its content.
34151      * @param {Number} colIndex
34152      * @param {Boolean} forceMinSize true to force the column to go smaller if possible
34153      */
34154      autoSizeColumn : function(colIndex, forceMinSize, suppressEvent){
34155          if(this.cm.isHidden(colIndex)){
34156              return; // can't calc a hidden column
34157          }
34158         if(forceMinSize){
34159             var cid = this.cm.getColumnId(colIndex);
34160             this.css.updateRule(this.colSelector +this.idToCssName( cid), "width", this.grid.minColumnWidth + "px");
34161            if(this.grid.autoSizeHeaders){
34162                this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", this.grid.minColumnWidth + "px");
34163            }
34164         }
34165         var newWidth = this.calcColumnWidth(colIndex);
34166         this.cm.setColumnWidth(colIndex,
34167             Math.max(this.grid.minColumnWidth, newWidth), suppressEvent);
34168         if(!suppressEvent){
34169             this.grid.fireEvent("columnresize", colIndex, newWidth);
34170         }
34171     },
34172
34173     /**
34174      * Autofits all columns to their content and then expands to fit any extra space in the grid
34175      */
34176      autoSizeColumns : function(){
34177         var cm = this.grid.colModel;
34178         var colCount = cm.getColumnCount();
34179         for(var i = 0; i < colCount; i++){
34180             this.autoSizeColumn(i, true, true);
34181         }
34182         if(cm.getTotalWidth() < this.scroller.dom.clientWidth){
34183             this.fitColumns();
34184         }else{
34185             this.updateColumns();
34186             this.layout();
34187         }
34188     },
34189
34190     /**
34191      * Autofits all columns to the grid's width proportionate with their current size
34192      * @param {Boolean} reserveScrollSpace Reserve space for a scrollbar
34193      */
34194     fitColumns : function(reserveScrollSpace){
34195         var cm = this.grid.colModel;
34196         var colCount = cm.getColumnCount();
34197         var cols = [];
34198         var width = 0;
34199         var i, w;
34200         for (i = 0; i < colCount; i++){
34201             if(!cm.isHidden(i) && !cm.isFixed(i)){
34202                 w = cm.getColumnWidth(i);
34203                 cols.push(i);
34204                 cols.push(w);
34205                 width += w;
34206             }
34207         }
34208         var avail = Math.min(this.scroller.dom.clientWidth, this.el.getWidth());
34209         if(reserveScrollSpace){
34210             avail -= 17;
34211         }
34212         var frac = (avail - cm.getTotalWidth())/width;
34213         while (cols.length){
34214             w = cols.pop();
34215             i = cols.pop();
34216             cm.setColumnWidth(i, Math.floor(w + w*frac), true);
34217         }
34218         this.updateColumns();
34219         this.layout();
34220     },
34221
34222     onRowSelect : function(rowIndex){
34223         var row = this.getRowComposite(rowIndex);
34224         row.addClass("x-grid-row-selected");
34225     },
34226
34227     onRowDeselect : function(rowIndex){
34228         var row = this.getRowComposite(rowIndex);
34229         row.removeClass("x-grid-row-selected");
34230     },
34231
34232     onCellSelect : function(row, col){
34233         var cell = this.getCell(row, col);
34234         if(cell){
34235             Roo.fly(cell).addClass("x-grid-cell-selected");
34236         }
34237     },
34238
34239     onCellDeselect : function(row, col){
34240         var cell = this.getCell(row, col);
34241         if(cell){
34242             Roo.fly(cell).removeClass("x-grid-cell-selected");
34243         }
34244     },
34245
34246     updateHeaderSortState : function(){
34247         
34248         // sort state can be single { field: xxx, direction : yyy}
34249         // or   { xxx=>ASC , yyy : DESC ..... }
34250         
34251         var mstate = {};
34252         if (!this.ds.multiSort) { 
34253             var state = this.ds.getSortState();
34254             if(!state){
34255                 return;
34256             }
34257             mstate[state.field] = state.direction;
34258             // FIXME... - this is not used here.. but might be elsewhere..
34259             this.sortState = state;
34260             
34261         } else {
34262             mstate = this.ds.sortToggle;
34263         }
34264         //remove existing sort classes..
34265         
34266         var sc = this.sortClasses;
34267         var hds = this.el.select(this.headerSelector).removeClass(sc);
34268         
34269         for(var f in mstate) {
34270         
34271             var sortColumn = this.cm.findColumnIndex(f);
34272             
34273             if(sortColumn != -1){
34274                 var sortDir = mstate[f];        
34275                 hds.item(sortColumn).addClass(sc[sortDir == "DESC" ? 1 : 0]);
34276             }
34277         }
34278         
34279          
34280         
34281     },
34282
34283
34284     handleHeaderClick : function(g, index,e){
34285         
34286         Roo.log("header click");
34287         
34288         if (Roo.isTouch) {
34289             // touch events on header are handled by context
34290             this.handleHdCtx(g,index,e);
34291             return;
34292         }
34293         
34294         
34295         if(this.headersDisabled){
34296             return;
34297         }
34298         var dm = g.dataSource, cm = g.colModel;
34299         if(!cm.isSortable(index)){
34300             return;
34301         }
34302         g.stopEditing();
34303         
34304         if (dm.multiSort) {
34305             // update the sortOrder
34306             var so = [];
34307             for(var i = 0; i < cm.config.length; i++ ) {
34308                 
34309                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined') && (index != i)) {
34310                     continue; // dont' bother, it's not in sort list or being set.
34311                 }
34312                 
34313                 so.push(cm.config[i].dataIndex);
34314             };
34315             dm.sortOrder = so;
34316         }
34317         
34318         
34319         dm.sort(cm.getDataIndex(index));
34320     },
34321
34322
34323     destroy : function(){
34324         if(this.colMenu){
34325             this.colMenu.removeAll();
34326             Roo.menu.MenuMgr.unregister(this.colMenu);
34327             this.colMenu.getEl().remove();
34328             delete this.colMenu;
34329         }
34330         if(this.hmenu){
34331             this.hmenu.removeAll();
34332             Roo.menu.MenuMgr.unregister(this.hmenu);
34333             this.hmenu.getEl().remove();
34334             delete this.hmenu;
34335         }
34336         if(this.grid.enableColumnMove){
34337             var dds = Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
34338             if(dds){
34339                 for(var dd in dds){
34340                     if(!dds[dd].config.isTarget && dds[dd].dragElId){
34341                         var elid = dds[dd].dragElId;
34342                         dds[dd].unreg();
34343                         Roo.get(elid).remove();
34344                     } else if(dds[dd].config.isTarget){
34345                         dds[dd].proxyTop.remove();
34346                         dds[dd].proxyBottom.remove();
34347                         dds[dd].unreg();
34348                     }
34349                     if(Roo.dd.DDM.locationCache[dd]){
34350                         delete Roo.dd.DDM.locationCache[dd];
34351                     }
34352                 }
34353                 delete Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
34354             }
34355         }
34356         Roo.util.CSS.removeStyleSheet(this.idToCssName(this.grid.id) + '-cssrules');
34357         this.bind(null, null);
34358         Roo.EventManager.removeResizeListener(this.onWindowResize, this);
34359     },
34360
34361     handleLockChange : function(){
34362         this.refresh(true);
34363     },
34364
34365     onDenyColumnLock : function(){
34366
34367     },
34368
34369     onDenyColumnHide : function(){
34370
34371     },
34372
34373     handleHdMenuClick : function(item){
34374         var index = this.hdCtxIndex;
34375         var cm = this.cm, ds = this.ds;
34376         switch(item.id){
34377             case "asc":
34378                 ds.sort(cm.getDataIndex(index), "ASC");
34379                 break;
34380             case "desc":
34381                 ds.sort(cm.getDataIndex(index), "DESC");
34382                 break;
34383             case "lock":
34384                 var lc = cm.getLockedCount();
34385                 if(cm.getColumnCount(true) <= lc+1){
34386                     this.onDenyColumnLock();
34387                     return;
34388                 }
34389                 if(lc != index){
34390                     cm.setLocked(index, true, true);
34391                     cm.moveColumn(index, lc);
34392                     this.grid.fireEvent("columnmove", index, lc);
34393                 }else{
34394                     cm.setLocked(index, true);
34395                 }
34396             break;
34397             case "unlock":
34398                 var lc = cm.getLockedCount();
34399                 if((lc-1) != index){
34400                     cm.setLocked(index, false, true);
34401                     cm.moveColumn(index, lc-1);
34402                     this.grid.fireEvent("columnmove", index, lc-1);
34403                 }else{
34404                     cm.setLocked(index, false);
34405                 }
34406             break;
34407             case 'wider': // used to expand cols on touch..
34408             case 'narrow':
34409                 var cw = cm.getColumnWidth(index);
34410                 cw += (item.id == 'wider' ? 1 : -1) * 50;
34411                 cw = Math.max(0, cw);
34412                 cw = Math.min(cw,4000);
34413                 cm.setColumnWidth(index, cw);
34414                 break;
34415                 
34416             default:
34417                 index = cm.getIndexById(item.id.substr(4));
34418                 if(index != -1){
34419                     if(item.checked && cm.getColumnCount(true) <= 1){
34420                         this.onDenyColumnHide();
34421                         return false;
34422                     }
34423                     cm.setHidden(index, item.checked);
34424                 }
34425         }
34426         return true;
34427     },
34428
34429     beforeColMenuShow : function(){
34430         var cm = this.cm,  colCount = cm.getColumnCount();
34431         this.colMenu.removeAll();
34432         for(var i = 0; i < colCount; i++){
34433             this.colMenu.add(new Roo.menu.CheckItem({
34434                 id: "col-"+cm.getColumnId(i),
34435                 text: cm.getColumnHeader(i),
34436                 checked: !cm.isHidden(i),
34437                 hideOnClick:false
34438             }));
34439         }
34440     },
34441
34442     handleHdCtx : function(g, index, e){
34443         e.stopEvent();
34444         var hd = this.getHeaderCell(index);
34445         this.hdCtxIndex = index;
34446         var ms = this.hmenu.items, cm = this.cm;
34447         ms.get("asc").setDisabled(!cm.isSortable(index));
34448         ms.get("desc").setDisabled(!cm.isSortable(index));
34449         if(this.grid.enableColLock !== false){
34450             ms.get("lock").setDisabled(cm.isLocked(index));
34451             ms.get("unlock").setDisabled(!cm.isLocked(index));
34452         }
34453         this.hmenu.show(hd, "tl-bl");
34454     },
34455
34456     handleHdOver : function(e){
34457         var hd = this.findHeaderCell(e.getTarget());
34458         if(hd && !this.headersDisabled){
34459             if(this.grid.colModel.isSortable(this.getCellIndex(hd))){
34460                this.fly(hd).addClass("x-grid-hd-over");
34461             }
34462         }
34463     },
34464
34465     handleHdOut : function(e){
34466         var hd = this.findHeaderCell(e.getTarget());
34467         if(hd){
34468             this.fly(hd).removeClass("x-grid-hd-over");
34469         }
34470     },
34471
34472     handleSplitDblClick : function(e, t){
34473         var i = this.getCellIndex(t);
34474         if(this.grid.enableColumnResize !== false && this.cm.isResizable(i) && !this.cm.isFixed(i)){
34475             this.autoSizeColumn(i, true);
34476             this.layout();
34477         }
34478     },
34479
34480     render : function(){
34481
34482         var cm = this.cm;
34483         var colCount = cm.getColumnCount();
34484
34485         if(this.grid.monitorWindowResize === true){
34486             Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
34487         }
34488         var header = this.renderHeaders();
34489         var body = this.templates.body.apply({rows:""});
34490         var html = this.templates.master.apply({
34491             lockedBody: body,
34492             body: body,
34493             lockedHeader: header[0],
34494             header: header[1]
34495         });
34496
34497         //this.updateColumns();
34498
34499         this.grid.getGridEl().dom.innerHTML = html;
34500
34501         this.initElements();
34502         
34503         // a kludge to fix the random scolling effect in webkit
34504         this.el.on("scroll", function() {
34505             this.el.dom.scrollTop=0; // hopefully not recursive..
34506         },this);
34507
34508         this.scroller.on("scroll", this.handleScroll, this);
34509         this.lockedBody.on("mousewheel", this.handleWheel, this);
34510         this.mainBody.on("mousewheel", this.handleWheel, this);
34511
34512         this.mainHd.on("mouseover", this.handleHdOver, this);
34513         this.mainHd.on("mouseout", this.handleHdOut, this);
34514         this.mainHd.on("dblclick", this.handleSplitDblClick, this,
34515                 {delegate: "."+this.splitClass});
34516
34517         this.lockedHd.on("mouseover", this.handleHdOver, this);
34518         this.lockedHd.on("mouseout", this.handleHdOut, this);
34519         this.lockedHd.on("dblclick", this.handleSplitDblClick, this,
34520                 {delegate: "."+this.splitClass});
34521
34522         if(this.grid.enableColumnResize !== false && Roo.grid.SplitDragZone){
34523             new Roo.grid.SplitDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
34524         }
34525
34526         this.updateSplitters();
34527
34528         if(this.grid.enableColumnMove && Roo.grid.HeaderDragZone){
34529             new Roo.grid.HeaderDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
34530             new Roo.grid.HeaderDropZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
34531         }
34532
34533         if(this.grid.enableCtxMenu !== false && Roo.menu.Menu){
34534             this.hmenu = new Roo.menu.Menu({id: this.grid.id + "-hctx"});
34535             this.hmenu.add(
34536                 {id:"asc", text: this.sortAscText, cls: "xg-hmenu-sort-asc"},
34537                 {id:"desc", text: this.sortDescText, cls: "xg-hmenu-sort-desc"}
34538             );
34539             if(this.grid.enableColLock !== false){
34540                 this.hmenu.add('-',
34541                     {id:"lock", text: this.lockText, cls: "xg-hmenu-lock"},
34542                     {id:"unlock", text: this.unlockText, cls: "xg-hmenu-unlock"}
34543                 );
34544             }
34545             if (Roo.isTouch) {
34546                  this.hmenu.add('-',
34547                     {id:"wider", text: this.columnsWiderText},
34548                     {id:"narrow", text: this.columnsNarrowText }
34549                 );
34550                 
34551                  
34552             }
34553             
34554             if(this.grid.enableColumnHide !== false){
34555
34556                 this.colMenu = new Roo.menu.Menu({id:this.grid.id + "-hcols-menu"});
34557                 this.colMenu.on("beforeshow", this.beforeColMenuShow, this);
34558                 this.colMenu.on("itemclick", this.handleHdMenuClick, this);
34559
34560                 this.hmenu.add('-',
34561                     {id:"columns", text: this.columnsText, menu: this.colMenu}
34562                 );
34563             }
34564             this.hmenu.on("itemclick", this.handleHdMenuClick, this);
34565
34566             this.grid.on("headercontextmenu", this.handleHdCtx, this);
34567         }
34568
34569         if((this.grid.enableDragDrop || this.grid.enableDrag) && Roo.grid.GridDragZone){
34570             this.dd = new Roo.grid.GridDragZone(this.grid, {
34571                 ddGroup : this.grid.ddGroup || 'GridDD'
34572             });
34573             
34574         }
34575
34576         /*
34577         for(var i = 0; i < colCount; i++){
34578             if(cm.isHidden(i)){
34579                 this.hideColumn(i);
34580             }
34581             if(cm.config[i].align){
34582                 this.css.updateRule(this.colSelector + i, "textAlign", cm.config[i].align);
34583                 this.css.updateRule(this.hdSelector + i, "textAlign", cm.config[i].align);
34584             }
34585         }*/
34586         
34587         this.updateHeaderSortState();
34588
34589         this.beforeInitialResize();
34590         this.layout(true);
34591
34592         // two part rendering gives faster view to the user
34593         this.renderPhase2.defer(1, this);
34594     },
34595
34596     renderPhase2 : function(){
34597         // render the rows now
34598         this.refresh();
34599         if(this.grid.autoSizeColumns){
34600             this.autoSizeColumns();
34601         }
34602     },
34603
34604     beforeInitialResize : function(){
34605
34606     },
34607
34608     onColumnSplitterMoved : function(i, w){
34609         this.userResized = true;
34610         var cm = this.grid.colModel;
34611         cm.setColumnWidth(i, w, true);
34612         var cid = cm.getColumnId(i);
34613         this.css.updateRule(this.colSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
34614         this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
34615         this.updateSplitters();
34616         this.layout();
34617         this.grid.fireEvent("columnresize", i, w);
34618     },
34619
34620     syncRowHeights : function(startIndex, endIndex){
34621         if(this.grid.enableRowHeightSync === true && this.cm.getLockedCount() > 0){
34622             startIndex = startIndex || 0;
34623             var mrows = this.getBodyTable().rows;
34624             var lrows = this.getLockedTable().rows;
34625             var len = mrows.length-1;
34626             endIndex = Math.min(endIndex || len, len);
34627             for(var i = startIndex; i <= endIndex; i++){
34628                 var m = mrows[i], l = lrows[i];
34629                 var h = Math.max(m.offsetHeight, l.offsetHeight);
34630                 m.style.height = l.style.height = h + "px";
34631             }
34632         }
34633     },
34634
34635     layout : function(initialRender, is2ndPass){
34636         var g = this.grid;
34637         var auto = g.autoHeight;
34638         var scrollOffset = 16;
34639         var c = g.getGridEl(), cm = this.cm,
34640                 expandCol = g.autoExpandColumn,
34641                 gv = this;
34642         //c.beginMeasure();
34643
34644         if(!c.dom.offsetWidth){ // display:none?
34645             if(initialRender){
34646                 this.lockedWrap.show();
34647                 this.mainWrap.show();
34648             }
34649             return;
34650         }
34651
34652         var hasLock = this.cm.isLocked(0);
34653
34654         var tbh = this.headerPanel.getHeight();
34655         var bbh = this.footerPanel.getHeight();
34656
34657         if(auto){
34658             var ch = this.getBodyTable().offsetHeight + tbh + bbh + this.mainHd.getHeight();
34659             var newHeight = ch + c.getBorderWidth("tb");
34660             if(g.maxHeight){
34661                 newHeight = Math.min(g.maxHeight, newHeight);
34662             }
34663             c.setHeight(newHeight);
34664         }
34665
34666         if(g.autoWidth){
34667             c.setWidth(cm.getTotalWidth()+c.getBorderWidth('lr'));
34668         }
34669
34670         var s = this.scroller;
34671
34672         var csize = c.getSize(true);
34673
34674         this.el.setSize(csize.width, csize.height);
34675
34676         this.headerPanel.setWidth(csize.width);
34677         this.footerPanel.setWidth(csize.width);
34678
34679         var hdHeight = this.mainHd.getHeight();
34680         var vw = csize.width;
34681         var vh = csize.height - (tbh + bbh);
34682
34683         s.setSize(vw, vh);
34684
34685         var bt = this.getBodyTable();
34686         
34687         if(cm.getLockedCount() == cm.config.length){
34688             bt = this.getLockedTable();
34689         }
34690         
34691         var ltWidth = hasLock ?
34692                       Math.max(this.getLockedTable().offsetWidth, this.lockedHd.dom.firstChild.offsetWidth) : 0;
34693
34694         var scrollHeight = bt.offsetHeight;
34695         var scrollWidth = ltWidth + bt.offsetWidth;
34696         var vscroll = false, hscroll = false;
34697
34698         this.scrollSizer.setSize(scrollWidth, scrollHeight+hdHeight);
34699
34700         var lw = this.lockedWrap, mw = this.mainWrap;
34701         var lb = this.lockedBody, mb = this.mainBody;
34702
34703         setTimeout(function(){
34704             var t = s.dom.offsetTop;
34705             var w = s.dom.clientWidth,
34706                 h = s.dom.clientHeight;
34707
34708             lw.setTop(t);
34709             lw.setSize(ltWidth, h);
34710
34711             mw.setLeftTop(ltWidth, t);
34712             mw.setSize(w-ltWidth, h);
34713
34714             lb.setHeight(h-hdHeight);
34715             mb.setHeight(h-hdHeight);
34716
34717             if(is2ndPass !== true && !gv.userResized && expandCol){
34718                 // high speed resize without full column calculation
34719                 
34720                 var ci = cm.getIndexById(expandCol);
34721                 if (ci < 0) {
34722                     ci = cm.findColumnIndex(expandCol);
34723                 }
34724                 ci = Math.max(0, ci); // make sure it's got at least the first col.
34725                 var expandId = cm.getColumnId(ci);
34726                 var  tw = cm.getTotalWidth(false);
34727                 var currentWidth = cm.getColumnWidth(ci);
34728                 var cw = Math.min(Math.max(((w-tw)+currentWidth-2)-/*scrollbar*/(w <= s.dom.offsetWidth ? 0 : 18), g.autoExpandMin), g.autoExpandMax);
34729                 if(currentWidth != cw){
34730                     cm.setColumnWidth(ci, cw, true);
34731                     gv.css.updateRule(gv.colSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
34732                     gv.css.updateRule(gv.hdSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
34733                     gv.updateSplitters();
34734                     gv.layout(false, true);
34735                 }
34736             }
34737
34738             if(initialRender){
34739                 lw.show();
34740                 mw.show();
34741             }
34742             //c.endMeasure();
34743         }, 10);
34744     },
34745
34746     onWindowResize : function(){
34747         if(!this.grid.monitorWindowResize || this.grid.autoHeight){
34748             return;
34749         }
34750         this.layout();
34751     },
34752
34753     appendFooter : function(parentEl){
34754         return null;
34755     },
34756
34757     sortAscText : "Sort Ascending",
34758     sortDescText : "Sort Descending",
34759     lockText : "Lock Column",
34760     unlockText : "Unlock Column",
34761     columnsText : "Columns",
34762  
34763     columnsWiderText : "Wider",
34764     columnsNarrowText : "Thinner"
34765 });
34766
34767
34768 Roo.grid.GridView.ColumnDragZone = function(grid, hd){
34769     Roo.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
34770     this.proxy.el.addClass('x-grid3-col-dd');
34771 };
34772
34773 Roo.extend(Roo.grid.GridView.ColumnDragZone, Roo.grid.HeaderDragZone, {
34774     handleMouseDown : function(e){
34775
34776     },
34777
34778     callHandleMouseDown : function(e){
34779         Roo.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
34780     }
34781 });
34782 /*
34783  * Based on:
34784  * Ext JS Library 1.1.1
34785  * Copyright(c) 2006-2007, Ext JS, LLC.
34786  *
34787  * Originally Released Under LGPL - original licence link has changed is not relivant.
34788  *
34789  * Fork - LGPL
34790  * <script type="text/javascript">
34791  */
34792  
34793 // private
34794 // This is a support class used internally by the Grid components
34795 Roo.grid.SplitDragZone = function(grid, hd, hd2){
34796     this.grid = grid;
34797     this.view = grid.getView();
34798     this.proxy = this.view.resizeProxy;
34799     Roo.grid.SplitDragZone.superclass.constructor.call(this, hd,
34800         "gridSplitters" + this.grid.getGridEl().id, {
34801         dragElId : Roo.id(this.proxy.dom), resizeFrame:false
34802     });
34803     this.setHandleElId(Roo.id(hd));
34804     this.setOuterHandleElId(Roo.id(hd2));
34805     this.scroll = false;
34806 };
34807 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
34808     fly: Roo.Element.fly,
34809
34810     b4StartDrag : function(x, y){
34811         this.view.headersDisabled = true;
34812         this.proxy.setHeight(this.view.mainWrap.getHeight());
34813         var w = this.cm.getColumnWidth(this.cellIndex);
34814         var minw = Math.max(w-this.grid.minColumnWidth, 0);
34815         this.resetConstraints();
34816         this.setXConstraint(minw, 1000);
34817         this.setYConstraint(0, 0);
34818         this.minX = x - minw;
34819         this.maxX = x + 1000;
34820         this.startPos = x;
34821         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
34822     },
34823
34824
34825     handleMouseDown : function(e){
34826         ev = Roo.EventObject.setEvent(e);
34827         var t = this.fly(ev.getTarget());
34828         if(t.hasClass("x-grid-split")){
34829             this.cellIndex = this.view.getCellIndex(t.dom);
34830             this.split = t.dom;
34831             this.cm = this.grid.colModel;
34832             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
34833                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
34834             }
34835         }
34836     },
34837
34838     endDrag : function(e){
34839         this.view.headersDisabled = false;
34840         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
34841         var diff = endX - this.startPos;
34842         this.view.onColumnSplitterMoved(this.cellIndex, this.cm.getColumnWidth(this.cellIndex)+diff);
34843     },
34844
34845     autoOffset : function(){
34846         this.setDelta(0,0);
34847     }
34848 });/*
34849  * Based on:
34850  * Ext JS Library 1.1.1
34851  * Copyright(c) 2006-2007, Ext JS, LLC.
34852  *
34853  * Originally Released Under LGPL - original licence link has changed is not relivant.
34854  *
34855  * Fork - LGPL
34856  * <script type="text/javascript">
34857  */
34858  
34859 // private
34860 // This is a support class used internally by the Grid components
34861 Roo.grid.GridDragZone = function(grid, config){
34862     this.view = grid.getView();
34863     Roo.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, config);
34864     if(this.view.lockedBody){
34865         this.setHandleElId(Roo.id(this.view.mainBody.dom));
34866         this.setOuterHandleElId(Roo.id(this.view.lockedBody.dom));
34867     }
34868     this.scroll = false;
34869     this.grid = grid;
34870     this.ddel = document.createElement('div');
34871     this.ddel.className = 'x-grid-dd-wrap';
34872 };
34873
34874 Roo.extend(Roo.grid.GridDragZone, Roo.dd.DragZone, {
34875     ddGroup : "GridDD",
34876
34877     getDragData : function(e){
34878         var t = Roo.lib.Event.getTarget(e);
34879         var rowIndex = this.view.findRowIndex(t);
34880         var sm = this.grid.selModel;
34881             
34882         //Roo.log(rowIndex);
34883         
34884         if (sm.getSelectedCell) {
34885             // cell selection..
34886             if (!sm.getSelectedCell()) {
34887                 return false;
34888             }
34889             if (rowIndex != sm.getSelectedCell()[0]) {
34890                 return false;
34891             }
34892         
34893         }
34894         
34895         if(rowIndex !== false){
34896             
34897             // if editorgrid.. 
34898             
34899             
34900             //Roo.log([ sm.getSelectedCell() ? sm.getSelectedCell()[0] : 'NO' , rowIndex ]);
34901                
34902             //if(!sm.isSelected(rowIndex) || e.hasModifier()){
34903               //  
34904             //}
34905             if (e.hasModifier()){
34906                 sm.handleMouseDown(e, t); // non modifier buttons are handled by row select.
34907             }
34908             
34909             Roo.log("getDragData");
34910             
34911             return {
34912                 grid: this.grid,
34913                 ddel: this.ddel,
34914                 rowIndex: rowIndex,
34915                 selections:sm.getSelections ? sm.getSelections() : (
34916                     sm.getSelectedCell() ? [ this.grid.ds.getAt(sm.getSelectedCell()[0]) ] : []
34917                 )
34918             };
34919         }
34920         return false;
34921     },
34922
34923     onInitDrag : function(e){
34924         var data = this.dragData;
34925         this.ddel.innerHTML = this.grid.getDragDropText();
34926         this.proxy.update(this.ddel);
34927         // fire start drag?
34928     },
34929
34930     afterRepair : function(){
34931         this.dragging = false;
34932     },
34933
34934     getRepairXY : function(e, data){
34935         return false;
34936     },
34937
34938     onEndDrag : function(data, e){
34939         // fire end drag?
34940     },
34941
34942     onValidDrop : function(dd, e, id){
34943         // fire drag drop?
34944         this.hideProxy();
34945     },
34946
34947     beforeInvalidDrop : function(e, id){
34948
34949     }
34950 });/*
34951  * Based on:
34952  * Ext JS Library 1.1.1
34953  * Copyright(c) 2006-2007, Ext JS, LLC.
34954  *
34955  * Originally Released Under LGPL - original licence link has changed is not relivant.
34956  *
34957  * Fork - LGPL
34958  * <script type="text/javascript">
34959  */
34960  
34961
34962 /**
34963  * @class Roo.grid.ColumnModel
34964  * @extends Roo.util.Observable
34965  * This is the default implementation of a ColumnModel used by the Grid. It defines
34966  * the columns in the grid.
34967  * <br>Usage:<br>
34968  <pre><code>
34969  var colModel = new Roo.grid.ColumnModel([
34970         {header: "Ticker", width: 60, sortable: true, locked: true},
34971         {header: "Company Name", width: 150, sortable: true},
34972         {header: "Market Cap.", width: 100, sortable: true},
34973         {header: "$ Sales", width: 100, sortable: true, renderer: money},
34974         {header: "Employees", width: 100, sortable: true, resizable: false}
34975  ]);
34976  </code></pre>
34977  * <p>
34978  
34979  * The config options listed for this class are options which may appear in each
34980  * individual column definition.
34981  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
34982  * @constructor
34983  * @param {Object} config An Array of column config objects. See this class's
34984  * config objects for details.
34985 */
34986 Roo.grid.ColumnModel = function(config){
34987         /**
34988      * The config passed into the constructor
34989      */
34990     this.config = config;
34991     this.lookup = {};
34992
34993     // if no id, create one
34994     // if the column does not have a dataIndex mapping,
34995     // map it to the order it is in the config
34996     for(var i = 0, len = config.length; i < len; i++){
34997         var c = config[i];
34998         if(typeof c.dataIndex == "undefined"){
34999             c.dataIndex = i;
35000         }
35001         if(typeof c.renderer == "string"){
35002             c.renderer = Roo.util.Format[c.renderer];
35003         }
35004         if(typeof c.id == "undefined"){
35005             c.id = Roo.id();
35006         }
35007         if(c.editor && c.editor.xtype){
35008             c.editor  = Roo.factory(c.editor, Roo.grid);
35009         }
35010         if(c.editor && c.editor.isFormField){
35011             c.editor = new Roo.grid.GridEditor(c.editor);
35012         }
35013         this.lookup[c.id] = c;
35014     }
35015
35016     /**
35017      * The width of columns which have no width specified (defaults to 100)
35018      * @type Number
35019      */
35020     this.defaultWidth = 100;
35021
35022     /**
35023      * Default sortable of columns which have no sortable specified (defaults to false)
35024      * @type Boolean
35025      */
35026     this.defaultSortable = false;
35027
35028     this.addEvents({
35029         /**
35030              * @event widthchange
35031              * Fires when the width of a column changes.
35032              * @param {ColumnModel} this
35033              * @param {Number} columnIndex The column index
35034              * @param {Number} newWidth The new width
35035              */
35036             "widthchange": true,
35037         /**
35038              * @event headerchange
35039              * Fires when the text of a header changes.
35040              * @param {ColumnModel} this
35041              * @param {Number} columnIndex The column index
35042              * @param {Number} newText The new header text
35043              */
35044             "headerchange": true,
35045         /**
35046              * @event hiddenchange
35047              * Fires when a column is hidden or "unhidden".
35048              * @param {ColumnModel} this
35049              * @param {Number} columnIndex The column index
35050              * @param {Boolean} hidden true if hidden, false otherwise
35051              */
35052             "hiddenchange": true,
35053             /**
35054          * @event columnmoved
35055          * Fires when a column is moved.
35056          * @param {ColumnModel} this
35057          * @param {Number} oldIndex
35058          * @param {Number} newIndex
35059          */
35060         "columnmoved" : true,
35061         /**
35062          * @event columlockchange
35063          * Fires when a column's locked state is changed
35064          * @param {ColumnModel} this
35065          * @param {Number} colIndex
35066          * @param {Boolean} locked true if locked
35067          */
35068         "columnlockchange" : true
35069     });
35070     Roo.grid.ColumnModel.superclass.constructor.call(this);
35071 };
35072 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
35073     /**
35074      * @cfg {String} header The header text to display in the Grid view.
35075      */
35076     /**
35077      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
35078      * {@link Roo.data.Record} definition from which to draw the column's value. If not
35079      * specified, the column's index is used as an index into the Record's data Array.
35080      */
35081     /**
35082      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
35083      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
35084      */
35085     /**
35086      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
35087      * Defaults to the value of the {@link #defaultSortable} property.
35088      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
35089      */
35090     /**
35091      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
35092      */
35093     /**
35094      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
35095      */
35096     /**
35097      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
35098      */
35099     /**
35100      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
35101      */
35102     /**
35103      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
35104      * given the cell's data value. See {@link #setRenderer}. If not specified, the
35105      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
35106      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
35107      */
35108        /**
35109      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
35110      */
35111     /**
35112      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
35113      */
35114     /**
35115      * @cfg {String} valign (Optional) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined.
35116      */
35117     /**
35118      * @cfg {String} cursor (Optional)
35119      */
35120     /**
35121      * @cfg {String} tooltip (Optional)
35122      */
35123     /**
35124      * @cfg {Number} xs (Optional)
35125      */
35126     /**
35127      * @cfg {Number} sm (Optional)
35128      */
35129     /**
35130      * @cfg {Number} md (Optional)
35131      */
35132     /**
35133      * @cfg {Number} lg (Optional)
35134      */
35135     /**
35136      * Returns the id of the column at the specified index.
35137      * @param {Number} index The column index
35138      * @return {String} the id
35139      */
35140     getColumnId : function(index){
35141         return this.config[index].id;
35142     },
35143
35144     /**
35145      * Returns the column for a specified id.
35146      * @param {String} id The column id
35147      * @return {Object} the column
35148      */
35149     getColumnById : function(id){
35150         return this.lookup[id];
35151     },
35152
35153     
35154     /**
35155      * Returns the column for a specified dataIndex.
35156      * @param {String} dataIndex The column dataIndex
35157      * @return {Object|Boolean} the column or false if not found
35158      */
35159     getColumnByDataIndex: function(dataIndex){
35160         var index = this.findColumnIndex(dataIndex);
35161         return index > -1 ? this.config[index] : false;
35162     },
35163     
35164     /**
35165      * Returns the index for a specified column id.
35166      * @param {String} id The column id
35167      * @return {Number} the index, or -1 if not found
35168      */
35169     getIndexById : function(id){
35170         for(var i = 0, len = this.config.length; i < len; i++){
35171             if(this.config[i].id == id){
35172                 return i;
35173             }
35174         }
35175         return -1;
35176     },
35177     
35178     /**
35179      * Returns the index for a specified column dataIndex.
35180      * @param {String} dataIndex The column dataIndex
35181      * @return {Number} the index, or -1 if not found
35182      */
35183     
35184     findColumnIndex : function(dataIndex){
35185         for(var i = 0, len = this.config.length; i < len; i++){
35186             if(this.config[i].dataIndex == dataIndex){
35187                 return i;
35188             }
35189         }
35190         return -1;
35191     },
35192     
35193     
35194     moveColumn : function(oldIndex, newIndex){
35195         var c = this.config[oldIndex];
35196         this.config.splice(oldIndex, 1);
35197         this.config.splice(newIndex, 0, c);
35198         this.dataMap = null;
35199         this.fireEvent("columnmoved", this, oldIndex, newIndex);
35200     },
35201
35202     isLocked : function(colIndex){
35203         return this.config[colIndex].locked === true;
35204     },
35205
35206     setLocked : function(colIndex, value, suppressEvent){
35207         if(this.isLocked(colIndex) == value){
35208             return;
35209         }
35210         this.config[colIndex].locked = value;
35211         if(!suppressEvent){
35212             this.fireEvent("columnlockchange", this, colIndex, value);
35213         }
35214     },
35215
35216     getTotalLockedWidth : function(){
35217         var totalWidth = 0;
35218         for(var i = 0; i < this.config.length; i++){
35219             if(this.isLocked(i) && !this.isHidden(i)){
35220                 this.totalWidth += this.getColumnWidth(i);
35221             }
35222         }
35223         return totalWidth;
35224     },
35225
35226     getLockedCount : function(){
35227         for(var i = 0, len = this.config.length; i < len; i++){
35228             if(!this.isLocked(i)){
35229                 return i;
35230             }
35231         }
35232         
35233         return this.config.length;
35234     },
35235
35236     /**
35237      * Returns the number of columns.
35238      * @return {Number}
35239      */
35240     getColumnCount : function(visibleOnly){
35241         if(visibleOnly === true){
35242             var c = 0;
35243             for(var i = 0, len = this.config.length; i < len; i++){
35244                 if(!this.isHidden(i)){
35245                     c++;
35246                 }
35247             }
35248             return c;
35249         }
35250         return this.config.length;
35251     },
35252
35253     /**
35254      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
35255      * @param {Function} fn
35256      * @param {Object} scope (optional)
35257      * @return {Array} result
35258      */
35259     getColumnsBy : function(fn, scope){
35260         var r = [];
35261         for(var i = 0, len = this.config.length; i < len; i++){
35262             var c = this.config[i];
35263             if(fn.call(scope||this, c, i) === true){
35264                 r[r.length] = c;
35265             }
35266         }
35267         return r;
35268     },
35269
35270     /**
35271      * Returns true if the specified column is sortable.
35272      * @param {Number} col The column index
35273      * @return {Boolean}
35274      */
35275     isSortable : function(col){
35276         if(typeof this.config[col].sortable == "undefined"){
35277             return this.defaultSortable;
35278         }
35279         return this.config[col].sortable;
35280     },
35281
35282     /**
35283      * Returns the rendering (formatting) function defined for the column.
35284      * @param {Number} col The column index.
35285      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
35286      */
35287     getRenderer : function(col){
35288         if(!this.config[col].renderer){
35289             return Roo.grid.ColumnModel.defaultRenderer;
35290         }
35291         return this.config[col].renderer;
35292     },
35293
35294     /**
35295      * Sets the rendering (formatting) function for a column.
35296      * @param {Number} col The column index
35297      * @param {Function} fn The function to use to process the cell's raw data
35298      * to return HTML markup for the grid view. The render function is called with
35299      * the following parameters:<ul>
35300      * <li>Data value.</li>
35301      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
35302      * <li>css A CSS style string to apply to the table cell.</li>
35303      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
35304      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
35305      * <li>Row index</li>
35306      * <li>Column index</li>
35307      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
35308      */
35309     setRenderer : function(col, fn){
35310         this.config[col].renderer = fn;
35311     },
35312
35313     /**
35314      * Returns the width for the specified column.
35315      * @param {Number} col The column index
35316      * @return {Number}
35317      */
35318     getColumnWidth : function(col){
35319         return this.config[col].width * 1 || this.defaultWidth;
35320     },
35321
35322     /**
35323      * Sets the width for a column.
35324      * @param {Number} col The column index
35325      * @param {Number} width The new width
35326      */
35327     setColumnWidth : function(col, width, suppressEvent){
35328         this.config[col].width = width;
35329         this.totalWidth = null;
35330         if(!suppressEvent){
35331              this.fireEvent("widthchange", this, col, width);
35332         }
35333     },
35334
35335     /**
35336      * Returns the total width of all columns.
35337      * @param {Boolean} includeHidden True to include hidden column widths
35338      * @return {Number}
35339      */
35340     getTotalWidth : function(includeHidden){
35341         if(!this.totalWidth){
35342             this.totalWidth = 0;
35343             for(var i = 0, len = this.config.length; i < len; i++){
35344                 if(includeHidden || !this.isHidden(i)){
35345                     this.totalWidth += this.getColumnWidth(i);
35346                 }
35347             }
35348         }
35349         return this.totalWidth;
35350     },
35351
35352     /**
35353      * Returns the header for the specified column.
35354      * @param {Number} col The column index
35355      * @return {String}
35356      */
35357     getColumnHeader : function(col){
35358         return this.config[col].header;
35359     },
35360
35361     /**
35362      * Sets the header for a column.
35363      * @param {Number} col The column index
35364      * @param {String} header The new header
35365      */
35366     setColumnHeader : function(col, header){
35367         this.config[col].header = header;
35368         this.fireEvent("headerchange", this, col, header);
35369     },
35370
35371     /**
35372      * Returns the tooltip for the specified column.
35373      * @param {Number} col The column index
35374      * @return {String}
35375      */
35376     getColumnTooltip : function(col){
35377             return this.config[col].tooltip;
35378     },
35379     /**
35380      * Sets the tooltip for a column.
35381      * @param {Number} col The column index
35382      * @param {String} tooltip The new tooltip
35383      */
35384     setColumnTooltip : function(col, tooltip){
35385             this.config[col].tooltip = tooltip;
35386     },
35387
35388     /**
35389      * Returns the dataIndex for the specified column.
35390      * @param {Number} col The column index
35391      * @return {Number}
35392      */
35393     getDataIndex : function(col){
35394         return this.config[col].dataIndex;
35395     },
35396
35397     /**
35398      * Sets the dataIndex for a column.
35399      * @param {Number} col The column index
35400      * @param {Number} dataIndex The new dataIndex
35401      */
35402     setDataIndex : function(col, dataIndex){
35403         this.config[col].dataIndex = dataIndex;
35404     },
35405
35406     
35407     
35408     /**
35409      * Returns true if the cell is editable.
35410      * @param {Number} colIndex The column index
35411      * @param {Number} rowIndex The row index - this is nto actually used..?
35412      * @return {Boolean}
35413      */
35414     isCellEditable : function(colIndex, rowIndex){
35415         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
35416     },
35417
35418     /**
35419      * Returns the editor defined for the cell/column.
35420      * return false or null to disable editing.
35421      * @param {Number} colIndex The column index
35422      * @param {Number} rowIndex The row index
35423      * @return {Object}
35424      */
35425     getCellEditor : function(colIndex, rowIndex){
35426         return this.config[colIndex].editor;
35427     },
35428
35429     /**
35430      * Sets if a column is editable.
35431      * @param {Number} col The column index
35432      * @param {Boolean} editable True if the column is editable
35433      */
35434     setEditable : function(col, editable){
35435         this.config[col].editable = editable;
35436     },
35437
35438
35439     /**
35440      * Returns true if the column is hidden.
35441      * @param {Number} colIndex The column index
35442      * @return {Boolean}
35443      */
35444     isHidden : function(colIndex){
35445         return this.config[colIndex].hidden;
35446     },
35447
35448
35449     /**
35450      * Returns true if the column width cannot be changed
35451      */
35452     isFixed : function(colIndex){
35453         return this.config[colIndex].fixed;
35454     },
35455
35456     /**
35457      * Returns true if the column can be resized
35458      * @return {Boolean}
35459      */
35460     isResizable : function(colIndex){
35461         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
35462     },
35463     /**
35464      * Sets if a column is hidden.
35465      * @param {Number} colIndex The column index
35466      * @param {Boolean} hidden True if the column is hidden
35467      */
35468     setHidden : function(colIndex, hidden){
35469         this.config[colIndex].hidden = hidden;
35470         this.totalWidth = null;
35471         this.fireEvent("hiddenchange", this, colIndex, hidden);
35472     },
35473
35474     /**
35475      * Sets the editor for a column.
35476      * @param {Number} col The column index
35477      * @param {Object} editor The editor object
35478      */
35479     setEditor : function(col, editor){
35480         this.config[col].editor = editor;
35481     }
35482 });
35483
35484 Roo.grid.ColumnModel.defaultRenderer = function(value)
35485 {
35486     if(typeof value == "object") {
35487         return value;
35488     }
35489         if(typeof value == "string" && value.length < 1){
35490             return "&#160;";
35491         }
35492     
35493         return String.format("{0}", value);
35494 };
35495
35496 // Alias for backwards compatibility
35497 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
35498 /*
35499  * Based on:
35500  * Ext JS Library 1.1.1
35501  * Copyright(c) 2006-2007, Ext JS, LLC.
35502  *
35503  * Originally Released Under LGPL - original licence link has changed is not relivant.
35504  *
35505  * Fork - LGPL
35506  * <script type="text/javascript">
35507  */
35508
35509 /**
35510  * @class Roo.grid.AbstractSelectionModel
35511  * @extends Roo.util.Observable
35512  * Abstract base class for grid SelectionModels.  It provides the interface that should be
35513  * implemented by descendant classes.  This class should not be directly instantiated.
35514  * @constructor
35515  */
35516 Roo.grid.AbstractSelectionModel = function(){
35517     this.locked = false;
35518     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
35519 };
35520
35521 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
35522     /** @ignore Called by the grid automatically. Do not call directly. */
35523     init : function(grid){
35524         this.grid = grid;
35525         this.initEvents();
35526     },
35527
35528     /**
35529      * Locks the selections.
35530      */
35531     lock : function(){
35532         this.locked = true;
35533     },
35534
35535     /**
35536      * Unlocks the selections.
35537      */
35538     unlock : function(){
35539         this.locked = false;
35540     },
35541
35542     /**
35543      * Returns true if the selections are locked.
35544      * @return {Boolean}
35545      */
35546     isLocked : function(){
35547         return this.locked;
35548     }
35549 });/*
35550  * Based on:
35551  * Ext JS Library 1.1.1
35552  * Copyright(c) 2006-2007, Ext JS, LLC.
35553  *
35554  * Originally Released Under LGPL - original licence link has changed is not relivant.
35555  *
35556  * Fork - LGPL
35557  * <script type="text/javascript">
35558  */
35559 /**
35560  * @extends Roo.grid.AbstractSelectionModel
35561  * @class Roo.grid.RowSelectionModel
35562  * The default SelectionModel used by {@link Roo.grid.Grid}.
35563  * It supports multiple selections and keyboard selection/navigation. 
35564  * @constructor
35565  * @param {Object} config
35566  */
35567 Roo.grid.RowSelectionModel = function(config){
35568     Roo.apply(this, config);
35569     this.selections = new Roo.util.MixedCollection(false, function(o){
35570         return o.id;
35571     });
35572
35573     this.last = false;
35574     this.lastActive = false;
35575
35576     this.addEvents({
35577         /**
35578              * @event selectionchange
35579              * Fires when the selection changes
35580              * @param {SelectionModel} this
35581              */
35582             "selectionchange" : true,
35583         /**
35584              * @event afterselectionchange
35585              * Fires after the selection changes (eg. by key press or clicking)
35586              * @param {SelectionModel} this
35587              */
35588             "afterselectionchange" : true,
35589         /**
35590              * @event beforerowselect
35591              * Fires when a row is selected being selected, return false to cancel.
35592              * @param {SelectionModel} this
35593              * @param {Number} rowIndex The selected index
35594              * @param {Boolean} keepExisting False if other selections will be cleared
35595              */
35596             "beforerowselect" : true,
35597         /**
35598              * @event rowselect
35599              * Fires when a row is selected.
35600              * @param {SelectionModel} this
35601              * @param {Number} rowIndex The selected index
35602              * @param {Roo.data.Record} r The record
35603              */
35604             "rowselect" : true,
35605         /**
35606              * @event rowdeselect
35607              * Fires when a row is deselected.
35608              * @param {SelectionModel} this
35609              * @param {Number} rowIndex The selected index
35610              */
35611         "rowdeselect" : true
35612     });
35613     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
35614     this.locked = false;
35615 };
35616
35617 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
35618     /**
35619      * @cfg {Boolean} singleSelect
35620      * True to allow selection of only one row at a time (defaults to false)
35621      */
35622     singleSelect : false,
35623
35624     // private
35625     initEvents : function(){
35626
35627         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
35628             this.grid.on("mousedown", this.handleMouseDown, this);
35629         }else{ // allow click to work like normal
35630             this.grid.on("rowclick", this.handleDragableRowClick, this);
35631         }
35632
35633         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
35634             "up" : function(e){
35635                 if(!e.shiftKey){
35636                     this.selectPrevious(e.shiftKey);
35637                 }else if(this.last !== false && this.lastActive !== false){
35638                     var last = this.last;
35639                     this.selectRange(this.last,  this.lastActive-1);
35640                     this.grid.getView().focusRow(this.lastActive);
35641                     if(last !== false){
35642                         this.last = last;
35643                     }
35644                 }else{
35645                     this.selectFirstRow();
35646                 }
35647                 this.fireEvent("afterselectionchange", this);
35648             },
35649             "down" : function(e){
35650                 if(!e.shiftKey){
35651                     this.selectNext(e.shiftKey);
35652                 }else if(this.last !== false && this.lastActive !== false){
35653                     var last = this.last;
35654                     this.selectRange(this.last,  this.lastActive+1);
35655                     this.grid.getView().focusRow(this.lastActive);
35656                     if(last !== false){
35657                         this.last = last;
35658                     }
35659                 }else{
35660                     this.selectFirstRow();
35661                 }
35662                 this.fireEvent("afterselectionchange", this);
35663             },
35664             scope: this
35665         });
35666
35667         var view = this.grid.view;
35668         view.on("refresh", this.onRefresh, this);
35669         view.on("rowupdated", this.onRowUpdated, this);
35670         view.on("rowremoved", this.onRemove, this);
35671     },
35672
35673     // private
35674     onRefresh : function(){
35675         var ds = this.grid.dataSource, i, v = this.grid.view;
35676         var s = this.selections;
35677         s.each(function(r){
35678             if((i = ds.indexOfId(r.id)) != -1){
35679                 v.onRowSelect(i);
35680                 s.add(ds.getAt(i)); // updating the selection relate data
35681             }else{
35682                 s.remove(r);
35683             }
35684         });
35685     },
35686
35687     // private
35688     onRemove : function(v, index, r){
35689         this.selections.remove(r);
35690     },
35691
35692     // private
35693     onRowUpdated : function(v, index, r){
35694         if(this.isSelected(r)){
35695             v.onRowSelect(index);
35696         }
35697     },
35698
35699     /**
35700      * Select records.
35701      * @param {Array} records The records to select
35702      * @param {Boolean} keepExisting (optional) True to keep existing selections
35703      */
35704     selectRecords : function(records, keepExisting){
35705         if(!keepExisting){
35706             this.clearSelections();
35707         }
35708         var ds = this.grid.dataSource;
35709         for(var i = 0, len = records.length; i < len; i++){
35710             this.selectRow(ds.indexOf(records[i]), true);
35711         }
35712     },
35713
35714     /**
35715      * Gets the number of selected rows.
35716      * @return {Number}
35717      */
35718     getCount : function(){
35719         return this.selections.length;
35720     },
35721
35722     /**
35723      * Selects the first row in the grid.
35724      */
35725     selectFirstRow : function(){
35726         this.selectRow(0);
35727     },
35728
35729     /**
35730      * Select the last row.
35731      * @param {Boolean} keepExisting (optional) True to keep existing selections
35732      */
35733     selectLastRow : function(keepExisting){
35734         this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
35735     },
35736
35737     /**
35738      * Selects the row immediately following the last selected row.
35739      * @param {Boolean} keepExisting (optional) True to keep existing selections
35740      */
35741     selectNext : function(keepExisting){
35742         if(this.last !== false && (this.last+1) < this.grid.dataSource.getCount()){
35743             this.selectRow(this.last+1, keepExisting);
35744             this.grid.getView().focusRow(this.last);
35745         }
35746     },
35747
35748     /**
35749      * Selects the row that precedes the last selected row.
35750      * @param {Boolean} keepExisting (optional) True to keep existing selections
35751      */
35752     selectPrevious : function(keepExisting){
35753         if(this.last){
35754             this.selectRow(this.last-1, keepExisting);
35755             this.grid.getView().focusRow(this.last);
35756         }
35757     },
35758
35759     /**
35760      * Returns the selected records
35761      * @return {Array} Array of selected records
35762      */
35763     getSelections : function(){
35764         return [].concat(this.selections.items);
35765     },
35766
35767     /**
35768      * Returns the first selected record.
35769      * @return {Record}
35770      */
35771     getSelected : function(){
35772         return this.selections.itemAt(0);
35773     },
35774
35775
35776     /**
35777      * Clears all selections.
35778      */
35779     clearSelections : function(fast){
35780         if(this.locked) {
35781             return;
35782         }
35783         if(fast !== true){
35784             var ds = this.grid.dataSource;
35785             var s = this.selections;
35786             s.each(function(r){
35787                 this.deselectRow(ds.indexOfId(r.id));
35788             }, this);
35789             s.clear();
35790         }else{
35791             this.selections.clear();
35792         }
35793         this.last = false;
35794     },
35795
35796
35797     /**
35798      * Selects all rows.
35799      */
35800     selectAll : function(){
35801         if(this.locked) {
35802             return;
35803         }
35804         this.selections.clear();
35805         for(var i = 0, len = this.grid.dataSource.getCount(); i < len; i++){
35806             this.selectRow(i, true);
35807         }
35808     },
35809
35810     /**
35811      * Returns True if there is a selection.
35812      * @return {Boolean}
35813      */
35814     hasSelection : function(){
35815         return this.selections.length > 0;
35816     },
35817
35818     /**
35819      * Returns True if the specified row is selected.
35820      * @param {Number/Record} record The record or index of the record to check
35821      * @return {Boolean}
35822      */
35823     isSelected : function(index){
35824         var r = typeof index == "number" ? this.grid.dataSource.getAt(index) : index;
35825         return (r && this.selections.key(r.id) ? true : false);
35826     },
35827
35828     /**
35829      * Returns True if the specified record id is selected.
35830      * @param {String} id The id of record to check
35831      * @return {Boolean}
35832      */
35833     isIdSelected : function(id){
35834         return (this.selections.key(id) ? true : false);
35835     },
35836
35837     // private
35838     handleMouseDown : function(e, t){
35839         var view = this.grid.getView(), rowIndex;
35840         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
35841             return;
35842         };
35843         if(e.shiftKey && this.last !== false){
35844             var last = this.last;
35845             this.selectRange(last, rowIndex, e.ctrlKey);
35846             this.last = last; // reset the last
35847             view.focusRow(rowIndex);
35848         }else{
35849             var isSelected = this.isSelected(rowIndex);
35850             if(e.button !== 0 && isSelected){
35851                 view.focusRow(rowIndex);
35852             }else if(e.ctrlKey && isSelected){
35853                 this.deselectRow(rowIndex);
35854             }else if(!isSelected){
35855                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
35856                 view.focusRow(rowIndex);
35857             }
35858         }
35859         this.fireEvent("afterselectionchange", this);
35860     },
35861     // private
35862     handleDragableRowClick :  function(grid, rowIndex, e) 
35863     {
35864         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
35865             this.selectRow(rowIndex, false);
35866             grid.view.focusRow(rowIndex);
35867              this.fireEvent("afterselectionchange", this);
35868         }
35869     },
35870     
35871     /**
35872      * Selects multiple rows.
35873      * @param {Array} rows Array of the indexes of the row to select
35874      * @param {Boolean} keepExisting (optional) True to keep existing selections
35875      */
35876     selectRows : function(rows, keepExisting){
35877         if(!keepExisting){
35878             this.clearSelections();
35879         }
35880         for(var i = 0, len = rows.length; i < len; i++){
35881             this.selectRow(rows[i], true);
35882         }
35883     },
35884
35885     /**
35886      * Selects a range of rows. All rows in between startRow and endRow are also selected.
35887      * @param {Number} startRow The index of the first row in the range
35888      * @param {Number} endRow The index of the last row in the range
35889      * @param {Boolean} keepExisting (optional) True to retain existing selections
35890      */
35891     selectRange : function(startRow, endRow, keepExisting){
35892         if(this.locked) {
35893             return;
35894         }
35895         if(!keepExisting){
35896             this.clearSelections();
35897         }
35898         if(startRow <= endRow){
35899             for(var i = startRow; i <= endRow; i++){
35900                 this.selectRow(i, true);
35901             }
35902         }else{
35903             for(var i = startRow; i >= endRow; i--){
35904                 this.selectRow(i, true);
35905             }
35906         }
35907     },
35908
35909     /**
35910      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
35911      * @param {Number} startRow The index of the first row in the range
35912      * @param {Number} endRow The index of the last row in the range
35913      */
35914     deselectRange : function(startRow, endRow, preventViewNotify){
35915         if(this.locked) {
35916             return;
35917         }
35918         for(var i = startRow; i <= endRow; i++){
35919             this.deselectRow(i, preventViewNotify);
35920         }
35921     },
35922
35923     /**
35924      * Selects a row.
35925      * @param {Number} row The index of the row to select
35926      * @param {Boolean} keepExisting (optional) True to keep existing selections
35927      */
35928     selectRow : function(index, keepExisting, preventViewNotify){
35929         if(this.locked || (index < 0 || index >= this.grid.dataSource.getCount())) {
35930             return;
35931         }
35932         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
35933             if(!keepExisting || this.singleSelect){
35934                 this.clearSelections();
35935             }
35936             var r = this.grid.dataSource.getAt(index);
35937             this.selections.add(r);
35938             this.last = this.lastActive = index;
35939             if(!preventViewNotify){
35940                 this.grid.getView().onRowSelect(index);
35941             }
35942             this.fireEvent("rowselect", this, index, r);
35943             this.fireEvent("selectionchange", this);
35944         }
35945     },
35946
35947     /**
35948      * Deselects a row.
35949      * @param {Number} row The index of the row to deselect
35950      */
35951     deselectRow : function(index, preventViewNotify){
35952         if(this.locked) {
35953             return;
35954         }
35955         if(this.last == index){
35956             this.last = false;
35957         }
35958         if(this.lastActive == index){
35959             this.lastActive = false;
35960         }
35961         var r = this.grid.dataSource.getAt(index);
35962         this.selections.remove(r);
35963         if(!preventViewNotify){
35964             this.grid.getView().onRowDeselect(index);
35965         }
35966         this.fireEvent("rowdeselect", this, index);
35967         this.fireEvent("selectionchange", this);
35968     },
35969
35970     // private
35971     restoreLast : function(){
35972         if(this._last){
35973             this.last = this._last;
35974         }
35975     },
35976
35977     // private
35978     acceptsNav : function(row, col, cm){
35979         return !cm.isHidden(col) && cm.isCellEditable(col, row);
35980     },
35981
35982     // private
35983     onEditorKey : function(field, e){
35984         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
35985         if(k == e.TAB){
35986             e.stopEvent();
35987             ed.completeEdit();
35988             if(e.shiftKey){
35989                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
35990             }else{
35991                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
35992             }
35993         }else if(k == e.ENTER && !e.ctrlKey){
35994             e.stopEvent();
35995             ed.completeEdit();
35996             if(e.shiftKey){
35997                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
35998             }else{
35999                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
36000             }
36001         }else if(k == e.ESC){
36002             ed.cancelEdit();
36003         }
36004         if(newCell){
36005             g.startEditing(newCell[0], newCell[1]);
36006         }
36007     }
36008 });/*
36009  * Based on:
36010  * Ext JS Library 1.1.1
36011  * Copyright(c) 2006-2007, Ext JS, LLC.
36012  *
36013  * Originally Released Under LGPL - original licence link has changed is not relivant.
36014  *
36015  * Fork - LGPL
36016  * <script type="text/javascript">
36017  */
36018 /**
36019  * @class Roo.grid.CellSelectionModel
36020  * @extends Roo.grid.AbstractSelectionModel
36021  * This class provides the basic implementation for cell selection in a grid.
36022  * @constructor
36023  * @param {Object} config The object containing the configuration of this model.
36024  * @cfg {Boolean} enter_is_tab Enter behaves the same as tab. (eg. goes to next cell) default: false
36025  */
36026 Roo.grid.CellSelectionModel = function(config){
36027     Roo.apply(this, config);
36028
36029     this.selection = null;
36030
36031     this.addEvents({
36032         /**
36033              * @event beforerowselect
36034              * Fires before a cell is selected.
36035              * @param {SelectionModel} this
36036              * @param {Number} rowIndex The selected row index
36037              * @param {Number} colIndex The selected cell index
36038              */
36039             "beforecellselect" : true,
36040         /**
36041              * @event cellselect
36042              * Fires when a cell is selected.
36043              * @param {SelectionModel} this
36044              * @param {Number} rowIndex The selected row index
36045              * @param {Number} colIndex The selected cell index
36046              */
36047             "cellselect" : true,
36048         /**
36049              * @event selectionchange
36050              * Fires when the active selection changes.
36051              * @param {SelectionModel} this
36052              * @param {Object} selection null for no selection or an object (o) with two properties
36053                 <ul>
36054                 <li>o.record: the record object for the row the selection is in</li>
36055                 <li>o.cell: An array of [rowIndex, columnIndex]</li>
36056                 </ul>
36057              */
36058             "selectionchange" : true,
36059         /**
36060              * @event tabend
36061              * Fires when the tab (or enter) was pressed on the last editable cell
36062              * You can use this to trigger add new row.
36063              * @param {SelectionModel} this
36064              */
36065             "tabend" : true,
36066          /**
36067              * @event beforeeditnext
36068              * Fires before the next editable sell is made active
36069              * You can use this to skip to another cell or fire the tabend
36070              *    if you set cell to false
36071              * @param {Object} eventdata object : { cell : [ row, col ] } 
36072              */
36073             "beforeeditnext" : true
36074     });
36075     Roo.grid.CellSelectionModel.superclass.constructor.call(this);
36076 };
36077
36078 Roo.extend(Roo.grid.CellSelectionModel, Roo.grid.AbstractSelectionModel,  {
36079     
36080     enter_is_tab: false,
36081
36082     /** @ignore */
36083     initEvents : function(){
36084         this.grid.on("mousedown", this.handleMouseDown, this);
36085         this.grid.getGridEl().on(Roo.isIE ? "keydown" : "keypress", this.handleKeyDown, this);
36086         var view = this.grid.view;
36087         view.on("refresh", this.onViewChange, this);
36088         view.on("rowupdated", this.onRowUpdated, this);
36089         view.on("beforerowremoved", this.clearSelections, this);
36090         view.on("beforerowsinserted", this.clearSelections, this);
36091         if(this.grid.isEditor){
36092             this.grid.on("beforeedit", this.beforeEdit,  this);
36093         }
36094     },
36095
36096         //private
36097     beforeEdit : function(e){
36098         this.select(e.row, e.column, false, true, e.record);
36099     },
36100
36101         //private
36102     onRowUpdated : function(v, index, r){
36103         if(this.selection && this.selection.record == r){
36104             v.onCellSelect(index, this.selection.cell[1]);
36105         }
36106     },
36107
36108         //private
36109     onViewChange : function(){
36110         this.clearSelections(true);
36111     },
36112
36113         /**
36114          * Returns the currently selected cell,.
36115          * @return {Array} The selected cell (row, column) or null if none selected.
36116          */
36117     getSelectedCell : function(){
36118         return this.selection ? this.selection.cell : null;
36119     },
36120
36121     /**
36122      * Clears all selections.
36123      * @param {Boolean} true to prevent the gridview from being notified about the change.
36124      */
36125     clearSelections : function(preventNotify){
36126         var s = this.selection;
36127         if(s){
36128             if(preventNotify !== true){
36129                 this.grid.view.onCellDeselect(s.cell[0], s.cell[1]);
36130             }
36131             this.selection = null;
36132             this.fireEvent("selectionchange", this, null);
36133         }
36134     },
36135
36136     /**
36137      * Returns true if there is a selection.
36138      * @return {Boolean}
36139      */
36140     hasSelection : function(){
36141         return this.selection ? true : false;
36142     },
36143
36144     /** @ignore */
36145     handleMouseDown : function(e, t){
36146         var v = this.grid.getView();
36147         if(this.isLocked()){
36148             return;
36149         };
36150         var row = v.findRowIndex(t);
36151         var cell = v.findCellIndex(t);
36152         if(row !== false && cell !== false){
36153             this.select(row, cell);
36154         }
36155     },
36156
36157     /**
36158      * Selects a cell.
36159      * @param {Number} rowIndex
36160      * @param {Number} collIndex
36161      */
36162     select : function(rowIndex, colIndex, preventViewNotify, preventFocus, /*internal*/ r){
36163         if(this.fireEvent("beforecellselect", this, rowIndex, colIndex) !== false){
36164             this.clearSelections();
36165             r = r || this.grid.dataSource.getAt(rowIndex);
36166             this.selection = {
36167                 record : r,
36168                 cell : [rowIndex, colIndex]
36169             };
36170             if(!preventViewNotify){
36171                 var v = this.grid.getView();
36172                 v.onCellSelect(rowIndex, colIndex);
36173                 if(preventFocus !== true){
36174                     v.focusCell(rowIndex, colIndex);
36175                 }
36176             }
36177             this.fireEvent("cellselect", this, rowIndex, colIndex);
36178             this.fireEvent("selectionchange", this, this.selection);
36179         }
36180     },
36181
36182         //private
36183     isSelectable : function(rowIndex, colIndex, cm){
36184         return !cm.isHidden(colIndex);
36185     },
36186
36187     /** @ignore */
36188     handleKeyDown : function(e){
36189         //Roo.log('Cell Sel Model handleKeyDown');
36190         if(!e.isNavKeyPress()){
36191             return;
36192         }
36193         var g = this.grid, s = this.selection;
36194         if(!s){
36195             e.stopEvent();
36196             var cell = g.walkCells(0, 0, 1, this.isSelectable,  this);
36197             if(cell){
36198                 this.select(cell[0], cell[1]);
36199             }
36200             return;
36201         }
36202         var sm = this;
36203         var walk = function(row, col, step){
36204             return g.walkCells(row, col, step, sm.isSelectable,  sm);
36205         };
36206         var k = e.getKey(), r = s.cell[0], c = s.cell[1];
36207         var newCell;
36208
36209       
36210
36211         switch(k){
36212             case e.TAB:
36213                 // handled by onEditorKey
36214                 if (g.isEditor && g.editing) {
36215                     return;
36216                 }
36217                 if(e.shiftKey) {
36218                     newCell = walk(r, c-1, -1);
36219                 } else {
36220                     newCell = walk(r, c+1, 1);
36221                 }
36222                 break;
36223             
36224             case e.DOWN:
36225                newCell = walk(r+1, c, 1);
36226                 break;
36227             
36228             case e.UP:
36229                 newCell = walk(r-1, c, -1);
36230                 break;
36231             
36232             case e.RIGHT:
36233                 newCell = walk(r, c+1, 1);
36234                 break;
36235             
36236             case e.LEFT:
36237                 newCell = walk(r, c-1, -1);
36238                 break;
36239             
36240             case e.ENTER:
36241                 
36242                 if(g.isEditor && !g.editing){
36243                    g.startEditing(r, c);
36244                    e.stopEvent();
36245                    return;
36246                 }
36247                 
36248                 
36249              break;
36250         };
36251         if(newCell){
36252             this.select(newCell[0], newCell[1]);
36253             e.stopEvent();
36254             
36255         }
36256     },
36257
36258     acceptsNav : function(row, col, cm){
36259         return !cm.isHidden(col) && cm.isCellEditable(col, row);
36260     },
36261     /**
36262      * Selects a cell.
36263      * @param {Number} field (not used) - as it's normally used as a listener
36264      * @param {Number} e - event - fake it by using
36265      *
36266      * var e = Roo.EventObjectImpl.prototype;
36267      * e.keyCode = e.TAB
36268      *
36269      * 
36270      */
36271     onEditorKey : function(field, e){
36272         
36273         var k = e.getKey(),
36274             newCell,
36275             g = this.grid,
36276             ed = g.activeEditor,
36277             forward = false;
36278         ///Roo.log('onEditorKey' + k);
36279         
36280         
36281         if (this.enter_is_tab && k == e.ENTER) {
36282             k = e.TAB;
36283         }
36284         
36285         if(k == e.TAB){
36286             if(e.shiftKey){
36287                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
36288             }else{
36289                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
36290                 forward = true;
36291             }
36292             
36293             e.stopEvent();
36294             
36295         } else if(k == e.ENTER &&  !e.ctrlKey){
36296             ed.completeEdit();
36297             e.stopEvent();
36298             newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
36299         
36300                 } else if(k == e.ESC){
36301             ed.cancelEdit();
36302         }
36303                 
36304         if (newCell) {
36305             var ecall = { cell : newCell, forward : forward };
36306             this.fireEvent('beforeeditnext', ecall );
36307             newCell = ecall.cell;
36308                         forward = ecall.forward;
36309         }
36310                 
36311         if(newCell){
36312             //Roo.log('next cell after edit');
36313             g.startEditing.defer(100, g, [newCell[0], newCell[1]]);
36314         } else if (forward) {
36315             // tabbed past last
36316             this.fireEvent.defer(100, this, ['tabend',this]);
36317         }
36318     }
36319 });/*
36320  * Based on:
36321  * Ext JS Library 1.1.1
36322  * Copyright(c) 2006-2007, Ext JS, LLC.
36323  *
36324  * Originally Released Under LGPL - original licence link has changed is not relivant.
36325  *
36326  * Fork - LGPL
36327  * <script type="text/javascript">
36328  */
36329  
36330 /**
36331  * @class Roo.grid.EditorGrid
36332  * @extends Roo.grid.Grid
36333  * Class for creating and editable grid.
36334  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered - 
36335  * The container MUST have some type of size defined for the grid to fill. The container will be 
36336  * automatically set to position relative if it isn't already.
36337  * @param {Object} dataSource The data model to bind to
36338  * @param {Object} colModel The column model with info about this grid's columns
36339  */
36340 Roo.grid.EditorGrid = function(container, config){
36341     Roo.grid.EditorGrid.superclass.constructor.call(this, container, config);
36342     this.getGridEl().addClass("xedit-grid");
36343
36344     if(!this.selModel){
36345         this.selModel = new Roo.grid.CellSelectionModel();
36346     }
36347
36348     this.activeEditor = null;
36349
36350         this.addEvents({
36351             /**
36352              * @event beforeedit
36353              * Fires before cell editing is triggered. The edit event object has the following properties <br />
36354              * <ul style="padding:5px;padding-left:16px;">
36355              * <li>grid - This grid</li>
36356              * <li>record - The record being edited</li>
36357              * <li>field - The field name being edited</li>
36358              * <li>value - The value for the field being edited.</li>
36359              * <li>row - The grid row index</li>
36360              * <li>column - The grid column index</li>
36361              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
36362              * </ul>
36363              * @param {Object} e An edit event (see above for description)
36364              */
36365             "beforeedit" : true,
36366             /**
36367              * @event afteredit
36368              * Fires after a cell is edited. <br />
36369              * <ul style="padding:5px;padding-left:16px;">
36370              * <li>grid - This grid</li>
36371              * <li>record - The record being edited</li>
36372              * <li>field - The field name being edited</li>
36373              * <li>value - The value being set</li>
36374              * <li>originalValue - The original value for the field, before the edit.</li>
36375              * <li>row - The grid row index</li>
36376              * <li>column - The grid column index</li>
36377              * </ul>
36378              * @param {Object} e An edit event (see above for description)
36379              */
36380             "afteredit" : true,
36381             /**
36382              * @event validateedit
36383              * Fires after a cell is edited, but before the value is set in the record. 
36384          * You can use this to modify the value being set in the field, Return false
36385              * to cancel the change. The edit event object has the following properties <br />
36386              * <ul style="padding:5px;padding-left:16px;">
36387          * <li>editor - This editor</li>
36388              * <li>grid - This grid</li>
36389              * <li>record - The record being edited</li>
36390              * <li>field - The field name being edited</li>
36391              * <li>value - The value being set</li>
36392              * <li>originalValue - The original value for the field, before the edit.</li>
36393              * <li>row - The grid row index</li>
36394              * <li>column - The grid column index</li>
36395              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
36396              * </ul>
36397              * @param {Object} e An edit event (see above for description)
36398              */
36399             "validateedit" : true
36400         });
36401     this.on("bodyscroll", this.stopEditing,  this);
36402     this.on(this.clicksToEdit == 1 ? "cellclick" : "celldblclick", this.onCellDblClick,  this);
36403 };
36404
36405 Roo.extend(Roo.grid.EditorGrid, Roo.grid.Grid, {
36406     /**
36407      * @cfg {Number} clicksToEdit
36408      * The number of clicks on a cell required to display the cell's editor (defaults to 2)
36409      */
36410     clicksToEdit: 2,
36411
36412     // private
36413     isEditor : true,
36414     // private
36415     trackMouseOver: false, // causes very odd FF errors
36416
36417     onCellDblClick : function(g, row, col){
36418         this.startEditing(row, col);
36419     },
36420
36421     onEditComplete : function(ed, value, startValue){
36422         this.editing = false;
36423         this.activeEditor = null;
36424         ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
36425         var r = ed.record;
36426         var field = this.colModel.getDataIndex(ed.col);
36427         var e = {
36428             grid: this,
36429             record: r,
36430             field: field,
36431             originalValue: startValue,
36432             value: value,
36433             row: ed.row,
36434             column: ed.col,
36435             cancel:false,
36436             editor: ed
36437         };
36438         var cell = Roo.get(this.view.getCell(ed.row,ed.col));
36439         cell.show();
36440           
36441         if(String(value) !== String(startValue)){
36442             
36443             if(this.fireEvent("validateedit", e) !== false && !e.cancel){
36444                 r.set(field, e.value);
36445                 // if we are dealing with a combo box..
36446                 // then we also set the 'name' colum to be the displayField
36447                 if (ed.field.displayField && ed.field.name) {
36448                     r.set(ed.field.name, ed.field.el.dom.value);
36449                 }
36450                 
36451                 delete e.cancel; //?? why!!!
36452                 this.fireEvent("afteredit", e);
36453             }
36454         } else {
36455             this.fireEvent("afteredit", e); // always fire it!
36456         }
36457         this.view.focusCell(ed.row, ed.col);
36458     },
36459
36460     /**
36461      * Starts editing the specified for the specified row/column
36462      * @param {Number} rowIndex
36463      * @param {Number} colIndex
36464      */
36465     startEditing : function(row, col){
36466         this.stopEditing();
36467         if(this.colModel.isCellEditable(col, row)){
36468             this.view.ensureVisible(row, col, true);
36469           
36470             var r = this.dataSource.getAt(row);
36471             var field = this.colModel.getDataIndex(col);
36472             var cell = Roo.get(this.view.getCell(row,col));
36473             var e = {
36474                 grid: this,
36475                 record: r,
36476                 field: field,
36477                 value: r.data[field],
36478                 row: row,
36479                 column: col,
36480                 cancel:false 
36481             };
36482             if(this.fireEvent("beforeedit", e) !== false && !e.cancel){
36483                 this.editing = true;
36484                 var ed = this.colModel.getCellEditor(col, row);
36485                 
36486                 if (!ed) {
36487                     return;
36488                 }
36489                 if(!ed.rendered){
36490                     ed.render(ed.parentEl || document.body);
36491                 }
36492                 ed.field.reset();
36493                
36494                 cell.hide();
36495                 
36496                 (function(){ // complex but required for focus issues in safari, ie and opera
36497                     ed.row = row;
36498                     ed.col = col;
36499                     ed.record = r;
36500                     ed.on("complete",   this.onEditComplete,        this,       {single: true});
36501                     ed.on("specialkey", this.selModel.onEditorKey,  this.selModel);
36502                     this.activeEditor = ed;
36503                     var v = r.data[field];
36504                     ed.startEdit(this.view.getCell(row, col), v);
36505                     // combo's with 'displayField and name set
36506                     if (ed.field.displayField && ed.field.name) {
36507                         ed.field.el.dom.value = r.data[ed.field.name];
36508                     }
36509                     
36510                     
36511                 }).defer(50, this);
36512             }
36513         }
36514     },
36515         
36516     /**
36517      * Stops any active editing
36518      */
36519     stopEditing : function(){
36520         if(this.activeEditor){
36521             this.activeEditor.completeEdit();
36522         }
36523         this.activeEditor = null;
36524     },
36525         
36526          /**
36527      * Called to get grid's drag proxy text, by default returns this.ddText.
36528      * @return {String}
36529      */
36530     getDragDropText : function(){
36531         var count = this.selModel.getSelectedCell() ? 1 : 0;
36532         return String.format(this.ddText, count, count == 1 ? '' : 's');
36533     }
36534         
36535 });/*
36536  * Based on:
36537  * Ext JS Library 1.1.1
36538  * Copyright(c) 2006-2007, Ext JS, LLC.
36539  *
36540  * Originally Released Under LGPL - original licence link has changed is not relivant.
36541  *
36542  * Fork - LGPL
36543  * <script type="text/javascript">
36544  */
36545
36546 // private - not really -- you end up using it !
36547 // This is a support class used internally by the Grid components
36548
36549 /**
36550  * @class Roo.grid.GridEditor
36551  * @extends Roo.Editor
36552  * Class for creating and editable grid elements.
36553  * @param {Object} config any settings (must include field)
36554  */
36555 Roo.grid.GridEditor = function(field, config){
36556     if (!config && field.field) {
36557         config = field;
36558         field = Roo.factory(config.field, Roo.form);
36559     }
36560     Roo.grid.GridEditor.superclass.constructor.call(this, field, config);
36561     field.monitorTab = false;
36562 };
36563
36564 Roo.extend(Roo.grid.GridEditor, Roo.Editor, {
36565     
36566     /**
36567      * @cfg {Roo.form.Field} field Field to wrap (or xtyped)
36568      */
36569     
36570     alignment: "tl-tl",
36571     autoSize: "width",
36572     hideEl : false,
36573     cls: "x-small-editor x-grid-editor",
36574     shim:false,
36575     shadow:"frame"
36576 });/*
36577  * Based on:
36578  * Ext JS Library 1.1.1
36579  * Copyright(c) 2006-2007, Ext JS, LLC.
36580  *
36581  * Originally Released Under LGPL - original licence link has changed is not relivant.
36582  *
36583  * Fork - LGPL
36584  * <script type="text/javascript">
36585  */
36586   
36587
36588   
36589 Roo.grid.PropertyRecord = Roo.data.Record.create([
36590     {name:'name',type:'string'},  'value'
36591 ]);
36592
36593
36594 Roo.grid.PropertyStore = function(grid, source){
36595     this.grid = grid;
36596     this.store = new Roo.data.Store({
36597         recordType : Roo.grid.PropertyRecord
36598     });
36599     this.store.on('update', this.onUpdate,  this);
36600     if(source){
36601         this.setSource(source);
36602     }
36603     Roo.grid.PropertyStore.superclass.constructor.call(this);
36604 };
36605
36606
36607
36608 Roo.extend(Roo.grid.PropertyStore, Roo.util.Observable, {
36609     setSource : function(o){
36610         this.source = o;
36611         this.store.removeAll();
36612         var data = [];
36613         for(var k in o){
36614             if(this.isEditableValue(o[k])){
36615                 data.push(new Roo.grid.PropertyRecord({name: k, value: o[k]}, k));
36616             }
36617         }
36618         this.store.loadRecords({records: data}, {}, true);
36619     },
36620
36621     onUpdate : function(ds, record, type){
36622         if(type == Roo.data.Record.EDIT){
36623             var v = record.data['value'];
36624             var oldValue = record.modified['value'];
36625             if(this.grid.fireEvent('beforepropertychange', this.source, record.id, v, oldValue) !== false){
36626                 this.source[record.id] = v;
36627                 record.commit();
36628                 this.grid.fireEvent('propertychange', this.source, record.id, v, oldValue);
36629             }else{
36630                 record.reject();
36631             }
36632         }
36633     },
36634
36635     getProperty : function(row){
36636        return this.store.getAt(row);
36637     },
36638
36639     isEditableValue: function(val){
36640         if(val && val instanceof Date){
36641             return true;
36642         }else if(typeof val == 'object' || typeof val == 'function'){
36643             return false;
36644         }
36645         return true;
36646     },
36647
36648     setValue : function(prop, value){
36649         this.source[prop] = value;
36650         this.store.getById(prop).set('value', value);
36651     },
36652
36653     getSource : function(){
36654         return this.source;
36655     }
36656 });
36657
36658 Roo.grid.PropertyColumnModel = function(grid, store){
36659     this.grid = grid;
36660     var g = Roo.grid;
36661     g.PropertyColumnModel.superclass.constructor.call(this, [
36662         {header: this.nameText, sortable: true, dataIndex:'name', id: 'name'},
36663         {header: this.valueText, resizable:false, dataIndex: 'value', id: 'value'}
36664     ]);
36665     this.store = store;
36666     this.bselect = Roo.DomHelper.append(document.body, {
36667         tag: 'select', style:'display:none', cls: 'x-grid-editor', children: [
36668             {tag: 'option', value: 'true', html: 'true'},
36669             {tag: 'option', value: 'false', html: 'false'}
36670         ]
36671     });
36672     Roo.id(this.bselect);
36673     var f = Roo.form;
36674     this.editors = {
36675         'date' : new g.GridEditor(new f.DateField({selectOnFocus:true})),
36676         'string' : new g.GridEditor(new f.TextField({selectOnFocus:true})),
36677         'number' : new g.GridEditor(new f.NumberField({selectOnFocus:true, style:'text-align:left;'})),
36678         'int' : new g.GridEditor(new f.NumberField({selectOnFocus:true, allowDecimals:false, style:'text-align:left;'})),
36679         'boolean' : new g.GridEditor(new f.Field({el:this.bselect,selectOnFocus:true}))
36680     };
36681     this.renderCellDelegate = this.renderCell.createDelegate(this);
36682     this.renderPropDelegate = this.renderProp.createDelegate(this);
36683 };
36684
36685 Roo.extend(Roo.grid.PropertyColumnModel, Roo.grid.ColumnModel, {
36686     
36687     
36688     nameText : 'Name',
36689     valueText : 'Value',
36690     
36691     dateFormat : 'm/j/Y',
36692     
36693     
36694     renderDate : function(dateVal){
36695         return dateVal.dateFormat(this.dateFormat);
36696     },
36697
36698     renderBool : function(bVal){
36699         return bVal ? 'true' : 'false';
36700     },
36701
36702     isCellEditable : function(colIndex, rowIndex){
36703         return colIndex == 1;
36704     },
36705
36706     getRenderer : function(col){
36707         return col == 1 ?
36708             this.renderCellDelegate : this.renderPropDelegate;
36709     },
36710
36711     renderProp : function(v){
36712         return this.getPropertyName(v);
36713     },
36714
36715     renderCell : function(val){
36716         var rv = val;
36717         if(val instanceof Date){
36718             rv = this.renderDate(val);
36719         }else if(typeof val == 'boolean'){
36720             rv = this.renderBool(val);
36721         }
36722         return Roo.util.Format.htmlEncode(rv);
36723     },
36724
36725     getPropertyName : function(name){
36726         var pn = this.grid.propertyNames;
36727         return pn && pn[name] ? pn[name] : name;
36728     },
36729
36730     getCellEditor : function(colIndex, rowIndex){
36731         var p = this.store.getProperty(rowIndex);
36732         var n = p.data['name'], val = p.data['value'];
36733         
36734         if(typeof(this.grid.customEditors[n]) == 'string'){
36735             return this.editors[this.grid.customEditors[n]];
36736         }
36737         if(typeof(this.grid.customEditors[n]) != 'undefined'){
36738             return this.grid.customEditors[n];
36739         }
36740         if(val instanceof Date){
36741             return this.editors['date'];
36742         }else if(typeof val == 'number'){
36743             return this.editors['number'];
36744         }else if(typeof val == 'boolean'){
36745             return this.editors['boolean'];
36746         }else{
36747             return this.editors['string'];
36748         }
36749     }
36750 });
36751
36752 /**
36753  * @class Roo.grid.PropertyGrid
36754  * @extends Roo.grid.EditorGrid
36755  * This class represents the  interface of a component based property grid control.
36756  * <br><br>Usage:<pre><code>
36757  var grid = new Roo.grid.PropertyGrid("my-container-id", {
36758       
36759  });
36760  // set any options
36761  grid.render();
36762  * </code></pre>
36763   
36764  * @constructor
36765  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
36766  * The container MUST have some type of size defined for the grid to fill. The container will be
36767  * automatically set to position relative if it isn't already.
36768  * @param {Object} config A config object that sets properties on this grid.
36769  */
36770 Roo.grid.PropertyGrid = function(container, config){
36771     config = config || {};
36772     var store = new Roo.grid.PropertyStore(this);
36773     this.store = store;
36774     var cm = new Roo.grid.PropertyColumnModel(this, store);
36775     store.store.sort('name', 'ASC');
36776     Roo.grid.PropertyGrid.superclass.constructor.call(this, container, Roo.apply({
36777         ds: store.store,
36778         cm: cm,
36779         enableColLock:false,
36780         enableColumnMove:false,
36781         stripeRows:false,
36782         trackMouseOver: false,
36783         clicksToEdit:1
36784     }, config));
36785     this.getGridEl().addClass('x-props-grid');
36786     this.lastEditRow = null;
36787     this.on('columnresize', this.onColumnResize, this);
36788     this.addEvents({
36789          /**
36790              * @event beforepropertychange
36791              * Fires before a property changes (return false to stop?)
36792              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
36793              * @param {String} id Record Id
36794              * @param {String} newval New Value
36795          * @param {String} oldval Old Value
36796              */
36797         "beforepropertychange": true,
36798         /**
36799              * @event propertychange
36800              * Fires after a property changes
36801              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
36802              * @param {String} id Record Id
36803              * @param {String} newval New Value
36804          * @param {String} oldval Old Value
36805              */
36806         "propertychange": true
36807     });
36808     this.customEditors = this.customEditors || {};
36809 };
36810 Roo.extend(Roo.grid.PropertyGrid, Roo.grid.EditorGrid, {
36811     
36812      /**
36813      * @cfg {Object} customEditors map of colnames=> custom editors.
36814      * the custom editor can be one of the standard ones (date|string|number|int|boolean), or a
36815      * grid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),
36816      * false disables editing of the field.
36817          */
36818     
36819       /**
36820      * @cfg {Object} propertyNames map of property Names to their displayed value
36821          */
36822     
36823     render : function(){
36824         Roo.grid.PropertyGrid.superclass.render.call(this);
36825         this.autoSize.defer(100, this);
36826     },
36827
36828     autoSize : function(){
36829         Roo.grid.PropertyGrid.superclass.autoSize.call(this);
36830         if(this.view){
36831             this.view.fitColumns();
36832         }
36833     },
36834
36835     onColumnResize : function(){
36836         this.colModel.setColumnWidth(1, this.container.getWidth(true)-this.colModel.getColumnWidth(0));
36837         this.autoSize();
36838     },
36839     /**
36840      * Sets the data for the Grid
36841      * accepts a Key => Value object of all the elements avaiable.
36842      * @param {Object} data  to appear in grid.
36843      */
36844     setSource : function(source){
36845         this.store.setSource(source);
36846         //this.autoSize();
36847     },
36848     /**
36849      * Gets all the data from the grid.
36850      * @return {Object} data  data stored in grid
36851      */
36852     getSource : function(){
36853         return this.store.getSource();
36854     }
36855 });/*
36856   
36857  * Licence LGPL
36858  
36859  */
36860  
36861 /**
36862  * @class Roo.grid.Calendar
36863  * @extends Roo.util.Grid
36864  * This class extends the Grid to provide a calendar widget
36865  * <br><br>Usage:<pre><code>
36866  var grid = new Roo.grid.Calendar("my-container-id", {
36867      ds: myDataStore,
36868      cm: myColModel,
36869      selModel: mySelectionModel,
36870      autoSizeColumns: true,
36871      monitorWindowResize: false,
36872      trackMouseOver: true
36873      eventstore : real data store..
36874  });
36875  // set any options
36876  grid.render();
36877   
36878   * @constructor
36879  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
36880  * The container MUST have some type of size defined for the grid to fill. The container will be
36881  * automatically set to position relative if it isn't already.
36882  * @param {Object} config A config object that sets properties on this grid.
36883  */
36884 Roo.grid.Calendar = function(container, config){
36885         // initialize the container
36886         this.container = Roo.get(container);
36887         this.container.update("");
36888         this.container.setStyle("overflow", "hidden");
36889     this.container.addClass('x-grid-container');
36890
36891     this.id = this.container.id;
36892
36893     Roo.apply(this, config);
36894     // check and correct shorthanded configs
36895     
36896     var rows = [];
36897     var d =1;
36898     for (var r = 0;r < 6;r++) {
36899         
36900         rows[r]=[];
36901         for (var c =0;c < 7;c++) {
36902             rows[r][c]= '';
36903         }
36904     }
36905     if (this.eventStore) {
36906         this.eventStore= Roo.factory(this.eventStore, Roo.data);
36907         this.eventStore.on('load',this.onLoad, this);
36908         this.eventStore.on('beforeload',this.clearEvents, this);
36909          
36910     }
36911     
36912     this.dataSource = new Roo.data.Store({
36913             proxy: new Roo.data.MemoryProxy(rows),
36914             reader: new Roo.data.ArrayReader({}, [
36915                    'weekday0', 'weekday1', 'weekday2', 'weekday3', 'weekday4', 'weekday5', 'weekday6' ])
36916     });
36917
36918     this.dataSource.load();
36919     this.ds = this.dataSource;
36920     this.ds.xmodule = this.xmodule || false;
36921     
36922     
36923     var cellRender = function(v,x,r)
36924     {
36925         return String.format(
36926             '<div class="fc-day  fc-widget-content"><div>' +
36927                 '<div class="fc-event-container"></div>' +
36928                 '<div class="fc-day-number">{0}</div>'+
36929                 
36930                 '<div class="fc-day-content"><div style="position:relative"></div></div>' +
36931             '</div></div>', v);
36932     
36933     }
36934     
36935     
36936     this.colModel = new Roo.grid.ColumnModel( [
36937         {
36938             xtype: 'ColumnModel',
36939             xns: Roo.grid,
36940             dataIndex : 'weekday0',
36941             header : 'Sunday',
36942             renderer : cellRender
36943         },
36944         {
36945             xtype: 'ColumnModel',
36946             xns: Roo.grid,
36947             dataIndex : 'weekday1',
36948             header : 'Monday',
36949             renderer : cellRender
36950         },
36951         {
36952             xtype: 'ColumnModel',
36953             xns: Roo.grid,
36954             dataIndex : 'weekday2',
36955             header : 'Tuesday',
36956             renderer : cellRender
36957         },
36958         {
36959             xtype: 'ColumnModel',
36960             xns: Roo.grid,
36961             dataIndex : 'weekday3',
36962             header : 'Wednesday',
36963             renderer : cellRender
36964         },
36965         {
36966             xtype: 'ColumnModel',
36967             xns: Roo.grid,
36968             dataIndex : 'weekday4',
36969             header : 'Thursday',
36970             renderer : cellRender
36971         },
36972         {
36973             xtype: 'ColumnModel',
36974             xns: Roo.grid,
36975             dataIndex : 'weekday5',
36976             header : 'Friday',
36977             renderer : cellRender
36978         },
36979         {
36980             xtype: 'ColumnModel',
36981             xns: Roo.grid,
36982             dataIndex : 'weekday6',
36983             header : 'Saturday',
36984             renderer : cellRender
36985         }
36986     ]);
36987     this.cm = this.colModel;
36988     this.cm.xmodule = this.xmodule || false;
36989  
36990         
36991           
36992     //this.selModel = new Roo.grid.CellSelectionModel();
36993     //this.sm = this.selModel;
36994     //this.selModel.init(this);
36995     
36996     
36997     if(this.width){
36998         this.container.setWidth(this.width);
36999     }
37000
37001     if(this.height){
37002         this.container.setHeight(this.height);
37003     }
37004     /** @private */
37005         this.addEvents({
37006         // raw events
37007         /**
37008          * @event click
37009          * The raw click event for the entire grid.
37010          * @param {Roo.EventObject} e
37011          */
37012         "click" : true,
37013         /**
37014          * @event dblclick
37015          * The raw dblclick event for the entire grid.
37016          * @param {Roo.EventObject} e
37017          */
37018         "dblclick" : true,
37019         /**
37020          * @event contextmenu
37021          * The raw contextmenu event for the entire grid.
37022          * @param {Roo.EventObject} e
37023          */
37024         "contextmenu" : true,
37025         /**
37026          * @event mousedown
37027          * The raw mousedown event for the entire grid.
37028          * @param {Roo.EventObject} e
37029          */
37030         "mousedown" : true,
37031         /**
37032          * @event mouseup
37033          * The raw mouseup event for the entire grid.
37034          * @param {Roo.EventObject} e
37035          */
37036         "mouseup" : true,
37037         /**
37038          * @event mouseover
37039          * The raw mouseover event for the entire grid.
37040          * @param {Roo.EventObject} e
37041          */
37042         "mouseover" : true,
37043         /**
37044          * @event mouseout
37045          * The raw mouseout event for the entire grid.
37046          * @param {Roo.EventObject} e
37047          */
37048         "mouseout" : true,
37049         /**
37050          * @event keypress
37051          * The raw keypress event for the entire grid.
37052          * @param {Roo.EventObject} e
37053          */
37054         "keypress" : true,
37055         /**
37056          * @event keydown
37057          * The raw keydown event for the entire grid.
37058          * @param {Roo.EventObject} e
37059          */
37060         "keydown" : true,
37061
37062         // custom events
37063
37064         /**
37065          * @event cellclick
37066          * Fires when a cell is clicked
37067          * @param {Grid} this
37068          * @param {Number} rowIndex
37069          * @param {Number} columnIndex
37070          * @param {Roo.EventObject} e
37071          */
37072         "cellclick" : true,
37073         /**
37074          * @event celldblclick
37075          * Fires when a cell is double clicked
37076          * @param {Grid} this
37077          * @param {Number} rowIndex
37078          * @param {Number} columnIndex
37079          * @param {Roo.EventObject} e
37080          */
37081         "celldblclick" : true,
37082         /**
37083          * @event rowclick
37084          * Fires when a row is clicked
37085          * @param {Grid} this
37086          * @param {Number} rowIndex
37087          * @param {Roo.EventObject} e
37088          */
37089         "rowclick" : true,
37090         /**
37091          * @event rowdblclick
37092          * Fires when a row is double clicked
37093          * @param {Grid} this
37094          * @param {Number} rowIndex
37095          * @param {Roo.EventObject} e
37096          */
37097         "rowdblclick" : true,
37098         /**
37099          * @event headerclick
37100          * Fires when a header is clicked
37101          * @param {Grid} this
37102          * @param {Number} columnIndex
37103          * @param {Roo.EventObject} e
37104          */
37105         "headerclick" : true,
37106         /**
37107          * @event headerdblclick
37108          * Fires when a header cell is double clicked
37109          * @param {Grid} this
37110          * @param {Number} columnIndex
37111          * @param {Roo.EventObject} e
37112          */
37113         "headerdblclick" : true,
37114         /**
37115          * @event rowcontextmenu
37116          * Fires when a row is right clicked
37117          * @param {Grid} this
37118          * @param {Number} rowIndex
37119          * @param {Roo.EventObject} e
37120          */
37121         "rowcontextmenu" : true,
37122         /**
37123          * @event cellcontextmenu
37124          * Fires when a cell is right clicked
37125          * @param {Grid} this
37126          * @param {Number} rowIndex
37127          * @param {Number} cellIndex
37128          * @param {Roo.EventObject} e
37129          */
37130          "cellcontextmenu" : true,
37131         /**
37132          * @event headercontextmenu
37133          * Fires when a header is right clicked
37134          * @param {Grid} this
37135          * @param {Number} columnIndex
37136          * @param {Roo.EventObject} e
37137          */
37138         "headercontextmenu" : true,
37139         /**
37140          * @event bodyscroll
37141          * Fires when the body element is scrolled
37142          * @param {Number} scrollLeft
37143          * @param {Number} scrollTop
37144          */
37145         "bodyscroll" : true,
37146         /**
37147          * @event columnresize
37148          * Fires when the user resizes a column
37149          * @param {Number} columnIndex
37150          * @param {Number} newSize
37151          */
37152         "columnresize" : true,
37153         /**
37154          * @event columnmove
37155          * Fires when the user moves a column
37156          * @param {Number} oldIndex
37157          * @param {Number} newIndex
37158          */
37159         "columnmove" : true,
37160         /**
37161          * @event startdrag
37162          * Fires when row(s) start being dragged
37163          * @param {Grid} this
37164          * @param {Roo.GridDD} dd The drag drop object
37165          * @param {event} e The raw browser event
37166          */
37167         "startdrag" : true,
37168         /**
37169          * @event enddrag
37170          * Fires when a drag operation is complete
37171          * @param {Grid} this
37172          * @param {Roo.GridDD} dd The drag drop object
37173          * @param {event} e The raw browser event
37174          */
37175         "enddrag" : true,
37176         /**
37177          * @event dragdrop
37178          * Fires when dragged row(s) are dropped on a valid DD target
37179          * @param {Grid} this
37180          * @param {Roo.GridDD} dd The drag drop object
37181          * @param {String} targetId The target drag drop object
37182          * @param {event} e The raw browser event
37183          */
37184         "dragdrop" : true,
37185         /**
37186          * @event dragover
37187          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
37188          * @param {Grid} this
37189          * @param {Roo.GridDD} dd The drag drop object
37190          * @param {String} targetId The target drag drop object
37191          * @param {event} e The raw browser event
37192          */
37193         "dragover" : true,
37194         /**
37195          * @event dragenter
37196          *  Fires when the dragged row(s) first cross another DD target while being dragged
37197          * @param {Grid} this
37198          * @param {Roo.GridDD} dd The drag drop object
37199          * @param {String} targetId The target drag drop object
37200          * @param {event} e The raw browser event
37201          */
37202         "dragenter" : true,
37203         /**
37204          * @event dragout
37205          * Fires when the dragged row(s) leave another DD target while being dragged
37206          * @param {Grid} this
37207          * @param {Roo.GridDD} dd The drag drop object
37208          * @param {String} targetId The target drag drop object
37209          * @param {event} e The raw browser event
37210          */
37211         "dragout" : true,
37212         /**
37213          * @event rowclass
37214          * Fires when a row is rendered, so you can change add a style to it.
37215          * @param {GridView} gridview   The grid view
37216          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
37217          */
37218         'rowclass' : true,
37219
37220         /**
37221          * @event render
37222          * Fires when the grid is rendered
37223          * @param {Grid} grid
37224          */
37225         'render' : true,
37226             /**
37227              * @event select
37228              * Fires when a date is selected
37229              * @param {DatePicker} this
37230              * @param {Date} date The selected date
37231              */
37232         'select': true,
37233         /**
37234              * @event monthchange
37235              * Fires when the displayed month changes 
37236              * @param {DatePicker} this
37237              * @param {Date} date The selected month
37238              */
37239         'monthchange': true,
37240         /**
37241              * @event evententer
37242              * Fires when mouse over an event
37243              * @param {Calendar} this
37244              * @param {event} Event
37245              */
37246         'evententer': true,
37247         /**
37248              * @event eventleave
37249              * Fires when the mouse leaves an
37250              * @param {Calendar} this
37251              * @param {event}
37252              */
37253         'eventleave': true,
37254         /**
37255              * @event eventclick
37256              * Fires when the mouse click an
37257              * @param {Calendar} this
37258              * @param {event}
37259              */
37260         'eventclick': true,
37261         /**
37262              * @event eventrender
37263              * Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip
37264              * @param {Calendar} this
37265              * @param {data} data to be modified
37266              */
37267         'eventrender': true
37268         
37269     });
37270
37271     Roo.grid.Grid.superclass.constructor.call(this);
37272     this.on('render', function() {
37273         this.view.el.addClass('x-grid-cal'); 
37274         
37275         (function() { this.setDate(new Date()); }).defer(100,this); //default today..
37276
37277     },this);
37278     
37279     if (!Roo.grid.Calendar.style) {
37280         Roo.grid.Calendar.style = Roo.util.CSS.createStyleSheet({
37281             
37282             
37283             '.x-grid-cal .x-grid-col' :  {
37284                 height: 'auto !important',
37285                 'vertical-align': 'top'
37286             },
37287             '.x-grid-cal  .fc-event-hori' : {
37288                 height: '14px'
37289             }
37290              
37291             
37292         }, Roo.id());
37293     }
37294
37295     
37296     
37297 };
37298 Roo.extend(Roo.grid.Calendar, Roo.grid.Grid, {
37299     /**
37300      * @cfg {Store} eventStore The store that loads events.
37301      */
37302     eventStore : 25,
37303
37304      
37305     activeDate : false,
37306     startDay : 0,
37307     autoWidth : true,
37308     monitorWindowResize : false,
37309
37310     
37311     resizeColumns : function() {
37312         var col = (this.view.el.getWidth() / 7) - 3;
37313         // loop through cols, and setWidth
37314         for(var i =0 ; i < 7 ; i++){
37315             this.cm.setColumnWidth(i, col);
37316         }
37317     },
37318      setDate :function(date) {
37319         
37320         Roo.log('setDate?');
37321         
37322         this.resizeColumns();
37323         var vd = this.activeDate;
37324         this.activeDate = date;
37325 //        if(vd && this.el){
37326 //            var t = date.getTime();
37327 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
37328 //                Roo.log('using add remove');
37329 //                
37330 //                this.fireEvent('monthchange', this, date);
37331 //                
37332 //                this.cells.removeClass("fc-state-highlight");
37333 //                this.cells.each(function(c){
37334 //                   if(c.dateValue == t){
37335 //                       c.addClass("fc-state-highlight");
37336 //                       setTimeout(function(){
37337 //                            try{c.dom.firstChild.focus();}catch(e){}
37338 //                       }, 50);
37339 //                       return false;
37340 //                   }
37341 //                   return true;
37342 //                });
37343 //                return;
37344 //            }
37345 //        }
37346         
37347         var days = date.getDaysInMonth();
37348         
37349         var firstOfMonth = date.getFirstDateOfMonth();
37350         var startingPos = firstOfMonth.getDay()-this.startDay;
37351         
37352         if(startingPos < this.startDay){
37353             startingPos += 7;
37354         }
37355         
37356         var pm = date.add(Date.MONTH, -1);
37357         var prevStart = pm.getDaysInMonth()-startingPos;
37358 //        
37359         
37360         
37361         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
37362         
37363         this.textNodes = this.view.el.query('.x-grid-row .x-grid-col .x-grid-cell-text');
37364         //this.cells.addClassOnOver('fc-state-hover');
37365         
37366         var cells = this.cells.elements;
37367         var textEls = this.textNodes;
37368         
37369         //Roo.each(cells, function(cell){
37370         //    cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
37371         //});
37372         
37373         days += startingPos;
37374
37375         // convert everything to numbers so it's fast
37376         var day = 86400000;
37377         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
37378         //Roo.log(d);
37379         //Roo.log(pm);
37380         //Roo.log(prevStart);
37381         
37382         var today = new Date().clearTime().getTime();
37383         var sel = date.clearTime().getTime();
37384         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
37385         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
37386         var ddMatch = this.disabledDatesRE;
37387         var ddText = this.disabledDatesText;
37388         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
37389         var ddaysText = this.disabledDaysText;
37390         var format = this.format;
37391         
37392         var setCellClass = function(cal, cell){
37393             
37394             //Roo.log('set Cell Class');
37395             cell.title = "";
37396             var t = d.getTime();
37397             
37398             //Roo.log(d);
37399             
37400             
37401             cell.dateValue = t;
37402             if(t == today){
37403                 cell.className += " fc-today";
37404                 cell.className += " fc-state-highlight";
37405                 cell.title = cal.todayText;
37406             }
37407             if(t == sel){
37408                 // disable highlight in other month..
37409                 cell.className += " fc-state-highlight";
37410                 
37411             }
37412             // disabling
37413             if(t < min) {
37414                 //cell.className = " fc-state-disabled";
37415                 cell.title = cal.minText;
37416                 return;
37417             }
37418             if(t > max) {
37419                 //cell.className = " fc-state-disabled";
37420                 cell.title = cal.maxText;
37421                 return;
37422             }
37423             if(ddays){
37424                 if(ddays.indexOf(d.getDay()) != -1){
37425                     // cell.title = ddaysText;
37426                    // cell.className = " fc-state-disabled";
37427                 }
37428             }
37429             if(ddMatch && format){
37430                 var fvalue = d.dateFormat(format);
37431                 if(ddMatch.test(fvalue)){
37432                     cell.title = ddText.replace("%0", fvalue);
37433                    cell.className = " fc-state-disabled";
37434                 }
37435             }
37436             
37437             if (!cell.initialClassName) {
37438                 cell.initialClassName = cell.dom.className;
37439             }
37440             
37441             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
37442         };
37443
37444         var i = 0;
37445         
37446         for(; i < startingPos; i++) {
37447             cells[i].dayName =  (++prevStart);
37448             Roo.log(textEls[i]);
37449             d.setDate(d.getDate()+1);
37450             
37451             //cells[i].className = "fc-past fc-other-month";
37452             setCellClass(this, cells[i]);
37453         }
37454         
37455         var intDay = 0;
37456         
37457         for(; i < days; i++){
37458             intDay = i - startingPos + 1;
37459             cells[i].dayName =  (intDay);
37460             d.setDate(d.getDate()+1);
37461             
37462             cells[i].className = ''; // "x-date-active";
37463             setCellClass(this, cells[i]);
37464         }
37465         var extraDays = 0;
37466         
37467         for(; i < 42; i++) {
37468             //textEls[i].innerHTML = (++extraDays);
37469             
37470             d.setDate(d.getDate()+1);
37471             cells[i].dayName = (++extraDays);
37472             cells[i].className = "fc-future fc-other-month";
37473             setCellClass(this, cells[i]);
37474         }
37475         
37476         //this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
37477         
37478         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
37479         
37480         // this will cause all the cells to mis
37481         var rows= [];
37482         var i =0;
37483         for (var r = 0;r < 6;r++) {
37484             for (var c =0;c < 7;c++) {
37485                 this.ds.getAt(r).set('weekday' + c ,cells[i++].dayName );
37486             }    
37487         }
37488         
37489         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
37490         for(i=0;i<cells.length;i++) {
37491             
37492             this.cells.elements[i].dayName = cells[i].dayName ;
37493             this.cells.elements[i].className = cells[i].className;
37494             this.cells.elements[i].initialClassName = cells[i].initialClassName ;
37495             this.cells.elements[i].title = cells[i].title ;
37496             this.cells.elements[i].dateValue = cells[i].dateValue ;
37497         }
37498         
37499         
37500         
37501         
37502         //this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
37503         //this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
37504         
37505         ////if(totalRows != 6){
37506             //this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
37507            // this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
37508        // }
37509         
37510         this.fireEvent('monthchange', this, date);
37511         
37512         
37513     },
37514  /**
37515      * Returns the grid's SelectionModel.
37516      * @return {SelectionModel}
37517      */
37518     getSelectionModel : function(){
37519         if(!this.selModel){
37520             this.selModel = new Roo.grid.CellSelectionModel();
37521         }
37522         return this.selModel;
37523     },
37524
37525     load: function() {
37526         this.eventStore.load()
37527         
37528         
37529         
37530     },
37531     
37532     findCell : function(dt) {
37533         dt = dt.clearTime().getTime();
37534         var ret = false;
37535         this.cells.each(function(c){
37536             //Roo.log("check " +c.dateValue + '?=' + dt);
37537             if(c.dateValue == dt){
37538                 ret = c;
37539                 return false;
37540             }
37541             return true;
37542         });
37543         
37544         return ret;
37545     },
37546     
37547     findCells : function(rec) {
37548         var s = rec.data.start_dt.clone().clearTime().getTime();
37549        // Roo.log(s);
37550         var e= rec.data.end_dt.clone().clearTime().getTime();
37551        // Roo.log(e);
37552         var ret = [];
37553         this.cells.each(function(c){
37554              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
37555             
37556             if(c.dateValue > e){
37557                 return ;
37558             }
37559             if(c.dateValue < s){
37560                 return ;
37561             }
37562             ret.push(c);
37563         });
37564         
37565         return ret;    
37566     },
37567     
37568     findBestRow: function(cells)
37569     {
37570         var ret = 0;
37571         
37572         for (var i =0 ; i < cells.length;i++) {
37573             ret  = Math.max(cells[i].rows || 0,ret);
37574         }
37575         return ret;
37576         
37577     },
37578     
37579     
37580     addItem : function(rec)
37581     {
37582         // look for vertical location slot in
37583         var cells = this.findCells(rec);
37584         
37585         rec.row = this.findBestRow(cells);
37586         
37587         // work out the location.
37588         
37589         var crow = false;
37590         var rows = [];
37591         for(var i =0; i < cells.length; i++) {
37592             if (!crow) {
37593                 crow = {
37594                     start : cells[i],
37595                     end :  cells[i]
37596                 };
37597                 continue;
37598             }
37599             if (crow.start.getY() == cells[i].getY()) {
37600                 // on same row.
37601                 crow.end = cells[i];
37602                 continue;
37603             }
37604             // different row.
37605             rows.push(crow);
37606             crow = {
37607                 start: cells[i],
37608                 end : cells[i]
37609             };
37610             
37611         }
37612         
37613         rows.push(crow);
37614         rec.els = [];
37615         rec.rows = rows;
37616         rec.cells = cells;
37617         for (var i = 0; i < cells.length;i++) {
37618             cells[i].rows = Math.max(cells[i].rows || 0 , rec.row + 1 );
37619             
37620         }
37621         
37622         
37623     },
37624     
37625     clearEvents: function() {
37626         
37627         if (!this.eventStore.getCount()) {
37628             return;
37629         }
37630         // reset number of rows in cells.
37631         Roo.each(this.cells.elements, function(c){
37632             c.rows = 0;
37633         });
37634         
37635         this.eventStore.each(function(e) {
37636             this.clearEvent(e);
37637         },this);
37638         
37639     },
37640     
37641     clearEvent : function(ev)
37642     {
37643         if (ev.els) {
37644             Roo.each(ev.els, function(el) {
37645                 el.un('mouseenter' ,this.onEventEnter, this);
37646                 el.un('mouseleave' ,this.onEventLeave, this);
37647                 el.remove();
37648             },this);
37649             ev.els = [];
37650         }
37651     },
37652     
37653     
37654     renderEvent : function(ev,ctr) {
37655         if (!ctr) {
37656              ctr = this.view.el.select('.fc-event-container',true).first();
37657         }
37658         
37659          
37660         this.clearEvent(ev);
37661             //code
37662        
37663         
37664         
37665         ev.els = [];
37666         var cells = ev.cells;
37667         var rows = ev.rows;
37668         this.fireEvent('eventrender', this, ev);
37669         
37670         for(var i =0; i < rows.length; i++) {
37671             
37672             cls = '';
37673             if (i == 0) {
37674                 cls += ' fc-event-start';
37675             }
37676             if ((i+1) == rows.length) {
37677                 cls += ' fc-event-end';
37678             }
37679             
37680             //Roo.log(ev.data);
37681             // how many rows should it span..
37682             var cg = this.eventTmpl.append(ctr,Roo.apply({
37683                 fccls : cls
37684                 
37685             }, ev.data) , true);
37686             
37687             
37688             cg.on('mouseenter' ,this.onEventEnter, this, ev);
37689             cg.on('mouseleave' ,this.onEventLeave, this, ev);
37690             cg.on('click', this.onEventClick, this, ev);
37691             
37692             ev.els.push(cg);
37693             
37694             var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
37695             var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
37696             //Roo.log(cg);
37697              
37698             cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
37699             cg.setWidth(ebox.right - sbox.x -2);
37700         }
37701     },
37702     
37703     renderEvents: function()
37704     {   
37705         // first make sure there is enough space..
37706         
37707         if (!this.eventTmpl) {
37708             this.eventTmpl = new Roo.Template(
37709                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
37710                     '<div class="fc-event-inner">' +
37711                         '<span class="fc-event-time">{time}</span>' +
37712                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>' +
37713                     '</div>' +
37714                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
37715                 '</div>'
37716             );
37717                 
37718         }
37719                
37720         
37721         
37722         this.cells.each(function(c) {
37723             //Roo.log(c.select('.fc-day-content div',true).first());
37724             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
37725         });
37726         
37727         var ctr = this.view.el.select('.fc-event-container',true).first();
37728         
37729         var cls;
37730         this.eventStore.each(function(ev){
37731             
37732             this.renderEvent(ev);
37733              
37734              
37735         }, this);
37736         this.view.layout();
37737         
37738     },
37739     
37740     onEventEnter: function (e, el,event,d) {
37741         this.fireEvent('evententer', this, el, event);
37742     },
37743     
37744     onEventLeave: function (e, el,event,d) {
37745         this.fireEvent('eventleave', this, el, event);
37746     },
37747     
37748     onEventClick: function (e, el,event,d) {
37749         this.fireEvent('eventclick', this, el, event);
37750     },
37751     
37752     onMonthChange: function () {
37753         this.store.load();
37754     },
37755     
37756     onLoad: function () {
37757         
37758         //Roo.log('calendar onload');
37759 //         
37760         if(this.eventStore.getCount() > 0){
37761             
37762            
37763             
37764             this.eventStore.each(function(d){
37765                 
37766                 
37767                 // FIXME..
37768                 var add =   d.data;
37769                 if (typeof(add.end_dt) == 'undefined')  {
37770                     Roo.log("Missing End time in calendar data: ");
37771                     Roo.log(d);
37772                     return;
37773                 }
37774                 if (typeof(add.start_dt) == 'undefined')  {
37775                     Roo.log("Missing Start time in calendar data: ");
37776                     Roo.log(d);
37777                     return;
37778                 }
37779                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
37780                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
37781                 add.id = add.id || d.id;
37782                 add.title = add.title || '??';
37783                 
37784                 this.addItem(d);
37785                 
37786              
37787             },this);
37788         }
37789         
37790         this.renderEvents();
37791     }
37792     
37793
37794 });
37795 /*
37796  grid : {
37797                 xtype: 'Grid',
37798                 xns: Roo.grid,
37799                 listeners : {
37800                     render : function ()
37801                     {
37802                         _this.grid = this;
37803                         
37804                         if (!this.view.el.hasClass('course-timesheet')) {
37805                             this.view.el.addClass('course-timesheet');
37806                         }
37807                         if (this.tsStyle) {
37808                             this.ds.load({});
37809                             return; 
37810                         }
37811                         Roo.log('width');
37812                         Roo.log(_this.grid.view.el.getWidth());
37813                         
37814                         
37815                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
37816                             '.course-timesheet .x-grid-row' : {
37817                                 height: '80px'
37818                             },
37819                             '.x-grid-row td' : {
37820                                 'vertical-align' : 0
37821                             },
37822                             '.course-edit-link' : {
37823                                 'color' : 'blue',
37824                                 'text-overflow' : 'ellipsis',
37825                                 'overflow' : 'hidden',
37826                                 'white-space' : 'nowrap',
37827                                 'cursor' : 'pointer'
37828                             },
37829                             '.sub-link' : {
37830                                 'color' : 'green'
37831                             },
37832                             '.de-act-sup-link' : {
37833                                 'color' : 'purple',
37834                                 'text-decoration' : 'line-through'
37835                             },
37836                             '.de-act-link' : {
37837                                 'color' : 'red',
37838                                 'text-decoration' : 'line-through'
37839                             },
37840                             '.course-timesheet .course-highlight' : {
37841                                 'border-top-style': 'dashed !important',
37842                                 'border-bottom-bottom': 'dashed !important'
37843                             },
37844                             '.course-timesheet .course-item' : {
37845                                 'font-family'   : 'tahoma, arial, helvetica',
37846                                 'font-size'     : '11px',
37847                                 'overflow'      : 'hidden',
37848                                 'padding-left'  : '10px',
37849                                 'padding-right' : '10px',
37850                                 'padding-top' : '10px' 
37851                             }
37852                             
37853                         }, Roo.id());
37854                                 this.ds.load({});
37855                     }
37856                 },
37857                 autoWidth : true,
37858                 monitorWindowResize : false,
37859                 cellrenderer : function(v,x,r)
37860                 {
37861                     return v;
37862                 },
37863                 sm : {
37864                     xtype: 'CellSelectionModel',
37865                     xns: Roo.grid
37866                 },
37867                 dataSource : {
37868                     xtype: 'Store',
37869                     xns: Roo.data,
37870                     listeners : {
37871                         beforeload : function (_self, options)
37872                         {
37873                             options.params = options.params || {};
37874                             options.params._month = _this.monthField.getValue();
37875                             options.params.limit = 9999;
37876                             options.params['sort'] = 'when_dt';    
37877                             options.params['dir'] = 'ASC';    
37878                             this.proxy.loadResponse = this.loadResponse;
37879                             Roo.log("load?");
37880                             //this.addColumns();
37881                         },
37882                         load : function (_self, records, options)
37883                         {
37884                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
37885                                 // if you click on the translation.. you can edit it...
37886                                 var el = Roo.get(this);
37887                                 var id = el.dom.getAttribute('data-id');
37888                                 var d = el.dom.getAttribute('data-date');
37889                                 var t = el.dom.getAttribute('data-time');
37890                                 //var id = this.child('span').dom.textContent;
37891                                 
37892                                 //Roo.log(this);
37893                                 Pman.Dialog.CourseCalendar.show({
37894                                     id : id,
37895                                     when_d : d,
37896                                     when_t : t,
37897                                     productitem_active : id ? 1 : 0
37898                                 }, function() {
37899                                     _this.grid.ds.load({});
37900                                 });
37901                            
37902                            });
37903                            
37904                            _this.panel.fireEvent('resize', [ '', '' ]);
37905                         }
37906                     },
37907                     loadResponse : function(o, success, response){
37908                             // this is overridden on before load..
37909                             
37910                             Roo.log("our code?");       
37911                             //Roo.log(success);
37912                             //Roo.log(response)
37913                             delete this.activeRequest;
37914                             if(!success){
37915                                 this.fireEvent("loadexception", this, o, response);
37916                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
37917                                 return;
37918                             }
37919                             var result;
37920                             try {
37921                                 result = o.reader.read(response);
37922                             }catch(e){
37923                                 Roo.log("load exception?");
37924                                 this.fireEvent("loadexception", this, o, response, e);
37925                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
37926                                 return;
37927                             }
37928                             Roo.log("ready...");        
37929                             // loop through result.records;
37930                             // and set this.tdate[date] = [] << array of records..
37931                             _this.tdata  = {};
37932                             Roo.each(result.records, function(r){
37933                                 //Roo.log(r.data);
37934                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
37935                                     _this.tdata[r.data.when_dt.format('j')] = [];
37936                                 }
37937                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
37938                             });
37939                             
37940                             //Roo.log(_this.tdata);
37941                             
37942                             result.records = [];
37943                             result.totalRecords = 6;
37944                     
37945                             // let's generate some duumy records for the rows.
37946                             //var st = _this.dateField.getValue();
37947                             
37948                             // work out monday..
37949                             //st = st.add(Date.DAY, -1 * st.format('w'));
37950                             
37951                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
37952                             
37953                             var firstOfMonth = date.getFirstDayOfMonth();
37954                             var days = date.getDaysInMonth();
37955                             var d = 1;
37956                             var firstAdded = false;
37957                             for (var i = 0; i < result.totalRecords ; i++) {
37958                                 //var d= st.add(Date.DAY, i);
37959                                 var row = {};
37960                                 var added = 0;
37961                                 for(var w = 0 ; w < 7 ; w++){
37962                                     if(!firstAdded && firstOfMonth != w){
37963                                         continue;
37964                                     }
37965                                     if(d > days){
37966                                         continue;
37967                                     }
37968                                     firstAdded = true;
37969                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
37970                                     row['weekday'+w] = String.format(
37971                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
37972                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
37973                                                     d,
37974                                                     date.format('Y-m-')+dd
37975                                                 );
37976                                     added++;
37977                                     if(typeof(_this.tdata[d]) != 'undefined'){
37978                                         Roo.each(_this.tdata[d], function(r){
37979                                             var is_sub = '';
37980                                             var deactive = '';
37981                                             var id = r.id;
37982                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
37983                                             if(r.parent_id*1>0){
37984                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
37985                                                 id = r.parent_id;
37986                                             }
37987                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
37988                                                 deactive = 'de-act-link';
37989                                             }
37990                                             
37991                                             row['weekday'+w] += String.format(
37992                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
37993                                                     id, //0
37994                                                     r.product_id_name, //1
37995                                                     r.when_dt.format('h:ia'), //2
37996                                                     is_sub, //3
37997                                                     deactive, //4
37998                                                     desc // 5
37999                                             );
38000                                         });
38001                                     }
38002                                     d++;
38003                                 }
38004                                 
38005                                 // only do this if something added..
38006                                 if(added > 0){ 
38007                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
38008                                 }
38009                                 
38010                                 
38011                                 // push it twice. (second one with an hour..
38012                                 
38013                             }
38014                             //Roo.log(result);
38015                             this.fireEvent("load", this, o, o.request.arg);
38016                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
38017                         },
38018                     sortInfo : {field: 'when_dt', direction : 'ASC' },
38019                     proxy : {
38020                         xtype: 'HttpProxy',
38021                         xns: Roo.data,
38022                         method : 'GET',
38023                         url : baseURL + '/Roo/Shop_course.php'
38024                     },
38025                     reader : {
38026                         xtype: 'JsonReader',
38027                         xns: Roo.data,
38028                         id : 'id',
38029                         fields : [
38030                             {
38031                                 'name': 'id',
38032                                 'type': 'int'
38033                             },
38034                             {
38035                                 'name': 'when_dt',
38036                                 'type': 'string'
38037                             },
38038                             {
38039                                 'name': 'end_dt',
38040                                 'type': 'string'
38041                             },
38042                             {
38043                                 'name': 'parent_id',
38044                                 'type': 'int'
38045                             },
38046                             {
38047                                 'name': 'product_id',
38048                                 'type': 'int'
38049                             },
38050                             {
38051                                 'name': 'productitem_id',
38052                                 'type': 'int'
38053                             },
38054                             {
38055                                 'name': 'guid',
38056                                 'type': 'int'
38057                             }
38058                         ]
38059                     }
38060                 },
38061                 toolbar : {
38062                     xtype: 'Toolbar',
38063                     xns: Roo,
38064                     items : [
38065                         {
38066                             xtype: 'Button',
38067                             xns: Roo.Toolbar,
38068                             listeners : {
38069                                 click : function (_self, e)
38070                                 {
38071                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
38072                                     sd.setMonth(sd.getMonth()-1);
38073                                     _this.monthField.setValue(sd.format('Y-m-d'));
38074                                     _this.grid.ds.load({});
38075                                 }
38076                             },
38077                             text : "Back"
38078                         },
38079                         {
38080                             xtype: 'Separator',
38081                             xns: Roo.Toolbar
38082                         },
38083                         {
38084                             xtype: 'MonthField',
38085                             xns: Roo.form,
38086                             listeners : {
38087                                 render : function (_self)
38088                                 {
38089                                     _this.monthField = _self;
38090                                    // _this.monthField.set  today
38091                                 },
38092                                 select : function (combo, date)
38093                                 {
38094                                     _this.grid.ds.load({});
38095                                 }
38096                             },
38097                             value : (function() { return new Date(); })()
38098                         },
38099                         {
38100                             xtype: 'Separator',
38101                             xns: Roo.Toolbar
38102                         },
38103                         {
38104                             xtype: 'TextItem',
38105                             xns: Roo.Toolbar,
38106                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
38107                         },
38108                         {
38109                             xtype: 'Fill',
38110                             xns: Roo.Toolbar
38111                         },
38112                         {
38113                             xtype: 'Button',
38114                             xns: Roo.Toolbar,
38115                             listeners : {
38116                                 click : function (_self, e)
38117                                 {
38118                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
38119                                     sd.setMonth(sd.getMonth()+1);
38120                                     _this.monthField.setValue(sd.format('Y-m-d'));
38121                                     _this.grid.ds.load({});
38122                                 }
38123                             },
38124                             text : "Next"
38125                         }
38126                     ]
38127                 },
38128                  
38129             }
38130         };
38131         
38132         *//*
38133  * Based on:
38134  * Ext JS Library 1.1.1
38135  * Copyright(c) 2006-2007, Ext JS, LLC.
38136  *
38137  * Originally Released Under LGPL - original licence link has changed is not relivant.
38138  *
38139  * Fork - LGPL
38140  * <script type="text/javascript">
38141  */
38142  
38143 /**
38144  * @class Roo.LoadMask
38145  * A simple utility class for generically masking elements while loading data.  If the element being masked has
38146  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
38147  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
38148  * element's UpdateManager load indicator and will be destroyed after the initial load.
38149  * @constructor
38150  * Create a new LoadMask
38151  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
38152  * @param {Object} config The config object
38153  */
38154 Roo.LoadMask = function(el, config){
38155     this.el = Roo.get(el);
38156     Roo.apply(this, config);
38157     if(this.store){
38158         this.store.on('beforeload', this.onBeforeLoad, this);
38159         this.store.on('load', this.onLoad, this);
38160         this.store.on('loadexception', this.onLoadException, this);
38161         this.removeMask = false;
38162     }else{
38163         var um = this.el.getUpdateManager();
38164         um.showLoadIndicator = false; // disable the default indicator
38165         um.on('beforeupdate', this.onBeforeLoad, this);
38166         um.on('update', this.onLoad, this);
38167         um.on('failure', this.onLoad, this);
38168         this.removeMask = true;
38169     }
38170 };
38171
38172 Roo.LoadMask.prototype = {
38173     /**
38174      * @cfg {Boolean} removeMask
38175      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
38176      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
38177      */
38178     /**
38179      * @cfg {String} msg
38180      * The text to display in a centered loading message box (defaults to 'Loading...')
38181      */
38182     msg : 'Loading...',
38183     /**
38184      * @cfg {String} msgCls
38185      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
38186      */
38187     msgCls : 'x-mask-loading',
38188
38189     /**
38190      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
38191      * @type Boolean
38192      */
38193     disabled: false,
38194
38195     /**
38196      * Disables the mask to prevent it from being displayed
38197      */
38198     disable : function(){
38199        this.disabled = true;
38200     },
38201
38202     /**
38203      * Enables the mask so that it can be displayed
38204      */
38205     enable : function(){
38206         this.disabled = false;
38207     },
38208     
38209     onLoadException : function()
38210     {
38211         Roo.log(arguments);
38212         
38213         if (typeof(arguments[3]) != 'undefined') {
38214             Roo.MessageBox.alert("Error loading",arguments[3]);
38215         } 
38216         /*
38217         try {
38218             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
38219                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
38220             }   
38221         } catch(e) {
38222             
38223         }
38224         */
38225     
38226         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
38227     },
38228     // private
38229     onLoad : function()
38230     {
38231         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
38232     },
38233
38234     // private
38235     onBeforeLoad : function(){
38236         if(!this.disabled){
38237             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
38238         }
38239     },
38240
38241     // private
38242     destroy : function(){
38243         if(this.store){
38244             this.store.un('beforeload', this.onBeforeLoad, this);
38245             this.store.un('load', this.onLoad, this);
38246             this.store.un('loadexception', this.onLoadException, this);
38247         }else{
38248             var um = this.el.getUpdateManager();
38249             um.un('beforeupdate', this.onBeforeLoad, this);
38250             um.un('update', this.onLoad, this);
38251             um.un('failure', this.onLoad, this);
38252         }
38253     }
38254 };/*
38255  * Based on:
38256  * Ext JS Library 1.1.1
38257  * Copyright(c) 2006-2007, Ext JS, LLC.
38258  *
38259  * Originally Released Under LGPL - original licence link has changed is not relivant.
38260  *
38261  * Fork - LGPL
38262  * <script type="text/javascript">
38263  */
38264
38265
38266 /**
38267  * @class Roo.XTemplate
38268  * @extends Roo.Template
38269  * Provides a template that can have nested templates for loops or conditionals. The syntax is:
38270 <pre><code>
38271 var t = new Roo.XTemplate(
38272         '&lt;select name="{name}"&gt;',
38273                 '&lt;tpl for="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
38274         '&lt;/select&gt;'
38275 );
38276  
38277 // then append, applying the master template values
38278  </code></pre>
38279  *
38280  * Supported features:
38281  *
38282  *  Tags:
38283
38284 <pre><code>
38285       {a_variable} - output encoded.
38286       {a_variable.format:("Y-m-d")} - call a method on the variable
38287       {a_variable:raw} - unencoded output
38288       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
38289       {a_variable:this.method_on_template(...)} - call a method on the template object.
38290  
38291 </code></pre>
38292  *  The tpl tag:
38293 <pre><code>
38294         &lt;tpl for="a_variable or condition.."&gt;&lt;/tpl&gt;
38295         &lt;tpl if="a_variable or condition"&gt;&lt;/tpl&gt;
38296         &lt;tpl exec="some javascript"&gt;&lt;/tpl&gt;
38297         &lt;tpl name="named_template"&gt;&lt;/tpl&gt; (experimental)
38298   
38299         &lt;tpl for="."&gt;&lt;/tpl&gt; - just iterate the property..
38300         &lt;tpl for=".."&gt;&lt;/tpl&gt; - iterates with the parent (probably the template) 
38301 </code></pre>
38302  *      
38303  */
38304 Roo.XTemplate = function()
38305 {
38306     Roo.XTemplate.superclass.constructor.apply(this, arguments);
38307     if (this.html) {
38308         this.compile();
38309     }
38310 };
38311
38312
38313 Roo.extend(Roo.XTemplate, Roo.Template, {
38314
38315     /**
38316      * The various sub templates
38317      */
38318     tpls : false,
38319     /**
38320      *
38321      * basic tag replacing syntax
38322      * WORD:WORD()
38323      *
38324      * // you can fake an object call by doing this
38325      *  x.t:(test,tesT) 
38326      * 
38327      */
38328     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
38329
38330     /**
38331      * compile the template
38332      *
38333      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
38334      *
38335      */
38336     compile: function()
38337     {
38338         var s = this.html;
38339      
38340         s = ['<tpl>', s, '</tpl>'].join('');
38341     
38342         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
38343             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
38344             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
38345             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
38346             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
38347             m,
38348             id     = 0,
38349             tpls   = [];
38350     
38351         while(true == !!(m = s.match(re))){
38352             var forMatch   = m[0].match(nameRe),
38353                 ifMatch   = m[0].match(ifRe),
38354                 execMatch   = m[0].match(execRe),
38355                 namedMatch   = m[0].match(namedRe),
38356                 
38357                 exp  = null, 
38358                 fn   = null,
38359                 exec = null,
38360                 name = forMatch && forMatch[1] ? forMatch[1] : '';
38361                 
38362             if (ifMatch) {
38363                 // if - puts fn into test..
38364                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
38365                 if(exp){
38366                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
38367                 }
38368             }
38369             
38370             if (execMatch) {
38371                 // exec - calls a function... returns empty if true is  returned.
38372                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
38373                 if(exp){
38374                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
38375                 }
38376             }
38377             
38378             
38379             if (name) {
38380                 // for = 
38381                 switch(name){
38382                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
38383                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
38384                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
38385                 }
38386             }
38387             var uid = namedMatch ? namedMatch[1] : id;
38388             
38389             
38390             tpls.push({
38391                 id:     namedMatch ? namedMatch[1] : id,
38392                 target: name,
38393                 exec:   exec,
38394                 test:   fn,
38395                 body:   m[1] || ''
38396             });
38397             if (namedMatch) {
38398                 s = s.replace(m[0], '');
38399             } else { 
38400                 s = s.replace(m[0], '{xtpl'+ id + '}');
38401             }
38402             ++id;
38403         }
38404         this.tpls = [];
38405         for(var i = tpls.length-1; i >= 0; --i){
38406             this.compileTpl(tpls[i]);
38407             this.tpls[tpls[i].id] = tpls[i];
38408         }
38409         this.master = tpls[tpls.length-1];
38410         return this;
38411     },
38412     /**
38413      * same as applyTemplate, except it's done to one of the subTemplates
38414      * when using named templates, you can do:
38415      *
38416      * var str = pl.applySubTemplate('your-name', values);
38417      *
38418      * 
38419      * @param {Number} id of the template
38420      * @param {Object} values to apply to template
38421      * @param {Object} parent (normaly the instance of this object)
38422      */
38423     applySubTemplate : function(id, values, parent)
38424     {
38425         
38426         
38427         var t = this.tpls[id];
38428         
38429         
38430         try { 
38431             if(t.test && !t.test.call(this, values, parent)){
38432                 return '';
38433             }
38434         } catch(e) {
38435             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
38436             Roo.log(e.toString());
38437             Roo.log(t.test);
38438             return ''
38439         }
38440         try { 
38441             
38442             if(t.exec && t.exec.call(this, values, parent)){
38443                 return '';
38444             }
38445         } catch(e) {
38446             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
38447             Roo.log(e.toString());
38448             Roo.log(t.exec);
38449             return ''
38450         }
38451         try {
38452             var vs = t.target ? t.target.call(this, values, parent) : values;
38453             parent = t.target ? values : parent;
38454             if(t.target && vs instanceof Array){
38455                 var buf = [];
38456                 for(var i = 0, len = vs.length; i < len; i++){
38457                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
38458                 }
38459                 return buf.join('');
38460             }
38461             return t.compiled.call(this, vs, parent);
38462         } catch (e) {
38463             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
38464             Roo.log(e.toString());
38465             Roo.log(t.compiled);
38466             return '';
38467         }
38468     },
38469
38470     compileTpl : function(tpl)
38471     {
38472         var fm = Roo.util.Format;
38473         var useF = this.disableFormats !== true;
38474         var sep = Roo.isGecko ? "+" : ",";
38475         var undef = function(str) {
38476             Roo.log("Property not found :"  + str);
38477             return '';
38478         };
38479         
38480         var fn = function(m, name, format, args)
38481         {
38482             //Roo.log(arguments);
38483             args = args ? args.replace(/\\'/g,"'") : args;
38484             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
38485             if (typeof(format) == 'undefined') {
38486                 format= 'htmlEncode';
38487             }
38488             if (format == 'raw' ) {
38489                 format = false;
38490             }
38491             
38492             if(name.substr(0, 4) == 'xtpl'){
38493                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
38494             }
38495             
38496             // build an array of options to determine if value is undefined..
38497             
38498             // basically get 'xxxx.yyyy' then do
38499             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
38500             //    (function () { Roo.log("Property not found"); return ''; })() :
38501             //    ......
38502             
38503             var udef_ar = [];
38504             var lookfor = '';
38505             Roo.each(name.split('.'), function(st) {
38506                 lookfor += (lookfor.length ? '.': '') + st;
38507                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
38508             });
38509             
38510             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
38511             
38512             
38513             if(format && useF){
38514                 
38515                 args = args ? ',' + args : "";
38516                  
38517                 if(format.substr(0, 5) != "this."){
38518                     format = "fm." + format + '(';
38519                 }else{
38520                     format = 'this.call("'+ format.substr(5) + '", ';
38521                     args = ", values";
38522                 }
38523                 
38524                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
38525             }
38526              
38527             if (args.length) {
38528                 // called with xxyx.yuu:(test,test)
38529                 // change to ()
38530                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
38531             }
38532             // raw.. - :raw modifier..
38533             return "'"+ sep + udef_st  + name + ")"+sep+"'";
38534             
38535         };
38536         var body;
38537         // branched to use + in gecko and [].join() in others
38538         if(Roo.isGecko){
38539             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
38540                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
38541                     "';};};";
38542         }else{
38543             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
38544             body.push(tpl.body.replace(/(\r\n|\n)/g,
38545                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
38546             body.push("'].join('');};};");
38547             body = body.join('');
38548         }
38549         
38550         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
38551        
38552         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
38553         eval(body);
38554         
38555         return this;
38556     },
38557
38558     applyTemplate : function(values){
38559         return this.master.compiled.call(this, values, {});
38560         //var s = this.subs;
38561     },
38562
38563     apply : function(){
38564         return this.applyTemplate.apply(this, arguments);
38565     }
38566
38567  });
38568
38569 Roo.XTemplate.from = function(el){
38570     el = Roo.getDom(el);
38571     return new Roo.XTemplate(el.value || el.innerHTML);
38572 };