roojs-ui.js
[roojs1] / roojs-ui-debug.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11
12
13 /**
14  * @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 {Object} an existing reader (eg. copied from another store)
1092  * @cfg {Array} data The multi-dimensional array of data
1093  * @constructor
1094  * @param {Object} config
1095  */
1096 Roo.data.SimpleStore = function(config)
1097 {
1098     Roo.data.SimpleStore.superclass.constructor.call(this, {
1099         isLocal : true,
1100         reader: typeof(config.reader) != 'undefined' ? config.reader : new Roo.data.ArrayReader({
1101                 id: config.id
1102             },
1103             Roo.data.Record.create(config.fields)
1104         ),
1105         proxy : new Roo.data.MemoryProxy(config.data)
1106     });
1107     this.load();
1108 };
1109 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
1110  * Based on:
1111  * Ext JS Library 1.1.1
1112  * Copyright(c) 2006-2007, Ext JS, LLC.
1113  *
1114  * Originally Released Under LGPL - original licence link has changed is not relivant.
1115  *
1116  * Fork - LGPL
1117  * <script type="text/javascript">
1118  */
1119
1120 /**
1121 /**
1122  * @extends Roo.data.Store
1123  * @class Roo.data.JsonStore
1124  * Small helper class to make creating Stores for JSON data easier. <br/>
1125 <pre><code>
1126 var store = new Roo.data.JsonStore({
1127     url: 'get-images.php',
1128     root: 'images',
1129     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
1130 });
1131 </code></pre>
1132  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
1133  * JsonReader and HttpProxy (unless inline data is provided).</b>
1134  * @cfg {Array} fields An array of field definition objects, or field name strings.
1135  * @constructor
1136  * @param {Object} config
1137  */
1138 Roo.data.JsonStore = function(c){
1139     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
1140         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
1141         reader: new Roo.data.JsonReader(c, c.fields)
1142     }));
1143 };
1144 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
1145  * Based on:
1146  * Ext JS Library 1.1.1
1147  * Copyright(c) 2006-2007, Ext JS, LLC.
1148  *
1149  * Originally Released Under LGPL - original licence link has changed is not relivant.
1150  *
1151  * Fork - LGPL
1152  * <script type="text/javascript">
1153  */
1154
1155  
1156 Roo.data.Field = function(config){
1157     if(typeof config == "string"){
1158         config = {name: config};
1159     }
1160     Roo.apply(this, config);
1161     
1162     if(!this.type){
1163         this.type = "auto";
1164     }
1165     
1166     var st = Roo.data.SortTypes;
1167     // named sortTypes are supported, here we look them up
1168     if(typeof this.sortType == "string"){
1169         this.sortType = st[this.sortType];
1170     }
1171     
1172     // set default sortType for strings and dates
1173     if(!this.sortType){
1174         switch(this.type){
1175             case "string":
1176                 this.sortType = st.asUCString;
1177                 break;
1178             case "date":
1179                 this.sortType = st.asDate;
1180                 break;
1181             default:
1182                 this.sortType = st.none;
1183         }
1184     }
1185
1186     // define once
1187     var stripRe = /[\$,%]/g;
1188
1189     // prebuilt conversion function for this field, instead of
1190     // switching every time we're reading a value
1191     if(!this.convert){
1192         var cv, dateFormat = this.dateFormat;
1193         switch(this.type){
1194             case "":
1195             case "auto":
1196             case undefined:
1197                 cv = function(v){ return v; };
1198                 break;
1199             case "string":
1200                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
1201                 break;
1202             case "int":
1203                 cv = function(v){
1204                     return v !== undefined && v !== null && v !== '' ?
1205                            parseInt(String(v).replace(stripRe, ""), 10) : '';
1206                     };
1207                 break;
1208             case "float":
1209                 cv = function(v){
1210                     return v !== undefined && v !== null && v !== '' ?
1211                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
1212                     };
1213                 break;
1214             case "bool":
1215             case "boolean":
1216                 cv = function(v){ return v === true || v === "true" || v == 1; };
1217                 break;
1218             case "date":
1219                 cv = function(v){
1220                     if(!v){
1221                         return '';
1222                     }
1223                     if(v instanceof Date){
1224                         return v;
1225                     }
1226                     if(dateFormat){
1227                         if(dateFormat == "timestamp"){
1228                             return new Date(v*1000);
1229                         }
1230                         return Date.parseDate(v, dateFormat);
1231                     }
1232                     var parsed = Date.parse(v);
1233                     return parsed ? new Date(parsed) : null;
1234                 };
1235              break;
1236             
1237         }
1238         this.convert = cv;
1239     }
1240 };
1241
1242 Roo.data.Field.prototype = {
1243     dateFormat: null,
1244     defaultValue: "",
1245     mapping: null,
1246     sortType : null,
1247     sortDir : "ASC"
1248 };/*
1249  * Based on:
1250  * Ext JS Library 1.1.1
1251  * Copyright(c) 2006-2007, Ext JS, LLC.
1252  *
1253  * Originally Released Under LGPL - original licence link has changed is not relivant.
1254  *
1255  * Fork - LGPL
1256  * <script type="text/javascript">
1257  */
1258  
1259 // Base class for reading structured data from a data source.  This class is intended to be
1260 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
1261
1262 /**
1263  * @class Roo.data.DataReader
1264  * Base class for reading structured data from a data source.  This class is intended to be
1265  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
1266  */
1267
1268 Roo.data.DataReader = function(meta, recordType){
1269     
1270     this.meta = meta;
1271     
1272     this.recordType = recordType instanceof Array ? 
1273         Roo.data.Record.create(recordType) : recordType;
1274 };
1275
1276 Roo.data.DataReader.prototype = {
1277      /**
1278      * Create an empty record
1279      * @param {Object} data (optional) - overlay some values
1280      * @return {Roo.data.Record} record created.
1281      */
1282     newRow :  function(d) {
1283         var da =  {};
1284         this.recordType.prototype.fields.each(function(c) {
1285             switch( c.type) {
1286                 case 'int' : da[c.name] = 0; break;
1287                 case 'date' : da[c.name] = new Date(); break;
1288                 case 'float' : da[c.name] = 0.0; break;
1289                 case 'boolean' : da[c.name] = false; break;
1290                 default : da[c.name] = ""; break;
1291             }
1292             
1293         });
1294         return new this.recordType(Roo.apply(da, d));
1295     }
1296     
1297     
1298 };/*
1299  * Based on:
1300  * Ext JS Library 1.1.1
1301  * Copyright(c) 2006-2007, Ext JS, LLC.
1302  *
1303  * Originally Released Under LGPL - original licence link has changed is not relivant.
1304  *
1305  * Fork - LGPL
1306  * <script type="text/javascript">
1307  */
1308
1309 /**
1310  * @class Roo.data.DataProxy
1311  * @extends Roo.data.Observable
1312  * This class is an abstract base class for implementations which provide retrieval of
1313  * unformatted data objects.<br>
1314  * <p>
1315  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
1316  * (of the appropriate type which knows how to parse the data object) to provide a block of
1317  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
1318  * <p>
1319  * Custom implementations must implement the load method as described in
1320  * {@link Roo.data.HttpProxy#load}.
1321  */
1322 Roo.data.DataProxy = function(){
1323     this.addEvents({
1324         /**
1325          * @event beforeload
1326          * Fires before a network request is made to retrieve a data object.
1327          * @param {Object} This DataProxy object.
1328          * @param {Object} params The params parameter to the load function.
1329          */
1330         beforeload : true,
1331         /**
1332          * @event load
1333          * Fires before the load method's callback is called.
1334          * @param {Object} This DataProxy object.
1335          * @param {Object} o The data object.
1336          * @param {Object} arg The callback argument object passed to the load function.
1337          */
1338         load : true,
1339         /**
1340          * @event loadexception
1341          * Fires if an Exception occurs during data retrieval.
1342          * @param {Object} This DataProxy object.
1343          * @param {Object} o The data object.
1344          * @param {Object} arg The callback argument object passed to the load function.
1345          * @param {Object} e The Exception.
1346          */
1347         loadexception : true
1348     });
1349     Roo.data.DataProxy.superclass.constructor.call(this);
1350 };
1351
1352 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
1353
1354     /**
1355      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
1356      */
1357 /*
1358  * Based on:
1359  * Ext JS Library 1.1.1
1360  * Copyright(c) 2006-2007, Ext JS, LLC.
1361  *
1362  * Originally Released Under LGPL - original licence link has changed is not relivant.
1363  *
1364  * Fork - LGPL
1365  * <script type="text/javascript">
1366  */
1367 /**
1368  * @class Roo.data.MemoryProxy
1369  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
1370  * to the Reader when its load method is called.
1371  * @constructor
1372  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
1373  */
1374 Roo.data.MemoryProxy = function(data){
1375     if (data.data) {
1376         data = data.data;
1377     }
1378     Roo.data.MemoryProxy.superclass.constructor.call(this);
1379     this.data = data;
1380 };
1381
1382 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
1383     
1384     /**
1385      * Load data from the requested source (in this case an in-memory
1386      * data object passed to the constructor), read the data object into
1387      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
1388      * process that block using the passed callback.
1389      * @param {Object} params This parameter is not used by the MemoryProxy class.
1390      * @param {Roo.data.DataReader} reader The Reader object which converts the data
1391      * object into a block of Roo.data.Records.
1392      * @param {Function} callback The function into which to pass the block of Roo.data.records.
1393      * The function must be passed <ul>
1394      * <li>The Record block object</li>
1395      * <li>The "arg" argument from the load function</li>
1396      * <li>A boolean success indicator</li>
1397      * </ul>
1398      * @param {Object} scope The scope in which to call the callback
1399      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
1400      */
1401     load : function(params, reader, callback, scope, arg){
1402         params = params || {};
1403         var result;
1404         try {
1405             result = reader.readRecords(params.data ? params.data :this.data);
1406         }catch(e){
1407             this.fireEvent("loadexception", this, arg, null, e);
1408             callback.call(scope, null, arg, false);
1409             return;
1410         }
1411         callback.call(scope, result, arg, true);
1412     },
1413     
1414     // private
1415     update : function(params, records){
1416         
1417     }
1418 });/*
1419  * Based on:
1420  * Ext JS Library 1.1.1
1421  * Copyright(c) 2006-2007, Ext JS, LLC.
1422  *
1423  * Originally Released Under LGPL - original licence link has changed is not relivant.
1424  *
1425  * Fork - LGPL
1426  * <script type="text/javascript">
1427  */
1428 /**
1429  * @class Roo.data.HttpProxy
1430  * @extends Roo.data.DataProxy
1431  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
1432  * configured to reference a certain URL.<br><br>
1433  * <p>
1434  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
1435  * from which the running page was served.<br><br>
1436  * <p>
1437  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
1438  * <p>
1439  * Be aware that to enable the browser to parse an XML document, the server must set
1440  * the Content-Type header in the HTTP response to "text/xml".
1441  * @constructor
1442  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
1443  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
1444  * will be used to make the request.
1445  */
1446 Roo.data.HttpProxy = function(conn){
1447     Roo.data.HttpProxy.superclass.constructor.call(this);
1448     // is conn a conn config or a real conn?
1449     this.conn = conn;
1450     this.useAjax = !conn || !conn.events;
1451   
1452 };
1453
1454 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
1455     // thse are take from connection...
1456     
1457     /**
1458      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
1459      */
1460     /**
1461      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
1462      * extra parameters to each request made by this object. (defaults to undefined)
1463      */
1464     /**
1465      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
1466      *  to each request made by this object. (defaults to undefined)
1467      */
1468     /**
1469      * @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)
1470      */
1471     /**
1472      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
1473      */
1474      /**
1475      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
1476      * @type Boolean
1477      */
1478   
1479
1480     /**
1481      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
1482      * @type Boolean
1483      */
1484     /**
1485      * Return the {@link Roo.data.Connection} object being used by this Proxy.
1486      * @return {Connection} The Connection object. This object may be used to subscribe to events on
1487      * a finer-grained basis than the DataProxy events.
1488      */
1489     getConnection : function(){
1490         return this.useAjax ? Roo.Ajax : this.conn;
1491     },
1492
1493     /**
1494      * Load data from the configured {@link Roo.data.Connection}, read the data object into
1495      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
1496      * process that block using the passed callback.
1497      * @param {Object} params An object containing properties which are to be used as HTTP parameters
1498      * for the request to the remote server.
1499      * @param {Roo.data.DataReader} reader The Reader object which converts the data
1500      * object into a block of Roo.data.Records.
1501      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
1502      * The function must be passed <ul>
1503      * <li>The Record block object</li>
1504      * <li>The "arg" argument from the load function</li>
1505      * <li>A boolean success indicator</li>
1506      * </ul>
1507      * @param {Object} scope The scope in which to call the callback
1508      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
1509      */
1510     load : function(params, reader, callback, scope, arg){
1511         if(this.fireEvent("beforeload", this, params) !== false){
1512             var  o = {
1513                 params : params || {},
1514                 request: {
1515                     callback : callback,
1516                     scope : scope,
1517                     arg : arg
1518                 },
1519                 reader: reader,
1520                 callback : this.loadResponse,
1521                 scope: this
1522             };
1523             if(this.useAjax){
1524                 Roo.applyIf(o, this.conn);
1525                 if(this.activeRequest){
1526                     Roo.Ajax.abort(this.activeRequest);
1527                 }
1528                 this.activeRequest = Roo.Ajax.request(o);
1529             }else{
1530                 this.conn.request(o);
1531             }
1532         }else{
1533             callback.call(scope||this, null, arg, false);
1534         }
1535     },
1536
1537     // private
1538     loadResponse : function(o, success, response){
1539         delete this.activeRequest;
1540         if(!success){
1541             this.fireEvent("loadexception", this, o, response);
1542             o.request.callback.call(o.request.scope, null, o.request.arg, false);
1543             return;
1544         }
1545         var result;
1546         try {
1547             result = o.reader.read(response);
1548         }catch(e){
1549             this.fireEvent("loadexception", this, o, response, e);
1550             o.request.callback.call(o.request.scope, null, o.request.arg, false);
1551             return;
1552         }
1553         
1554         this.fireEvent("load", this, o, o.request.arg);
1555         o.request.callback.call(o.request.scope, result, o.request.arg, true);
1556     },
1557
1558     // private
1559     update : function(dataSet){
1560
1561     },
1562
1563     // private
1564     updateResponse : function(dataSet){
1565
1566     }
1567 });/*
1568  * Based on:
1569  * Ext JS Library 1.1.1
1570  * Copyright(c) 2006-2007, Ext JS, LLC.
1571  *
1572  * Originally Released Under LGPL - original licence link has changed is not relivant.
1573  *
1574  * Fork - LGPL
1575  * <script type="text/javascript">
1576  */
1577
1578 /**
1579  * @class Roo.data.ScriptTagProxy
1580  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
1581  * other than the originating domain of the running page.<br><br>
1582  * <p>
1583  * <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
1584  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
1585  * <p>
1586  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
1587  * source code that is used as the source inside a &lt;script> tag.<br><br>
1588  * <p>
1589  * In order for the browser to process the returned data, the server must wrap the data object
1590  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
1591  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
1592  * depending on whether the callback name was passed:
1593  * <p>
1594  * <pre><code>
1595 boolean scriptTag = false;
1596 String cb = request.getParameter("callback");
1597 if (cb != null) {
1598     scriptTag = true;
1599     response.setContentType("text/javascript");
1600 } else {
1601     response.setContentType("application/x-json");
1602 }
1603 Writer out = response.getWriter();
1604 if (scriptTag) {
1605     out.write(cb + "(");
1606 }
1607 out.print(dataBlock.toJsonString());
1608 if (scriptTag) {
1609     out.write(");");
1610 }
1611 </pre></code>
1612  *
1613  * @constructor
1614  * @param {Object} config A configuration object.
1615  */
1616 Roo.data.ScriptTagProxy = function(config){
1617     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
1618     Roo.apply(this, config);
1619     this.head = document.getElementsByTagName("head")[0];
1620 };
1621
1622 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
1623
1624 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
1625     /**
1626      * @cfg {String} url The URL from which to request the data object.
1627      */
1628     /**
1629      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
1630      */
1631     timeout : 30000,
1632     /**
1633      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
1634      * the server the name of the callback function set up by the load call to process the returned data object.
1635      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
1636      * javascript output which calls this named function passing the data object as its only parameter.
1637      */
1638     callbackParam : "callback",
1639     /**
1640      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
1641      * name to the request.
1642      */
1643     nocache : true,
1644
1645     /**
1646      * Load data from the configured URL, read the data object into
1647      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
1648      * process that block using the passed callback.
1649      * @param {Object} params An object containing properties which are to be used as HTTP parameters
1650      * for the request to the remote server.
1651      * @param {Roo.data.DataReader} reader The Reader object which converts the data
1652      * object into a block of Roo.data.Records.
1653      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
1654      * The function must be passed <ul>
1655      * <li>The Record block object</li>
1656      * <li>The "arg" argument from the load function</li>
1657      * <li>A boolean success indicator</li>
1658      * </ul>
1659      * @param {Object} scope The scope in which to call the callback
1660      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
1661      */
1662     load : function(params, reader, callback, scope, arg){
1663         if(this.fireEvent("beforeload", this, params) !== false){
1664
1665             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
1666
1667             var url = this.url;
1668             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
1669             if(this.nocache){
1670                 url += "&_dc=" + (new Date().getTime());
1671             }
1672             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
1673             var trans = {
1674                 id : transId,
1675                 cb : "stcCallback"+transId,
1676                 scriptId : "stcScript"+transId,
1677                 params : params,
1678                 arg : arg,
1679                 url : url,
1680                 callback : callback,
1681                 scope : scope,
1682                 reader : reader
1683             };
1684             var conn = this;
1685
1686             window[trans.cb] = function(o){
1687                 conn.handleResponse(o, trans);
1688             };
1689
1690             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
1691
1692             if(this.autoAbort !== false){
1693                 this.abort();
1694             }
1695
1696             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
1697
1698             var script = document.createElement("script");
1699             script.setAttribute("src", url);
1700             script.setAttribute("type", "text/javascript");
1701             script.setAttribute("id", trans.scriptId);
1702             this.head.appendChild(script);
1703
1704             this.trans = trans;
1705         }else{
1706             callback.call(scope||this, null, arg, false);
1707         }
1708     },
1709
1710     // private
1711     isLoading : function(){
1712         return this.trans ? true : false;
1713     },
1714
1715     /**
1716      * Abort the current server request.
1717      */
1718     abort : function(){
1719         if(this.isLoading()){
1720             this.destroyTrans(this.trans);
1721         }
1722     },
1723
1724     // private
1725     destroyTrans : function(trans, isLoaded){
1726         this.head.removeChild(document.getElementById(trans.scriptId));
1727         clearTimeout(trans.timeoutId);
1728         if(isLoaded){
1729             window[trans.cb] = undefined;
1730             try{
1731                 delete window[trans.cb];
1732             }catch(e){}
1733         }else{
1734             // if hasn't been loaded, wait for load to remove it to prevent script error
1735             window[trans.cb] = function(){
1736                 window[trans.cb] = undefined;
1737                 try{
1738                     delete window[trans.cb];
1739                 }catch(e){}
1740             };
1741         }
1742     },
1743
1744     // private
1745     handleResponse : function(o, trans){
1746         this.trans = false;
1747         this.destroyTrans(trans, true);
1748         var result;
1749         try {
1750             result = trans.reader.readRecords(o);
1751         }catch(e){
1752             this.fireEvent("loadexception", this, o, trans.arg, e);
1753             trans.callback.call(trans.scope||window, null, trans.arg, false);
1754             return;
1755         }
1756         this.fireEvent("load", this, o, trans.arg);
1757         trans.callback.call(trans.scope||window, result, trans.arg, true);
1758     },
1759
1760     // private
1761     handleFailure : function(trans){
1762         this.trans = false;
1763         this.destroyTrans(trans, false);
1764         this.fireEvent("loadexception", this, null, trans.arg);
1765         trans.callback.call(trans.scope||window, null, trans.arg, false);
1766     }
1767 });/*
1768  * Based on:
1769  * Ext JS Library 1.1.1
1770  * Copyright(c) 2006-2007, Ext JS, LLC.
1771  *
1772  * Originally Released Under LGPL - original licence link has changed is not relivant.
1773  *
1774  * Fork - LGPL
1775  * <script type="text/javascript">
1776  */
1777
1778 /**
1779  * @class Roo.data.JsonReader
1780  * @extends Roo.data.DataReader
1781  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
1782  * based on mappings in a provided Roo.data.Record constructor.
1783  * 
1784  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
1785  * in the reply previously. 
1786  * 
1787  * <p>
1788  * Example code:
1789  * <pre><code>
1790 var RecordDef = Roo.data.Record.create([
1791     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
1792     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
1793 ]);
1794 var myReader = new Roo.data.JsonReader({
1795     totalProperty: "results",    // The property which contains the total dataset size (optional)
1796     root: "rows",                // The property which contains an Array of row objects
1797     id: "id"                     // The property within each row object that provides an ID for the record (optional)
1798 }, RecordDef);
1799 </code></pre>
1800  * <p>
1801  * This would consume a JSON file like this:
1802  * <pre><code>
1803 { 'results': 2, 'rows': [
1804     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
1805     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
1806 }
1807 </code></pre>
1808  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
1809  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
1810  * paged from the remote server.
1811  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
1812  * @cfg {String} root name of the property which contains the Array of row objects.
1813  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
1814  * @cfg {Array} fields Array of field definition objects
1815  * @constructor
1816  * Create a new JsonReader
1817  * @param {Object} meta Metadata configuration options
1818  * @param {Object} recordType Either an Array of field definition objects,
1819  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
1820  */
1821 Roo.data.JsonReader = function(meta, recordType){
1822     
1823     meta = meta || {};
1824     // set some defaults:
1825     Roo.applyIf(meta, {
1826         totalProperty: 'total',
1827         successProperty : 'success',
1828         root : 'data',
1829         id : 'id'
1830     });
1831     
1832     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
1833 };
1834 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
1835     
1836     /**
1837      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
1838      * Used by Store query builder to append _requestMeta to params.
1839      * 
1840      */
1841     metaFromRemote : false,
1842     /**
1843      * This method is only used by a DataProxy which has retrieved data from a remote server.
1844      * @param {Object} response The XHR object which contains the JSON data in its responseText.
1845      * @return {Object} data A data block which is used by an Roo.data.Store object as
1846      * a cache of Roo.data.Records.
1847      */
1848     read : function(response){
1849         var json = response.responseText;
1850        
1851         var o = /* eval:var:o */ eval("("+json+")");
1852         if(!o) {
1853             throw {message: "JsonReader.read: Json object not found"};
1854         }
1855         
1856         if(o.metaData){
1857             
1858             delete this.ef;
1859             this.metaFromRemote = true;
1860             this.meta = o.metaData;
1861             this.recordType = Roo.data.Record.create(o.metaData.fields);
1862             this.onMetaChange(this.meta, this.recordType, o);
1863         }
1864         return this.readRecords(o);
1865     },
1866
1867     // private function a store will implement
1868     onMetaChange : function(meta, recordType, o){
1869
1870     },
1871
1872     /**
1873          * @ignore
1874          */
1875     simpleAccess: function(obj, subsc) {
1876         return obj[subsc];
1877     },
1878
1879         /**
1880          * @ignore
1881          */
1882     getJsonAccessor: function(){
1883         var re = /[\[\.]/;
1884         return function(expr) {
1885             try {
1886                 return(re.test(expr))
1887                     ? new Function("obj", "return obj." + expr)
1888                     : function(obj){
1889                         return obj[expr];
1890                     };
1891             } catch(e){}
1892             return Roo.emptyFn;
1893         };
1894     }(),
1895
1896     /**
1897      * Create a data block containing Roo.data.Records from an XML document.
1898      * @param {Object} o An object which contains an Array of row objects in the property specified
1899      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
1900      * which contains the total size of the dataset.
1901      * @return {Object} data A data block which is used by an Roo.data.Store object as
1902      * a cache of Roo.data.Records.
1903      */
1904     readRecords : function(o){
1905         /**
1906          * After any data loads, the raw JSON data is available for further custom processing.
1907          * @type Object
1908          */
1909         this.o = o;
1910         var s = this.meta, Record = this.recordType,
1911             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
1912
1913 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
1914         if (!this.ef) {
1915             if(s.totalProperty) {
1916                     this.getTotal = this.getJsonAccessor(s.totalProperty);
1917                 }
1918                 if(s.successProperty) {
1919                     this.getSuccess = this.getJsonAccessor(s.successProperty);
1920                 }
1921                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
1922                 if (s.id) {
1923                         var g = this.getJsonAccessor(s.id);
1924                         this.getId = function(rec) {
1925                                 var r = g(rec);  
1926                                 return (r === undefined || r === "") ? null : r;
1927                         };
1928                 } else {
1929                         this.getId = function(){return null;};
1930                 }
1931             this.ef = [];
1932             for(var jj = 0; jj < fl; jj++){
1933                 f = fi[jj];
1934                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
1935                 this.ef[jj] = this.getJsonAccessor(map);
1936             }
1937         }
1938
1939         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
1940         if(s.totalProperty){
1941             var vt = parseInt(this.getTotal(o), 10);
1942             if(!isNaN(vt)){
1943                 totalRecords = vt;
1944             }
1945         }
1946         if(s.successProperty){
1947             var vs = this.getSuccess(o);
1948             if(vs === false || vs === 'false'){
1949                 success = false;
1950             }
1951         }
1952         var records = [];
1953         for(var i = 0; i < c; i++){
1954                 var n = root[i];
1955             var values = {};
1956             var id = this.getId(n);
1957             for(var j = 0; j < fl; j++){
1958                 f = fi[j];
1959             var v = this.ef[j](n);
1960             if (!f.convert) {
1961                 Roo.log('missing convert for ' + f.name);
1962                 Roo.log(f);
1963                 continue;
1964             }
1965             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
1966             }
1967             var record = new Record(values, id);
1968             record.json = n;
1969             records[i] = record;
1970         }
1971         return {
1972             raw : o,
1973             success : success,
1974             records : records,
1975             totalRecords : totalRecords
1976         };
1977     }
1978 });/*
1979  * Based on:
1980  * Ext JS Library 1.1.1
1981  * Copyright(c) 2006-2007, Ext JS, LLC.
1982  *
1983  * Originally Released Under LGPL - original licence link has changed is not relivant.
1984  *
1985  * Fork - LGPL
1986  * <script type="text/javascript">
1987  */
1988
1989 /**
1990  * @class Roo.data.XmlReader
1991  * @extends Roo.data.DataReader
1992  * Data reader class to create an Array of {@link Roo.data.Record} objects from an XML document
1993  * based on mappings in a provided Roo.data.Record constructor.<br><br>
1994  * <p>
1995  * <em>Note that in order for the browser to parse a returned XML document, the Content-Type
1996  * header in the HTTP response must be set to "text/xml".</em>
1997  * <p>
1998  * Example code:
1999  * <pre><code>
2000 var RecordDef = Roo.data.Record.create([
2001    {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
2002    {name: 'occupation'}                 // This field will use "occupation" as the mapping.
2003 ]);
2004 var myReader = new Roo.data.XmlReader({
2005    totalRecords: "results", // The element which contains the total dataset size (optional)
2006    record: "row",           // The repeated element which contains row information
2007    id: "id"                 // The element within the row that provides an ID for the record (optional)
2008 }, RecordDef);
2009 </code></pre>
2010  * <p>
2011  * This would consume an XML file like this:
2012  * <pre><code>
2013 &lt;?xml?>
2014 &lt;dataset>
2015  &lt;results>2&lt;/results>
2016  &lt;row>
2017    &lt;id>1&lt;/id>
2018    &lt;name>Bill&lt;/name>
2019    &lt;occupation>Gardener&lt;/occupation>
2020  &lt;/row>
2021  &lt;row>
2022    &lt;id>2&lt;/id>
2023    &lt;name>Ben&lt;/name>
2024    &lt;occupation>Horticulturalist&lt;/occupation>
2025  &lt;/row>
2026 &lt;/dataset>
2027 </code></pre>
2028  * @cfg {String} totalRecords The DomQuery path from which to retrieve the total number of records
2029  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
2030  * paged from the remote server.
2031  * @cfg {String} record The DomQuery path to the repeated element which contains record information.
2032  * @cfg {String} success The DomQuery path to the success attribute used by forms.
2033  * @cfg {String} id The DomQuery path relative from the record element to the element that contains
2034  * a record identifier value.
2035  * @constructor
2036  * Create a new XmlReader
2037  * @param {Object} meta Metadata configuration options
2038  * @param {Mixed} recordType The definition of the data record type to produce.  This can be either a valid
2039  * Record subclass created with {@link Roo.data.Record#create}, or an array of objects with which to call
2040  * Roo.data.Record.create.  See the {@link Roo.data.Record} class for more details.
2041  */
2042 Roo.data.XmlReader = function(meta, recordType){
2043     meta = meta || {};
2044     Roo.data.XmlReader.superclass.constructor.call(this, meta, recordType||meta.fields);
2045 };
2046 Roo.extend(Roo.data.XmlReader, Roo.data.DataReader, {
2047     /**
2048      * This method is only used by a DataProxy which has retrieved data from a remote server.
2049          * @param {Object} response The XHR object which contains the parsed XML document.  The response is expected
2050          * to contain a method called 'responseXML' that returns an XML document object.
2051      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
2052      * a cache of Roo.data.Records.
2053      */
2054     read : function(response){
2055         var doc = response.responseXML;
2056         if(!doc) {
2057             throw {message: "XmlReader.read: XML Document not available"};
2058         }
2059         return this.readRecords(doc);
2060     },
2061
2062     /**
2063      * Create a data block containing Roo.data.Records from an XML document.
2064          * @param {Object} doc A parsed XML document.
2065      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
2066      * a cache of Roo.data.Records.
2067      */
2068     readRecords : function(doc){
2069         /**
2070          * After any data loads/reads, the raw XML Document is available for further custom processing.
2071          * @type XMLDocument
2072          */
2073         this.xmlData = doc;
2074         var root = doc.documentElement || doc;
2075         var q = Roo.DomQuery;
2076         var recordType = this.recordType, fields = recordType.prototype.fields;
2077         var sid = this.meta.id;
2078         var totalRecords = 0, success = true;
2079         if(this.meta.totalRecords){
2080             totalRecords = q.selectNumber(this.meta.totalRecords, root, 0);
2081         }
2082         
2083         if(this.meta.success){
2084             var sv = q.selectValue(this.meta.success, root, true);
2085             success = sv !== false && sv !== 'false';
2086         }
2087         var records = [];
2088         var ns = q.select(this.meta.record, root);
2089         for(var i = 0, len = ns.length; i < len; i++) {
2090                 var n = ns[i];
2091                 var values = {};
2092                 var id = sid ? q.selectValue(sid, n) : undefined;
2093                 for(var j = 0, jlen = fields.length; j < jlen; j++){
2094                     var f = fields.items[j];
2095                 var v = q.selectValue(f.mapping || f.name, n, f.defaultValue);
2096                     v = f.convert(v);
2097                     values[f.name] = v;
2098                 }
2099                 var record = new recordType(values, id);
2100                 record.node = n;
2101                 records[records.length] = record;
2102             }
2103
2104             return {
2105                 success : success,
2106                 records : records,
2107                 totalRecords : totalRecords || records.length
2108             };
2109     }
2110 });/*
2111  * Based on:
2112  * Ext JS Library 1.1.1
2113  * Copyright(c) 2006-2007, Ext JS, LLC.
2114  *
2115  * Originally Released Under LGPL - original licence link has changed is not relivant.
2116  *
2117  * Fork - LGPL
2118  * <script type="text/javascript">
2119  */
2120
2121 /**
2122  * @class Roo.data.ArrayReader
2123  * @extends Roo.data.DataReader
2124  * Data reader class to create an Array of Roo.data.Record objects from an Array.
2125  * Each element of that Array represents a row of data fields. The
2126  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
2127  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
2128  * <p>
2129  * Example code:.
2130  * <pre><code>
2131 var RecordDef = Roo.data.Record.create([
2132     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
2133     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
2134 ]);
2135 var myReader = new Roo.data.ArrayReader({
2136     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
2137 }, RecordDef);
2138 </code></pre>
2139  * <p>
2140  * This would consume an Array like this:
2141  * <pre><code>
2142 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
2143   </code></pre>
2144  
2145  * @constructor
2146  * Create a new JsonReader
2147  * @param {Object} meta Metadata configuration options.
2148  * @param {Object|Array} recordType Either an Array of field definition objects
2149  * 
2150  * @cfg {Array} fields Array of field definition objects
2151  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
2152  * as specified to {@link Roo.data.Record#create},
2153  * or an {@link Roo.data.Record} object
2154  *
2155  * 
2156  * created using {@link Roo.data.Record#create}.
2157  */
2158 Roo.data.ArrayReader = function(meta, recordType)
2159 {    
2160     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
2161 };
2162
2163 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
2164     /**
2165      * Create a data block containing Roo.data.Records from an XML document.
2166      * @param {Object} o An Array of row objects which represents the dataset.
2167      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
2168      * a cache of Roo.data.Records.
2169      */
2170     readRecords : function(o)
2171     {
2172         var sid = this.meta ? this.meta.id : null;
2173         var recordType = this.recordType, fields = recordType.prototype.fields;
2174         var records = [];
2175         var root = o;
2176         for(var i = 0; i < root.length; i++){
2177                 var n = root[i];
2178             var values = {};
2179             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
2180             for(var j = 0, jlen = fields.length; j < jlen; j++){
2181                 var f = fields.items[j];
2182                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
2183                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
2184                 v = f.convert(v);
2185                 values[f.name] = v;
2186             }
2187             var record = new recordType(values, id);
2188             record.json = n;
2189             records[records.length] = record;
2190         }
2191         return {
2192             records : records,
2193             totalRecords : records.length
2194         };
2195     }
2196 });/*
2197  * Based on:
2198  * Ext JS Library 1.1.1
2199  * Copyright(c) 2006-2007, Ext JS, LLC.
2200  *
2201  * Originally Released Under LGPL - original licence link has changed is not relivant.
2202  *
2203  * Fork - LGPL
2204  * <script type="text/javascript">
2205  */
2206
2207
2208 /**
2209  * @class Roo.data.Tree
2210  * @extends Roo.util.Observable
2211  * Represents a tree data structure and bubbles all the events for its nodes. The nodes
2212  * in the tree have most standard DOM functionality.
2213  * @constructor
2214  * @param {Node} root (optional) The root node
2215  */
2216 Roo.data.Tree = function(root){
2217    this.nodeHash = {};
2218    /**
2219     * The root node for this tree
2220     * @type Node
2221     */
2222    this.root = null;
2223    if(root){
2224        this.setRootNode(root);
2225    }
2226    this.addEvents({
2227        /**
2228         * @event append
2229         * Fires when a new child node is appended to a node in this tree.
2230         * @param {Tree} tree The owner tree
2231         * @param {Node} parent The parent node
2232         * @param {Node} node The newly appended node
2233         * @param {Number} index The index of the newly appended node
2234         */
2235        "append" : true,
2236        /**
2237         * @event remove
2238         * Fires when a child node is removed from a node in this tree.
2239         * @param {Tree} tree The owner tree
2240         * @param {Node} parent The parent node
2241         * @param {Node} node The child node removed
2242         */
2243        "remove" : true,
2244        /**
2245         * @event move
2246         * Fires when a node is moved to a new location in the tree
2247         * @param {Tree} tree The owner tree
2248         * @param {Node} node The node moved
2249         * @param {Node} oldParent The old parent of this node
2250         * @param {Node} newParent The new parent of this node
2251         * @param {Number} index The index it was moved to
2252         */
2253        "move" : true,
2254        /**
2255         * @event insert
2256         * Fires when a new child node is inserted in a node in this tree.
2257         * @param {Tree} tree The owner tree
2258         * @param {Node} parent The parent node
2259         * @param {Node} node The child node inserted
2260         * @param {Node} refNode The child node the node was inserted before
2261         */
2262        "insert" : true,
2263        /**
2264         * @event beforeappend
2265         * Fires before a new child is appended to a node in this tree, return false to cancel the append.
2266         * @param {Tree} tree The owner tree
2267         * @param {Node} parent The parent node
2268         * @param {Node} node The child node to be appended
2269         */
2270        "beforeappend" : true,
2271        /**
2272         * @event beforeremove
2273         * Fires before a child is removed from a node in this tree, return false to cancel the remove.
2274         * @param {Tree} tree The owner tree
2275         * @param {Node} parent The parent node
2276         * @param {Node} node The child node to be removed
2277         */
2278        "beforeremove" : true,
2279        /**
2280         * @event beforemove
2281         * Fires before a node is moved to a new location in the tree. Return false to cancel the move.
2282         * @param {Tree} tree The owner tree
2283         * @param {Node} node The node being moved
2284         * @param {Node} oldParent The parent of the node
2285         * @param {Node} newParent The new parent the node is moving to
2286         * @param {Number} index The index it is being moved to
2287         */
2288        "beforemove" : true,
2289        /**
2290         * @event beforeinsert
2291         * Fires before a new child is inserted in a node in this tree, return false to cancel the insert.
2292         * @param {Tree} tree The owner tree
2293         * @param {Node} parent The parent node
2294         * @param {Node} node The child node to be inserted
2295         * @param {Node} refNode The child node the node is being inserted before
2296         */
2297        "beforeinsert" : true
2298    });
2299
2300     Roo.data.Tree.superclass.constructor.call(this);
2301 };
2302
2303 Roo.extend(Roo.data.Tree, Roo.util.Observable, {
2304     pathSeparator: "/",
2305
2306     proxyNodeEvent : function(){
2307         return this.fireEvent.apply(this, arguments);
2308     },
2309
2310     /**
2311      * Returns the root node for this tree.
2312      * @return {Node}
2313      */
2314     getRootNode : function(){
2315         return this.root;
2316     },
2317
2318     /**
2319      * Sets the root node for this tree.
2320      * @param {Node} node
2321      * @return {Node}
2322      */
2323     setRootNode : function(node){
2324         this.root = node;
2325         node.ownerTree = this;
2326         node.isRoot = true;
2327         this.registerNode(node);
2328         return node;
2329     },
2330
2331     /**
2332      * Gets a node in this tree by its id.
2333      * @param {String} id
2334      * @return {Node}
2335      */
2336     getNodeById : function(id){
2337         return this.nodeHash[id];
2338     },
2339
2340     registerNode : function(node){
2341         this.nodeHash[node.id] = node;
2342     },
2343
2344     unregisterNode : function(node){
2345         delete this.nodeHash[node.id];
2346     },
2347
2348     toString : function(){
2349         return "[Tree"+(this.id?" "+this.id:"")+"]";
2350     }
2351 });
2352
2353 /**
2354  * @class Roo.data.Node
2355  * @extends Roo.util.Observable
2356  * @cfg {Boolean} leaf true if this node is a leaf and does not have children
2357  * @cfg {String} id The id for this node. If one is not specified, one is generated.
2358  * @constructor
2359  * @param {Object} attributes The attributes/config for the node
2360  */
2361 Roo.data.Node = function(attributes){
2362     /**
2363      * The attributes supplied for the node. You can use this property to access any custom attributes you supplied.
2364      * @type {Object}
2365      */
2366     this.attributes = attributes || {};
2367     this.leaf = this.attributes.leaf;
2368     /**
2369      * The node id. @type String
2370      */
2371     this.id = this.attributes.id;
2372     if(!this.id){
2373         this.id = Roo.id(null, "ynode-");
2374         this.attributes.id = this.id;
2375     }
2376      
2377     
2378     /**
2379      * All child nodes of this node. @type Array
2380      */
2381     this.childNodes = [];
2382     if(!this.childNodes.indexOf){ // indexOf is a must
2383         this.childNodes.indexOf = function(o){
2384             for(var i = 0, len = this.length; i < len; i++){
2385                 if(this[i] == o) {
2386                     return i;
2387                 }
2388             }
2389             return -1;
2390         };
2391     }
2392     /**
2393      * The parent node for this node. @type Node
2394      */
2395     this.parentNode = null;
2396     /**
2397      * The first direct child node of this node, or null if this node has no child nodes. @type Node
2398      */
2399     this.firstChild = null;
2400     /**
2401      * The last direct child node of this node, or null if this node has no child nodes. @type Node
2402      */
2403     this.lastChild = null;
2404     /**
2405      * The node immediately preceding this node in the tree, or null if there is no sibling node. @type Node
2406      */
2407     this.previousSibling = null;
2408     /**
2409      * The node immediately following this node in the tree, or null if there is no sibling node. @type Node
2410      */
2411     this.nextSibling = null;
2412
2413     this.addEvents({
2414        /**
2415         * @event append
2416         * Fires when a new child node is appended
2417         * @param {Tree} tree The owner tree
2418         * @param {Node} this This node
2419         * @param {Node} node The newly appended node
2420         * @param {Number} index The index of the newly appended node
2421         */
2422        "append" : true,
2423        /**
2424         * @event remove
2425         * Fires when a child node is removed
2426         * @param {Tree} tree The owner tree
2427         * @param {Node} this This node
2428         * @param {Node} node The removed node
2429         */
2430        "remove" : true,
2431        /**
2432         * @event move
2433         * Fires when this node is moved to a new location in the tree
2434         * @param {Tree} tree The owner tree
2435         * @param {Node} this This node
2436         * @param {Node} oldParent The old parent of this node
2437         * @param {Node} newParent The new parent of this node
2438         * @param {Number} index The index it was moved to
2439         */
2440        "move" : true,
2441        /**
2442         * @event insert
2443         * Fires when a new child node is inserted.
2444         * @param {Tree} tree The owner tree
2445         * @param {Node} this This node
2446         * @param {Node} node The child node inserted
2447         * @param {Node} refNode The child node the node was inserted before
2448         */
2449        "insert" : true,
2450        /**
2451         * @event beforeappend
2452         * Fires before a new child is appended, return false to cancel the append.
2453         * @param {Tree} tree The owner tree
2454         * @param {Node} this This node
2455         * @param {Node} node The child node to be appended
2456         */
2457        "beforeappend" : true,
2458        /**
2459         * @event beforeremove
2460         * Fires before a child is removed, return false to cancel the remove.
2461         * @param {Tree} tree The owner tree
2462         * @param {Node} this This node
2463         * @param {Node} node The child node to be removed
2464         */
2465        "beforeremove" : true,
2466        /**
2467         * @event beforemove
2468         * Fires before this node is moved to a new location in the tree. Return false to cancel the move.
2469         * @param {Tree} tree The owner tree
2470         * @param {Node} this This node
2471         * @param {Node} oldParent The parent of this node
2472         * @param {Node} newParent The new parent this node is moving to
2473         * @param {Number} index The index it is being moved to
2474         */
2475        "beforemove" : true,
2476        /**
2477         * @event beforeinsert
2478         * Fires before a new child is inserted, return false to cancel the insert.
2479         * @param {Tree} tree The owner tree
2480         * @param {Node} this This node
2481         * @param {Node} node The child node to be inserted
2482         * @param {Node} refNode The child node the node is being inserted before
2483         */
2484        "beforeinsert" : true
2485    });
2486     this.listeners = this.attributes.listeners;
2487     Roo.data.Node.superclass.constructor.call(this);
2488 };
2489
2490 Roo.extend(Roo.data.Node, Roo.util.Observable, {
2491     fireEvent : function(evtName){
2492         // first do standard event for this node
2493         if(Roo.data.Node.superclass.fireEvent.apply(this, arguments) === false){
2494             return false;
2495         }
2496         // then bubble it up to the tree if the event wasn't cancelled
2497         var ot = this.getOwnerTree();
2498         if(ot){
2499             if(ot.proxyNodeEvent.apply(ot, arguments) === false){
2500                 return false;
2501             }
2502         }
2503         return true;
2504     },
2505
2506     /**
2507      * Returns true if this node is a leaf
2508      * @return {Boolean}
2509      */
2510     isLeaf : function(){
2511         return this.leaf === true;
2512     },
2513
2514     // private
2515     setFirstChild : function(node){
2516         this.firstChild = node;
2517     },
2518
2519     //private
2520     setLastChild : function(node){
2521         this.lastChild = node;
2522     },
2523
2524
2525     /**
2526      * Returns true if this node is the last child of its parent
2527      * @return {Boolean}
2528      */
2529     isLast : function(){
2530        return (!this.parentNode ? true : this.parentNode.lastChild == this);
2531     },
2532
2533     /**
2534      * Returns true if this node is the first child of its parent
2535      * @return {Boolean}
2536      */
2537     isFirst : function(){
2538        return (!this.parentNode ? true : this.parentNode.firstChild == this);
2539     },
2540
2541     hasChildNodes : function(){
2542         return !this.isLeaf() && this.childNodes.length > 0;
2543     },
2544
2545     /**
2546      * Insert node(s) as the last child node of this node.
2547      * @param {Node/Array} node The node or Array of nodes to append
2548      * @return {Node} The appended node if single append, or null if an array was passed
2549      */
2550     appendChild : function(node){
2551         var multi = false;
2552         if(node instanceof Array){
2553             multi = node;
2554         }else if(arguments.length > 1){
2555             multi = arguments;
2556         }
2557         
2558         // if passed an array or multiple args do them one by one
2559         if(multi){
2560             for(var i = 0, len = multi.length; i < len; i++) {
2561                 this.appendChild(multi[i]);
2562             }
2563         }else{
2564             if(this.fireEvent("beforeappend", this.ownerTree, this, node) === false){
2565                 return false;
2566             }
2567             var index = this.childNodes.length;
2568             var oldParent = node.parentNode;
2569             // it's a move, make sure we move it cleanly
2570             if(oldParent){
2571                 if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index) === false){
2572                     return false;
2573                 }
2574                 oldParent.removeChild(node);
2575             }
2576             
2577             index = this.childNodes.length;
2578             if(index == 0){
2579                 this.setFirstChild(node);
2580             }
2581             this.childNodes.push(node);
2582             node.parentNode = this;
2583             var ps = this.childNodes[index-1];
2584             if(ps){
2585                 node.previousSibling = ps;
2586                 ps.nextSibling = node;
2587             }else{
2588                 node.previousSibling = null;
2589             }
2590             node.nextSibling = null;
2591             this.setLastChild(node);
2592             node.setOwnerTree(this.getOwnerTree());
2593             this.fireEvent("append", this.ownerTree, this, node, index);
2594             if(this.ownerTree) {
2595                 this.ownerTree.fireEvent("appendnode", this, node, index);
2596             }
2597             if(oldParent){
2598                 node.fireEvent("move", this.ownerTree, node, oldParent, this, index);
2599             }
2600             return node;
2601         }
2602     },
2603
2604     /**
2605      * Removes a child node from this node.
2606      * @param {Node} node The node to remove
2607      * @return {Node} The removed node
2608      */
2609     removeChild : function(node){
2610         var index = this.childNodes.indexOf(node);
2611         if(index == -1){
2612             return false;
2613         }
2614         if(this.fireEvent("beforeremove", this.ownerTree, this, node) === false){
2615             return false;
2616         }
2617
2618         // remove it from childNodes collection
2619         this.childNodes.splice(index, 1);
2620
2621         // update siblings
2622         if(node.previousSibling){
2623             node.previousSibling.nextSibling = node.nextSibling;
2624         }
2625         if(node.nextSibling){
2626             node.nextSibling.previousSibling = node.previousSibling;
2627         }
2628
2629         // update child refs
2630         if(this.firstChild == node){
2631             this.setFirstChild(node.nextSibling);
2632         }
2633         if(this.lastChild == node){
2634             this.setLastChild(node.previousSibling);
2635         }
2636
2637         node.setOwnerTree(null);
2638         // clear any references from the node
2639         node.parentNode = null;
2640         node.previousSibling = null;
2641         node.nextSibling = null;
2642         this.fireEvent("remove", this.ownerTree, this, node);
2643         return node;
2644     },
2645
2646     /**
2647      * Inserts the first node before the second node in this nodes childNodes collection.
2648      * @param {Node} node The node to insert
2649      * @param {Node} refNode The node to insert before (if null the node is appended)
2650      * @return {Node} The inserted node
2651      */
2652     insertBefore : function(node, refNode){
2653         if(!refNode){ // like standard Dom, refNode can be null for append
2654             return this.appendChild(node);
2655         }
2656         // nothing to do
2657         if(node == refNode){
2658             return false;
2659         }
2660
2661         if(this.fireEvent("beforeinsert", this.ownerTree, this, node, refNode) === false){
2662             return false;
2663         }
2664         var index = this.childNodes.indexOf(refNode);
2665         var oldParent = node.parentNode;
2666         var refIndex = index;
2667
2668         // when moving internally, indexes will change after remove
2669         if(oldParent == this && this.childNodes.indexOf(node) < index){
2670             refIndex--;
2671         }
2672
2673         // it's a move, make sure we move it cleanly
2674         if(oldParent){
2675             if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index, refNode) === false){
2676                 return false;
2677             }
2678             oldParent.removeChild(node);
2679         }
2680         if(refIndex == 0){
2681             this.setFirstChild(node);
2682         }
2683         this.childNodes.splice(refIndex, 0, node);
2684         node.parentNode = this;
2685         var ps = this.childNodes[refIndex-1];
2686         if(ps){
2687             node.previousSibling = ps;
2688             ps.nextSibling = node;
2689         }else{
2690             node.previousSibling = null;
2691         }
2692         node.nextSibling = refNode;
2693         refNode.previousSibling = node;
2694         node.setOwnerTree(this.getOwnerTree());
2695         this.fireEvent("insert", this.ownerTree, this, node, refNode);
2696         if(oldParent){
2697             node.fireEvent("move", this.ownerTree, node, oldParent, this, refIndex, refNode);
2698         }
2699         return node;
2700     },
2701
2702     /**
2703      * Returns the child node at the specified index.
2704      * @param {Number} index
2705      * @return {Node}
2706      */
2707     item : function(index){
2708         return this.childNodes[index];
2709     },
2710
2711     /**
2712      * Replaces one child node in this node with another.
2713      * @param {Node} newChild The replacement node
2714      * @param {Node} oldChild The node to replace
2715      * @return {Node} The replaced node
2716      */
2717     replaceChild : function(newChild, oldChild){
2718         this.insertBefore(newChild, oldChild);
2719         this.removeChild(oldChild);
2720         return oldChild;
2721     },
2722
2723     /**
2724      * Returns the index of a child node
2725      * @param {Node} node
2726      * @return {Number} The index of the node or -1 if it was not found
2727      */
2728     indexOf : function(child){
2729         return this.childNodes.indexOf(child);
2730     },
2731
2732     /**
2733      * Returns the tree this node is in.
2734      * @return {Tree}
2735      */
2736     getOwnerTree : function(){
2737         // if it doesn't have one, look for one
2738         if(!this.ownerTree){
2739             var p = this;
2740             while(p){
2741                 if(p.ownerTree){
2742                     this.ownerTree = p.ownerTree;
2743                     break;
2744                 }
2745                 p = p.parentNode;
2746             }
2747         }
2748         return this.ownerTree;
2749     },
2750
2751     /**
2752      * Returns depth of this node (the root node has a depth of 0)
2753      * @return {Number}
2754      */
2755     getDepth : function(){
2756         var depth = 0;
2757         var p = this;
2758         while(p.parentNode){
2759             ++depth;
2760             p = p.parentNode;
2761         }
2762         return depth;
2763     },
2764
2765     // private
2766     setOwnerTree : function(tree){
2767         // if it's move, we need to update everyone
2768         if(tree != this.ownerTree){
2769             if(this.ownerTree){
2770                 this.ownerTree.unregisterNode(this);
2771             }
2772             this.ownerTree = tree;
2773             var cs = this.childNodes;
2774             for(var i = 0, len = cs.length; i < len; i++) {
2775                 cs[i].setOwnerTree(tree);
2776             }
2777             if(tree){
2778                 tree.registerNode(this);
2779             }
2780         }
2781     },
2782
2783     /**
2784      * Returns the path for this node. The path can be used to expand or select this node programmatically.
2785      * @param {String} attr (optional) The attr to use for the path (defaults to the node's id)
2786      * @return {String} The path
2787      */
2788     getPath : function(attr){
2789         attr = attr || "id";
2790         var p = this.parentNode;
2791         var b = [this.attributes[attr]];
2792         while(p){
2793             b.unshift(p.attributes[attr]);
2794             p = p.parentNode;
2795         }
2796         var sep = this.getOwnerTree().pathSeparator;
2797         return sep + b.join(sep);
2798     },
2799
2800     /**
2801      * Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
2802      * function call will be the scope provided or the current node. The arguments to the function
2803      * will be the args provided or the current node. If the function returns false at any point,
2804      * the bubble is stopped.
2805      * @param {Function} fn The function to call
2806      * @param {Object} scope (optional) The scope of the function (defaults to current node)
2807      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
2808      */
2809     bubble : function(fn, scope, args){
2810         var p = this;
2811         while(p){
2812             if(fn.call(scope || p, args || p) === false){
2813                 break;
2814             }
2815             p = p.parentNode;
2816         }
2817     },
2818
2819     /**
2820      * Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
2821      * function call will be the scope provided or the current node. The arguments to the function
2822      * will be the args provided or the current node. If the function returns false at any point,
2823      * the cascade is stopped on that branch.
2824      * @param {Function} fn The function to call
2825      * @param {Object} scope (optional) The scope of the function (defaults to current node)
2826      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
2827      */
2828     cascade : function(fn, scope, args){
2829         if(fn.call(scope || this, args || this) !== false){
2830             var cs = this.childNodes;
2831             for(var i = 0, len = cs.length; i < len; i++) {
2832                 cs[i].cascade(fn, scope, args);
2833             }
2834         }
2835     },
2836
2837     /**
2838      * Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of
2839      * function call will be the scope provided or the current node. The arguments to the function
2840      * will be the args provided or the current node. If the function returns false at any point,
2841      * the iteration stops.
2842      * @param {Function} fn The function to call
2843      * @param {Object} scope (optional) The scope of the function (defaults to current node)
2844      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
2845      */
2846     eachChild : function(fn, scope, args){
2847         var cs = this.childNodes;
2848         for(var i = 0, len = cs.length; i < len; i++) {
2849                 if(fn.call(scope || this, args || cs[i]) === false){
2850                     break;
2851                 }
2852         }
2853     },
2854
2855     /**
2856      * Finds the first child that has the attribute with the specified value.
2857      * @param {String} attribute The attribute name
2858      * @param {Mixed} value The value to search for
2859      * @return {Node} The found child or null if none was found
2860      */
2861     findChild : function(attribute, value){
2862         var cs = this.childNodes;
2863         for(var i = 0, len = cs.length; i < len; i++) {
2864                 if(cs[i].attributes[attribute] == value){
2865                     return cs[i];
2866                 }
2867         }
2868         return null;
2869     },
2870
2871     /**
2872      * Finds the first child by a custom function. The child matches if the function passed
2873      * returns true.
2874      * @param {Function} fn
2875      * @param {Object} scope (optional)
2876      * @return {Node} The found child or null if none was found
2877      */
2878     findChildBy : function(fn, scope){
2879         var cs = this.childNodes;
2880         for(var i = 0, len = cs.length; i < len; i++) {
2881                 if(fn.call(scope||cs[i], cs[i]) === true){
2882                     return cs[i];
2883                 }
2884         }
2885         return null;
2886     },
2887
2888     /**
2889      * Sorts this nodes children using the supplied sort function
2890      * @param {Function} fn
2891      * @param {Object} scope (optional)
2892      */
2893     sort : function(fn, scope){
2894         var cs = this.childNodes;
2895         var len = cs.length;
2896         if(len > 0){
2897             var sortFn = scope ? function(){fn.apply(scope, arguments);} : fn;
2898             cs.sort(sortFn);
2899             for(var i = 0; i < len; i++){
2900                 var n = cs[i];
2901                 n.previousSibling = cs[i-1];
2902                 n.nextSibling = cs[i+1];
2903                 if(i == 0){
2904                     this.setFirstChild(n);
2905                 }
2906                 if(i == len-1){
2907                     this.setLastChild(n);
2908                 }
2909             }
2910         }
2911     },
2912
2913     /**
2914      * Returns true if this node is an ancestor (at any point) of the passed node.
2915      * @param {Node} node
2916      * @return {Boolean}
2917      */
2918     contains : function(node){
2919         return node.isAncestor(this);
2920     },
2921
2922     /**
2923      * Returns true if the passed node is an ancestor (at any point) of this node.
2924      * @param {Node} node
2925      * @return {Boolean}
2926      */
2927     isAncestor : function(node){
2928         var p = this.parentNode;
2929         while(p){
2930             if(p == node){
2931                 return true;
2932             }
2933             p = p.parentNode;
2934         }
2935         return false;
2936     },
2937
2938     toString : function(){
2939         return "[Node"+(this.id?" "+this.id:"")+"]";
2940     }
2941 });/*
2942  * Based on:
2943  * Ext JS Library 1.1.1
2944  * Copyright(c) 2006-2007, Ext JS, LLC.
2945  *
2946  * Originally Released Under LGPL - original licence link has changed is not relivant.
2947  *
2948  * Fork - LGPL
2949  * <script type="text/javascript">
2950  */
2951  (function(){ 
2952 /**
2953  * @class Roo.Layer
2954  * @extends Roo.Element
2955  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
2956  * automatic maintaining of shadow/shim positions.
2957  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
2958  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
2959  * you can pass a string with a CSS class name. False turns off the shadow.
2960  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
2961  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
2962  * @cfg {String} cls CSS class to add to the element
2963  * @cfg {Number} zindex Starting z-index (defaults to 11000)
2964  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
2965  * @constructor
2966  * @param {Object} config An object with config options.
2967  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
2968  */
2969
2970 Roo.Layer = function(config, existingEl){
2971     config = config || {};
2972     var dh = Roo.DomHelper;
2973     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
2974     if(existingEl){
2975         this.dom = Roo.getDom(existingEl);
2976     }
2977     if(!this.dom){
2978         var o = config.dh || {tag: "div", cls: "x-layer"};
2979         this.dom = dh.append(pel, o);
2980     }
2981     if(config.cls){
2982         this.addClass(config.cls);
2983     }
2984     this.constrain = config.constrain !== false;
2985     this.visibilityMode = Roo.Element.VISIBILITY;
2986     if(config.id){
2987         this.id = this.dom.id = config.id;
2988     }else{
2989         this.id = Roo.id(this.dom);
2990     }
2991     this.zindex = config.zindex || this.getZIndex();
2992     this.position("absolute", this.zindex);
2993     if(config.shadow){
2994         this.shadowOffset = config.shadowOffset || 4;
2995         this.shadow = new Roo.Shadow({
2996             offset : this.shadowOffset,
2997             mode : config.shadow
2998         });
2999     }else{
3000         this.shadowOffset = 0;
3001     }
3002     this.useShim = config.shim !== false && Roo.useShims;
3003     this.useDisplay = config.useDisplay;
3004     this.hide();
3005 };
3006
3007 var supr = Roo.Element.prototype;
3008
3009 // shims are shared among layer to keep from having 100 iframes
3010 var shims = [];
3011
3012 Roo.extend(Roo.Layer, Roo.Element, {
3013
3014     getZIndex : function(){
3015         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
3016     },
3017
3018     getShim : function(){
3019         if(!this.useShim){
3020             return null;
3021         }
3022         if(this.shim){
3023             return this.shim;
3024         }
3025         var shim = shims.shift();
3026         if(!shim){
3027             shim = this.createShim();
3028             shim.enableDisplayMode('block');
3029             shim.dom.style.display = 'none';
3030             shim.dom.style.visibility = 'visible';
3031         }
3032         var pn = this.dom.parentNode;
3033         if(shim.dom.parentNode != pn){
3034             pn.insertBefore(shim.dom, this.dom);
3035         }
3036         shim.setStyle('z-index', this.getZIndex()-2);
3037         this.shim = shim;
3038         return shim;
3039     },
3040
3041     hideShim : function(){
3042         if(this.shim){
3043             this.shim.setDisplayed(false);
3044             shims.push(this.shim);
3045             delete this.shim;
3046         }
3047     },
3048
3049     disableShadow : function(){
3050         if(this.shadow){
3051             this.shadowDisabled = true;
3052             this.shadow.hide();
3053             this.lastShadowOffset = this.shadowOffset;
3054             this.shadowOffset = 0;
3055         }
3056     },
3057
3058     enableShadow : function(show){
3059         if(this.shadow){
3060             this.shadowDisabled = false;
3061             this.shadowOffset = this.lastShadowOffset;
3062             delete this.lastShadowOffset;
3063             if(show){
3064                 this.sync(true);
3065             }
3066         }
3067     },
3068
3069     // private
3070     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
3071     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
3072     sync : function(doShow){
3073         var sw = this.shadow;
3074         if(!this.updating && this.isVisible() && (sw || this.useShim)){
3075             var sh = this.getShim();
3076
3077             var w = this.getWidth(),
3078                 h = this.getHeight();
3079
3080             var l = this.getLeft(true),
3081                 t = this.getTop(true);
3082
3083             if(sw && !this.shadowDisabled){
3084                 if(doShow && !sw.isVisible()){
3085                     sw.show(this);
3086                 }else{
3087                     sw.realign(l, t, w, h);
3088                 }
3089                 if(sh){
3090                     if(doShow){
3091                        sh.show();
3092                     }
3093                     // fit the shim behind the shadow, so it is shimmed too
3094                     var a = sw.adjusts, s = sh.dom.style;
3095                     s.left = (Math.min(l, l+a.l))+"px";
3096                     s.top = (Math.min(t, t+a.t))+"px";
3097                     s.width = (w+a.w)+"px";
3098                     s.height = (h+a.h)+"px";
3099                 }
3100             }else if(sh){
3101                 if(doShow){
3102                    sh.show();
3103                 }
3104                 sh.setSize(w, h);
3105                 sh.setLeftTop(l, t);
3106             }
3107             
3108         }
3109     },
3110
3111     // private
3112     destroy : function(){
3113         this.hideShim();
3114         if(this.shadow){
3115             this.shadow.hide();
3116         }
3117         this.removeAllListeners();
3118         var pn = this.dom.parentNode;
3119         if(pn){
3120             pn.removeChild(this.dom);
3121         }
3122         Roo.Element.uncache(this.id);
3123     },
3124
3125     remove : function(){
3126         this.destroy();
3127     },
3128
3129     // private
3130     beginUpdate : function(){
3131         this.updating = true;
3132     },
3133
3134     // private
3135     endUpdate : function(){
3136         this.updating = false;
3137         this.sync(true);
3138     },
3139
3140     // private
3141     hideUnders : function(negOffset){
3142         if(this.shadow){
3143             this.shadow.hide();
3144         }
3145         this.hideShim();
3146     },
3147
3148     // private
3149     constrainXY : function(){
3150         if(this.constrain){
3151             var vw = Roo.lib.Dom.getViewWidth(),
3152                 vh = Roo.lib.Dom.getViewHeight();
3153             var s = Roo.get(document).getScroll();
3154
3155             var xy = this.getXY();
3156             var x = xy[0], y = xy[1];   
3157             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
3158             // only move it if it needs it
3159             var moved = false;
3160             // first validate right/bottom
3161             if((x + w) > vw+s.left){
3162                 x = vw - w - this.shadowOffset;
3163                 moved = true;
3164             }
3165             if((y + h) > vh+s.top){
3166                 y = vh - h - this.shadowOffset;
3167                 moved = true;
3168             }
3169             // then make sure top/left isn't negative
3170             if(x < s.left){
3171                 x = s.left;
3172                 moved = true;
3173             }
3174             if(y < s.top){
3175                 y = s.top;
3176                 moved = true;
3177             }
3178             if(moved){
3179                 if(this.avoidY){
3180                     var ay = this.avoidY;
3181                     if(y <= ay && (y+h) >= ay){
3182                         y = ay-h-5;   
3183                     }
3184                 }
3185                 xy = [x, y];
3186                 this.storeXY(xy);
3187                 supr.setXY.call(this, xy);
3188                 this.sync();
3189             }
3190         }
3191     },
3192
3193     isVisible : function(){
3194         return this.visible;    
3195     },
3196
3197     // private
3198     showAction : function(){
3199         this.visible = true; // track visibility to prevent getStyle calls
3200         if(this.useDisplay === true){
3201             this.setDisplayed("");
3202         }else if(this.lastXY){
3203             supr.setXY.call(this, this.lastXY);
3204         }else if(this.lastLT){
3205             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
3206         }
3207     },
3208
3209     // private
3210     hideAction : function(){
3211         this.visible = false;
3212         if(this.useDisplay === true){
3213             this.setDisplayed(false);
3214         }else{
3215             this.setLeftTop(-10000,-10000);
3216         }
3217     },
3218
3219     // overridden Element method
3220     setVisible : function(v, a, d, c, e){
3221         if(v){
3222             this.showAction();
3223         }
3224         if(a && v){
3225             var cb = function(){
3226                 this.sync(true);
3227                 if(c){
3228                     c();
3229                 }
3230             }.createDelegate(this);
3231             supr.setVisible.call(this, true, true, d, cb, e);
3232         }else{
3233             if(!v){
3234                 this.hideUnders(true);
3235             }
3236             var cb = c;
3237             if(a){
3238                 cb = function(){
3239                     this.hideAction();
3240                     if(c){
3241                         c();
3242                     }
3243                 }.createDelegate(this);
3244             }
3245             supr.setVisible.call(this, v, a, d, cb, e);
3246             if(v){
3247                 this.sync(true);
3248             }else if(!a){
3249                 this.hideAction();
3250             }
3251         }
3252     },
3253
3254     storeXY : function(xy){
3255         delete this.lastLT;
3256         this.lastXY = xy;
3257     },
3258
3259     storeLeftTop : function(left, top){
3260         delete this.lastXY;
3261         this.lastLT = [left, top];
3262     },
3263
3264     // private
3265     beforeFx : function(){
3266         this.beforeAction();
3267         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
3268     },
3269
3270     // private
3271     afterFx : function(){
3272         Roo.Layer.superclass.afterFx.apply(this, arguments);
3273         this.sync(this.isVisible());
3274     },
3275
3276     // private
3277     beforeAction : function(){
3278         if(!this.updating && this.shadow){
3279             this.shadow.hide();
3280         }
3281     },
3282
3283     // overridden Element method
3284     setLeft : function(left){
3285         this.storeLeftTop(left, this.getTop(true));
3286         supr.setLeft.apply(this, arguments);
3287         this.sync();
3288     },
3289
3290     setTop : function(top){
3291         this.storeLeftTop(this.getLeft(true), top);
3292         supr.setTop.apply(this, arguments);
3293         this.sync();
3294     },
3295
3296     setLeftTop : function(left, top){
3297         this.storeLeftTop(left, top);
3298         supr.setLeftTop.apply(this, arguments);
3299         this.sync();
3300     },
3301
3302     setXY : function(xy, a, d, c, e){
3303         this.fixDisplay();
3304         this.beforeAction();
3305         this.storeXY(xy);
3306         var cb = this.createCB(c);
3307         supr.setXY.call(this, xy, a, d, cb, e);
3308         if(!a){
3309             cb();
3310         }
3311     },
3312
3313     // private
3314     createCB : function(c){
3315         var el = this;
3316         return function(){
3317             el.constrainXY();
3318             el.sync(true);
3319             if(c){
3320                 c();
3321             }
3322         };
3323     },
3324
3325     // overridden Element method
3326     setX : function(x, a, d, c, e){
3327         this.setXY([x, this.getY()], a, d, c, e);
3328     },
3329
3330     // overridden Element method
3331     setY : function(y, a, d, c, e){
3332         this.setXY([this.getX(), y], a, d, c, e);
3333     },
3334
3335     // overridden Element method
3336     setSize : function(w, h, a, d, c, e){
3337         this.beforeAction();
3338         var cb = this.createCB(c);
3339         supr.setSize.call(this, w, h, a, d, cb, e);
3340         if(!a){
3341             cb();
3342         }
3343     },
3344
3345     // overridden Element method
3346     setWidth : function(w, a, d, c, e){
3347         this.beforeAction();
3348         var cb = this.createCB(c);
3349         supr.setWidth.call(this, w, a, d, cb, e);
3350         if(!a){
3351             cb();
3352         }
3353     },
3354
3355     // overridden Element method
3356     setHeight : function(h, a, d, c, e){
3357         this.beforeAction();
3358         var cb = this.createCB(c);
3359         supr.setHeight.call(this, h, a, d, cb, e);
3360         if(!a){
3361             cb();
3362         }
3363     },
3364
3365     // overridden Element method
3366     setBounds : function(x, y, w, h, a, d, c, e){
3367         this.beforeAction();
3368         var cb = this.createCB(c);
3369         if(!a){
3370             this.storeXY([x, y]);
3371             supr.setXY.call(this, [x, y]);
3372             supr.setSize.call(this, w, h, a, d, cb, e);
3373             cb();
3374         }else{
3375             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
3376         }
3377         return this;
3378     },
3379     
3380     /**
3381      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
3382      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
3383      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
3384      * @param {Number} zindex The new z-index to set
3385      * @return {this} The Layer
3386      */
3387     setZIndex : function(zindex){
3388         this.zindex = zindex;
3389         this.setStyle("z-index", zindex + 2);
3390         if(this.shadow){
3391             this.shadow.setZIndex(zindex + 1);
3392         }
3393         if(this.shim){
3394             this.shim.setStyle("z-index", zindex);
3395         }
3396     }
3397 });
3398 })();/*
3399  * Based on:
3400  * Ext JS Library 1.1.1
3401  * Copyright(c) 2006-2007, Ext JS, LLC.
3402  *
3403  * Originally Released Under LGPL - original licence link has changed is not relivant.
3404  *
3405  * Fork - LGPL
3406  * <script type="text/javascript">
3407  */
3408
3409
3410 /**
3411  * @class Roo.Shadow
3412  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
3413  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
3414  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
3415  * @constructor
3416  * Create a new Shadow
3417  * @param {Object} config The config object
3418  */
3419 Roo.Shadow = function(config){
3420     Roo.apply(this, config);
3421     if(typeof this.mode != "string"){
3422         this.mode = this.defaultMode;
3423     }
3424     var o = this.offset, a = {h: 0};
3425     var rad = Math.floor(this.offset/2);
3426     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
3427         case "drop":
3428             a.w = 0;
3429             a.l = a.t = o;
3430             a.t -= 1;
3431             if(Roo.isIE){
3432                 a.l -= this.offset + rad;
3433                 a.t -= this.offset + rad;
3434                 a.w -= rad;
3435                 a.h -= rad;
3436                 a.t += 1;
3437             }
3438         break;
3439         case "sides":
3440             a.w = (o*2);
3441             a.l = -o;
3442             a.t = o-1;
3443             if(Roo.isIE){
3444                 a.l -= (this.offset - rad);
3445                 a.t -= this.offset + rad;
3446                 a.l += 1;
3447                 a.w -= (this.offset - rad)*2;
3448                 a.w -= rad + 1;
3449                 a.h -= 1;
3450             }
3451         break;
3452         case "frame":
3453             a.w = a.h = (o*2);
3454             a.l = a.t = -o;
3455             a.t += 1;
3456             a.h -= 2;
3457             if(Roo.isIE){
3458                 a.l -= (this.offset - rad);
3459                 a.t -= (this.offset - rad);
3460                 a.l += 1;
3461                 a.w -= (this.offset + rad + 1);
3462                 a.h -= (this.offset + rad);
3463                 a.h += 1;
3464             }
3465         break;
3466     };
3467
3468     this.adjusts = a;
3469 };
3470
3471 Roo.Shadow.prototype = {
3472     /**
3473      * @cfg {String} mode
3474      * The shadow display mode.  Supports the following options:<br />
3475      * sides: Shadow displays on both sides and bottom only<br />
3476      * frame: Shadow displays equally on all four sides<br />
3477      * drop: Traditional bottom-right drop shadow (default)
3478      */
3479     /**
3480      * @cfg {String} offset
3481      * The number of pixels to offset the shadow from the element (defaults to 4)
3482      */
3483     offset: 4,
3484
3485     // private
3486     defaultMode: "drop",
3487
3488     /**
3489      * Displays the shadow under the target element
3490      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
3491      */
3492     show : function(target){
3493         target = Roo.get(target);
3494         if(!this.el){
3495             this.el = Roo.Shadow.Pool.pull();
3496             if(this.el.dom.nextSibling != target.dom){
3497                 this.el.insertBefore(target);
3498             }
3499         }
3500         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
3501         if(Roo.isIE){
3502             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
3503         }
3504         this.realign(
3505             target.getLeft(true),
3506             target.getTop(true),
3507             target.getWidth(),
3508             target.getHeight()
3509         );
3510         this.el.dom.style.display = "block";
3511     },
3512
3513     /**
3514      * Returns true if the shadow is visible, else false
3515      */
3516     isVisible : function(){
3517         return this.el ? true : false;  
3518     },
3519
3520     /**
3521      * Direct alignment when values are already available. Show must be called at least once before
3522      * calling this method to ensure it is initialized.
3523      * @param {Number} left The target element left position
3524      * @param {Number} top The target element top position
3525      * @param {Number} width The target element width
3526      * @param {Number} height The target element height
3527      */
3528     realign : function(l, t, w, h){
3529         if(!this.el){
3530             return;
3531         }
3532         var a = this.adjusts, d = this.el.dom, s = d.style;
3533         var iea = 0;
3534         s.left = (l+a.l)+"px";
3535         s.top = (t+a.t)+"px";
3536         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
3537  
3538         if(s.width != sws || s.height != shs){
3539             s.width = sws;
3540             s.height = shs;
3541             if(!Roo.isIE){
3542                 var cn = d.childNodes;
3543                 var sww = Math.max(0, (sw-12))+"px";
3544                 cn[0].childNodes[1].style.width = sww;
3545                 cn[1].childNodes[1].style.width = sww;
3546                 cn[2].childNodes[1].style.width = sww;
3547                 cn[1].style.height = Math.max(0, (sh-12))+"px";
3548             }
3549         }
3550     },
3551
3552     /**
3553      * Hides this shadow
3554      */
3555     hide : function(){
3556         if(this.el){
3557             this.el.dom.style.display = "none";
3558             Roo.Shadow.Pool.push(this.el);
3559             delete this.el;
3560         }
3561     },
3562
3563     /**
3564      * Adjust the z-index of this shadow
3565      * @param {Number} zindex The new z-index
3566      */
3567     setZIndex : function(z){
3568         this.zIndex = z;
3569         if(this.el){
3570             this.el.setStyle("z-index", z);
3571         }
3572     }
3573 };
3574
3575 // Private utility class that manages the internal Shadow cache
3576 Roo.Shadow.Pool = function(){
3577     var p = [];
3578     var markup = Roo.isIE ?
3579                  '<div class="x-ie-shadow"></div>' :
3580                  '<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>';
3581     return {
3582         pull : function(){
3583             var sh = p.shift();
3584             if(!sh){
3585                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
3586                 sh.autoBoxAdjust = false;
3587             }
3588             return sh;
3589         },
3590
3591         push : function(sh){
3592             p.push(sh);
3593         }
3594     };
3595 }();/*
3596  * Based on:
3597  * Ext JS Library 1.1.1
3598  * Copyright(c) 2006-2007, Ext JS, LLC.
3599  *
3600  * Originally Released Under LGPL - original licence link has changed is not relivant.
3601  *
3602  * Fork - LGPL
3603  * <script type="text/javascript">
3604  */
3605
3606
3607 /**
3608  * @class Roo.SplitBar
3609  * @extends Roo.util.Observable
3610  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
3611  * <br><br>
3612  * Usage:
3613  * <pre><code>
3614 var split = new Roo.SplitBar("elementToDrag", "elementToSize",
3615                    Roo.SplitBar.HORIZONTAL, Roo.SplitBar.LEFT);
3616 split.setAdapter(new Roo.SplitBar.AbsoluteLayoutAdapter("container"));
3617 split.minSize = 100;
3618 split.maxSize = 600;
3619 split.animate = true;
3620 split.on('moved', splitterMoved);
3621 </code></pre>
3622  * @constructor
3623  * Create a new SplitBar
3624  * @param {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
3625  * @param {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
3626  * @param {Number} orientation (optional) Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
3627  * @param {Number} placement (optional) Either Roo.SplitBar.LEFT or Roo.SplitBar.RIGHT for horizontal or  
3628                         Roo.SplitBar.TOP or Roo.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
3629                         position of the SplitBar).
3630  */
3631 Roo.SplitBar = function(dragElement, resizingElement, orientation, placement, existingProxy){
3632     
3633     /** @private */
3634     this.el = Roo.get(dragElement, true);
3635     this.el.dom.unselectable = "on";
3636     /** @private */
3637     this.resizingEl = Roo.get(resizingElement, true);
3638
3639     /**
3640      * @private
3641      * The orientation of the split. Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
3642      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
3643      * @type Number
3644      */
3645     this.orientation = orientation || Roo.SplitBar.HORIZONTAL;
3646     
3647     /**
3648      * The minimum size of the resizing element. (Defaults to 0)
3649      * @type Number
3650      */
3651     this.minSize = 0;
3652     
3653     /**
3654      * The maximum size of the resizing element. (Defaults to 2000)
3655      * @type Number
3656      */
3657     this.maxSize = 2000;
3658     
3659     /**
3660      * Whether to animate the transition to the new size
3661      * @type Boolean
3662      */
3663     this.animate = false;
3664     
3665     /**
3666      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
3667      * @type Boolean
3668      */
3669     this.useShim = false;
3670     
3671     /** @private */
3672     this.shim = null;
3673     
3674     if(!existingProxy){
3675         /** @private */
3676         this.proxy = Roo.SplitBar.createProxy(this.orientation);
3677     }else{
3678         this.proxy = Roo.get(existingProxy).dom;
3679     }
3680     /** @private */
3681     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
3682     
3683     /** @private */
3684     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
3685     
3686     /** @private */
3687     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
3688     
3689     /** @private */
3690     this.dragSpecs = {};
3691     
3692     /**
3693      * @private The adapter to use to positon and resize elements
3694      */
3695     this.adapter = new Roo.SplitBar.BasicLayoutAdapter();
3696     this.adapter.init(this);
3697     
3698     if(this.orientation == Roo.SplitBar.HORIZONTAL){
3699         /** @private */
3700         this.placement = placement || (this.el.getX() > this.resizingEl.getX() ? Roo.SplitBar.LEFT : Roo.SplitBar.RIGHT);
3701         this.el.addClass("x-splitbar-h");
3702     }else{
3703         /** @private */
3704         this.placement = placement || (this.el.getY() > this.resizingEl.getY() ? Roo.SplitBar.TOP : Roo.SplitBar.BOTTOM);
3705         this.el.addClass("x-splitbar-v");
3706     }
3707     
3708     this.addEvents({
3709         /**
3710          * @event resize
3711          * Fires when the splitter is moved (alias for {@link #event-moved})
3712          * @param {Roo.SplitBar} this
3713          * @param {Number} newSize the new width or height
3714          */
3715         "resize" : true,
3716         /**
3717          * @event moved
3718          * Fires when the splitter is moved
3719          * @param {Roo.SplitBar} this
3720          * @param {Number} newSize the new width or height
3721          */
3722         "moved" : true,
3723         /**
3724          * @event beforeresize
3725          * Fires before the splitter is dragged
3726          * @param {Roo.SplitBar} this
3727          */
3728         "beforeresize" : true,
3729
3730         "beforeapply" : true
3731     });
3732
3733     Roo.util.Observable.call(this);
3734 };
3735
3736 Roo.extend(Roo.SplitBar, Roo.util.Observable, {
3737     onStartProxyDrag : function(x, y){
3738         this.fireEvent("beforeresize", this);
3739         if(!this.overlay){
3740             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "x-drag-overlay", html: "&#160;"}, true);
3741             o.unselectable();
3742             o.enableDisplayMode("block");
3743             // all splitbars share the same overlay
3744             Roo.SplitBar.prototype.overlay = o;
3745         }
3746         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
3747         this.overlay.show();
3748         Roo.get(this.proxy).setDisplayed("block");
3749         var size = this.adapter.getElementSize(this);
3750         this.activeMinSize = this.getMinimumSize();;
3751         this.activeMaxSize = this.getMaximumSize();;
3752         var c1 = size - this.activeMinSize;
3753         var c2 = Math.max(this.activeMaxSize - size, 0);
3754         if(this.orientation == Roo.SplitBar.HORIZONTAL){
3755             this.dd.resetConstraints();
3756             this.dd.setXConstraint(
3757                 this.placement == Roo.SplitBar.LEFT ? c1 : c2, 
3758                 this.placement == Roo.SplitBar.LEFT ? c2 : c1
3759             );
3760             this.dd.setYConstraint(0, 0);
3761         }else{
3762             this.dd.resetConstraints();
3763             this.dd.setXConstraint(0, 0);
3764             this.dd.setYConstraint(
3765                 this.placement == Roo.SplitBar.TOP ? c1 : c2, 
3766                 this.placement == Roo.SplitBar.TOP ? c2 : c1
3767             );
3768          }
3769         this.dragSpecs.startSize = size;
3770         this.dragSpecs.startPoint = [x, y];
3771         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
3772     },
3773     
3774     /** 
3775      * @private Called after the drag operation by the DDProxy
3776      */
3777     onEndProxyDrag : function(e){
3778         Roo.get(this.proxy).setDisplayed(false);
3779         var endPoint = Roo.lib.Event.getXY(e);
3780         if(this.overlay){
3781             this.overlay.hide();
3782         }
3783         var newSize;
3784         if(this.orientation == Roo.SplitBar.HORIZONTAL){
3785             newSize = this.dragSpecs.startSize + 
3786                 (this.placement == Roo.SplitBar.LEFT ?
3787                     endPoint[0] - this.dragSpecs.startPoint[0] :
3788                     this.dragSpecs.startPoint[0] - endPoint[0]
3789                 );
3790         }else{
3791             newSize = this.dragSpecs.startSize + 
3792                 (this.placement == Roo.SplitBar.TOP ?
3793                     endPoint[1] - this.dragSpecs.startPoint[1] :
3794                     this.dragSpecs.startPoint[1] - endPoint[1]
3795                 );
3796         }
3797         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
3798         if(newSize != this.dragSpecs.startSize){
3799             if(this.fireEvent('beforeapply', this, newSize) !== false){
3800                 this.adapter.setElementSize(this, newSize);
3801                 this.fireEvent("moved", this, newSize);
3802                 this.fireEvent("resize", this, newSize);
3803             }
3804         }
3805     },
3806     
3807     /**
3808      * Get the adapter this SplitBar uses
3809      * @return The adapter object
3810      */
3811     getAdapter : function(){
3812         return this.adapter;
3813     },
3814     
3815     /**
3816      * Set the adapter this SplitBar uses
3817      * @param {Object} adapter A SplitBar adapter object
3818      */
3819     setAdapter : function(adapter){
3820         this.adapter = adapter;
3821         this.adapter.init(this);
3822     },
3823     
3824     /**
3825      * Gets the minimum size for the resizing element
3826      * @return {Number} The minimum size
3827      */
3828     getMinimumSize : function(){
3829         return this.minSize;
3830     },
3831     
3832     /**
3833      * Sets the minimum size for the resizing element
3834      * @param {Number} minSize The minimum size
3835      */
3836     setMinimumSize : function(minSize){
3837         this.minSize = minSize;
3838     },
3839     
3840     /**
3841      * Gets the maximum size for the resizing element
3842      * @return {Number} The maximum size
3843      */
3844     getMaximumSize : function(){
3845         return this.maxSize;
3846     },
3847     
3848     /**
3849      * Sets the maximum size for the resizing element
3850      * @param {Number} maxSize The maximum size
3851      */
3852     setMaximumSize : function(maxSize){
3853         this.maxSize = maxSize;
3854     },
3855     
3856     /**
3857      * Sets the initialize size for the resizing element
3858      * @param {Number} size The initial size
3859      */
3860     setCurrentSize : function(size){
3861         var oldAnimate = this.animate;
3862         this.animate = false;
3863         this.adapter.setElementSize(this, size);
3864         this.animate = oldAnimate;
3865     },
3866     
3867     /**
3868      * Destroy this splitbar. 
3869      * @param {Boolean} removeEl True to remove the element
3870      */
3871     destroy : function(removeEl){
3872         if(this.shim){
3873             this.shim.remove();
3874         }
3875         this.dd.unreg();
3876         this.proxy.parentNode.removeChild(this.proxy);
3877         if(removeEl){
3878             this.el.remove();
3879         }
3880     }
3881 });
3882
3883 /**
3884  * @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.
3885  */
3886 Roo.SplitBar.createProxy = function(dir){
3887     var proxy = new Roo.Element(document.createElement("div"));
3888     proxy.unselectable();
3889     var cls = 'x-splitbar-proxy';
3890     proxy.addClass(cls + ' ' + (dir == Roo.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
3891     document.body.appendChild(proxy.dom);
3892     return proxy.dom;
3893 };
3894
3895 /** 
3896  * @class Roo.SplitBar.BasicLayoutAdapter
3897  * Default Adapter. It assumes the splitter and resizing element are not positioned
3898  * elements and only gets/sets the width of the element. Generally used for table based layouts.
3899  */
3900 Roo.SplitBar.BasicLayoutAdapter = function(){
3901 };
3902
3903 Roo.SplitBar.BasicLayoutAdapter.prototype = {
3904     // do nothing for now
3905     init : function(s){
3906     
3907     },
3908     /**
3909      * Called before drag operations to get the current size of the resizing element. 
3910      * @param {Roo.SplitBar} s The SplitBar using this adapter
3911      */
3912      getElementSize : function(s){
3913         if(s.orientation == Roo.SplitBar.HORIZONTAL){
3914             return s.resizingEl.getWidth();
3915         }else{
3916             return s.resizingEl.getHeight();
3917         }
3918     },
3919     
3920     /**
3921      * Called after drag operations to set the size of the resizing element.
3922      * @param {Roo.SplitBar} s The SplitBar using this adapter
3923      * @param {Number} newSize The new size to set
3924      * @param {Function} onComplete A function to be invoked when resizing is complete
3925      */
3926     setElementSize : function(s, newSize, onComplete){
3927         if(s.orientation == Roo.SplitBar.HORIZONTAL){
3928             if(!s.animate){
3929                 s.resizingEl.setWidth(newSize);
3930                 if(onComplete){
3931                     onComplete(s, newSize);
3932                 }
3933             }else{
3934                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
3935             }
3936         }else{
3937             
3938             if(!s.animate){
3939                 s.resizingEl.setHeight(newSize);
3940                 if(onComplete){
3941                     onComplete(s, newSize);
3942                 }
3943             }else{
3944                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
3945             }
3946         }
3947     }
3948 };
3949
3950 /** 
3951  *@class Roo.SplitBar.AbsoluteLayoutAdapter
3952  * @extends Roo.SplitBar.BasicLayoutAdapter
3953  * Adapter that  moves the splitter element to align with the resized sizing element. 
3954  * Used with an absolute positioned SplitBar.
3955  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
3956  * document.body, make sure you assign an id to the body element.
3957  */
3958 Roo.SplitBar.AbsoluteLayoutAdapter = function(container){
3959     this.basic = new Roo.SplitBar.BasicLayoutAdapter();
3960     this.container = Roo.get(container);
3961 };
3962
3963 Roo.SplitBar.AbsoluteLayoutAdapter.prototype = {
3964     init : function(s){
3965         this.basic.init(s);
3966     },
3967     
3968     getElementSize : function(s){
3969         return this.basic.getElementSize(s);
3970     },
3971     
3972     setElementSize : function(s, newSize, onComplete){
3973         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
3974     },
3975     
3976     moveSplitter : function(s){
3977         var yes = Roo.SplitBar;
3978         switch(s.placement){
3979             case yes.LEFT:
3980                 s.el.setX(s.resizingEl.getRight());
3981                 break;
3982             case yes.RIGHT:
3983                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
3984                 break;
3985             case yes.TOP:
3986                 s.el.setY(s.resizingEl.getBottom());
3987                 break;
3988             case yes.BOTTOM:
3989                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
3990                 break;
3991         }
3992     }
3993 };
3994
3995 /**
3996  * Orientation constant - Create a vertical SplitBar
3997  * @static
3998  * @type Number
3999  */
4000 Roo.SplitBar.VERTICAL = 1;
4001
4002 /**
4003  * Orientation constant - Create a horizontal SplitBar
4004  * @static
4005  * @type Number
4006  */
4007 Roo.SplitBar.HORIZONTAL = 2;
4008
4009 /**
4010  * Placement constant - The resizing element is to the left of the splitter element
4011  * @static
4012  * @type Number
4013  */
4014 Roo.SplitBar.LEFT = 1;
4015
4016 /**
4017  * Placement constant - The resizing element is to the right of the splitter element
4018  * @static
4019  * @type Number
4020  */
4021 Roo.SplitBar.RIGHT = 2;
4022
4023 /**
4024  * Placement constant - The resizing element is positioned above the splitter element
4025  * @static
4026  * @type Number
4027  */
4028 Roo.SplitBar.TOP = 3;
4029
4030 /**
4031  * Placement constant - The resizing element is positioned under splitter element
4032  * @static
4033  * @type Number
4034  */
4035 Roo.SplitBar.BOTTOM = 4;
4036 /*
4037  * Based on:
4038  * Ext JS Library 1.1.1
4039  * Copyright(c) 2006-2007, Ext JS, LLC.
4040  *
4041  * Originally Released Under LGPL - original licence link has changed is not relivant.
4042  *
4043  * Fork - LGPL
4044  * <script type="text/javascript">
4045  */
4046
4047 /**
4048  * @class Roo.View
4049  * @extends Roo.util.Observable
4050  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
4051  * This class also supports single and multi selection modes. <br>
4052  * Create a data model bound view:
4053  <pre><code>
4054  var store = new Roo.data.Store(...);
4055
4056  var view = new Roo.View({
4057     el : "my-element",
4058     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
4059  
4060     singleSelect: true,
4061     selectedClass: "ydataview-selected",
4062     store: store
4063  });
4064
4065  // listen for node click?
4066  view.on("click", function(vw, index, node, e){
4067  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
4068  });
4069
4070  // load XML data
4071  dataModel.load("foobar.xml");
4072  </code></pre>
4073  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
4074  * <br><br>
4075  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
4076  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
4077  * 
4078  * Note: old style constructor is still suported (container, template, config)
4079  * 
4080  * @constructor
4081  * Create a new View
4082  * @param {Object} config The config object
4083  * 
4084  */
4085 Roo.View = function(config, depreciated_tpl, depreciated_config){
4086     
4087     this.parent = false;
4088     
4089     if (typeof(depreciated_tpl) == 'undefined') {
4090         // new way.. - universal constructor.
4091         Roo.apply(this, config);
4092         this.el  = Roo.get(this.el);
4093     } else {
4094         // old format..
4095         this.el  = Roo.get(config);
4096         this.tpl = depreciated_tpl;
4097         Roo.apply(this, depreciated_config);
4098     }
4099     this.wrapEl  = this.el.wrap().wrap();
4100     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
4101     
4102     
4103     if(typeof(this.tpl) == "string"){
4104         this.tpl = new Roo.Template(this.tpl);
4105     } else {
4106         // support xtype ctors..
4107         this.tpl = new Roo.factory(this.tpl, Roo);
4108     }
4109     
4110     
4111     this.tpl.compile();
4112     
4113     /** @private */
4114     this.addEvents({
4115         /**
4116          * @event beforeclick
4117          * Fires before a click is processed. Returns false to cancel the default action.
4118          * @param {Roo.View} this
4119          * @param {Number} index The index of the target node
4120          * @param {HTMLElement} node The target node
4121          * @param {Roo.EventObject} e The raw event object
4122          */
4123             "beforeclick" : true,
4124         /**
4125          * @event click
4126          * Fires when a template node is clicked.
4127          * @param {Roo.View} this
4128          * @param {Number} index The index of the target node
4129          * @param {HTMLElement} node The target node
4130          * @param {Roo.EventObject} e The raw event object
4131          */
4132             "click" : true,
4133         /**
4134          * @event dblclick
4135          * Fires when a template node is double clicked.
4136          * @param {Roo.View} this
4137          * @param {Number} index The index of the target node
4138          * @param {HTMLElement} node The target node
4139          * @param {Roo.EventObject} e The raw event object
4140          */
4141             "dblclick" : true,
4142         /**
4143          * @event contextmenu
4144          * Fires when a template node is right clicked.
4145          * @param {Roo.View} this
4146          * @param {Number} index The index of the target node
4147          * @param {HTMLElement} node The target node
4148          * @param {Roo.EventObject} e The raw event object
4149          */
4150             "contextmenu" : true,
4151         /**
4152          * @event selectionchange
4153          * Fires when the selected nodes change.
4154          * @param {Roo.View} this
4155          * @param {Array} selections Array of the selected nodes
4156          */
4157             "selectionchange" : true,
4158     
4159         /**
4160          * @event beforeselect
4161          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
4162          * @param {Roo.View} this
4163          * @param {HTMLElement} node The node to be selected
4164          * @param {Array} selections Array of currently selected nodes
4165          */
4166             "beforeselect" : true,
4167         /**
4168          * @event preparedata
4169          * Fires on every row to render, to allow you to change the data.
4170          * @param {Roo.View} this
4171          * @param {Object} data to be rendered (change this)
4172          */
4173           "preparedata" : true
4174           
4175           
4176         });
4177
4178
4179
4180     this.el.on({
4181         "click": this.onClick,
4182         "dblclick": this.onDblClick,
4183         "contextmenu": this.onContextMenu,
4184         scope:this
4185     });
4186
4187     this.selections = [];
4188     this.nodes = [];
4189     this.cmp = new Roo.CompositeElementLite([]);
4190     if(this.store){
4191         this.store = Roo.factory(this.store, Roo.data);
4192         this.setStore(this.store, true);
4193     }
4194     
4195     if ( this.footer && this.footer.xtype) {
4196            
4197          var fctr = this.wrapEl.appendChild(document.createElement("div"));
4198         
4199         this.footer.dataSource = this.store;
4200         this.footer.container = fctr;
4201         this.footer = Roo.factory(this.footer, Roo);
4202         fctr.insertFirst(this.el);
4203         
4204         // this is a bit insane - as the paging toolbar seems to detach the el..
4205 //        dom.parentNode.parentNode.parentNode
4206          // they get detached?
4207     }
4208     
4209     
4210     Roo.View.superclass.constructor.call(this);
4211     
4212     
4213 };
4214
4215 Roo.extend(Roo.View, Roo.util.Observable, {
4216     
4217      /**
4218      * @cfg {Roo.data.Store} store Data store to load data from.
4219      */
4220     store : false,
4221     
4222     /**
4223      * @cfg {String|Roo.Element} el The container element.
4224      */
4225     el : '',
4226     
4227     /**
4228      * @cfg {String|Roo.Template} tpl The template used by this View 
4229      */
4230     tpl : false,
4231     /**
4232      * @cfg {String} dataName the named area of the template to use as the data area
4233      *                          Works with domtemplates roo-name="name"
4234      */
4235     dataName: false,
4236     /**
4237      * @cfg {String} selectedClass The css class to add to selected nodes
4238      */
4239     selectedClass : "x-view-selected",
4240      /**
4241      * @cfg {String} emptyText The empty text to show when nothing is loaded.
4242      */
4243     emptyText : "",
4244     
4245     /**
4246      * @cfg {String} text to display on mask (default Loading)
4247      */
4248     mask : false,
4249     /**
4250      * @cfg {Boolean} multiSelect Allow multiple selection
4251      */
4252     multiSelect : false,
4253     /**
4254      * @cfg {Boolean} singleSelect Allow single selection
4255      */
4256     singleSelect:  false,
4257     
4258     /**
4259      * @cfg {Boolean} toggleSelect - selecting 
4260      */
4261     toggleSelect : false,
4262     
4263     /**
4264      * @cfg {Boolean} tickable - selecting 
4265      */
4266     tickable : false,
4267     
4268     /**
4269      * Returns the element this view is bound to.
4270      * @return {Roo.Element}
4271      */
4272     getEl : function(){
4273         return this.wrapEl;
4274     },
4275     
4276     
4277
4278     /**
4279      * Refreshes the view. - called by datachanged on the store. - do not call directly.
4280      */
4281     refresh : function(){
4282         //Roo.log('refresh');
4283         var t = this.tpl;
4284         
4285         // if we are using something like 'domtemplate', then
4286         // the what gets used is:
4287         // t.applySubtemplate(NAME, data, wrapping data..)
4288         // the outer template then get' applied with
4289         //     the store 'extra data'
4290         // and the body get's added to the
4291         //      roo-name="data" node?
4292         //      <span class='roo-tpl-{name}'></span> ?????
4293         
4294         
4295         
4296         this.clearSelections();
4297         this.el.update("");
4298         var html = [];
4299         var records = this.store.getRange();
4300         if(records.length < 1) {
4301             
4302             // is this valid??  = should it render a template??
4303             
4304             this.el.update(this.emptyText);
4305             return;
4306         }
4307         var el = this.el;
4308         if (this.dataName) {
4309             this.el.update(t.apply(this.store.meta)); //????
4310             el = this.el.child('.roo-tpl-' + this.dataName);
4311         }
4312         
4313         for(var i = 0, len = records.length; i < len; i++){
4314             var data = this.prepareData(records[i].data, i, records[i]);
4315             this.fireEvent("preparedata", this, data, i, records[i]);
4316             
4317             var d = Roo.apply({}, data);
4318             
4319             if(this.tickable){
4320                 Roo.apply(d, {'roo-id' : Roo.id()});
4321                 
4322                 var _this = this;
4323             
4324                 Roo.each(this.parent.item, function(item){
4325                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
4326                         return;
4327                     }
4328                     Roo.apply(d, {'roo-data-checked' : 'checked'});
4329                 });
4330             }
4331             
4332             html[html.length] = Roo.util.Format.trim(
4333                 this.dataName ?
4334                     t.applySubtemplate(this.dataName, d, this.store.meta) :
4335                     t.apply(d)
4336             );
4337         }
4338         
4339         
4340         
4341         el.update(html.join(""));
4342         this.nodes = el.dom.childNodes;
4343         this.updateIndexes(0);
4344     },
4345     
4346
4347     /**
4348      * Function to override to reformat the data that is sent to
4349      * the template for each node.
4350      * DEPRICATED - use the preparedata event handler.
4351      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
4352      * a JSON object for an UpdateManager bound view).
4353      */
4354     prepareData : function(data, index, record)
4355     {
4356         this.fireEvent("preparedata", this, data, index, record);
4357         return data;
4358     },
4359
4360     onUpdate : function(ds, record){
4361         // Roo.log('on update');   
4362         this.clearSelections();
4363         var index = this.store.indexOf(record);
4364         var n = this.nodes[index];
4365         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
4366         n.parentNode.removeChild(n);
4367         this.updateIndexes(index, index);
4368     },
4369
4370     
4371     
4372 // --------- FIXME     
4373     onAdd : function(ds, records, index)
4374     {
4375         //Roo.log(['on Add', ds, records, index] );        
4376         this.clearSelections();
4377         if(this.nodes.length == 0){
4378             this.refresh();
4379             return;
4380         }
4381         var n = this.nodes[index];
4382         for(var i = 0, len = records.length; i < len; i++){
4383             var d = this.prepareData(records[i].data, i, records[i]);
4384             if(n){
4385                 this.tpl.insertBefore(n, d);
4386             }else{
4387                 
4388                 this.tpl.append(this.el, d);
4389             }
4390         }
4391         this.updateIndexes(index);
4392     },
4393
4394     onRemove : function(ds, record, index){
4395        // Roo.log('onRemove');
4396         this.clearSelections();
4397         var el = this.dataName  ?
4398             this.el.child('.roo-tpl-' + this.dataName) :
4399             this.el; 
4400         
4401         el.dom.removeChild(this.nodes[index]);
4402         this.updateIndexes(index);
4403     },
4404
4405     /**
4406      * Refresh an individual node.
4407      * @param {Number} index
4408      */
4409     refreshNode : function(index){
4410         this.onUpdate(this.store, this.store.getAt(index));
4411     },
4412
4413     updateIndexes : function(startIndex, endIndex){
4414         var ns = this.nodes;
4415         startIndex = startIndex || 0;
4416         endIndex = endIndex || ns.length - 1;
4417         for(var i = startIndex; i <= endIndex; i++){
4418             ns[i].nodeIndex = i;
4419         }
4420     },
4421
4422     /**
4423      * Changes the data store this view uses and refresh the view.
4424      * @param {Store} store
4425      */
4426     setStore : function(store, initial){
4427         if(!initial && this.store){
4428             this.store.un("datachanged", this.refresh);
4429             this.store.un("add", this.onAdd);
4430             this.store.un("remove", this.onRemove);
4431             this.store.un("update", this.onUpdate);
4432             this.store.un("clear", this.refresh);
4433             this.store.un("beforeload", this.onBeforeLoad);
4434             this.store.un("load", this.onLoad);
4435             this.store.un("loadexception", this.onLoad);
4436         }
4437         if(store){
4438           
4439             store.on("datachanged", this.refresh, this);
4440             store.on("add", this.onAdd, this);
4441             store.on("remove", this.onRemove, this);
4442             store.on("update", this.onUpdate, this);
4443             store.on("clear", this.refresh, this);
4444             store.on("beforeload", this.onBeforeLoad, this);
4445             store.on("load", this.onLoad, this);
4446             store.on("loadexception", this.onLoad, this);
4447         }
4448         
4449         if(store){
4450             this.refresh();
4451         }
4452     },
4453     /**
4454      * onbeforeLoad - masks the loading area.
4455      *
4456      */
4457     onBeforeLoad : function(store,opts)
4458     {
4459          //Roo.log('onBeforeLoad');   
4460         if (!opts.add) {
4461             this.el.update("");
4462         }
4463         this.el.mask(this.mask ? this.mask : "Loading" ); 
4464     },
4465     onLoad : function ()
4466     {
4467         this.el.unmask();
4468     },
4469     
4470
4471     /**
4472      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
4473      * @param {HTMLElement} node
4474      * @return {HTMLElement} The template node
4475      */
4476     findItemFromChild : function(node){
4477         var el = this.dataName  ?
4478             this.el.child('.roo-tpl-' + this.dataName,true) :
4479             this.el.dom; 
4480         
4481         if(!node || node.parentNode == el){
4482                     return node;
4483             }
4484             var p = node.parentNode;
4485             while(p && p != el){
4486             if(p.parentNode == el){
4487                 return p;
4488             }
4489             p = p.parentNode;
4490         }
4491             return null;
4492     },
4493
4494     /** @ignore */
4495     onClick : function(e){
4496         var item = this.findItemFromChild(e.getTarget());
4497         if(item){
4498             var index = this.indexOf(item);
4499             if(this.onItemClick(item, index, e) !== false){
4500                 this.fireEvent("click", this, index, item, e);
4501             }
4502         }else{
4503             this.clearSelections();
4504         }
4505     },
4506
4507     /** @ignore */
4508     onContextMenu : function(e){
4509         var item = this.findItemFromChild(e.getTarget());
4510         if(item){
4511             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
4512         }
4513     },
4514
4515     /** @ignore */
4516     onDblClick : function(e){
4517         var item = this.findItemFromChild(e.getTarget());
4518         if(item){
4519             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
4520         }
4521     },
4522
4523     onItemClick : function(item, index, e)
4524     {
4525         if(this.fireEvent("beforeclick", this, index, item, e) === false){
4526             return false;
4527         }
4528         if (this.toggleSelect) {
4529             var m = this.isSelected(item) ? 'unselect' : 'select';
4530             //Roo.log(m);
4531             var _t = this;
4532             _t[m](item, true, false);
4533             return true;
4534         }
4535         if(this.multiSelect || this.singleSelect){
4536             if(this.multiSelect && e.shiftKey && this.lastSelection){
4537                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
4538             }else{
4539                 this.select(item, this.multiSelect && e.ctrlKey);
4540                 this.lastSelection = item;
4541             }
4542             
4543             if(!this.tickable){
4544                 e.preventDefault();
4545             }
4546             
4547         }
4548         return true;
4549     },
4550
4551     /**
4552      * Get the number of selected nodes.
4553      * @return {Number}
4554      */
4555     getSelectionCount : function(){
4556         return this.selections.length;
4557     },
4558
4559     /**
4560      * Get the currently selected nodes.
4561      * @return {Array} An array of HTMLElements
4562      */
4563     getSelectedNodes : function(){
4564         return this.selections;
4565     },
4566
4567     /**
4568      * Get the indexes of the selected nodes.
4569      * @return {Array}
4570      */
4571     getSelectedIndexes : function(){
4572         var indexes = [], s = this.selections;
4573         for(var i = 0, len = s.length; i < len; i++){
4574             indexes.push(s[i].nodeIndex);
4575         }
4576         return indexes;
4577     },
4578
4579     /**
4580      * Clear all selections
4581      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
4582      */
4583     clearSelections : function(suppressEvent){
4584         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
4585             this.cmp.elements = this.selections;
4586             this.cmp.removeClass(this.selectedClass);
4587             this.selections = [];
4588             if(!suppressEvent){
4589                 this.fireEvent("selectionchange", this, this.selections);
4590             }
4591         }
4592     },
4593
4594     /**
4595      * Returns true if the passed node is selected
4596      * @param {HTMLElement/Number} node The node or node index
4597      * @return {Boolean}
4598      */
4599     isSelected : function(node){
4600         var s = this.selections;
4601         if(s.length < 1){
4602             return false;
4603         }
4604         node = this.getNode(node);
4605         return s.indexOf(node) !== -1;
4606     },
4607
4608     /**
4609      * Selects nodes.
4610      * @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
4611      * @param {Boolean} keepExisting (optional) true to keep existing selections
4612      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
4613      */
4614     select : function(nodeInfo, keepExisting, suppressEvent){
4615         if(nodeInfo instanceof Array){
4616             if(!keepExisting){
4617                 this.clearSelections(true);
4618             }
4619             for(var i = 0, len = nodeInfo.length; i < len; i++){
4620                 this.select(nodeInfo[i], true, true);
4621             }
4622             return;
4623         } 
4624         var node = this.getNode(nodeInfo);
4625         if(!node || this.isSelected(node)){
4626             return; // already selected.
4627         }
4628         if(!keepExisting){
4629             this.clearSelections(true);
4630         }
4631         
4632         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
4633             Roo.fly(node).addClass(this.selectedClass);
4634             this.selections.push(node);
4635             if(!suppressEvent){
4636                 this.fireEvent("selectionchange", this, this.selections);
4637             }
4638         }
4639         
4640         
4641     },
4642       /**
4643      * Unselects nodes.
4644      * @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
4645      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
4646      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
4647      */
4648     unselect : function(nodeInfo, keepExisting, suppressEvent)
4649     {
4650         if(nodeInfo instanceof Array){
4651             Roo.each(this.selections, function(s) {
4652                 this.unselect(s, nodeInfo);
4653             }, this);
4654             return;
4655         }
4656         var node = this.getNode(nodeInfo);
4657         if(!node || !this.isSelected(node)){
4658             //Roo.log("not selected");
4659             return; // not selected.
4660         }
4661         // fireevent???
4662         var ns = [];
4663         Roo.each(this.selections, function(s) {
4664             if (s == node ) {
4665                 Roo.fly(node).removeClass(this.selectedClass);
4666
4667                 return;
4668             }
4669             ns.push(s);
4670         },this);
4671         
4672         this.selections= ns;
4673         this.fireEvent("selectionchange", this, this.selections);
4674     },
4675
4676     /**
4677      * Gets a template node.
4678      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
4679      * @return {HTMLElement} The node or null if it wasn't found
4680      */
4681     getNode : function(nodeInfo){
4682         if(typeof nodeInfo == "string"){
4683             return document.getElementById(nodeInfo);
4684         }else if(typeof nodeInfo == "number"){
4685             return this.nodes[nodeInfo];
4686         }
4687         return nodeInfo;
4688     },
4689
4690     /**
4691      * Gets a range template nodes.
4692      * @param {Number} startIndex
4693      * @param {Number} endIndex
4694      * @return {Array} An array of nodes
4695      */
4696     getNodes : function(start, end){
4697         var ns = this.nodes;
4698         start = start || 0;
4699         end = typeof end == "undefined" ? ns.length - 1 : end;
4700         var nodes = [];
4701         if(start <= end){
4702             for(var i = start; i <= end; i++){
4703                 nodes.push(ns[i]);
4704             }
4705         } else{
4706             for(var i = start; i >= end; i--){
4707                 nodes.push(ns[i]);
4708             }
4709         }
4710         return nodes;
4711     },
4712
4713     /**
4714      * Finds the index of the passed node
4715      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
4716      * @return {Number} The index of the node or -1
4717      */
4718     indexOf : function(node){
4719         node = this.getNode(node);
4720         if(typeof node.nodeIndex == "number"){
4721             return node.nodeIndex;
4722         }
4723         var ns = this.nodes;
4724         for(var i = 0, len = ns.length; i < len; i++){
4725             if(ns[i] == node){
4726                 return i;
4727             }
4728         }
4729         return -1;
4730     }
4731 });
4732 /*
4733  * Based on:
4734  * Ext JS Library 1.1.1
4735  * Copyright(c) 2006-2007, Ext JS, LLC.
4736  *
4737  * Originally Released Under LGPL - original licence link has changed is not relivant.
4738  *
4739  * Fork - LGPL
4740  * <script type="text/javascript">
4741  */
4742
4743 /**
4744  * @class Roo.JsonView
4745  * @extends Roo.View
4746  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
4747 <pre><code>
4748 var view = new Roo.JsonView({
4749     container: "my-element",
4750     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
4751     multiSelect: true, 
4752     jsonRoot: "data" 
4753 });
4754
4755 // listen for node click?
4756 view.on("click", function(vw, index, node, e){
4757     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
4758 });
4759
4760 // direct load of JSON data
4761 view.load("foobar.php");
4762
4763 // Example from my blog list
4764 var tpl = new Roo.Template(
4765     '&lt;div class="entry"&gt;' +
4766     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
4767     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
4768     "&lt;/div&gt;&lt;hr /&gt;"
4769 );
4770
4771 var moreView = new Roo.JsonView({
4772     container :  "entry-list", 
4773     template : tpl,
4774     jsonRoot: "posts"
4775 });
4776 moreView.on("beforerender", this.sortEntries, this);
4777 moreView.load({
4778     url: "/blog/get-posts.php",
4779     params: "allposts=true",
4780     text: "Loading Blog Entries..."
4781 });
4782 </code></pre>
4783
4784 * Note: old code is supported with arguments : (container, template, config)
4785
4786
4787  * @constructor
4788  * Create a new JsonView
4789  * 
4790  * @param {Object} config The config object
4791  * 
4792  */
4793 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
4794     
4795     
4796     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
4797
4798     var um = this.el.getUpdateManager();
4799     um.setRenderer(this);
4800     um.on("update", this.onLoad, this);
4801     um.on("failure", this.onLoadException, this);
4802
4803     /**
4804      * @event beforerender
4805      * Fires before rendering of the downloaded JSON data.
4806      * @param {Roo.JsonView} this
4807      * @param {Object} data The JSON data loaded
4808      */
4809     /**
4810      * @event load
4811      * Fires when data is loaded.
4812      * @param {Roo.JsonView} this
4813      * @param {Object} data The JSON data loaded
4814      * @param {Object} response The raw Connect response object
4815      */
4816     /**
4817      * @event loadexception
4818      * Fires when loading fails.
4819      * @param {Roo.JsonView} this
4820      * @param {Object} response The raw Connect response object
4821      */
4822     this.addEvents({
4823         'beforerender' : true,
4824         'load' : true,
4825         'loadexception' : true
4826     });
4827 };
4828 Roo.extend(Roo.JsonView, Roo.View, {
4829     /**
4830      * @type {String} The root property in the loaded JSON object that contains the data
4831      */
4832     jsonRoot : "",
4833
4834     /**
4835      * Refreshes the view.
4836      */
4837     refresh : function(){
4838         this.clearSelections();
4839         this.el.update("");
4840         var html = [];
4841         var o = this.jsonData;
4842         if(o && o.length > 0){
4843             for(var i = 0, len = o.length; i < len; i++){
4844                 var data = this.prepareData(o[i], i, o);
4845                 html[html.length] = this.tpl.apply(data);
4846             }
4847         }else{
4848             html.push(this.emptyText);
4849         }
4850         this.el.update(html.join(""));
4851         this.nodes = this.el.dom.childNodes;
4852         this.updateIndexes(0);
4853     },
4854
4855     /**
4856      * 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.
4857      * @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:
4858      <pre><code>
4859      view.load({
4860          url: "your-url.php",
4861          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
4862          callback: yourFunction,
4863          scope: yourObject, //(optional scope)
4864          discardUrl: false,
4865          nocache: false,
4866          text: "Loading...",
4867          timeout: 30,
4868          scripts: false
4869      });
4870      </code></pre>
4871      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
4872      * 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.
4873      * @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}
4874      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
4875      * @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.
4876      */
4877     load : function(){
4878         var um = this.el.getUpdateManager();
4879         um.update.apply(um, arguments);
4880     },
4881
4882     // note - render is a standard framework call...
4883     // using it for the response is really flaky... - it's called by UpdateManager normally, except when called by the XComponent/addXtype.
4884     render : function(el, response){
4885         
4886         this.clearSelections();
4887         this.el.update("");
4888         var o;
4889         try{
4890             if (response != '') {
4891                 o = Roo.util.JSON.decode(response.responseText);
4892                 if(this.jsonRoot){
4893                     
4894                     o = o[this.jsonRoot];
4895                 }
4896             }
4897         } catch(e){
4898         }
4899         /**
4900          * The current JSON data or null
4901          */
4902         this.jsonData = o;
4903         this.beforeRender();
4904         this.refresh();
4905     },
4906
4907 /**
4908  * Get the number of records in the current JSON dataset
4909  * @return {Number}
4910  */
4911     getCount : function(){
4912         return this.jsonData ? this.jsonData.length : 0;
4913     },
4914
4915 /**
4916  * Returns the JSON object for the specified node(s)
4917  * @param {HTMLElement/Array} node The node or an array of nodes
4918  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
4919  * you get the JSON object for the node
4920  */
4921     getNodeData : function(node){
4922         if(node instanceof Array){
4923             var data = [];
4924             for(var i = 0, len = node.length; i < len; i++){
4925                 data.push(this.getNodeData(node[i]));
4926             }
4927             return data;
4928         }
4929         return this.jsonData[this.indexOf(node)] || null;
4930     },
4931
4932     beforeRender : function(){
4933         this.snapshot = this.jsonData;
4934         if(this.sortInfo){
4935             this.sort.apply(this, this.sortInfo);
4936         }
4937         this.fireEvent("beforerender", this, this.jsonData);
4938     },
4939
4940     onLoad : function(el, o){
4941         this.fireEvent("load", this, this.jsonData, o);
4942     },
4943
4944     onLoadException : function(el, o){
4945         this.fireEvent("loadexception", this, o);
4946     },
4947
4948 /**
4949  * Filter the data by a specific property.
4950  * @param {String} property A property on your JSON objects
4951  * @param {String/RegExp} value Either string that the property values
4952  * should start with, or a RegExp to test against the property
4953  */
4954     filter : function(property, value){
4955         if(this.jsonData){
4956             var data = [];
4957             var ss = this.snapshot;
4958             if(typeof value == "string"){
4959                 var vlen = value.length;
4960                 if(vlen == 0){
4961                     this.clearFilter();
4962                     return;
4963                 }
4964                 value = value.toLowerCase();
4965                 for(var i = 0, len = ss.length; i < len; i++){
4966                     var o = ss[i];
4967                     if(o[property].substr(0, vlen).toLowerCase() == value){
4968                         data.push(o);
4969                     }
4970                 }
4971             } else if(value.exec){ // regex?
4972                 for(var i = 0, len = ss.length; i < len; i++){
4973                     var o = ss[i];
4974                     if(value.test(o[property])){
4975                         data.push(o);
4976                     }
4977                 }
4978             } else{
4979                 return;
4980             }
4981             this.jsonData = data;
4982             this.refresh();
4983         }
4984     },
4985
4986 /**
4987  * Filter by a function. The passed function will be called with each
4988  * object in the current dataset. If the function returns true the value is kept,
4989  * otherwise it is filtered.
4990  * @param {Function} fn
4991  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
4992  */
4993     filterBy : function(fn, scope){
4994         if(this.jsonData){
4995             var data = [];
4996             var ss = this.snapshot;
4997             for(var i = 0, len = ss.length; i < len; i++){
4998                 var o = ss[i];
4999                 if(fn.call(scope || this, o)){
5000                     data.push(o);
5001                 }
5002             }
5003             this.jsonData = data;
5004             this.refresh();
5005         }
5006     },
5007
5008 /**
5009  * Clears the current filter.
5010  */
5011     clearFilter : function(){
5012         if(this.snapshot && this.jsonData != this.snapshot){
5013             this.jsonData = this.snapshot;
5014             this.refresh();
5015         }
5016     },
5017
5018
5019 /**
5020  * Sorts the data for this view and refreshes it.
5021  * @param {String} property A property on your JSON objects to sort on
5022  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
5023  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
5024  */
5025     sort : function(property, dir, sortType){
5026         this.sortInfo = Array.prototype.slice.call(arguments, 0);
5027         if(this.jsonData){
5028             var p = property;
5029             var dsc = dir && dir.toLowerCase() == "desc";
5030             var f = function(o1, o2){
5031                 var v1 = sortType ? sortType(o1[p]) : o1[p];
5032                 var v2 = sortType ? sortType(o2[p]) : o2[p];
5033                 ;
5034                 if(v1 < v2){
5035                     return dsc ? +1 : -1;
5036                 } else if(v1 > v2){
5037                     return dsc ? -1 : +1;
5038                 } else{
5039                     return 0;
5040                 }
5041             };
5042             this.jsonData.sort(f);
5043             this.refresh();
5044             if(this.jsonData != this.snapshot){
5045                 this.snapshot.sort(f);
5046             }
5047         }
5048     }
5049 });/*
5050  * Based on:
5051  * Ext JS Library 1.1.1
5052  * Copyright(c) 2006-2007, Ext JS, LLC.
5053  *
5054  * Originally Released Under LGPL - original licence link has changed is not relivant.
5055  *
5056  * Fork - LGPL
5057  * <script type="text/javascript">
5058  */
5059  
5060
5061 /**
5062  * @class Roo.ColorPalette
5063  * @extends Roo.Component
5064  * Simple color palette class for choosing colors.  The palette can be rendered to any container.<br />
5065  * Here's an example of typical usage:
5066  * <pre><code>
5067 var cp = new Roo.ColorPalette({value:'993300'});  // initial selected color
5068 cp.render('my-div');
5069
5070 cp.on('select', function(palette, selColor){
5071     // do something with selColor
5072 });
5073 </code></pre>
5074  * @constructor
5075  * Create a new ColorPalette
5076  * @param {Object} config The config object
5077  */
5078 Roo.ColorPalette = function(config){
5079     Roo.ColorPalette.superclass.constructor.call(this, config);
5080     this.addEvents({
5081         /**
5082              * @event select
5083              * Fires when a color is selected
5084              * @param {ColorPalette} this
5085              * @param {String} color The 6-digit color hex code (without the # symbol)
5086              */
5087         select: true
5088     });
5089
5090     if(this.handler){
5091         this.on("select", this.handler, this.scope, true);
5092     }
5093 };
5094 Roo.extend(Roo.ColorPalette, Roo.Component, {
5095     /**
5096      * @cfg {String} itemCls
5097      * The CSS class to apply to the containing element (defaults to "x-color-palette")
5098      */
5099     itemCls : "x-color-palette",
5100     /**
5101      * @cfg {String} value
5102      * The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that
5103      * the hex codes are case-sensitive.
5104      */
5105     value : null,
5106     clickEvent:'click',
5107     // private
5108     ctype: "Roo.ColorPalette",
5109
5110     /**
5111      * @cfg {Boolean} allowReselect If set to true then reselecting a color that is already selected fires the selection event
5112      */
5113     allowReselect : false,
5114
5115     /**
5116      * <p>An array of 6-digit color hex code strings (without the # symbol).  This array can contain any number
5117      * of colors, and each hex code should be unique.  The width of the palette is controlled via CSS by adjusting
5118      * the width property of the 'x-color-palette' class (or assigning a custom class), so you can balance the number
5119      * of colors with the width setting until the box is symmetrical.</p>
5120      * <p>You can override individual colors if needed:</p>
5121      * <pre><code>
5122 var cp = new Roo.ColorPalette();
5123 cp.colors[0] = "FF0000";  // change the first box to red
5124 </code></pre>
5125
5126 Or you can provide a custom array of your own for complete control:
5127 <pre><code>
5128 var cp = new Roo.ColorPalette();
5129 cp.colors = ["000000", "993300", "333300"];
5130 </code></pre>
5131      * @type Array
5132      */
5133     colors : [
5134         "000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333",
5135         "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080",
5136         "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696",
5137         "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0",
5138         "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"
5139     ],
5140
5141     // private
5142     onRender : function(container, position){
5143         var t = new Roo.MasterTemplate(
5144             '<tpl><a href="#" class="color-{0}" hidefocus="on"><em><span style="background:#{0}" unselectable="on">&#160;</span></em></a></tpl>'
5145         );
5146         var c = this.colors;
5147         for(var i = 0, len = c.length; i < len; i++){
5148             t.add([c[i]]);
5149         }
5150         var el = document.createElement("div");
5151         el.className = this.itemCls;
5152         t.overwrite(el);
5153         container.dom.insertBefore(el, position);
5154         this.el = Roo.get(el);
5155         this.el.on(this.clickEvent, this.handleClick,  this, {delegate: "a"});
5156         if(this.clickEvent != 'click'){
5157             this.el.on('click', Roo.emptyFn,  this, {delegate: "a", preventDefault:true});
5158         }
5159     },
5160
5161     // private
5162     afterRender : function(){
5163         Roo.ColorPalette.superclass.afterRender.call(this);
5164         if(this.value){
5165             var s = this.value;
5166             this.value = null;
5167             this.select(s);
5168         }
5169     },
5170
5171     // private
5172     handleClick : function(e, t){
5173         e.preventDefault();
5174         if(!this.disabled){
5175             var c = t.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
5176             this.select(c.toUpperCase());
5177         }
5178     },
5179
5180     /**
5181      * Selects the specified color in the palette (fires the select event)
5182      * @param {String} color A valid 6-digit color hex code (# will be stripped if included)
5183      */
5184     select : function(color){
5185         color = color.replace("#", "");
5186         if(color != this.value || this.allowReselect){
5187             var el = this.el;
5188             if(this.value){
5189                 el.child("a.color-"+this.value).removeClass("x-color-palette-sel");
5190             }
5191             el.child("a.color-"+color).addClass("x-color-palette-sel");
5192             this.value = color;
5193             this.fireEvent("select", this, color);
5194         }
5195     }
5196 });/*
5197  * Based on:
5198  * Ext JS Library 1.1.1
5199  * Copyright(c) 2006-2007, Ext JS, LLC.
5200  *
5201  * Originally Released Under LGPL - original licence link has changed is not relivant.
5202  *
5203  * Fork - LGPL
5204  * <script type="text/javascript">
5205  */
5206  
5207 /**
5208  * @class Roo.DatePicker
5209  * @extends Roo.Component
5210  * Simple date picker class.
5211  * @constructor
5212  * Create a new DatePicker
5213  * @param {Object} config The config object
5214  */
5215 Roo.DatePicker = function(config){
5216     Roo.DatePicker.superclass.constructor.call(this, config);
5217
5218     this.value = config && config.value ?
5219                  config.value.clearTime() : new Date().clearTime();
5220
5221     this.addEvents({
5222         /**
5223              * @event select
5224              * Fires when a date is selected
5225              * @param {DatePicker} this
5226              * @param {Date} date The selected date
5227              */
5228         'select': true,
5229         /**
5230              * @event monthchange
5231              * Fires when the displayed month changes 
5232              * @param {DatePicker} this
5233              * @param {Date} date The selected month
5234              */
5235         'monthchange': true
5236     });
5237
5238     if(this.handler){
5239         this.on("select", this.handler,  this.scope || this);
5240     }
5241     // build the disabledDatesRE
5242     if(!this.disabledDatesRE && this.disabledDates){
5243         var dd = this.disabledDates;
5244         var re = "(?:";
5245         for(var i = 0; i < dd.length; i++){
5246             re += dd[i];
5247             if(i != dd.length-1) {
5248                 re += "|";
5249             }
5250         }
5251         this.disabledDatesRE = new RegExp(re + ")");
5252     }
5253 };
5254
5255 Roo.extend(Roo.DatePicker, Roo.Component, {
5256     /**
5257      * @cfg {String} todayText
5258      * The text to display on the button that selects the current date (defaults to "Today")
5259      */
5260     todayText : "Today",
5261     /**
5262      * @cfg {String} okText
5263      * The text to display on the ok button
5264      */
5265     okText : "&#160;OK&#160;", // &#160; to give the user extra clicking room
5266     /**
5267      * @cfg {String} cancelText
5268      * The text to display on the cancel button
5269      */
5270     cancelText : "Cancel",
5271     /**
5272      * @cfg {String} todayTip
5273      * The tooltip to display for the button that selects the current date (defaults to "{current date} (Spacebar)")
5274      */
5275     todayTip : "{0} (Spacebar)",
5276     /**
5277      * @cfg {Date} minDate
5278      * Minimum allowable date (JavaScript date object, defaults to null)
5279      */
5280     minDate : null,
5281     /**
5282      * @cfg {Date} maxDate
5283      * Maximum allowable date (JavaScript date object, defaults to null)
5284      */
5285     maxDate : null,
5286     /**
5287      * @cfg {String} minText
5288      * The error text to display if the minDate validation fails (defaults to "This date is before the minimum date")
5289      */
5290     minText : "This date is before the minimum date",
5291     /**
5292      * @cfg {String} maxText
5293      * The error text to display if the maxDate validation fails (defaults to "This date is after the maximum date")
5294      */
5295     maxText : "This date is after the maximum date",
5296     /**
5297      * @cfg {String} format
5298      * The default date format string which can be overriden for localization support.  The format must be
5299      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
5300      */
5301     format : "m/d/y",
5302     /**
5303      * @cfg {Array} disabledDays
5304      * An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
5305      */
5306     disabledDays : null,
5307     /**
5308      * @cfg {String} disabledDaysText
5309      * The tooltip to display when the date falls on a disabled day (defaults to "")
5310      */
5311     disabledDaysText : "",
5312     /**
5313      * @cfg {RegExp} disabledDatesRE
5314      * JavaScript regular expression used to disable a pattern of dates (defaults to null)
5315      */
5316     disabledDatesRE : null,
5317     /**
5318      * @cfg {String} disabledDatesText
5319      * The tooltip text to display when the date falls on a disabled date (defaults to "")
5320      */
5321     disabledDatesText : "",
5322     /**
5323      * @cfg {Boolean} constrainToViewport
5324      * True to constrain the date picker to the viewport (defaults to true)
5325      */
5326     constrainToViewport : true,
5327     /**
5328      * @cfg {Array} monthNames
5329      * An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)
5330      */
5331     monthNames : Date.monthNames,
5332     /**
5333      * @cfg {Array} dayNames
5334      * An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)
5335      */
5336     dayNames : Date.dayNames,
5337     /**
5338      * @cfg {String} nextText
5339      * The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')
5340      */
5341     nextText: 'Next Month (Control+Right)',
5342     /**
5343      * @cfg {String} prevText
5344      * The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')
5345      */
5346     prevText: 'Previous Month (Control+Left)',
5347     /**
5348      * @cfg {String} monthYearText
5349      * The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')
5350      */
5351     monthYearText: 'Choose a month (Control+Up/Down to move years)',
5352     /**
5353      * @cfg {Number} startDay
5354      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
5355      */
5356     startDay : 0,
5357     /**
5358      * @cfg {Bool} showClear
5359      * Show a clear button (usefull for date form elements that can be blank.)
5360      */
5361     
5362     showClear: false,
5363     
5364     /**
5365      * Sets the value of the date field
5366      * @param {Date} value The date to set
5367      */
5368     setValue : function(value){
5369         var old = this.value;
5370         
5371         if (typeof(value) == 'string') {
5372          
5373             value = Date.parseDate(value, this.format);
5374         }
5375         if (!value) {
5376             value = new Date();
5377         }
5378         
5379         this.value = value.clearTime(true);
5380         if(this.el){
5381             this.update(this.value);
5382         }
5383     },
5384
5385     /**
5386      * Gets the current selected value of the date field
5387      * @return {Date} The selected date
5388      */
5389     getValue : function(){
5390         return this.value;
5391     },
5392
5393     // private
5394     focus : function(){
5395         if(this.el){
5396             this.update(this.activeDate);
5397         }
5398     },
5399
5400     // privateval
5401     onRender : function(container, position){
5402         
5403         var m = [
5404              '<table cellspacing="0">',
5405                 '<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>',
5406                 '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'];
5407         var dn = this.dayNames;
5408         for(var i = 0; i < 7; i++){
5409             var d = this.startDay+i;
5410             if(d > 6){
5411                 d = d-7;
5412             }
5413             m.push("<th><span>", dn[d].substr(0,1), "</span></th>");
5414         }
5415         m[m.length] = "</tr></thead><tbody><tr>";
5416         for(var i = 0; i < 42; i++) {
5417             if(i % 7 == 0 && i != 0){
5418                 m[m.length] = "</tr><tr>";
5419             }
5420             m[m.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>';
5421         }
5422         m[m.length] = '</tr></tbody></table></td></tr><tr>'+
5423             '<td colspan="3" class="x-date-bottom" align="center"></td></tr></table><div class="x-date-mp"></div>';
5424
5425         var el = document.createElement("div");
5426         el.className = "x-date-picker";
5427         el.innerHTML = m.join("");
5428
5429         container.dom.insertBefore(el, position);
5430
5431         this.el = Roo.get(el);
5432         this.eventEl = Roo.get(el.firstChild);
5433
5434         new Roo.util.ClickRepeater(this.el.child("td.x-date-left a"), {
5435             handler: this.showPrevMonth,
5436             scope: this,
5437             preventDefault:true,
5438             stopDefault:true
5439         });
5440
5441         new Roo.util.ClickRepeater(this.el.child("td.x-date-right a"), {
5442             handler: this.showNextMonth,
5443             scope: this,
5444             preventDefault:true,
5445             stopDefault:true
5446         });
5447
5448         this.eventEl.on("mousewheel", this.handleMouseWheel,  this);
5449
5450         this.monthPicker = this.el.down('div.x-date-mp');
5451         this.monthPicker.enableDisplayMode('block');
5452         
5453         var kn = new Roo.KeyNav(this.eventEl, {
5454             "left" : function(e){
5455                 e.ctrlKey ?
5456                     this.showPrevMonth() :
5457                     this.update(this.activeDate.add("d", -1));
5458             },
5459
5460             "right" : function(e){
5461                 e.ctrlKey ?
5462                     this.showNextMonth() :
5463                     this.update(this.activeDate.add("d", 1));
5464             },
5465
5466             "up" : function(e){
5467                 e.ctrlKey ?
5468                     this.showNextYear() :
5469                     this.update(this.activeDate.add("d", -7));
5470             },
5471
5472             "down" : function(e){
5473                 e.ctrlKey ?
5474                     this.showPrevYear() :
5475                     this.update(this.activeDate.add("d", 7));
5476             },
5477
5478             "pageUp" : function(e){
5479                 this.showNextMonth();
5480             },
5481
5482             "pageDown" : function(e){
5483                 this.showPrevMonth();
5484             },
5485
5486             "enter" : function(e){
5487                 e.stopPropagation();
5488                 return true;
5489             },
5490
5491             scope : this
5492         });
5493
5494         this.eventEl.on("click", this.handleDateClick,  this, {delegate: "a.x-date-date"});
5495
5496         this.eventEl.addKeyListener(Roo.EventObject.SPACE, this.selectToday,  this);
5497
5498         this.el.unselectable();
5499         
5500         this.cells = this.el.select("table.x-date-inner tbody td");
5501         this.textNodes = this.el.query("table.x-date-inner tbody span");
5502
5503         this.mbtn = new Roo.Button(this.el.child("td.x-date-middle", true), {
5504             text: "&#160;",
5505             tooltip: this.monthYearText
5506         });
5507
5508         this.mbtn.on('click', this.showMonthPicker, this);
5509         this.mbtn.el.child(this.mbtn.menuClassTarget).addClass("x-btn-with-menu");
5510
5511
5512         var today = (new Date()).dateFormat(this.format);
5513         
5514         var baseTb = new Roo.Toolbar(this.el.child("td.x-date-bottom", true));
5515         if (this.showClear) {
5516             baseTb.add( new Roo.Toolbar.Fill());
5517         }
5518         baseTb.add({
5519             text: String.format(this.todayText, today),
5520             tooltip: String.format(this.todayTip, today),
5521             handler: this.selectToday,
5522             scope: this
5523         });
5524         
5525         //var todayBtn = new Roo.Button(this.el.child("td.x-date-bottom", true), {
5526             
5527         //});
5528         if (this.showClear) {
5529             
5530             baseTb.add( new Roo.Toolbar.Fill());
5531             baseTb.add({
5532                 text: '&#160;',
5533                 cls: 'x-btn-icon x-btn-clear',
5534                 handler: function() {
5535                     //this.value = '';
5536                     this.fireEvent("select", this, '');
5537                 },
5538                 scope: this
5539             });
5540         }
5541         
5542         
5543         if(Roo.isIE){
5544             this.el.repaint();
5545         }
5546         this.update(this.value);
5547     },
5548
5549     createMonthPicker : function(){
5550         if(!this.monthPicker.dom.firstChild){
5551             var buf = ['<table border="0" cellspacing="0">'];
5552             for(var i = 0; i < 6; i++){
5553                 buf.push(
5554                     '<tr><td class="x-date-mp-month"><a href="#">', this.monthNames[i].substr(0, 3), '</a></td>',
5555                     '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', this.monthNames[i+6].substr(0, 3), '</a></td>',
5556                     i == 0 ?
5557                     '<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>' :
5558                     '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>'
5559                 );
5560             }
5561             buf.push(
5562                 '<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">',
5563                     this.okText,
5564                     '</button><button type="button" class="x-date-mp-cancel">',
5565                     this.cancelText,
5566                     '</button></td></tr>',
5567                 '</table>'
5568             );
5569             this.monthPicker.update(buf.join(''));
5570             this.monthPicker.on('click', this.onMonthClick, this);
5571             this.monthPicker.on('dblclick', this.onMonthDblClick, this);
5572
5573             this.mpMonths = this.monthPicker.select('td.x-date-mp-month');
5574             this.mpYears = this.monthPicker.select('td.x-date-mp-year');
5575
5576             this.mpMonths.each(function(m, a, i){
5577                 i += 1;
5578                 if((i%2) == 0){
5579                     m.dom.xmonth = 5 + Math.round(i * .5);
5580                 }else{
5581                     m.dom.xmonth = Math.round((i-1) * .5);
5582                 }
5583             });
5584         }
5585     },
5586
5587     showMonthPicker : function(){
5588         this.createMonthPicker();
5589         var size = this.el.getSize();
5590         this.monthPicker.setSize(size);
5591         this.monthPicker.child('table').setSize(size);
5592
5593         this.mpSelMonth = (this.activeDate || this.value).getMonth();
5594         this.updateMPMonth(this.mpSelMonth);
5595         this.mpSelYear = (this.activeDate || this.value).getFullYear();
5596         this.updateMPYear(this.mpSelYear);
5597
5598         this.monthPicker.slideIn('t', {duration:.2});
5599     },
5600
5601     updateMPYear : function(y){
5602         this.mpyear = y;
5603         var ys = this.mpYears.elements;
5604         for(var i = 1; i <= 10; i++){
5605             var td = ys[i-1], y2;
5606             if((i%2) == 0){
5607                 y2 = y + Math.round(i * .5);
5608                 td.firstChild.innerHTML = y2;
5609                 td.xyear = y2;
5610             }else{
5611                 y2 = y - (5-Math.round(i * .5));
5612                 td.firstChild.innerHTML = y2;
5613                 td.xyear = y2;
5614             }
5615             this.mpYears.item(i-1)[y2 == this.mpSelYear ? 'addClass' : 'removeClass']('x-date-mp-sel');
5616         }
5617     },
5618
5619     updateMPMonth : function(sm){
5620         this.mpMonths.each(function(m, a, i){
5621             m[m.dom.xmonth == sm ? 'addClass' : 'removeClass']('x-date-mp-sel');
5622         });
5623     },
5624
5625     selectMPMonth: function(m){
5626         
5627     },
5628
5629     onMonthClick : function(e, t){
5630         e.stopEvent();
5631         var el = new Roo.Element(t), pn;
5632         if(el.is('button.x-date-mp-cancel')){
5633             this.hideMonthPicker();
5634         }
5635         else if(el.is('button.x-date-mp-ok')){
5636             this.update(new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
5637             this.hideMonthPicker();
5638         }
5639         else if(pn = el.up('td.x-date-mp-month', 2)){
5640             this.mpMonths.removeClass('x-date-mp-sel');
5641             pn.addClass('x-date-mp-sel');
5642             this.mpSelMonth = pn.dom.xmonth;
5643         }
5644         else if(pn = el.up('td.x-date-mp-year', 2)){
5645             this.mpYears.removeClass('x-date-mp-sel');
5646             pn.addClass('x-date-mp-sel');
5647             this.mpSelYear = pn.dom.xyear;
5648         }
5649         else if(el.is('a.x-date-mp-prev')){
5650             this.updateMPYear(this.mpyear-10);
5651         }
5652         else if(el.is('a.x-date-mp-next')){
5653             this.updateMPYear(this.mpyear+10);
5654         }
5655     },
5656
5657     onMonthDblClick : function(e, t){
5658         e.stopEvent();
5659         var el = new Roo.Element(t), pn;
5660         if(pn = el.up('td.x-date-mp-month', 2)){
5661             this.update(new Date(this.mpSelYear, pn.dom.xmonth, (this.activeDate || this.value).getDate()));
5662             this.hideMonthPicker();
5663         }
5664         else if(pn = el.up('td.x-date-mp-year', 2)){
5665             this.update(new Date(pn.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
5666             this.hideMonthPicker();
5667         }
5668     },
5669
5670     hideMonthPicker : function(disableAnim){
5671         if(this.monthPicker){
5672             if(disableAnim === true){
5673                 this.monthPicker.hide();
5674             }else{
5675                 this.monthPicker.slideOut('t', {duration:.2});
5676             }
5677         }
5678     },
5679
5680     // private
5681     showPrevMonth : function(e){
5682         this.update(this.activeDate.add("mo", -1));
5683     },
5684
5685     // private
5686     showNextMonth : function(e){
5687         this.update(this.activeDate.add("mo", 1));
5688     },
5689
5690     // private
5691     showPrevYear : function(){
5692         this.update(this.activeDate.add("y", -1));
5693     },
5694
5695     // private
5696     showNextYear : function(){
5697         this.update(this.activeDate.add("y", 1));
5698     },
5699
5700     // private
5701     handleMouseWheel : function(e){
5702         var delta = e.getWheelDelta();
5703         if(delta > 0){
5704             this.showPrevMonth();
5705             e.stopEvent();
5706         } else if(delta < 0){
5707             this.showNextMonth();
5708             e.stopEvent();
5709         }
5710     },
5711
5712     // private
5713     handleDateClick : function(e, t){
5714         e.stopEvent();
5715         if(t.dateValue && !Roo.fly(t.parentNode).hasClass("x-date-disabled")){
5716             this.setValue(new Date(t.dateValue));
5717             this.fireEvent("select", this, this.value);
5718         }
5719     },
5720
5721     // private
5722     selectToday : function(){
5723         this.setValue(new Date().clearTime());
5724         this.fireEvent("select", this, this.value);
5725     },
5726
5727     // private
5728     update : function(date)
5729     {
5730         var vd = this.activeDate;
5731         this.activeDate = date;
5732         if(vd && this.el){
5733             var t = date.getTime();
5734             if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
5735                 this.cells.removeClass("x-date-selected");
5736                 this.cells.each(function(c){
5737                    if(c.dom.firstChild.dateValue == t){
5738                        c.addClass("x-date-selected");
5739                        setTimeout(function(){
5740                             try{c.dom.firstChild.focus();}catch(e){}
5741                        }, 50);
5742                        return false;
5743                    }
5744                 });
5745                 return;
5746             }
5747         }
5748         
5749         var days = date.getDaysInMonth();
5750         var firstOfMonth = date.getFirstDateOfMonth();
5751         var startingPos = firstOfMonth.getDay()-this.startDay;
5752
5753         if(startingPos <= this.startDay){
5754             startingPos += 7;
5755         }
5756
5757         var pm = date.add("mo", -1);
5758         var prevStart = pm.getDaysInMonth()-startingPos;
5759
5760         var cells = this.cells.elements;
5761         var textEls = this.textNodes;
5762         days += startingPos;
5763
5764         // convert everything to numbers so it's fast
5765         var day = 86400000;
5766         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
5767         var today = new Date().clearTime().getTime();
5768         var sel = date.clearTime().getTime();
5769         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
5770         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
5771         var ddMatch = this.disabledDatesRE;
5772         var ddText = this.disabledDatesText;
5773         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
5774         var ddaysText = this.disabledDaysText;
5775         var format = this.format;
5776
5777         var setCellClass = function(cal, cell){
5778             cell.title = "";
5779             var t = d.getTime();
5780             cell.firstChild.dateValue = t;
5781             if(t == today){
5782                 cell.className += " x-date-today";
5783                 cell.title = cal.todayText;
5784             }
5785             if(t == sel){
5786                 cell.className += " x-date-selected";
5787                 setTimeout(function(){
5788                     try{cell.firstChild.focus();}catch(e){}
5789                 }, 50);
5790             }
5791             // disabling
5792             if(t < min) {
5793                 cell.className = " x-date-disabled";
5794                 cell.title = cal.minText;
5795                 return;
5796             }
5797             if(t > max) {
5798                 cell.className = " x-date-disabled";
5799                 cell.title = cal.maxText;
5800                 return;
5801             }
5802             if(ddays){
5803                 if(ddays.indexOf(d.getDay()) != -1){
5804                     cell.title = ddaysText;
5805                     cell.className = " x-date-disabled";
5806                 }
5807             }
5808             if(ddMatch && format){
5809                 var fvalue = d.dateFormat(format);
5810                 if(ddMatch.test(fvalue)){
5811                     cell.title = ddText.replace("%0", fvalue);
5812                     cell.className = " x-date-disabled";
5813                 }
5814             }
5815         };
5816
5817         var i = 0;
5818         for(; i < startingPos; i++) {
5819             textEls[i].innerHTML = (++prevStart);
5820             d.setDate(d.getDate()+1);
5821             cells[i].className = "x-date-prevday";
5822             setCellClass(this, cells[i]);
5823         }
5824         for(; i < days; i++){
5825             intDay = i - startingPos + 1;
5826             textEls[i].innerHTML = (intDay);
5827             d.setDate(d.getDate()+1);
5828             cells[i].className = "x-date-active";
5829             setCellClass(this, cells[i]);
5830         }
5831         var extraDays = 0;
5832         for(; i < 42; i++) {
5833              textEls[i].innerHTML = (++extraDays);
5834              d.setDate(d.getDate()+1);
5835              cells[i].className = "x-date-nextday";
5836              setCellClass(this, cells[i]);
5837         }
5838
5839         this.mbtn.setText(this.monthNames[date.getMonth()] + " " + date.getFullYear());
5840         this.fireEvent('monthchange', this, date);
5841         
5842         if(!this.internalRender){
5843             var main = this.el.dom.firstChild;
5844             var w = main.offsetWidth;
5845             this.el.setWidth(w + this.el.getBorderWidth("lr"));
5846             Roo.fly(main).setWidth(w);
5847             this.internalRender = true;
5848             // opera does not respect the auto grow header center column
5849             // then, after it gets a width opera refuses to recalculate
5850             // without a second pass
5851             if(Roo.isOpera && !this.secondPass){
5852                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
5853                 this.secondPass = true;
5854                 this.update.defer(10, this, [date]);
5855             }
5856         }
5857         
5858         
5859     }
5860 });        /*
5861  * Based on:
5862  * Ext JS Library 1.1.1
5863  * Copyright(c) 2006-2007, Ext JS, LLC.
5864  *
5865  * Originally Released Under LGPL - original licence link has changed is not relivant.
5866  *
5867  * Fork - LGPL
5868  * <script type="text/javascript">
5869  */
5870 /**
5871  * @class Roo.TabPanel
5872  * @extends Roo.util.Observable
5873  * A lightweight tab container.
5874  * <br><br>
5875  * Usage:
5876  * <pre><code>
5877 // basic tabs 1, built from existing content
5878 var tabs = new Roo.TabPanel("tabs1");
5879 tabs.addTab("script", "View Script");
5880 tabs.addTab("markup", "View Markup");
5881 tabs.activate("script");
5882
5883 // more advanced tabs, built from javascript
5884 var jtabs = new Roo.TabPanel("jtabs");
5885 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
5886
5887 // set up the UpdateManager
5888 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
5889 var updater = tab2.getUpdateManager();
5890 updater.setDefaultUrl("ajax1.htm");
5891 tab2.on('activate', updater.refresh, updater, true);
5892
5893 // Use setUrl for Ajax loading
5894 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
5895 tab3.setUrl("ajax2.htm", null, true);
5896
5897 // Disabled tab
5898 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
5899 tab4.disable();
5900
5901 jtabs.activate("jtabs-1");
5902  * </code></pre>
5903  * @constructor
5904  * Create a new TabPanel.
5905  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
5906  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
5907  */
5908 Roo.TabPanel = function(container, config){
5909     /**
5910     * The container element for this TabPanel.
5911     * @type Roo.Element
5912     */
5913     this.el = Roo.get(container, true);
5914     if(config){
5915         if(typeof config == "boolean"){
5916             this.tabPosition = config ? "bottom" : "top";
5917         }else{
5918             Roo.apply(this, config);
5919         }
5920     }
5921     if(this.tabPosition == "bottom"){
5922         this.bodyEl = Roo.get(this.createBody(this.el.dom));
5923         this.el.addClass("x-tabs-bottom");
5924     }
5925     this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
5926     this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
5927     this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
5928     if(Roo.isIE){
5929         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
5930     }
5931     if(this.tabPosition != "bottom"){
5932         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
5933          * @type Roo.Element
5934          */
5935         this.bodyEl = Roo.get(this.createBody(this.el.dom));
5936         this.el.addClass("x-tabs-top");
5937     }
5938     this.items = [];
5939
5940     this.bodyEl.setStyle("position", "relative");
5941
5942     this.active = null;
5943     this.activateDelegate = this.activate.createDelegate(this);
5944
5945     this.addEvents({
5946         /**
5947          * @event tabchange
5948          * Fires when the active tab changes
5949          * @param {Roo.TabPanel} this
5950          * @param {Roo.TabPanelItem} activePanel The new active tab
5951          */
5952         "tabchange": true,
5953         /**
5954          * @event beforetabchange
5955          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
5956          * @param {Roo.TabPanel} this
5957          * @param {Object} e Set cancel to true on this object to cancel the tab change
5958          * @param {Roo.TabPanelItem} tab The tab being changed to
5959          */
5960         "beforetabchange" : true
5961     });
5962
5963     Roo.EventManager.onWindowResize(this.onResize, this);
5964     this.cpad = this.el.getPadding("lr");
5965     this.hiddenCount = 0;
5966
5967
5968     // toolbar on the tabbar support...
5969     if (this.toolbar) {
5970         var tcfg = this.toolbar;
5971         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
5972         this.toolbar = new Roo.Toolbar(tcfg);
5973         if (Roo.isSafari) {
5974             var tbl = tcfg.container.child('table', true);
5975             tbl.setAttribute('width', '100%');
5976         }
5977         
5978     }
5979    
5980
5981
5982     Roo.TabPanel.superclass.constructor.call(this);
5983 };
5984
5985 Roo.extend(Roo.TabPanel, Roo.util.Observable, {
5986     /*
5987      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
5988      */
5989     tabPosition : "top",
5990     /*
5991      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
5992      */
5993     currentTabWidth : 0,
5994     /*
5995      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
5996      */
5997     minTabWidth : 40,
5998     /*
5999      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
6000      */
6001     maxTabWidth : 250,
6002     /*
6003      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
6004      */
6005     preferredTabWidth : 175,
6006     /*
6007      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
6008      */
6009     resizeTabs : false,
6010     /*
6011      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
6012      */
6013     monitorResize : true,
6014     /*
6015      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
6016      */
6017     toolbar : false,
6018
6019     /**
6020      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
6021      * @param {String} id The id of the div to use <b>or create</b>
6022      * @param {String} text The text for the tab
6023      * @param {String} content (optional) Content to put in the TabPanelItem body
6024      * @param {Boolean} closable (optional) True to create a close icon on the tab
6025      * @return {Roo.TabPanelItem} The created TabPanelItem
6026      */
6027     addTab : function(id, text, content, closable){
6028         var item = new Roo.TabPanelItem(this, id, text, closable);
6029         this.addTabItem(item);
6030         if(content){
6031             item.setContent(content);
6032         }
6033         return item;
6034     },
6035
6036     /**
6037      * Returns the {@link Roo.TabPanelItem} with the specified id/index
6038      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
6039      * @return {Roo.TabPanelItem}
6040      */
6041     getTab : function(id){
6042         return this.items[id];
6043     },
6044
6045     /**
6046      * Hides the {@link Roo.TabPanelItem} with the specified id/index
6047      * @param {String/Number} id The id or index of the TabPanelItem to hide.
6048      */
6049     hideTab : function(id){
6050         var t = this.items[id];
6051         if(!t.isHidden()){
6052            t.setHidden(true);
6053            this.hiddenCount++;
6054            this.autoSizeTabs();
6055         }
6056     },
6057
6058     /**
6059      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
6060      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
6061      */
6062     unhideTab : function(id){
6063         var t = this.items[id];
6064         if(t.isHidden()){
6065            t.setHidden(false);
6066            this.hiddenCount--;
6067            this.autoSizeTabs();
6068         }
6069     },
6070
6071     /**
6072      * Adds an existing {@link Roo.TabPanelItem}.
6073      * @param {Roo.TabPanelItem} item The TabPanelItem to add
6074      */
6075     addTabItem : function(item){
6076         this.items[item.id] = item;
6077         this.items.push(item);
6078         if(this.resizeTabs){
6079            item.setWidth(this.currentTabWidth || this.preferredTabWidth);
6080            this.autoSizeTabs();
6081         }else{
6082             item.autoSize();
6083         }
6084     },
6085
6086     /**
6087      * Removes a {@link Roo.TabPanelItem}.
6088      * @param {String/Number} id The id or index of the TabPanelItem to remove.
6089      */
6090     removeTab : function(id){
6091         var items = this.items;
6092         var tab = items[id];
6093         if(!tab) { return; }
6094         var index = items.indexOf(tab);
6095         if(this.active == tab && items.length > 1){
6096             var newTab = this.getNextAvailable(index);
6097             if(newTab) {
6098                 newTab.activate();
6099             }
6100         }
6101         this.stripEl.dom.removeChild(tab.pnode.dom);
6102         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
6103             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
6104         }
6105         items.splice(index, 1);
6106         delete this.items[tab.id];
6107         tab.fireEvent("close", tab);
6108         tab.purgeListeners();
6109         this.autoSizeTabs();
6110     },
6111
6112     getNextAvailable : function(start){
6113         var items = this.items;
6114         var index = start;
6115         // look for a next tab that will slide over to
6116         // replace the one being removed
6117         while(index < items.length){
6118             var item = items[++index];
6119             if(item && !item.isHidden()){
6120                 return item;
6121             }
6122         }
6123         // if one isn't found select the previous tab (on the left)
6124         index = start;
6125         while(index >= 0){
6126             var item = items[--index];
6127             if(item && !item.isHidden()){
6128                 return item;
6129             }
6130         }
6131         return null;
6132     },
6133
6134     /**
6135      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
6136      * @param {String/Number} id The id or index of the TabPanelItem to disable.
6137      */
6138     disableTab : function(id){
6139         var tab = this.items[id];
6140         if(tab && this.active != tab){
6141             tab.disable();
6142         }
6143     },
6144
6145     /**
6146      * Enables a {@link Roo.TabPanelItem} that is disabled.
6147      * @param {String/Number} id The id or index of the TabPanelItem to enable.
6148      */
6149     enableTab : function(id){
6150         var tab = this.items[id];
6151         tab.enable();
6152     },
6153
6154     /**
6155      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
6156      * @param {String/Number} id The id or index of the TabPanelItem to activate.
6157      * @return {Roo.TabPanelItem} The TabPanelItem.
6158      */
6159     activate : function(id){
6160         var tab = this.items[id];
6161         if(!tab){
6162             return null;
6163         }
6164         if(tab == this.active || tab.disabled){
6165             return tab;
6166         }
6167         var e = {};
6168         this.fireEvent("beforetabchange", this, e, tab);
6169         if(e.cancel !== true && !tab.disabled){
6170             if(this.active){
6171                 this.active.hide();
6172             }
6173             this.active = this.items[id];
6174             this.active.show();
6175             this.fireEvent("tabchange", this, this.active);
6176         }
6177         return tab;
6178     },
6179
6180     /**
6181      * Gets the active {@link Roo.TabPanelItem}.
6182      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
6183      */
6184     getActiveTab : function(){
6185         return this.active;
6186     },
6187
6188     /**
6189      * Updates the tab body element to fit the height of the container element
6190      * for overflow scrolling
6191      * @param {Number} targetHeight (optional) Override the starting height from the elements height
6192      */
6193     syncHeight : function(targetHeight){
6194         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
6195         var bm = this.bodyEl.getMargins();
6196         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
6197         this.bodyEl.setHeight(newHeight);
6198         return newHeight;
6199     },
6200
6201     onResize : function(){
6202         if(this.monitorResize){
6203             this.autoSizeTabs();
6204         }
6205     },
6206
6207     /**
6208      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
6209      */
6210     beginUpdate : function(){
6211         this.updating = true;
6212     },
6213
6214     /**
6215      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
6216      */
6217     endUpdate : function(){
6218         this.updating = false;
6219         this.autoSizeTabs();
6220     },
6221
6222     /**
6223      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
6224      */
6225     autoSizeTabs : function(){
6226         var count = this.items.length;
6227         var vcount = count - this.hiddenCount;
6228         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
6229             return;
6230         }
6231         var w = Math.max(this.el.getWidth() - this.cpad, 10);
6232         var availWidth = Math.floor(w / vcount);
6233         var b = this.stripBody;
6234         if(b.getWidth() > w){
6235             var tabs = this.items;
6236             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
6237             if(availWidth < this.minTabWidth){
6238                 /*if(!this.sleft){    // incomplete scrolling code
6239                     this.createScrollButtons();
6240                 }
6241                 this.showScroll();
6242                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
6243             }
6244         }else{
6245             if(this.currentTabWidth < this.preferredTabWidth){
6246                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
6247             }
6248         }
6249     },
6250
6251     /**
6252      * Returns the number of tabs in this TabPanel.
6253      * @return {Number}
6254      */
6255      getCount : function(){
6256          return this.items.length;
6257      },
6258
6259     /**
6260      * Resizes all the tabs to the passed width
6261      * @param {Number} The new width
6262      */
6263     setTabWidth : function(width){
6264         this.currentTabWidth = width;
6265         for(var i = 0, len = this.items.length; i < len; i++) {
6266                 if(!this.items[i].isHidden()) {
6267                 this.items[i].setWidth(width);
6268             }
6269         }
6270     },
6271
6272     /**
6273      * Destroys this TabPanel
6274      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
6275      */
6276     destroy : function(removeEl){
6277         Roo.EventManager.removeResizeListener(this.onResize, this);
6278         for(var i = 0, len = this.items.length; i < len; i++){
6279             this.items[i].purgeListeners();
6280         }
6281         if(removeEl === true){
6282             this.el.update("");
6283             this.el.remove();
6284         }
6285     }
6286 });
6287
6288 /**
6289  * @class Roo.TabPanelItem
6290  * @extends Roo.util.Observable
6291  * Represents an individual item (tab plus body) in a TabPanel.
6292  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
6293  * @param {String} id The id of this TabPanelItem
6294  * @param {String} text The text for the tab of this TabPanelItem
6295  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
6296  */
6297 Roo.TabPanelItem = function(tabPanel, id, text, closable){
6298     /**
6299      * The {@link Roo.TabPanel} this TabPanelItem belongs to
6300      * @type Roo.TabPanel
6301      */
6302     this.tabPanel = tabPanel;
6303     /**
6304      * The id for this TabPanelItem
6305      * @type String
6306      */
6307     this.id = id;
6308     /** @private */
6309     this.disabled = false;
6310     /** @private */
6311     this.text = text;
6312     /** @private */
6313     this.loaded = false;
6314     this.closable = closable;
6315
6316     /**
6317      * The body element for this TabPanelItem.
6318      * @type Roo.Element
6319      */
6320     this.bodyEl = Roo.get(tabPanel.createItemBody(tabPanel.bodyEl.dom, id));
6321     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
6322     this.bodyEl.setStyle("display", "block");
6323     this.bodyEl.setStyle("zoom", "1");
6324     this.hideAction();
6325
6326     var els = tabPanel.createStripElements(tabPanel.stripEl.dom, text, closable);
6327     /** @private */
6328     this.el = Roo.get(els.el, true);
6329     this.inner = Roo.get(els.inner, true);
6330     this.textEl = Roo.get(this.el.dom.firstChild.firstChild.firstChild, true);
6331     this.pnode = Roo.get(els.el.parentNode, true);
6332     this.el.on("mousedown", this.onTabMouseDown, this);
6333     this.el.on("click", this.onTabClick, this);
6334     /** @private */
6335     if(closable){
6336         var c = Roo.get(els.close, true);
6337         c.dom.title = this.closeText;
6338         c.addClassOnOver("close-over");
6339         c.on("click", this.closeClick, this);
6340      }
6341
6342     this.addEvents({
6343          /**
6344          * @event activate
6345          * Fires when this tab becomes the active tab.
6346          * @param {Roo.TabPanel} tabPanel The parent TabPanel
6347          * @param {Roo.TabPanelItem} this
6348          */
6349         "activate": true,
6350         /**
6351          * @event beforeclose
6352          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
6353          * @param {Roo.TabPanelItem} this
6354          * @param {Object} e Set cancel to true on this object to cancel the close.
6355          */
6356         "beforeclose": true,
6357         /**
6358          * @event close
6359          * Fires when this tab is closed.
6360          * @param {Roo.TabPanelItem} this
6361          */
6362          "close": true,
6363         /**
6364          * @event deactivate
6365          * Fires when this tab is no longer the active tab.
6366          * @param {Roo.TabPanel} tabPanel The parent TabPanel
6367          * @param {Roo.TabPanelItem} this
6368          */
6369          "deactivate" : true
6370     });
6371     this.hidden = false;
6372
6373     Roo.TabPanelItem.superclass.constructor.call(this);
6374 };
6375
6376 Roo.extend(Roo.TabPanelItem, Roo.util.Observable, {
6377     purgeListeners : function(){
6378        Roo.util.Observable.prototype.purgeListeners.call(this);
6379        this.el.removeAllListeners();
6380     },
6381     /**
6382      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
6383      */
6384     show : function(){
6385         this.pnode.addClass("on");
6386         this.showAction();
6387         if(Roo.isOpera){
6388             this.tabPanel.stripWrap.repaint();
6389         }
6390         this.fireEvent("activate", this.tabPanel, this);
6391     },
6392
6393     /**
6394      * Returns true if this tab is the active tab.
6395      * @return {Boolean}
6396      */
6397     isActive : function(){
6398         return this.tabPanel.getActiveTab() == this;
6399     },
6400
6401     /**
6402      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
6403      */
6404     hide : function(){
6405         this.pnode.removeClass("on");
6406         this.hideAction();
6407         this.fireEvent("deactivate", this.tabPanel, this);
6408     },
6409
6410     hideAction : function(){
6411         this.bodyEl.hide();
6412         this.bodyEl.setStyle("position", "absolute");
6413         this.bodyEl.setLeft("-20000px");
6414         this.bodyEl.setTop("-20000px");
6415     },
6416
6417     showAction : function(){
6418         this.bodyEl.setStyle("position", "relative");
6419         this.bodyEl.setTop("");
6420         this.bodyEl.setLeft("");
6421         this.bodyEl.show();
6422     },
6423
6424     /**
6425      * Set the tooltip for the tab.
6426      * @param {String} tooltip The tab's tooltip
6427      */
6428     setTooltip : function(text){
6429         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
6430             this.textEl.dom.qtip = text;
6431             this.textEl.dom.removeAttribute('title');
6432         }else{
6433             this.textEl.dom.title = text;
6434         }
6435     },
6436
6437     onTabClick : function(e){
6438         e.preventDefault();
6439         this.tabPanel.activate(this.id);
6440     },
6441
6442     onTabMouseDown : function(e){
6443         e.preventDefault();
6444         this.tabPanel.activate(this.id);
6445     },
6446
6447     getWidth : function(){
6448         return this.inner.getWidth();
6449     },
6450
6451     setWidth : function(width){
6452         var iwidth = width - this.pnode.getPadding("lr");
6453         this.inner.setWidth(iwidth);
6454         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
6455         this.pnode.setWidth(width);
6456     },
6457
6458     /**
6459      * Show or hide the tab
6460      * @param {Boolean} hidden True to hide or false to show.
6461      */
6462     setHidden : function(hidden){
6463         this.hidden = hidden;
6464         this.pnode.setStyle("display", hidden ? "none" : "");
6465     },
6466
6467     /**
6468      * Returns true if this tab is "hidden"
6469      * @return {Boolean}
6470      */
6471     isHidden : function(){
6472         return this.hidden;
6473     },
6474
6475     /**
6476      * Returns the text for this tab
6477      * @return {String}
6478      */
6479     getText : function(){
6480         return this.text;
6481     },
6482
6483     autoSize : function(){
6484         //this.el.beginMeasure();
6485         this.textEl.setWidth(1);
6486         /*
6487          *  #2804 [new] Tabs in Roojs
6488          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
6489          */
6490         this.setWidth(this.textEl.dom.scrollWidth+this.pnode.getPadding("lr")+this.inner.getPadding("lr") + 2);
6491         //this.el.endMeasure();
6492     },
6493
6494     /**
6495      * Sets the text for the tab (Note: this also sets the tooltip text)
6496      * @param {String} text The tab's text and tooltip
6497      */
6498     setText : function(text){
6499         this.text = text;
6500         this.textEl.update(text);
6501         this.setTooltip(text);
6502         if(!this.tabPanel.resizeTabs){
6503             this.autoSize();
6504         }
6505     },
6506     /**
6507      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
6508      */
6509     activate : function(){
6510         this.tabPanel.activate(this.id);
6511     },
6512
6513     /**
6514      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
6515      */
6516     disable : function(){
6517         if(this.tabPanel.active != this){
6518             this.disabled = true;
6519             this.pnode.addClass("disabled");
6520         }
6521     },
6522
6523     /**
6524      * Enables this TabPanelItem if it was previously disabled.
6525      */
6526     enable : function(){
6527         this.disabled = false;
6528         this.pnode.removeClass("disabled");
6529     },
6530
6531     /**
6532      * Sets the content for this TabPanelItem.
6533      * @param {String} content The content
6534      * @param {Boolean} loadScripts true to look for and load scripts
6535      */
6536     setContent : function(content, loadScripts){
6537         this.bodyEl.update(content, loadScripts);
6538     },
6539
6540     /**
6541      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
6542      * @return {Roo.UpdateManager} The UpdateManager
6543      */
6544     getUpdateManager : function(){
6545         return this.bodyEl.getUpdateManager();
6546     },
6547
6548     /**
6549      * Set a URL to be used to load the content for this TabPanelItem.
6550      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
6551      * @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)
6552      * @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)
6553      * @return {Roo.UpdateManager} The UpdateManager
6554      */
6555     setUrl : function(url, params, loadOnce){
6556         if(this.refreshDelegate){
6557             this.un('activate', this.refreshDelegate);
6558         }
6559         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
6560         this.on("activate", this.refreshDelegate);
6561         return this.bodyEl.getUpdateManager();
6562     },
6563
6564     /** @private */
6565     _handleRefresh : function(url, params, loadOnce){
6566         if(!loadOnce || !this.loaded){
6567             var updater = this.bodyEl.getUpdateManager();
6568             updater.update(url, params, this._setLoaded.createDelegate(this));
6569         }
6570     },
6571
6572     /**
6573      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
6574      *   Will fail silently if the setUrl method has not been called.
6575      *   This does not activate the panel, just updates its content.
6576      */
6577     refresh : function(){
6578         if(this.refreshDelegate){
6579            this.loaded = false;
6580            this.refreshDelegate();
6581         }
6582     },
6583
6584     /** @private */
6585     _setLoaded : function(){
6586         this.loaded = true;
6587     },
6588
6589     /** @private */
6590     closeClick : function(e){
6591         var o = {};
6592         e.stopEvent();
6593         this.fireEvent("beforeclose", this, o);
6594         if(o.cancel !== true){
6595             this.tabPanel.removeTab(this.id);
6596         }
6597     },
6598     /**
6599      * The text displayed in the tooltip for the close icon.
6600      * @type String
6601      */
6602     closeText : "Close this tab"
6603 });
6604
6605 /** @private */
6606 Roo.TabPanel.prototype.createStrip = function(container){
6607     var strip = document.createElement("div");
6608     strip.className = "x-tabs-wrap";
6609     container.appendChild(strip);
6610     return strip;
6611 };
6612 /** @private */
6613 Roo.TabPanel.prototype.createStripList = function(strip){
6614     // div wrapper for retard IE
6615     // returns the "tr" element.
6616     strip.innerHTML = '<div class="x-tabs-strip-wrap">'+
6617         '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
6618         '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
6619     return strip.firstChild.firstChild.firstChild.firstChild;
6620 };
6621 /** @private */
6622 Roo.TabPanel.prototype.createBody = function(container){
6623     var body = document.createElement("div");
6624     Roo.id(body, "tab-body");
6625     Roo.fly(body).addClass("x-tabs-body");
6626     container.appendChild(body);
6627     return body;
6628 };
6629 /** @private */
6630 Roo.TabPanel.prototype.createItemBody = function(bodyEl, id){
6631     var body = Roo.getDom(id);
6632     if(!body){
6633         body = document.createElement("div");
6634         body.id = id;
6635     }
6636     Roo.fly(body).addClass("x-tabs-item-body");
6637     bodyEl.insertBefore(body, bodyEl.firstChild);
6638     return body;
6639 };
6640 /** @private */
6641 Roo.TabPanel.prototype.createStripElements = function(stripEl, text, closable){
6642     var td = document.createElement("td");
6643     stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
6644     //stripEl.appendChild(td);
6645     if(closable){
6646         td.className = "x-tabs-closable";
6647         if(!this.closeTpl){
6648             this.closeTpl = new Roo.Template(
6649                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
6650                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
6651                '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
6652             );
6653         }
6654         var el = this.closeTpl.overwrite(td, {"text": text});
6655         var close = el.getElementsByTagName("div")[0];
6656         var inner = el.getElementsByTagName("em")[0];
6657         return {"el": el, "close": close, "inner": inner};
6658     } else {
6659         if(!this.tabTpl){
6660             this.tabTpl = new Roo.Template(
6661                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
6662                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
6663             );
6664         }
6665         var el = this.tabTpl.overwrite(td, {"text": text});
6666         var inner = el.getElementsByTagName("em")[0];
6667         return {"el": el, "inner": inner};
6668     }
6669 };/*
6670  * Based on:
6671  * Ext JS Library 1.1.1
6672  * Copyright(c) 2006-2007, Ext JS, LLC.
6673  *
6674  * Originally Released Under LGPL - original licence link has changed is not relivant.
6675  *
6676  * Fork - LGPL
6677  * <script type="text/javascript">
6678  */
6679
6680 /**
6681  * @class Roo.Button
6682  * @extends Roo.util.Observable
6683  * Simple Button class
6684  * @cfg {String} text The button text
6685  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
6686  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
6687  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event)
6688  * @cfg {Object} scope The scope of the handler
6689  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width)
6690  * @cfg {String/Object} tooltip The tooltip for the button - can be a string or QuickTips config object
6691  * @cfg {Boolean} hidden True to start hidden (defaults to false)
6692  * @cfg {Boolean} disabled True to start disabled (defaults to false)
6693  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
6694  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed, only
6695    applies if enableToggle = true)
6696  * @cfg {String/HTMLElement/Element} renderTo The element to append the button to
6697  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
6698   an {@link Roo.util.ClickRepeater} config object (defaults to false).
6699  * @constructor
6700  * Create a new button
6701  * @param {Object} config The config object
6702  */
6703 Roo.Button = function(renderTo, config)
6704 {
6705     if (!config) {
6706         config = renderTo;
6707         renderTo = config.renderTo || false;
6708     }
6709     
6710     Roo.apply(this, config);
6711     this.addEvents({
6712         /**
6713              * @event click
6714              * Fires when this button is clicked
6715              * @param {Button} this
6716              * @param {EventObject} e The click event
6717              */
6718             "click" : true,
6719         /**
6720              * @event toggle
6721              * Fires when the "pressed" state of this button changes (only if enableToggle = true)
6722              * @param {Button} this
6723              * @param {Boolean} pressed
6724              */
6725             "toggle" : true,
6726         /**
6727              * @event mouseover
6728              * Fires when the mouse hovers over the button
6729              * @param {Button} this
6730              * @param {Event} e The event object
6731              */
6732         'mouseover' : true,
6733         /**
6734              * @event mouseout
6735              * Fires when the mouse exits the button
6736              * @param {Button} this
6737              * @param {Event} e The event object
6738              */
6739         'mouseout': true,
6740          /**
6741              * @event render
6742              * Fires when the button is rendered
6743              * @param {Button} this
6744              */
6745         'render': true
6746     });
6747     if(this.menu){
6748         this.menu = Roo.menu.MenuMgr.get(this.menu);
6749     }
6750     // register listeners first!!  - so render can be captured..
6751     Roo.util.Observable.call(this);
6752     if(renderTo){
6753         this.render(renderTo);
6754     }
6755     
6756   
6757 };
6758
6759 Roo.extend(Roo.Button, Roo.util.Observable, {
6760     /**
6761      * 
6762      */
6763     
6764     /**
6765      * Read-only. True if this button is hidden
6766      * @type Boolean
6767      */
6768     hidden : false,
6769     /**
6770      * Read-only. True if this button is disabled
6771      * @type Boolean
6772      */
6773     disabled : false,
6774     /**
6775      * Read-only. True if this button is pressed (only if enableToggle = true)
6776      * @type Boolean
6777      */
6778     pressed : false,
6779
6780     /**
6781      * @cfg {Number} tabIndex 
6782      * The DOM tabIndex for this button (defaults to undefined)
6783      */
6784     tabIndex : undefined,
6785
6786     /**
6787      * @cfg {Boolean} enableToggle
6788      * True to enable pressed/not pressed toggling (defaults to false)
6789      */
6790     enableToggle: false,
6791     /**
6792      * @cfg {Mixed} menu
6793      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
6794      */
6795     menu : undefined,
6796     /**
6797      * @cfg {String} menuAlign
6798      * The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').
6799      */
6800     menuAlign : "tl-bl?",
6801
6802     /**
6803      * @cfg {String} iconCls
6804      * A css class which sets a background image to be used as the icon for this button (defaults to undefined).
6805      */
6806     iconCls : undefined,
6807     /**
6808      * @cfg {String} type
6809      * The button's type, corresponding to the DOM input element type attribute.  Either "submit," "reset" or "button" (default).
6810      */
6811     type : 'button',
6812
6813     // private
6814     menuClassTarget: 'tr',
6815
6816     /**
6817      * @cfg {String} clickEvent
6818      * The type of event to map to the button's event handler (defaults to 'click')
6819      */
6820     clickEvent : 'click',
6821
6822     /**
6823      * @cfg {Boolean} handleMouseEvents
6824      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
6825      */
6826     handleMouseEvents : true,
6827
6828     /**
6829      * @cfg {String} tooltipType
6830      * The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
6831      */
6832     tooltipType : 'qtip',
6833
6834     /**
6835      * @cfg {String} cls
6836      * A CSS class to apply to the button's main element.
6837      */
6838     
6839     /**
6840      * @cfg {Roo.Template} template (Optional)
6841      * An {@link Roo.Template} with which to create the Button's main element. This Template must
6842      * contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
6843      * require code modifications if required elements (e.g. a button) aren't present.
6844      */
6845
6846     // private
6847     render : function(renderTo){
6848         var btn;
6849         if(this.hideParent){
6850             this.parentEl = Roo.get(renderTo);
6851         }
6852         if(!this.dhconfig){
6853             if(!this.template){
6854                 if(!Roo.Button.buttonTemplate){
6855                     // hideous table template
6856                     Roo.Button.buttonTemplate = new Roo.Template(
6857                         '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
6858                         '<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>',
6859                         "</tr></tbody></table>");
6860                 }
6861                 this.template = Roo.Button.buttonTemplate;
6862             }
6863             btn = this.template.append(renderTo, [this.text || '&#160;', this.type], true);
6864             var btnEl = btn.child("button:first");
6865             btnEl.on('focus', this.onFocus, this);
6866             btnEl.on('blur', this.onBlur, this);
6867             if(this.cls){
6868                 btn.addClass(this.cls);
6869             }
6870             if(this.icon){
6871                 btnEl.setStyle('background-image', 'url(' +this.icon +')');
6872             }
6873             if(this.iconCls){
6874                 btnEl.addClass(this.iconCls);
6875                 if(!this.cls){
6876                     btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
6877                 }
6878             }
6879             if(this.tabIndex !== undefined){
6880                 btnEl.dom.tabIndex = this.tabIndex;
6881             }
6882             if(this.tooltip){
6883                 if(typeof this.tooltip == 'object'){
6884                     Roo.QuickTips.tips(Roo.apply({
6885                           target: btnEl.id
6886                     }, this.tooltip));
6887                 } else {
6888                     btnEl.dom[this.tooltipType] = this.tooltip;
6889                 }
6890             }
6891         }else{
6892             btn = Roo.DomHelper.append(Roo.get(renderTo).dom, this.dhconfig, true);
6893         }
6894         this.el = btn;
6895         if(this.id){
6896             this.el.dom.id = this.el.id = this.id;
6897         }
6898         if(this.menu){
6899             this.el.child(this.menuClassTarget).addClass("x-btn-with-menu");
6900             this.menu.on("show", this.onMenuShow, this);
6901             this.menu.on("hide", this.onMenuHide, this);
6902         }
6903         btn.addClass("x-btn");
6904         if(Roo.isIE && !Roo.isIE7){
6905             this.autoWidth.defer(1, this);
6906         }else{
6907             this.autoWidth();
6908         }
6909         if(this.handleMouseEvents){
6910             btn.on("mouseover", this.onMouseOver, this);
6911             btn.on("mouseout", this.onMouseOut, this);
6912             btn.on("mousedown", this.onMouseDown, this);
6913         }
6914         btn.on(this.clickEvent, this.onClick, this);
6915         //btn.on("mouseup", this.onMouseUp, this);
6916         if(this.hidden){
6917             this.hide();
6918         }
6919         if(this.disabled){
6920             this.disable();
6921         }
6922         Roo.ButtonToggleMgr.register(this);
6923         if(this.pressed){
6924             this.el.addClass("x-btn-pressed");
6925         }
6926         if(this.repeat){
6927             var repeater = new Roo.util.ClickRepeater(btn,
6928                 typeof this.repeat == "object" ? this.repeat : {}
6929             );
6930             repeater.on("click", this.onClick,  this);
6931         }
6932         
6933         this.fireEvent('render', this);
6934         
6935     },
6936     /**
6937      * Returns the button's underlying element
6938      * @return {Roo.Element} The element
6939      */
6940     getEl : function(){
6941         return this.el;  
6942     },
6943     
6944     /**
6945      * Destroys this Button and removes any listeners.
6946      */
6947     destroy : function(){
6948         Roo.ButtonToggleMgr.unregister(this);
6949         this.el.removeAllListeners();
6950         this.purgeListeners();
6951         this.el.remove();
6952     },
6953
6954     // private
6955     autoWidth : function(){
6956         if(this.el){
6957             this.el.setWidth("auto");
6958             if(Roo.isIE7 && Roo.isStrict){
6959                 var ib = this.el.child('button');
6960                 if(ib && ib.getWidth() > 20){
6961                     ib.clip();
6962                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
6963                 }
6964             }
6965             if(this.minWidth){
6966                 if(this.hidden){
6967                     this.el.beginMeasure();
6968                 }
6969                 if(this.el.getWidth() < this.minWidth){
6970                     this.el.setWidth(this.minWidth);
6971                 }
6972                 if(this.hidden){
6973                     this.el.endMeasure();
6974                 }
6975             }
6976         }
6977     },
6978
6979     /**
6980      * Assigns this button's click handler
6981      * @param {Function} handler The function to call when the button is clicked
6982      * @param {Object} scope (optional) Scope for the function passed in
6983      */
6984     setHandler : function(handler, scope){
6985         this.handler = handler;
6986         this.scope = scope;  
6987     },
6988     
6989     /**
6990      * Sets this button's text
6991      * @param {String} text The button text
6992      */
6993     setText : function(text){
6994         this.text = text;
6995         if(this.el){
6996             this.el.child("td.x-btn-center button.x-btn-text").update(text);
6997         }
6998         this.autoWidth();
6999     },
7000     
7001     /**
7002      * Gets the text for this button
7003      * @return {String} The button text
7004      */
7005     getText : function(){
7006         return this.text;  
7007     },
7008     
7009     /**
7010      * Show this button
7011      */
7012     show: function(){
7013         this.hidden = false;
7014         if(this.el){
7015             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "");
7016         }
7017     },
7018     
7019     /**
7020      * Hide this button
7021      */
7022     hide: function(){
7023         this.hidden = true;
7024         if(this.el){
7025             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "none");
7026         }
7027     },
7028     
7029     /**
7030      * Convenience function for boolean show/hide
7031      * @param {Boolean} visible True to show, false to hide
7032      */
7033     setVisible: function(visible){
7034         if(visible) {
7035             this.show();
7036         }else{
7037             this.hide();
7038         }
7039     },
7040     
7041     /**
7042      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
7043      * @param {Boolean} state (optional) Force a particular state
7044      */
7045     toggle : function(state){
7046         state = state === undefined ? !this.pressed : state;
7047         if(state != this.pressed){
7048             if(state){
7049                 this.el.addClass("x-btn-pressed");
7050                 this.pressed = true;
7051                 this.fireEvent("toggle", this, true);
7052             }else{
7053                 this.el.removeClass("x-btn-pressed");
7054                 this.pressed = false;
7055                 this.fireEvent("toggle", this, false);
7056             }
7057             if(this.toggleHandler){
7058                 this.toggleHandler.call(this.scope || this, this, state);
7059             }
7060         }
7061     },
7062     
7063     /**
7064      * Focus the button
7065      */
7066     focus : function(){
7067         this.el.child('button:first').focus();
7068     },
7069     
7070     /**
7071      * Disable this button
7072      */
7073     disable : function(){
7074         if(this.el){
7075             this.el.addClass("x-btn-disabled");
7076         }
7077         this.disabled = true;
7078     },
7079     
7080     /**
7081      * Enable this button
7082      */
7083     enable : function(){
7084         if(this.el){
7085             this.el.removeClass("x-btn-disabled");
7086         }
7087         this.disabled = false;
7088     },
7089
7090     /**
7091      * Convenience function for boolean enable/disable
7092      * @param {Boolean} enabled True to enable, false to disable
7093      */
7094     setDisabled : function(v){
7095         this[v !== true ? "enable" : "disable"]();
7096     },
7097
7098     // private
7099     onClick : function(e)
7100     {
7101         if(e){
7102             e.preventDefault();
7103         }
7104         if(e.button != 0){
7105             return;
7106         }
7107         if(!this.disabled){
7108             if(this.enableToggle){
7109                 this.toggle();
7110             }
7111             if(this.menu && !this.menu.isVisible()){
7112                 this.menu.show(this.el, this.menuAlign);
7113             }
7114             this.fireEvent("click", this, e);
7115             if(this.handler){
7116                 this.el.removeClass("x-btn-over");
7117                 this.handler.call(this.scope || this, this, e);
7118             }
7119         }
7120     },
7121     // private
7122     onMouseOver : function(e){
7123         if(!this.disabled){
7124             this.el.addClass("x-btn-over");
7125             this.fireEvent('mouseover', this, e);
7126         }
7127     },
7128     // private
7129     onMouseOut : function(e){
7130         if(!e.within(this.el,  true)){
7131             this.el.removeClass("x-btn-over");
7132             this.fireEvent('mouseout', this, e);
7133         }
7134     },
7135     // private
7136     onFocus : function(e){
7137         if(!this.disabled){
7138             this.el.addClass("x-btn-focus");
7139         }
7140     },
7141     // private
7142     onBlur : function(e){
7143         this.el.removeClass("x-btn-focus");
7144     },
7145     // private
7146     onMouseDown : function(e){
7147         if(!this.disabled && e.button == 0){
7148             this.el.addClass("x-btn-click");
7149             Roo.get(document).on('mouseup', this.onMouseUp, this);
7150         }
7151     },
7152     // private
7153     onMouseUp : function(e){
7154         if(e.button == 0){
7155             this.el.removeClass("x-btn-click");
7156             Roo.get(document).un('mouseup', this.onMouseUp, this);
7157         }
7158     },
7159     // private
7160     onMenuShow : function(e){
7161         this.el.addClass("x-btn-menu-active");
7162     },
7163     // private
7164     onMenuHide : function(e){
7165         this.el.removeClass("x-btn-menu-active");
7166     }   
7167 });
7168
7169 // Private utility class used by Button
7170 Roo.ButtonToggleMgr = function(){
7171    var groups = {};
7172    
7173    function toggleGroup(btn, state){
7174        if(state){
7175            var g = groups[btn.toggleGroup];
7176            for(var i = 0, l = g.length; i < l; i++){
7177                if(g[i] != btn){
7178                    g[i].toggle(false);
7179                }
7180            }
7181        }
7182    }
7183    
7184    return {
7185        register : function(btn){
7186            if(!btn.toggleGroup){
7187                return;
7188            }
7189            var g = groups[btn.toggleGroup];
7190            if(!g){
7191                g = groups[btn.toggleGroup] = [];
7192            }
7193            g.push(btn);
7194            btn.on("toggle", toggleGroup);
7195        },
7196        
7197        unregister : function(btn){
7198            if(!btn.toggleGroup){
7199                return;
7200            }
7201            var g = groups[btn.toggleGroup];
7202            if(g){
7203                g.remove(btn);
7204                btn.un("toggle", toggleGroup);
7205            }
7206        }
7207    };
7208 }();/*
7209  * Based on:
7210  * Ext JS Library 1.1.1
7211  * Copyright(c) 2006-2007, Ext JS, LLC.
7212  *
7213  * Originally Released Under LGPL - original licence link has changed is not relivant.
7214  *
7215  * Fork - LGPL
7216  * <script type="text/javascript">
7217  */
7218  
7219 /**
7220  * @class Roo.SplitButton
7221  * @extends Roo.Button
7222  * A split button that provides a built-in dropdown arrow that can fire an event separately from the default
7223  * click event of the button.  Typically this would be used to display a dropdown menu that provides additional
7224  * options to the primary button action, but any custom handler can provide the arrowclick implementation.
7225  * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event)
7226  * @cfg {String} arrowTooltip The title attribute of the arrow
7227  * @constructor
7228  * Create a new menu button
7229  * @param {String/HTMLElement/Element} renderTo The element to append the button to
7230  * @param {Object} config The config object
7231  */
7232 Roo.SplitButton = function(renderTo, config){
7233     Roo.SplitButton.superclass.constructor.call(this, renderTo, config);
7234     /**
7235      * @event arrowclick
7236      * Fires when this button's arrow is clicked
7237      * @param {SplitButton} this
7238      * @param {EventObject} e The click event
7239      */
7240     this.addEvents({"arrowclick":true});
7241 };
7242
7243 Roo.extend(Roo.SplitButton, Roo.Button, {
7244     render : function(renderTo){
7245         // this is one sweet looking template!
7246         var tpl = new Roo.Template(
7247             '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>',
7248             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>',
7249             '<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>',
7250             "</tbody></table></td><td>",
7251             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>',
7252             '<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>',
7253             "</tbody></table></td></tr></table>"
7254         );
7255         var btn = tpl.append(renderTo, [this.text, this.type], true);
7256         var btnEl = btn.child("button");
7257         if(this.cls){
7258             btn.addClass(this.cls);
7259         }
7260         if(this.icon){
7261             btnEl.setStyle('background-image', 'url(' +this.icon +')');
7262         }
7263         if(this.iconCls){
7264             btnEl.addClass(this.iconCls);
7265             if(!this.cls){
7266                 btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
7267             }
7268         }
7269         this.el = btn;
7270         if(this.handleMouseEvents){
7271             btn.on("mouseover", this.onMouseOver, this);
7272             btn.on("mouseout", this.onMouseOut, this);
7273             btn.on("mousedown", this.onMouseDown, this);
7274             btn.on("mouseup", this.onMouseUp, this);
7275         }
7276         btn.on(this.clickEvent, this.onClick, this);
7277         if(this.tooltip){
7278             if(typeof this.tooltip == 'object'){
7279                 Roo.QuickTips.tips(Roo.apply({
7280                       target: btnEl.id
7281                 }, this.tooltip));
7282             } else {
7283                 btnEl.dom[this.tooltipType] = this.tooltip;
7284             }
7285         }
7286         if(this.arrowTooltip){
7287             btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip;
7288         }
7289         if(this.hidden){
7290             this.hide();
7291         }
7292         if(this.disabled){
7293             this.disable();
7294         }
7295         if(this.pressed){
7296             this.el.addClass("x-btn-pressed");
7297         }
7298         if(Roo.isIE && !Roo.isIE7){
7299             this.autoWidth.defer(1, this);
7300         }else{
7301             this.autoWidth();
7302         }
7303         if(this.menu){
7304             this.menu.on("show", this.onMenuShow, this);
7305             this.menu.on("hide", this.onMenuHide, this);
7306         }
7307         this.fireEvent('render', this);
7308     },
7309
7310     // private
7311     autoWidth : function(){
7312         if(this.el){
7313             var tbl = this.el.child("table:first");
7314             var tbl2 = this.el.child("table:last");
7315             this.el.setWidth("auto");
7316             tbl.setWidth("auto");
7317             if(Roo.isIE7 && Roo.isStrict){
7318                 var ib = this.el.child('button:first');
7319                 if(ib && ib.getWidth() > 20){
7320                     ib.clip();
7321                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
7322                 }
7323             }
7324             if(this.minWidth){
7325                 if(this.hidden){
7326                     this.el.beginMeasure();
7327                 }
7328                 if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){
7329                     tbl.setWidth(this.minWidth-tbl2.getWidth());
7330                 }
7331                 if(this.hidden){
7332                     this.el.endMeasure();
7333                 }
7334             }
7335             this.el.setWidth(tbl.getWidth()+tbl2.getWidth());
7336         } 
7337     },
7338     /**
7339      * Sets this button's click handler
7340      * @param {Function} handler The function to call when the button is clicked
7341      * @param {Object} scope (optional) Scope for the function passed above
7342      */
7343     setHandler : function(handler, scope){
7344         this.handler = handler;
7345         this.scope = scope;  
7346     },
7347     
7348     /**
7349      * Sets this button's arrow click handler
7350      * @param {Function} handler The function to call when the arrow is clicked
7351      * @param {Object} scope (optional) Scope for the function passed above
7352      */
7353     setArrowHandler : function(handler, scope){
7354         this.arrowHandler = handler;
7355         this.scope = scope;  
7356     },
7357     
7358     /**
7359      * Focus the button
7360      */
7361     focus : function(){
7362         if(this.el){
7363             this.el.child("button:first").focus();
7364         }
7365     },
7366
7367     // private
7368     onClick : function(e){
7369         e.preventDefault();
7370         if(!this.disabled){
7371             if(e.getTarget(".x-btn-menu-arrow-wrap")){
7372                 if(this.menu && !this.menu.isVisible()){
7373                     this.menu.show(this.el, this.menuAlign);
7374                 }
7375                 this.fireEvent("arrowclick", this, e);
7376                 if(this.arrowHandler){
7377                     this.arrowHandler.call(this.scope || this, this, e);
7378                 }
7379             }else{
7380                 this.fireEvent("click", this, e);
7381                 if(this.handler){
7382                     this.handler.call(this.scope || this, this, e);
7383                 }
7384             }
7385         }
7386     },
7387     // private
7388     onMouseDown : function(e){
7389         if(!this.disabled){
7390             Roo.fly(e.getTarget("table")).addClass("x-btn-click");
7391         }
7392     },
7393     // private
7394     onMouseUp : function(e){
7395         Roo.fly(e.getTarget("table")).removeClass("x-btn-click");
7396     }   
7397 });
7398
7399
7400 // backwards compat
7401 Roo.MenuButton = Roo.SplitButton;/*
7402  * Based on:
7403  * Ext JS Library 1.1.1
7404  * Copyright(c) 2006-2007, Ext JS, LLC.
7405  *
7406  * Originally Released Under LGPL - original licence link has changed is not relivant.
7407  *
7408  * Fork - LGPL
7409  * <script type="text/javascript">
7410  */
7411
7412 /**
7413  * @class Roo.Toolbar
7414  * Basic Toolbar class.
7415  * @constructor
7416  * Creates a new Toolbar
7417  * @param {Object} container The config object
7418  */ 
7419 Roo.Toolbar = function(container, buttons, config)
7420 {
7421     /// old consturctor format still supported..
7422     if(container instanceof Array){ // omit the container for later rendering
7423         buttons = container;
7424         config = buttons;
7425         container = null;
7426     }
7427     if (typeof(container) == 'object' && container.xtype) {
7428         config = container;
7429         container = config.container;
7430         buttons = config.buttons || []; // not really - use items!!
7431     }
7432     var xitems = [];
7433     if (config && config.items) {
7434         xitems = config.items;
7435         delete config.items;
7436     }
7437     Roo.apply(this, config);
7438     this.buttons = buttons;
7439     
7440     if(container){
7441         this.render(container);
7442     }
7443     this.xitems = xitems;
7444     Roo.each(xitems, function(b) {
7445         this.add(b);
7446     }, this);
7447     
7448 };
7449
7450 Roo.Toolbar.prototype = {
7451     /**
7452      * @cfg {Array} items
7453      * array of button configs or elements to add (will be converted to a MixedCollection)
7454      */
7455     
7456     /**
7457      * @cfg {String/HTMLElement/Element} container
7458      * The id or element that will contain the toolbar
7459      */
7460     // private
7461     render : function(ct){
7462         this.el = Roo.get(ct);
7463         if(this.cls){
7464             this.el.addClass(this.cls);
7465         }
7466         // using a table allows for vertical alignment
7467         // 100% width is needed by Safari...
7468         this.el.update('<div class="x-toolbar x-small-editor"><table cellspacing="0"><tr></tr></table></div>');
7469         this.tr = this.el.child("tr", true);
7470         var autoId = 0;
7471         this.items = new Roo.util.MixedCollection(false, function(o){
7472             return o.id || ("item" + (++autoId));
7473         });
7474         if(this.buttons){
7475             this.add.apply(this, this.buttons);
7476             delete this.buttons;
7477         }
7478     },
7479
7480     /**
7481      * Adds element(s) to the toolbar -- this function takes a variable number of 
7482      * arguments of mixed type and adds them to the toolbar.
7483      * @param {Mixed} arg1 The following types of arguments are all valid:<br />
7484      * <ul>
7485      * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li>
7486      * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li>
7487      * <li>Field: Any form field (equivalent to {@link #addField})</li>
7488      * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li>
7489      * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}).
7490      * Note that there are a few special strings that are treated differently as explained nRoo.</li>
7491      * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li>
7492      * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li>
7493      * <li>'->': Creates a fill element (equivalent to {@link #addFill})</li>
7494      * </ul>
7495      * @param {Mixed} arg2
7496      * @param {Mixed} etc.
7497      */
7498     add : function(){
7499         var a = arguments, l = a.length;
7500         for(var i = 0; i < l; i++){
7501             this._add(a[i]);
7502         }
7503     },
7504     // private..
7505     _add : function(el) {
7506         
7507         if (el.xtype) {
7508             el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.form : Roo.Toolbar);
7509         }
7510         
7511         if (el.applyTo){ // some kind of form field
7512             return this.addField(el);
7513         } 
7514         if (el.render){ // some kind of Toolbar.Item
7515             return this.addItem(el);
7516         }
7517         if (typeof el == "string"){ // string
7518             if(el == "separator" || el == "-"){
7519                 return this.addSeparator();
7520             }
7521             if (el == " "){
7522                 return this.addSpacer();
7523             }
7524             if(el == "->"){
7525                 return this.addFill();
7526             }
7527             return this.addText(el);
7528             
7529         }
7530         if(el.tagName){ // element
7531             return this.addElement(el);
7532         }
7533         if(typeof el == "object"){ // must be button config?
7534             return this.addButton(el);
7535         }
7536         // and now what?!?!
7537         return false;
7538         
7539     },
7540     
7541     /**
7542      * Add an Xtype element
7543      * @param {Object} xtype Xtype Object
7544      * @return {Object} created Object
7545      */
7546     addxtype : function(e){
7547         return this.add(e);  
7548     },
7549     
7550     /**
7551      * Returns the Element for this toolbar.
7552      * @return {Roo.Element}
7553      */
7554     getEl : function(){
7555         return this.el;  
7556     },
7557     
7558     /**
7559      * Adds a separator
7560      * @return {Roo.Toolbar.Item} The separator item
7561      */
7562     addSeparator : function(){
7563         return this.addItem(new Roo.Toolbar.Separator());
7564     },
7565
7566     /**
7567      * Adds a spacer element
7568      * @return {Roo.Toolbar.Spacer} The spacer item
7569      */
7570     addSpacer : function(){
7571         return this.addItem(new Roo.Toolbar.Spacer());
7572     },
7573
7574     /**
7575      * Adds a fill element that forces subsequent additions to the right side of the toolbar
7576      * @return {Roo.Toolbar.Fill} The fill item
7577      */
7578     addFill : function(){
7579         return this.addItem(new Roo.Toolbar.Fill());
7580     },
7581
7582     /**
7583      * Adds any standard HTML element to the toolbar
7584      * @param {String/HTMLElement/Element} el The element or id of the element to add
7585      * @return {Roo.Toolbar.Item} The element's item
7586      */
7587     addElement : function(el){
7588         return this.addItem(new Roo.Toolbar.Item(el));
7589     },
7590     /**
7591      * Collection of items on the toolbar.. (only Toolbar Items, so use fields to retrieve fields)
7592      * @type Roo.util.MixedCollection  
7593      */
7594     items : false,
7595      
7596     /**
7597      * Adds any Toolbar.Item or subclass
7598      * @param {Roo.Toolbar.Item} item
7599      * @return {Roo.Toolbar.Item} The item
7600      */
7601     addItem : function(item){
7602         var td = this.nextBlock();
7603         item.render(td);
7604         this.items.add(item);
7605         return item;
7606     },
7607     
7608     /**
7609      * Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config.
7610      * @param {Object/Array} config A button config or array of configs
7611      * @return {Roo.Toolbar.Button/Array}
7612      */
7613     addButton : function(config){
7614         if(config instanceof Array){
7615             var buttons = [];
7616             for(var i = 0, len = config.length; i < len; i++) {
7617                 buttons.push(this.addButton(config[i]));
7618             }
7619             return buttons;
7620         }
7621         var b = config;
7622         if(!(config instanceof Roo.Toolbar.Button)){
7623             b = config.split ?
7624                 new Roo.Toolbar.SplitButton(config) :
7625                 new Roo.Toolbar.Button(config);
7626         }
7627         var td = this.nextBlock();
7628         b.render(td);
7629         this.items.add(b);
7630         return b;
7631     },
7632     
7633     /**
7634      * Adds text to the toolbar
7635      * @param {String} text The text to add
7636      * @return {Roo.Toolbar.Item} The element's item
7637      */
7638     addText : function(text){
7639         return this.addItem(new Roo.Toolbar.TextItem(text));
7640     },
7641     
7642     /**
7643      * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index.
7644      * @param {Number} index The index where the item is to be inserted
7645      * @param {Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array)} item The button, or button config object to be inserted.
7646      * @return {Roo.Toolbar.Button/Item}
7647      */
7648     insertButton : function(index, item){
7649         if(item instanceof Array){
7650             var buttons = [];
7651             for(var i = 0, len = item.length; i < len; i++) {
7652                buttons.push(this.insertButton(index + i, item[i]));
7653             }
7654             return buttons;
7655         }
7656         if (!(item instanceof Roo.Toolbar.Button)){
7657            item = new Roo.Toolbar.Button(item);
7658         }
7659         var td = document.createElement("td");
7660         this.tr.insertBefore(td, this.tr.childNodes[index]);
7661         item.render(td);
7662         this.items.insert(index, item);
7663         return item;
7664     },
7665     
7666     /**
7667      * Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config.
7668      * @param {Object} config
7669      * @return {Roo.Toolbar.Item} The element's item
7670      */
7671     addDom : function(config, returnEl){
7672         var td = this.nextBlock();
7673         Roo.DomHelper.overwrite(td, config);
7674         var ti = new Roo.Toolbar.Item(td.firstChild);
7675         ti.render(td);
7676         this.items.add(ti);
7677         return ti;
7678     },
7679
7680     /**
7681      * Collection of fields on the toolbar.. usefull for quering (value is false if there are no fields)
7682      * @type Roo.util.MixedCollection  
7683      */
7684     fields : false,
7685     
7686     /**
7687      * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).
7688      * Note: the field should not have been rendered yet. For a field that has already been
7689      * rendered, use {@link #addElement}.
7690      * @param {Roo.form.Field} field
7691      * @return {Roo.ToolbarItem}
7692      */
7693      
7694       
7695     addField : function(field) {
7696         if (!this.fields) {
7697             var autoId = 0;
7698             this.fields = new Roo.util.MixedCollection(false, function(o){
7699                 return o.id || ("item" + (++autoId));
7700             });
7701
7702         }
7703         
7704         var td = this.nextBlock();
7705         field.render(td);
7706         var ti = new Roo.Toolbar.Item(td.firstChild);
7707         ti.render(td);
7708         this.items.add(ti);
7709         this.fields.add(field);
7710         return ti;
7711     },
7712     /**
7713      * Hide the toolbar
7714      * @method hide
7715      */
7716      
7717       
7718     hide : function()
7719     {
7720         this.el.child('div').setVisibilityMode(Roo.Element.DISPLAY);
7721         this.el.child('div').hide();
7722     },
7723     /**
7724      * Show the toolbar
7725      * @method show
7726      */
7727     show : function()
7728     {
7729         this.el.child('div').show();
7730     },
7731       
7732     // private
7733     nextBlock : function(){
7734         var td = document.createElement("td");
7735         this.tr.appendChild(td);
7736         return td;
7737     },
7738
7739     // private
7740     destroy : function(){
7741         if(this.items){ // rendered?
7742             Roo.destroy.apply(Roo, this.items.items);
7743         }
7744         if(this.fields){ // rendered?
7745             Roo.destroy.apply(Roo, this.fields.items);
7746         }
7747         Roo.Element.uncache(this.el, this.tr);
7748     }
7749 };
7750
7751 /**
7752  * @class Roo.Toolbar.Item
7753  * The base class that other classes should extend in order to get some basic common toolbar item functionality.
7754  * @constructor
7755  * Creates a new Item
7756  * @param {HTMLElement} el 
7757  */
7758 Roo.Toolbar.Item = function(el){
7759     var cfg = {};
7760     if (typeof (el.xtype) != 'undefined') {
7761         cfg = el;
7762         el = cfg.el;
7763     }
7764     
7765     this.el = Roo.getDom(el);
7766     this.id = Roo.id(this.el);
7767     this.hidden = false;
7768     
7769     this.addEvents({
7770          /**
7771              * @event render
7772              * Fires when the button is rendered
7773              * @param {Button} this
7774              */
7775         'render': true
7776     });
7777     Roo.Toolbar.Item.superclass.constructor.call(this,cfg);
7778 };
7779 Roo.extend(Roo.Toolbar.Item, Roo.util.Observable, {
7780 //Roo.Toolbar.Item.prototype = {
7781     
7782     /**
7783      * Get this item's HTML Element
7784      * @return {HTMLElement}
7785      */
7786     getEl : function(){
7787        return this.el;  
7788     },
7789
7790     // private
7791     render : function(td){
7792         
7793          this.td = td;
7794         td.appendChild(this.el);
7795         
7796         this.fireEvent('render', this);
7797     },
7798     
7799     /**
7800      * Removes and destroys this item.
7801      */
7802     destroy : function(){
7803         this.td.parentNode.removeChild(this.td);
7804     },
7805     
7806     /**
7807      * Shows this item.
7808      */
7809     show: function(){
7810         this.hidden = false;
7811         this.td.style.display = "";
7812     },
7813     
7814     /**
7815      * Hides this item.
7816      */
7817     hide: function(){
7818         this.hidden = true;
7819         this.td.style.display = "none";
7820     },
7821     
7822     /**
7823      * Convenience function for boolean show/hide.
7824      * @param {Boolean} visible true to show/false to hide
7825      */
7826     setVisible: function(visible){
7827         if(visible) {
7828             this.show();
7829         }else{
7830             this.hide();
7831         }
7832     },
7833     
7834     /**
7835      * Try to focus this item.
7836      */
7837     focus : function(){
7838         Roo.fly(this.el).focus();
7839     },
7840     
7841     /**
7842      * Disables this item.
7843      */
7844     disable : function(){
7845         Roo.fly(this.td).addClass("x-item-disabled");
7846         this.disabled = true;
7847         this.el.disabled = true;
7848     },
7849     
7850     /**
7851      * Enables this item.
7852      */
7853     enable : function(){
7854         Roo.fly(this.td).removeClass("x-item-disabled");
7855         this.disabled = false;
7856         this.el.disabled = false;
7857     }
7858 });
7859
7860
7861 /**
7862  * @class Roo.Toolbar.Separator
7863  * @extends Roo.Toolbar.Item
7864  * A simple toolbar separator class
7865  * @constructor
7866  * Creates a new Separator
7867  */
7868 Roo.Toolbar.Separator = function(cfg){
7869     
7870     var s = document.createElement("span");
7871     s.className = "ytb-sep";
7872     if (cfg) {
7873         cfg.el = s;
7874     }
7875     
7876     Roo.Toolbar.Separator.superclass.constructor.call(this, cfg || s);
7877 };
7878 Roo.extend(Roo.Toolbar.Separator, Roo.Toolbar.Item, {
7879     enable:Roo.emptyFn,
7880     disable:Roo.emptyFn,
7881     focus:Roo.emptyFn
7882 });
7883
7884 /**
7885  * @class Roo.Toolbar.Spacer
7886  * @extends Roo.Toolbar.Item
7887  * A simple element that adds extra horizontal space to a toolbar.
7888  * @constructor
7889  * Creates a new Spacer
7890  */
7891 Roo.Toolbar.Spacer = function(cfg){
7892     var s = document.createElement("div");
7893     s.className = "ytb-spacer";
7894     if (cfg) {
7895         cfg.el = s;
7896     }
7897     Roo.Toolbar.Spacer.superclass.constructor.call(this, cfg || s);
7898 };
7899 Roo.extend(Roo.Toolbar.Spacer, Roo.Toolbar.Item, {
7900     enable:Roo.emptyFn,
7901     disable:Roo.emptyFn,
7902     focus:Roo.emptyFn
7903 });
7904
7905 /**
7906  * @class Roo.Toolbar.Fill
7907  * @extends Roo.Toolbar.Spacer
7908  * A simple element that adds a greedy (100% width) horizontal space to a toolbar.
7909  * @constructor
7910  * Creates a new Spacer
7911  */
7912 Roo.Toolbar.Fill = Roo.extend(Roo.Toolbar.Spacer, {
7913     // private
7914     render : function(td){
7915         td.style.width = '100%';
7916         Roo.Toolbar.Fill.superclass.render.call(this, td);
7917     }
7918 });
7919
7920 /**
7921  * @class Roo.Toolbar.TextItem
7922  * @extends Roo.Toolbar.Item
7923  * A simple class that renders text directly into a toolbar.
7924  * @constructor
7925  * Creates a new TextItem
7926  * @param {String} text
7927  */
7928 Roo.Toolbar.TextItem = function(cfg){
7929     var  text = cfg || "";
7930     if (typeof(cfg) == 'object') {
7931         text = cfg.text || "";
7932     }  else {
7933         cfg = null;
7934     }
7935     var s = document.createElement("span");
7936     s.className = "ytb-text";
7937     s.innerHTML = text;
7938     if (cfg) {
7939         cfg.el  = s;
7940     }
7941     
7942     Roo.Toolbar.TextItem.superclass.constructor.call(this, cfg ||  s);
7943 };
7944 Roo.extend(Roo.Toolbar.TextItem, Roo.Toolbar.Item, {
7945     
7946      
7947     enable:Roo.emptyFn,
7948     disable:Roo.emptyFn,
7949     focus:Roo.emptyFn
7950 });
7951
7952 /**
7953  * @class Roo.Toolbar.Button
7954  * @extends Roo.Button
7955  * A button that renders into a toolbar.
7956  * @constructor
7957  * Creates a new Button
7958  * @param {Object} config A standard {@link Roo.Button} config object
7959  */
7960 Roo.Toolbar.Button = function(config){
7961     Roo.Toolbar.Button.superclass.constructor.call(this, null, config);
7962 };
7963 Roo.extend(Roo.Toolbar.Button, Roo.Button, {
7964     render : function(td){
7965         this.td = td;
7966         Roo.Toolbar.Button.superclass.render.call(this, td);
7967     },
7968     
7969     /**
7970      * Removes and destroys this button
7971      */
7972     destroy : function(){
7973         Roo.Toolbar.Button.superclass.destroy.call(this);
7974         this.td.parentNode.removeChild(this.td);
7975     },
7976     
7977     /**
7978      * Shows this button
7979      */
7980     show: function(){
7981         this.hidden = false;
7982         this.td.style.display = "";
7983     },
7984     
7985     /**
7986      * Hides this button
7987      */
7988     hide: function(){
7989         this.hidden = true;
7990         this.td.style.display = "none";
7991     },
7992
7993     /**
7994      * Disables this item
7995      */
7996     disable : function(){
7997         Roo.fly(this.td).addClass("x-item-disabled");
7998         this.disabled = true;
7999     },
8000
8001     /**
8002      * Enables this item
8003      */
8004     enable : function(){
8005         Roo.fly(this.td).removeClass("x-item-disabled");
8006         this.disabled = false;
8007     }
8008 });
8009 // backwards compat
8010 Roo.ToolbarButton = Roo.Toolbar.Button;
8011
8012 /**
8013  * @class Roo.Toolbar.SplitButton
8014  * @extends Roo.SplitButton
8015  * A menu button that renders into a toolbar.
8016  * @constructor
8017  * Creates a new SplitButton
8018  * @param {Object} config A standard {@link Roo.SplitButton} config object
8019  */
8020 Roo.Toolbar.SplitButton = function(config){
8021     Roo.Toolbar.SplitButton.superclass.constructor.call(this, null, config);
8022 };
8023 Roo.extend(Roo.Toolbar.SplitButton, Roo.SplitButton, {
8024     render : function(td){
8025         this.td = td;
8026         Roo.Toolbar.SplitButton.superclass.render.call(this, td);
8027     },
8028     
8029     /**
8030      * Removes and destroys this button
8031      */
8032     destroy : function(){
8033         Roo.Toolbar.SplitButton.superclass.destroy.call(this);
8034         this.td.parentNode.removeChild(this.td);
8035     },
8036     
8037     /**
8038      * Shows this button
8039      */
8040     show: function(){
8041         this.hidden = false;
8042         this.td.style.display = "";
8043     },
8044     
8045     /**
8046      * Hides this button
8047      */
8048     hide: function(){
8049         this.hidden = true;
8050         this.td.style.display = "none";
8051     }
8052 });
8053
8054 // backwards compat
8055 Roo.Toolbar.MenuButton = Roo.Toolbar.SplitButton;/*
8056  * Based on:
8057  * Ext JS Library 1.1.1
8058  * Copyright(c) 2006-2007, Ext JS, LLC.
8059  *
8060  * Originally Released Under LGPL - original licence link has changed is not relivant.
8061  *
8062  * Fork - LGPL
8063  * <script type="text/javascript">
8064  */
8065  
8066 /**
8067  * @class Roo.PagingToolbar
8068  * @extends Roo.Toolbar
8069  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
8070  * @constructor
8071  * Create a new PagingToolbar
8072  * @param {Object} config The config object
8073  */
8074 Roo.PagingToolbar = function(el, ds, config)
8075 {
8076     // old args format still supported... - xtype is prefered..
8077     if (typeof(el) == 'object' && el.xtype) {
8078         // created from xtype...
8079         config = el;
8080         ds = el.dataSource;
8081         el = config.container;
8082     }
8083     var items = [];
8084     if (config.items) {
8085         items = config.items;
8086         config.items = [];
8087     }
8088     
8089     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
8090     this.ds = ds;
8091     this.cursor = 0;
8092     this.renderButtons(this.el);
8093     this.bind(ds);
8094     
8095     // supprot items array.
8096    
8097     Roo.each(items, function(e) {
8098         this.add(Roo.factory(e));
8099     },this);
8100     
8101 };
8102
8103 Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
8104     /**
8105      * @cfg {Roo.data.Store} dataSource
8106      * The underlying data store providing the paged data
8107      */
8108     /**
8109      * @cfg {String/HTMLElement/Element} container
8110      * container The id or element that will contain the toolbar
8111      */
8112     /**
8113      * @cfg {Boolean} displayInfo
8114      * True to display the displayMsg (defaults to false)
8115      */
8116     /**
8117      * @cfg {Number} pageSize
8118      * The number of records to display per page (defaults to 20)
8119      */
8120     pageSize: 20,
8121     /**
8122      * @cfg {String} displayMsg
8123      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
8124      */
8125     displayMsg : 'Displaying {0} - {1} of {2}',
8126     /**
8127      * @cfg {String} emptyMsg
8128      * The message to display when no records are found (defaults to "No data to display")
8129      */
8130     emptyMsg : 'No data to display',
8131     /**
8132      * Customizable piece of the default paging text (defaults to "Page")
8133      * @type String
8134      */
8135     beforePageText : "Page",
8136     /**
8137      * Customizable piece of the default paging text (defaults to "of %0")
8138      * @type String
8139      */
8140     afterPageText : "of {0}",
8141     /**
8142      * Customizable piece of the default paging text (defaults to "First Page")
8143      * @type String
8144      */
8145     firstText : "First Page",
8146     /**
8147      * Customizable piece of the default paging text (defaults to "Previous Page")
8148      * @type String
8149      */
8150     prevText : "Previous Page",
8151     /**
8152      * Customizable piece of the default paging text (defaults to "Next Page")
8153      * @type String
8154      */
8155     nextText : "Next Page",
8156     /**
8157      * Customizable piece of the default paging text (defaults to "Last Page")
8158      * @type String
8159      */
8160     lastText : "Last Page",
8161     /**
8162      * Customizable piece of the default paging text (defaults to "Refresh")
8163      * @type String
8164      */
8165     refreshText : "Refresh",
8166
8167     // private
8168     renderButtons : function(el){
8169         Roo.PagingToolbar.superclass.render.call(this, el);
8170         this.first = this.addButton({
8171             tooltip: this.firstText,
8172             cls: "x-btn-icon x-grid-page-first",
8173             disabled: true,
8174             handler: this.onClick.createDelegate(this, ["first"])
8175         });
8176         this.prev = this.addButton({
8177             tooltip: this.prevText,
8178             cls: "x-btn-icon x-grid-page-prev",
8179             disabled: true,
8180             handler: this.onClick.createDelegate(this, ["prev"])
8181         });
8182         //this.addSeparator();
8183         this.add(this.beforePageText);
8184         this.field = Roo.get(this.addDom({
8185            tag: "input",
8186            type: "text",
8187            size: "3",
8188            value: "1",
8189            cls: "x-grid-page-number"
8190         }).el);
8191         this.field.on("keydown", this.onPagingKeydown, this);
8192         this.field.on("focus", function(){this.dom.select();});
8193         this.afterTextEl = this.addText(String.format(this.afterPageText, 1));
8194         this.field.setHeight(18);
8195         //this.addSeparator();
8196         this.next = this.addButton({
8197             tooltip: this.nextText,
8198             cls: "x-btn-icon x-grid-page-next",
8199             disabled: true,
8200             handler: this.onClick.createDelegate(this, ["next"])
8201         });
8202         this.last = this.addButton({
8203             tooltip: this.lastText,
8204             cls: "x-btn-icon x-grid-page-last",
8205             disabled: true,
8206             handler: this.onClick.createDelegate(this, ["last"])
8207         });
8208         //this.addSeparator();
8209         this.loading = this.addButton({
8210             tooltip: this.refreshText,
8211             cls: "x-btn-icon x-grid-loading",
8212             handler: this.onClick.createDelegate(this, ["refresh"])
8213         });
8214
8215         if(this.displayInfo){
8216             this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'});
8217         }
8218     },
8219
8220     // private
8221     updateInfo : function(){
8222         if(this.displayEl){
8223             var count = this.ds.getCount();
8224             var msg = count == 0 ?
8225                 this.emptyMsg :
8226                 String.format(
8227                     this.displayMsg,
8228                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
8229                 );
8230             this.displayEl.update(msg);
8231         }
8232     },
8233
8234     // private
8235     onLoad : function(ds, r, o){
8236        this.cursor = o.params ? o.params.start : 0;
8237        var d = this.getPageData(), ap = d.activePage, ps = d.pages;
8238
8239        this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages);
8240        this.field.dom.value = ap;
8241        this.first.setDisabled(ap == 1);
8242        this.prev.setDisabled(ap == 1);
8243        this.next.setDisabled(ap == ps);
8244        this.last.setDisabled(ap == ps);
8245        this.loading.enable();
8246        this.updateInfo();
8247     },
8248
8249     // private
8250     getPageData : function(){
8251         var total = this.ds.getTotalCount();
8252         return {
8253             total : total,
8254             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
8255             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
8256         };
8257     },
8258
8259     // private
8260     onLoadError : function(){
8261         this.loading.enable();
8262     },
8263
8264     // private
8265     onPagingKeydown : function(e){
8266         var k = e.getKey();
8267         var d = this.getPageData();
8268         if(k == e.RETURN){
8269             var v = this.field.dom.value, pageNum;
8270             if(!v || isNaN(pageNum = parseInt(v, 10))){
8271                 this.field.dom.value = d.activePage;
8272                 return;
8273             }
8274             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
8275             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
8276             e.stopEvent();
8277         }
8278         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))
8279         {
8280           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
8281           this.field.dom.value = pageNum;
8282           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
8283           e.stopEvent();
8284         }
8285         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
8286         {
8287           var v = this.field.dom.value, pageNum; 
8288           var increment = (e.shiftKey) ? 10 : 1;
8289           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
8290             increment *= -1;
8291           }
8292           if(!v || isNaN(pageNum = parseInt(v, 10))) {
8293             this.field.dom.value = d.activePage;
8294             return;
8295           }
8296           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
8297           {
8298             this.field.dom.value = parseInt(v, 10) + increment;
8299             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
8300             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
8301           }
8302           e.stopEvent();
8303         }
8304     },
8305
8306     // private
8307     beforeLoad : function(){
8308         if(this.loading){
8309             this.loading.disable();
8310         }
8311     },
8312
8313     // private
8314     onClick : function(which){
8315         var ds = this.ds;
8316         switch(which){
8317             case "first":
8318                 ds.load({params:{start: 0, limit: this.pageSize}});
8319             break;
8320             case "prev":
8321                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
8322             break;
8323             case "next":
8324                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
8325             break;
8326             case "last":
8327                 var total = ds.getTotalCount();
8328                 var extra = total % this.pageSize;
8329                 var lastStart = extra ? (total - extra) : total-this.pageSize;
8330                 ds.load({params:{start: lastStart, limit: this.pageSize}});
8331             break;
8332             case "refresh":
8333                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
8334             break;
8335         }
8336     },
8337
8338     /**
8339      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
8340      * @param {Roo.data.Store} store The data store to unbind
8341      */
8342     unbind : function(ds){
8343         ds.un("beforeload", this.beforeLoad, this);
8344         ds.un("load", this.onLoad, this);
8345         ds.un("loadexception", this.onLoadError, this);
8346         ds.un("remove", this.updateInfo, this);
8347         ds.un("add", this.updateInfo, this);
8348         this.ds = undefined;
8349     },
8350
8351     /**
8352      * Binds the paging toolbar to the specified {@link Roo.data.Store}
8353      * @param {Roo.data.Store} store The data store to bind
8354      */
8355     bind : function(ds){
8356         ds.on("beforeload", this.beforeLoad, this);
8357         ds.on("load", this.onLoad, this);
8358         ds.on("loadexception", this.onLoadError, this);
8359         ds.on("remove", this.updateInfo, this);
8360         ds.on("add", this.updateInfo, this);
8361         this.ds = ds;
8362     }
8363 });/*
8364  * Based on:
8365  * Ext JS Library 1.1.1
8366  * Copyright(c) 2006-2007, Ext JS, LLC.
8367  *
8368  * Originally Released Under LGPL - original licence link has changed is not relivant.
8369  *
8370  * Fork - LGPL
8371  * <script type="text/javascript">
8372  */
8373
8374 /**
8375  * @class Roo.Resizable
8376  * @extends Roo.util.Observable
8377  * <p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element
8378  * and positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap
8379  * 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
8380  * the element will be wrapped for you automatically.</p>
8381  * <p>Here is the list of valid resize handles:</p>
8382  * <pre>
8383 Value   Description
8384 ------  -------------------
8385  'n'     north
8386  's'     south
8387  'e'     east
8388  'w'     west
8389  'nw'    northwest
8390  'sw'    southwest
8391  'se'    southeast
8392  'ne'    northeast
8393  'hd'    horizontal drag
8394  'all'   all
8395 </pre>
8396  * <p>Here's an example showing the creation of a typical Resizable:</p>
8397  * <pre><code>
8398 var resizer = new Roo.Resizable("element-id", {
8399     handles: 'all',
8400     minWidth: 200,
8401     minHeight: 100,
8402     maxWidth: 500,
8403     maxHeight: 400,
8404     pinned: true
8405 });
8406 resizer.on("resize", myHandler);
8407 </code></pre>
8408  * <p>To hide a particular handle, set its display to none in CSS, or through script:<br>
8409  * resizer.east.setDisplayed(false);</p>
8410  * @cfg {Boolean/String/Element} resizeChild True to resize the first child, or id/element to resize (defaults to false)
8411  * @cfg {Array/String} adjustments String "auto" or an array [width, height] with values to be <b>added</b> to the
8412  * resize operation's new size (defaults to [0, 0])
8413  * @cfg {Number} minWidth The minimum width for the element (defaults to 5)
8414  * @cfg {Number} minHeight The minimum height for the element (defaults to 5)
8415  * @cfg {Number} maxWidth The maximum width for the element (defaults to 10000)
8416  * @cfg {Number} maxHeight The maximum height for the element (defaults to 10000)
8417  * @cfg {Boolean} enabled False to disable resizing (defaults to true)
8418  * @cfg {Boolean} wrap True to wrap an element with a div if needed (required for textareas and images, defaults to false)
8419  * @cfg {Number} width The width of the element in pixels (defaults to null)
8420  * @cfg {Number} height The height of the element in pixels (defaults to null)
8421  * @cfg {Boolean} animate True to animate the resize (not compatible with dynamic sizing, defaults to false)
8422  * @cfg {Number} duration Animation duration if animate = true (defaults to .35)
8423  * @cfg {Boolean} dynamic True to resize the element while dragging instead of using a proxy (defaults to false)
8424  * @cfg {String} handles String consisting of the resize handles to display (defaults to undefined)
8425  * @cfg {Boolean} multiDirectional <b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated
8426  * in favor of the handles config option (defaults to false)
8427  * @cfg {Boolean} disableTrackOver True to disable mouse tracking. This is only applied at config time. (defaults to false)
8428  * @cfg {String} easing Animation easing if animate = true (defaults to 'easingOutStrong')
8429  * @cfg {Number} widthIncrement The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)
8430  * @cfg {Number} heightIncrement The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)
8431  * @cfg {Boolean} pinned True to ensure that the resize handles are always visible, false to display them only when the
8432  * user mouses over the resizable borders. This is only applied at config time. (defaults to false)
8433  * @cfg {Boolean} preserveRatio True to preserve the original ratio between height and width during resize (defaults to false)
8434  * @cfg {Boolean} transparent True for transparent handles. This is only applied at config time. (defaults to false)
8435  * @cfg {Number} minX The minimum allowed page X for the element (only used for west resizing, defaults to 0)
8436  * @cfg {Number} minY The minimum allowed page Y for the element (only used for north resizing, defaults to 0)
8437  * @cfg {Boolean} draggable Convenience to initialize drag drop (defaults to false)
8438  * @constructor
8439  * Create a new resizable component
8440  * @param {String/HTMLElement/Roo.Element} el The id or element to resize
8441  * @param {Object} config configuration options
8442   */
8443 Roo.Resizable = function(el, config)
8444 {
8445     this.el = Roo.get(el);
8446
8447     if(config && config.wrap){
8448         config.resizeChild = this.el;
8449         this.el = this.el.wrap(typeof config.wrap == "object" ? config.wrap : {cls:"xresizable-wrap"});
8450         this.el.id = this.el.dom.id = config.resizeChild.id + "-rzwrap";
8451         this.el.setStyle("overflow", "hidden");
8452         this.el.setPositioning(config.resizeChild.getPositioning());
8453         config.resizeChild.clearPositioning();
8454         if(!config.width || !config.height){
8455             var csize = config.resizeChild.getSize();
8456             this.el.setSize(csize.width, csize.height);
8457         }
8458         if(config.pinned && !config.adjustments){
8459             config.adjustments = "auto";
8460         }
8461     }
8462
8463     this.proxy = this.el.createProxy({tag: "div", cls: "x-resizable-proxy", id: this.el.id + "-rzproxy"});
8464     this.proxy.unselectable();
8465     this.proxy.enableDisplayMode('block');
8466
8467     Roo.apply(this, config);
8468
8469     if(this.pinned){
8470         this.disableTrackOver = true;
8471         this.el.addClass("x-resizable-pinned");
8472     }
8473     // if the element isn't positioned, make it relative
8474     var position = this.el.getStyle("position");
8475     if(position != "absolute" && position != "fixed"){
8476         this.el.setStyle("position", "relative");
8477     }
8478     if(!this.handles){ // no handles passed, must be legacy style
8479         this.handles = 's,e,se';
8480         if(this.multiDirectional){
8481             this.handles += ',n,w';
8482         }
8483     }
8484     if(this.handles == "all"){
8485         this.handles = "n s e w ne nw se sw";
8486     }
8487     var hs = this.handles.split(/\s*?[,;]\s*?| /);
8488     var ps = Roo.Resizable.positions;
8489     for(var i = 0, len = hs.length; i < len; i++){
8490         if(hs[i] && ps[hs[i]]){
8491             var pos = ps[hs[i]];
8492             this[pos] = new Roo.Resizable.Handle(this, pos, this.disableTrackOver, this.transparent);
8493         }
8494     }
8495     // legacy
8496     this.corner = this.southeast;
8497     
8498     // updateBox = the box can move..
8499     if(this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1 || this.handles.indexOf("hd") != -1) {
8500         this.updateBox = true;
8501     }
8502
8503     this.activeHandle = null;
8504
8505     if(this.resizeChild){
8506         if(typeof this.resizeChild == "boolean"){
8507             this.resizeChild = Roo.get(this.el.dom.firstChild, true);
8508         }else{
8509             this.resizeChild = Roo.get(this.resizeChild, true);
8510         }
8511     }
8512     
8513     if(this.adjustments == "auto"){
8514         var rc = this.resizeChild;
8515         var hw = this.west, he = this.east, hn = this.north, hs = this.south;
8516         if(rc && (hw || hn)){
8517             rc.position("relative");
8518             rc.setLeft(hw ? hw.el.getWidth() : 0);
8519             rc.setTop(hn ? hn.el.getHeight() : 0);
8520         }
8521         this.adjustments = [
8522             (he ? -he.el.getWidth() : 0) + (hw ? -hw.el.getWidth() : 0),
8523             (hn ? -hn.el.getHeight() : 0) + (hs ? -hs.el.getHeight() : 0) -1
8524         ];
8525     }
8526
8527     if(this.draggable){
8528         this.dd = this.dynamic ?
8529             this.el.initDD(null) : this.el.initDDProxy(null, {dragElId: this.proxy.id});
8530         this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
8531     }
8532
8533     // public events
8534     this.addEvents({
8535         /**
8536          * @event beforeresize
8537          * Fired before resize is allowed. Set enabled to false to cancel resize.
8538          * @param {Roo.Resizable} this
8539          * @param {Roo.EventObject} e The mousedown event
8540          */
8541         "beforeresize" : true,
8542         /**
8543          * @event resizing
8544          * Fired a resizing.
8545          * @param {Roo.Resizable} this
8546          * @param {Number} x The new x position
8547          * @param {Number} y The new y position
8548          * @param {Number} w The new w width
8549          * @param {Number} h The new h hight
8550          * @param {Roo.EventObject} e The mouseup event
8551          */
8552         "resizing" : true,
8553         /**
8554          * @event resize
8555          * Fired after a resize.
8556          * @param {Roo.Resizable} this
8557          * @param {Number} width The new width
8558          * @param {Number} height The new height
8559          * @param {Roo.EventObject} e The mouseup event
8560          */
8561         "resize" : true
8562     });
8563
8564     if(this.width !== null && this.height !== null){
8565         this.resizeTo(this.width, this.height);
8566     }else{
8567         this.updateChildSize();
8568     }
8569     if(Roo.isIE){
8570         this.el.dom.style.zoom = 1;
8571     }
8572     Roo.Resizable.superclass.constructor.call(this);
8573 };
8574
8575 Roo.extend(Roo.Resizable, Roo.util.Observable, {
8576         resizeChild : false,
8577         adjustments : [0, 0],
8578         minWidth : 5,
8579         minHeight : 5,
8580         maxWidth : 10000,
8581         maxHeight : 10000,
8582         enabled : true,
8583         animate : false,
8584         duration : .35,
8585         dynamic : false,
8586         handles : false,
8587         multiDirectional : false,
8588         disableTrackOver : false,
8589         easing : 'easeOutStrong',
8590         widthIncrement : 0,
8591         heightIncrement : 0,
8592         pinned : false,
8593         width : null,
8594         height : null,
8595         preserveRatio : false,
8596         transparent: false,
8597         minX: 0,
8598         minY: 0,
8599         draggable: false,
8600
8601         /**
8602          * @cfg {String/HTMLElement/Element} constrainTo Constrain the resize to a particular element
8603          */
8604         constrainTo: undefined,
8605         /**
8606          * @cfg {Roo.lib.Region} resizeRegion Constrain the resize to a particular region
8607          */
8608         resizeRegion: undefined,
8609
8610
8611     /**
8612      * Perform a manual resize
8613      * @param {Number} width
8614      * @param {Number} height
8615      */
8616     resizeTo : function(width, height){
8617         this.el.setSize(width, height);
8618         this.updateChildSize();
8619         this.fireEvent("resize", this, width, height, null);
8620     },
8621
8622     // private
8623     startSizing : function(e, handle){
8624         this.fireEvent("beforeresize", this, e);
8625         if(this.enabled){ // 2nd enabled check in case disabled before beforeresize handler
8626
8627             if(!this.overlay){
8628                 this.overlay = this.el.createProxy({tag: "div", cls: "x-resizable-overlay", html: "&#160;"});
8629                 this.overlay.unselectable();
8630                 this.overlay.enableDisplayMode("block");
8631                 this.overlay.on("mousemove", this.onMouseMove, this);
8632                 this.overlay.on("mouseup", this.onMouseUp, this);
8633             }
8634             this.overlay.setStyle("cursor", handle.el.getStyle("cursor"));
8635
8636             this.resizing = true;
8637             this.startBox = this.el.getBox();
8638             this.startPoint = e.getXY();
8639             this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0],
8640                             (this.startBox.y + this.startBox.height) - this.startPoint[1]];
8641
8642             this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
8643             this.overlay.show();
8644
8645             if(this.constrainTo) {
8646                 var ct = Roo.get(this.constrainTo);
8647                 this.resizeRegion = ct.getRegion().adjust(
8648                     ct.getFrameWidth('t'),
8649                     ct.getFrameWidth('l'),
8650                     -ct.getFrameWidth('b'),
8651                     -ct.getFrameWidth('r')
8652                 );
8653             }
8654
8655             this.proxy.setStyle('visibility', 'hidden'); // workaround display none
8656             this.proxy.show();
8657             this.proxy.setBox(this.startBox);
8658             if(!this.dynamic){
8659                 this.proxy.setStyle('visibility', 'visible');
8660             }
8661         }
8662     },
8663
8664     // private
8665     onMouseDown : function(handle, e){
8666         if(this.enabled){
8667             e.stopEvent();
8668             this.activeHandle = handle;
8669             this.startSizing(e, handle);
8670         }
8671     },
8672
8673     // private
8674     onMouseUp : function(e){
8675         var size = this.resizeElement();
8676         this.resizing = false;
8677         this.handleOut();
8678         this.overlay.hide();
8679         this.proxy.hide();
8680         this.fireEvent("resize", this, size.width, size.height, e);
8681     },
8682
8683     // private
8684     updateChildSize : function(){
8685         
8686         if(this.resizeChild){
8687             var el = this.el;
8688             var child = this.resizeChild;
8689             var adj = this.adjustments;
8690             if(el.dom.offsetWidth){
8691                 var b = el.getSize(true);
8692                 child.setSize(b.width+adj[0], b.height+adj[1]);
8693             }
8694             // Second call here for IE
8695             // The first call enables instant resizing and
8696             // the second call corrects scroll bars if they
8697             // exist
8698             if(Roo.isIE){
8699                 setTimeout(function(){
8700                     if(el.dom.offsetWidth){
8701                         var b = el.getSize(true);
8702                         child.setSize(b.width+adj[0], b.height+adj[1]);
8703                     }
8704                 }, 10);
8705             }
8706         }
8707     },
8708
8709     // private
8710     snap : function(value, inc, min){
8711         if(!inc || !value) {
8712             return value;
8713         }
8714         var newValue = value;
8715         var m = value % inc;
8716         if(m > 0){
8717             if(m > (inc/2)){
8718                 newValue = value + (inc-m);
8719             }else{
8720                 newValue = value - m;
8721             }
8722         }
8723         return Math.max(min, newValue);
8724     },
8725
8726     // private
8727     resizeElement : function(){
8728         var box = this.proxy.getBox();
8729         if(this.updateBox){
8730             this.el.setBox(box, false, this.animate, this.duration, null, this.easing);
8731         }else{
8732             this.el.setSize(box.width, box.height, this.animate, this.duration, null, this.easing);
8733         }
8734         this.updateChildSize();
8735         if(!this.dynamic){
8736             this.proxy.hide();
8737         }
8738         return box;
8739     },
8740
8741     // private
8742     constrain : function(v, diff, m, mx){
8743         if(v - diff < m){
8744             diff = v - m;
8745         }else if(v - diff > mx){
8746             diff = mx - v;
8747         }
8748         return diff;
8749     },
8750
8751     // private
8752     onMouseMove : function(e){
8753         
8754         if(this.enabled){
8755             try{// try catch so if something goes wrong the user doesn't get hung
8756
8757             if(this.resizeRegion && !this.resizeRegion.contains(e.getPoint())) {
8758                 return;
8759             }
8760
8761             //var curXY = this.startPoint;
8762             var curSize = this.curSize || this.startBox;
8763             var x = this.startBox.x, y = this.startBox.y;
8764             var ox = x, oy = y;
8765             var w = curSize.width, h = curSize.height;
8766             var ow = w, oh = h;
8767             var mw = this.minWidth, mh = this.minHeight;
8768             var mxw = this.maxWidth, mxh = this.maxHeight;
8769             var wi = this.widthIncrement;
8770             var hi = this.heightIncrement;
8771
8772             var eventXY = e.getXY();
8773             var diffX = -(this.startPoint[0] - Math.max(this.minX, eventXY[0]));
8774             var diffY = -(this.startPoint[1] - Math.max(this.minY, eventXY[1]));
8775
8776             var pos = this.activeHandle.position;
8777
8778             switch(pos){
8779                 case "east":
8780                     w += diffX;
8781                     w = Math.min(Math.max(mw, w), mxw);
8782                     break;
8783              
8784                 case "south":
8785                     h += diffY;
8786                     h = Math.min(Math.max(mh, h), mxh);
8787                     break;
8788                 case "southeast":
8789                     w += diffX;
8790                     h += diffY;
8791                     w = Math.min(Math.max(mw, w), mxw);
8792                     h = Math.min(Math.max(mh, h), mxh);
8793                     break;
8794                 case "north":
8795                     diffY = this.constrain(h, diffY, mh, mxh);
8796                     y += diffY;
8797                     h -= diffY;
8798                     break;
8799                 case "hdrag":
8800                     
8801                     if (wi) {
8802                         var adiffX = Math.abs(diffX);
8803                         var sub = (adiffX % wi); // how much 
8804                         if (sub > (wi/2)) { // far enough to snap
8805                             diffX = (diffX > 0) ? diffX-sub + wi : diffX+sub - wi;
8806                         } else {
8807                             // remove difference.. 
8808                             diffX = (diffX > 0) ? diffX-sub : diffX+sub;
8809                         }
8810                     }
8811                     x += diffX;
8812                     x = Math.max(this.minX, x);
8813                     break;
8814                 case "west":
8815                     diffX = this.constrain(w, diffX, mw, mxw);
8816                     x += diffX;
8817                     w -= diffX;
8818                     break;
8819                 case "northeast":
8820                     w += diffX;
8821                     w = Math.min(Math.max(mw, w), mxw);
8822                     diffY = this.constrain(h, diffY, mh, mxh);
8823                     y += diffY;
8824                     h -= diffY;
8825                     break;
8826                 case "northwest":
8827                     diffX = this.constrain(w, diffX, mw, mxw);
8828                     diffY = this.constrain(h, diffY, mh, mxh);
8829                     y += diffY;
8830                     h -= diffY;
8831                     x += diffX;
8832                     w -= diffX;
8833                     break;
8834                case "southwest":
8835                     diffX = this.constrain(w, diffX, mw, mxw);
8836                     h += diffY;
8837                     h = Math.min(Math.max(mh, h), mxh);
8838                     x += diffX;
8839                     w -= diffX;
8840                     break;
8841             }
8842
8843             var sw = this.snap(w, wi, mw);
8844             var sh = this.snap(h, hi, mh);
8845             if(sw != w || sh != h){
8846                 switch(pos){
8847                     case "northeast":
8848                         y -= sh - h;
8849                     break;
8850                     case "north":
8851                         y -= sh - h;
8852                         break;
8853                     case "southwest":
8854                         x -= sw - w;
8855                     break;
8856                     case "west":
8857                         x -= sw - w;
8858                         break;
8859                     case "northwest":
8860                         x -= sw - w;
8861                         y -= sh - h;
8862                     break;
8863                 }
8864                 w = sw;
8865                 h = sh;
8866             }
8867
8868             if(this.preserveRatio){
8869                 switch(pos){
8870                     case "southeast":
8871                     case "east":
8872                         h = oh * (w/ow);
8873                         h = Math.min(Math.max(mh, h), mxh);
8874                         w = ow * (h/oh);
8875                        break;
8876                     case "south":
8877                         w = ow * (h/oh);
8878                         w = Math.min(Math.max(mw, w), mxw);
8879                         h = oh * (w/ow);
8880                         break;
8881                     case "northeast":
8882                         w = ow * (h/oh);
8883                         w = Math.min(Math.max(mw, w), mxw);
8884                         h = oh * (w/ow);
8885                     break;
8886                     case "north":
8887                         var tw = w;
8888                         w = ow * (h/oh);
8889                         w = Math.min(Math.max(mw, w), mxw);
8890                         h = oh * (w/ow);
8891                         x += (tw - w) / 2;
8892                         break;
8893                     case "southwest":
8894                         h = oh * (w/ow);
8895                         h = Math.min(Math.max(mh, h), mxh);
8896                         var tw = w;
8897                         w = ow * (h/oh);
8898                         x += tw - w;
8899                         break;
8900                     case "west":
8901                         var th = h;
8902                         h = oh * (w/ow);
8903                         h = Math.min(Math.max(mh, h), mxh);
8904                         y += (th - h) / 2;
8905                         var tw = w;
8906                         w = ow * (h/oh);
8907                         x += tw - w;
8908                        break;
8909                     case "northwest":
8910                         var tw = w;
8911                         var th = h;
8912                         h = oh * (w/ow);
8913                         h = Math.min(Math.max(mh, h), mxh);
8914                         w = ow * (h/oh);
8915                         y += th - h;
8916                         x += tw - w;
8917                        break;
8918
8919                 }
8920             }
8921             if (pos == 'hdrag') {
8922                 w = ow;
8923             }
8924             this.proxy.setBounds(x, y, w, h);
8925             if(this.dynamic){
8926                 this.resizeElement();
8927             }
8928             }catch(e){}
8929         }
8930         this.fireEvent("resizing", this, x, y, w, h, e);
8931     },
8932
8933     // private
8934     handleOver : function(){
8935         if(this.enabled){
8936             this.el.addClass("x-resizable-over");
8937         }
8938     },
8939
8940     // private
8941     handleOut : function(){
8942         if(!this.resizing){
8943             this.el.removeClass("x-resizable-over");
8944         }
8945     },
8946
8947     /**
8948      * Returns the element this component is bound to.
8949      * @return {Roo.Element}
8950      */
8951     getEl : function(){
8952         return this.el;
8953     },
8954
8955     /**
8956      * Returns the resizeChild element (or null).
8957      * @return {Roo.Element}
8958      */
8959     getResizeChild : function(){
8960         return this.resizeChild;
8961     },
8962     groupHandler : function()
8963     {
8964         
8965     },
8966     /**
8967      * Destroys this resizable. If the element was wrapped and
8968      * removeEl is not true then the element remains.
8969      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
8970      */
8971     destroy : function(removeEl){
8972         this.proxy.remove();
8973         if(this.overlay){
8974             this.overlay.removeAllListeners();
8975             this.overlay.remove();
8976         }
8977         var ps = Roo.Resizable.positions;
8978         for(var k in ps){
8979             if(typeof ps[k] != "function" && this[ps[k]]){
8980                 var h = this[ps[k]];
8981                 h.el.removeAllListeners();
8982                 h.el.remove();
8983             }
8984         }
8985         if(removeEl){
8986             this.el.update("");
8987             this.el.remove();
8988         }
8989     }
8990 });
8991
8992 // private
8993 // hash to map config positions to true positions
8994 Roo.Resizable.positions = {
8995     n: "north", s: "south", e: "east", w: "west", se: "southeast", sw: "southwest", nw: "northwest", ne: "northeast", 
8996     hd: "hdrag"
8997 };
8998
8999 // private
9000 Roo.Resizable.Handle = function(rz, pos, disableTrackOver, transparent){
9001     if(!this.tpl){
9002         // only initialize the template if resizable is used
9003         var tpl = Roo.DomHelper.createTemplate(
9004             {tag: "div", cls: "x-resizable-handle x-resizable-handle-{0}"}
9005         );
9006         tpl.compile();
9007         Roo.Resizable.Handle.prototype.tpl = tpl;
9008     }
9009     this.position = pos;
9010     this.rz = rz;
9011     // show north drag fro topdra
9012     var handlepos = pos == 'hdrag' ? 'north' : pos;
9013     
9014     this.el = this.tpl.append(rz.el.dom, [handlepos], true);
9015     if (pos == 'hdrag') {
9016         this.el.setStyle('cursor', 'pointer');
9017     }
9018     this.el.unselectable();
9019     if(transparent){
9020         this.el.setOpacity(0);
9021     }
9022     this.el.on("mousedown", this.onMouseDown, this);
9023     if(!disableTrackOver){
9024         this.el.on("mouseover", this.onMouseOver, this);
9025         this.el.on("mouseout", this.onMouseOut, this);
9026     }
9027 };
9028
9029 // private
9030 Roo.Resizable.Handle.prototype = {
9031     afterResize : function(rz){
9032         Roo.log('after?');
9033         // do nothing
9034     },
9035     // private
9036     onMouseDown : function(e){
9037         this.rz.onMouseDown(this, e);
9038     },
9039     // private
9040     onMouseOver : function(e){
9041         this.rz.handleOver(this, e);
9042     },
9043     // private
9044     onMouseOut : function(e){
9045         this.rz.handleOut(this, e);
9046     }
9047 };/*
9048  * Based on:
9049  * Ext JS Library 1.1.1
9050  * Copyright(c) 2006-2007, Ext JS, LLC.
9051  *
9052  * Originally Released Under LGPL - original licence link has changed is not relivant.
9053  *
9054  * Fork - LGPL
9055  * <script type="text/javascript">
9056  */
9057
9058 /**
9059  * @class Roo.Editor
9060  * @extends Roo.Component
9061  * A base editor field that handles displaying/hiding on demand and has some built-in sizing and event handling logic.
9062  * @constructor
9063  * Create a new Editor
9064  * @param {Roo.form.Field} field The Field object (or descendant)
9065  * @param {Object} config The config object
9066  */
9067 Roo.Editor = function(field, config){
9068     Roo.Editor.superclass.constructor.call(this, config);
9069     this.field = field;
9070     this.addEvents({
9071         /**
9072              * @event beforestartedit
9073              * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
9074              * false from the handler of this event.
9075              * @param {Editor} this
9076              * @param {Roo.Element} boundEl The underlying element bound to this editor
9077              * @param {Mixed} value The field value being set
9078              */
9079         "beforestartedit" : true,
9080         /**
9081              * @event startedit
9082              * Fires when this editor is displayed
9083              * @param {Roo.Element} boundEl The underlying element bound to this editor
9084              * @param {Mixed} value The starting field value
9085              */
9086         "startedit" : true,
9087         /**
9088              * @event beforecomplete
9089              * Fires after a change has been made to the field, but before the change is reflected in the underlying
9090              * field.  Saving the change to the field can be canceled by returning false from the handler of this event.
9091              * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
9092              * event will not fire since no edit actually occurred.
9093              * @param {Editor} this
9094              * @param {Mixed} value The current field value
9095              * @param {Mixed} startValue The original field value
9096              */
9097         "beforecomplete" : true,
9098         /**
9099              * @event complete
9100              * Fires after editing is complete and any changed value has been written to the underlying field.
9101              * @param {Editor} this
9102              * @param {Mixed} value The current field value
9103              * @param {Mixed} startValue The original field value
9104              */
9105         "complete" : true,
9106         /**
9107          * @event specialkey
9108          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
9109          * {@link Roo.EventObject#getKey} to determine which key was pressed.
9110          * @param {Roo.form.Field} this
9111          * @param {Roo.EventObject} e The event object
9112          */
9113         "specialkey" : true
9114     });
9115 };
9116
9117 Roo.extend(Roo.Editor, Roo.Component, {
9118     /**
9119      * @cfg {Boolean/String} autosize
9120      * True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only,
9121      * or "height" to adopt the height only (defaults to false)
9122      */
9123     /**
9124      * @cfg {Boolean} revertInvalid
9125      * True to automatically revert the field value and cancel the edit when the user completes an edit and the field
9126      * validation fails (defaults to true)
9127      */
9128     /**
9129      * @cfg {Boolean} ignoreNoChange
9130      * True to skip the the edit completion process (no save, no events fired) if the user completes an edit and
9131      * the value has not changed (defaults to false).  Applies only to string values - edits for other data types
9132      * will never be ignored.
9133      */
9134     /**
9135      * @cfg {Boolean} hideEl
9136      * False to keep the bound element visible while the editor is displayed (defaults to true)
9137      */
9138     /**
9139      * @cfg {Mixed} value
9140      * The data value of the underlying field (defaults to "")
9141      */
9142     value : "",
9143     /**
9144      * @cfg {String} alignment
9145      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "c-c?").
9146      */
9147     alignment: "c-c?",
9148     /**
9149      * @cfg {Boolean/String} shadow "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop"
9150      * for bottom-right shadow (defaults to "frame")
9151      */
9152     shadow : "frame",
9153     /**
9154      * @cfg {Boolean} constrain True to constrain the editor to the viewport
9155      */
9156     constrain : false,
9157     /**
9158      * @cfg {Boolean} completeOnEnter True to complete the edit when the enter key is pressed (defaults to false)
9159      */
9160     completeOnEnter : false,
9161     /**
9162      * @cfg {Boolean} cancelOnEsc True to cancel the edit when the escape key is pressed (defaults to false)
9163      */
9164     cancelOnEsc : false,
9165     /**
9166      * @cfg {Boolean} updateEl True to update the innerHTML of the bound element when the update completes (defaults to false)
9167      */
9168     updateEl : false,
9169
9170     // private
9171     onRender : function(ct, position){
9172         this.el = new Roo.Layer({
9173             shadow: this.shadow,
9174             cls: "x-editor",
9175             parentEl : ct,
9176             shim : this.shim,
9177             shadowOffset:4,
9178             id: this.id,
9179             constrain: this.constrain
9180         });
9181         this.el.setStyle("overflow", Roo.isGecko ? "auto" : "hidden");
9182         if(this.field.msgTarget != 'title'){
9183             this.field.msgTarget = 'qtip';
9184         }
9185         this.field.render(this.el);
9186         if(Roo.isGecko){
9187             this.field.el.dom.setAttribute('autocomplete', 'off');
9188         }
9189         this.field.on("specialkey", this.onSpecialKey, this);
9190         if(this.swallowKeys){
9191             this.field.el.swallowEvent(['keydown','keypress']);
9192         }
9193         this.field.show();
9194         this.field.on("blur", this.onBlur, this);
9195         if(this.field.grow){
9196             this.field.on("autosize", this.el.sync,  this.el, {delay:1});
9197         }
9198     },
9199
9200     onSpecialKey : function(field, e)
9201     {
9202         //Roo.log('editor onSpecialKey');
9203         if(this.completeOnEnter && e.getKey() == e.ENTER){
9204             e.stopEvent();
9205             this.completeEdit();
9206             return;
9207         }
9208         // do not fire special key otherwise it might hide close the editor...
9209         if(e.getKey() == e.ENTER){    
9210             return;
9211         }
9212         if(this.cancelOnEsc && e.getKey() == e.ESC){
9213             this.cancelEdit();
9214             return;
9215         } 
9216         this.fireEvent('specialkey', field, e);
9217     
9218     },
9219
9220     /**
9221      * Starts the editing process and shows the editor.
9222      * @param {String/HTMLElement/Element} el The element to edit
9223      * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults
9224       * to the innerHTML of el.
9225      */
9226     startEdit : function(el, value){
9227         if(this.editing){
9228             this.completeEdit();
9229         }
9230         this.boundEl = Roo.get(el);
9231         var v = value !== undefined ? value : this.boundEl.dom.innerHTML;
9232         if(!this.rendered){
9233             this.render(this.parentEl || document.body);
9234         }
9235         if(this.fireEvent("beforestartedit", this, this.boundEl, v) === false){
9236             return;
9237         }
9238         this.startValue = v;
9239         this.field.setValue(v);
9240         if(this.autoSize){
9241             var sz = this.boundEl.getSize();
9242             switch(this.autoSize){
9243                 case "width":
9244                 this.setSize(sz.width,  "");
9245                 break;
9246                 case "height":
9247                 this.setSize("",  sz.height);
9248                 break;
9249                 default:
9250                 this.setSize(sz.width,  sz.height);
9251             }
9252         }
9253         this.el.alignTo(this.boundEl, this.alignment);
9254         this.editing = true;
9255         if(Roo.QuickTips){
9256             Roo.QuickTips.disable();
9257         }
9258         this.show();
9259     },
9260
9261     /**
9262      * Sets the height and width of this editor.
9263      * @param {Number} width The new width
9264      * @param {Number} height The new height
9265      */
9266     setSize : function(w, h){
9267         this.field.setSize(w, h);
9268         if(this.el){
9269             this.el.sync();
9270         }
9271     },
9272
9273     /**
9274      * Realigns the editor to the bound field based on the current alignment config value.
9275      */
9276     realign : function(){
9277         this.el.alignTo(this.boundEl, this.alignment);
9278     },
9279
9280     /**
9281      * Ends the editing process, persists the changed value to the underlying field, and hides the editor.
9282      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after edit (defaults to false)
9283      */
9284     completeEdit : function(remainVisible){
9285         if(!this.editing){
9286             return;
9287         }
9288         var v = this.getValue();
9289         if(this.revertInvalid !== false && !this.field.isValid()){
9290             v = this.startValue;
9291             this.cancelEdit(true);
9292         }
9293         if(String(v) === String(this.startValue) && this.ignoreNoChange){
9294             this.editing = false;
9295             this.hide();
9296             return;
9297         }
9298         if(this.fireEvent("beforecomplete", this, v, this.startValue) !== false){
9299             this.editing = false;
9300             if(this.updateEl && this.boundEl){
9301                 this.boundEl.update(v);
9302             }
9303             if(remainVisible !== true){
9304                 this.hide();
9305             }
9306             this.fireEvent("complete", this, v, this.startValue);
9307         }
9308     },
9309
9310     // private
9311     onShow : function(){
9312         this.el.show();
9313         if(this.hideEl !== false){
9314             this.boundEl.hide();
9315         }
9316         this.field.show();
9317         if(Roo.isIE && !this.fixIEFocus){ // IE has problems with focusing the first time
9318             this.fixIEFocus = true;
9319             this.deferredFocus.defer(50, this);
9320         }else{
9321             this.field.focus();
9322         }
9323         this.fireEvent("startedit", this.boundEl, this.startValue);
9324     },
9325
9326     deferredFocus : function(){
9327         if(this.editing){
9328             this.field.focus();
9329         }
9330     },
9331
9332     /**
9333      * Cancels the editing process and hides the editor without persisting any changes.  The field value will be
9334      * reverted to the original starting value.
9335      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after
9336      * cancel (defaults to false)
9337      */
9338     cancelEdit : function(remainVisible){
9339         if(this.editing){
9340             this.setValue(this.startValue);
9341             if(remainVisible !== true){
9342                 this.hide();
9343             }
9344         }
9345     },
9346
9347     // private
9348     onBlur : function(){
9349         if(this.allowBlur !== true && this.editing){
9350             this.completeEdit();
9351         }
9352     },
9353
9354     // private
9355     onHide : function(){
9356         if(this.editing){
9357             this.completeEdit();
9358             return;
9359         }
9360         this.field.blur();
9361         if(this.field.collapse){
9362             this.field.collapse();
9363         }
9364         this.el.hide();
9365         if(this.hideEl !== false){
9366             this.boundEl.show();
9367         }
9368         if(Roo.QuickTips){
9369             Roo.QuickTips.enable();
9370         }
9371     },
9372
9373     /**
9374      * Sets the data value of the editor
9375      * @param {Mixed} value Any valid value supported by the underlying field
9376      */
9377     setValue : function(v){
9378         this.field.setValue(v);
9379     },
9380
9381     /**
9382      * Gets the data value of the editor
9383      * @return {Mixed} The data value
9384      */
9385     getValue : function(){
9386         return this.field.getValue();
9387     }
9388 });/*
9389  * Based on:
9390  * Ext JS Library 1.1.1
9391  * Copyright(c) 2006-2007, Ext JS, LLC.
9392  *
9393  * Originally Released Under LGPL - original licence link has changed is not relivant.
9394  *
9395  * Fork - LGPL
9396  * <script type="text/javascript">
9397  */
9398  
9399 /**
9400  * @class Roo.BasicDialog
9401  * @extends Roo.util.Observable
9402  * Lightweight Dialog Class.  The code below shows the creation of a typical dialog using existing HTML markup:
9403  * <pre><code>
9404 var dlg = new Roo.BasicDialog("my-dlg", {
9405     height: 200,
9406     width: 300,
9407     minHeight: 100,
9408     minWidth: 150,
9409     modal: true,
9410     proxyDrag: true,
9411     shadow: true
9412 });
9413 dlg.addKeyListener(27, dlg.hide, dlg); // ESC can also close the dialog
9414 dlg.addButton('OK', dlg.hide, dlg);    // Could call a save function instead of hiding
9415 dlg.addButton('Cancel', dlg.hide, dlg);
9416 dlg.show();
9417 </code></pre>
9418   <b>A Dialog should always be a direct child of the body element.</b>
9419  * @cfg {Boolean/DomHelper} autoCreate True to auto create from scratch, or using a DomHelper Object (defaults to false)
9420  * @cfg {String} title Default text to display in the title bar (defaults to null)
9421  * @cfg {Number} width Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
9422  * @cfg {Number} height Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
9423  * @cfg {Number} x The default left page coordinate of the dialog (defaults to center screen)
9424  * @cfg {Number} y The default top page coordinate of the dialog (defaults to center screen)
9425  * @cfg {String/Element} animateTarget Id or element from which the dialog should animate while opening
9426  * (defaults to null with no animation)
9427  * @cfg {Boolean} resizable False to disable manual dialog resizing (defaults to true)
9428  * @cfg {String} resizeHandles Which resize handles to display - see the {@link Roo.Resizable} handles config
9429  * property for valid values (defaults to 'all')
9430  * @cfg {Number} minHeight The minimum allowable height for a resizable dialog (defaults to 80)
9431  * @cfg {Number} minWidth The minimum allowable width for a resizable dialog (defaults to 200)
9432  * @cfg {Boolean} modal True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)
9433  * @cfg {Boolean} autoScroll True to allow the dialog body contents to overflow and display scrollbars (defaults to false)
9434  * @cfg {Boolean} closable False to remove the built-in top-right corner close button (defaults to true)
9435  * @cfg {Boolean} collapsible False to remove the built-in top-right corner collapse button (defaults to true)
9436  * @cfg {Boolean} constraintoviewport True to keep the dialog constrained within the visible viewport boundaries (defaults to true)
9437  * @cfg {Boolean} syncHeightBeforeShow True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)
9438  * @cfg {Boolean} draggable False to disable dragging of the dialog within the viewport (defaults to true)
9439  * @cfg {Boolean} autoTabs If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)
9440  * @cfg {String} tabTag The tag name of tab elements, used when autoTabs = true (defaults to 'div')
9441  * @cfg {Boolean} proxyDrag True to drag a lightweight proxy element rather than the dialog itself, used when
9442  * draggable = true (defaults to false)
9443  * @cfg {Boolean} fixedcenter True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)
9444  * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
9445  * shadow (defaults to false)
9446  * @cfg {Number} shadowOffset The number of pixels to offset the shadow if displayed (defaults to 5)
9447  * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "right")
9448  * @cfg {Number} minButtonWidth Minimum width of all dialog buttons (defaults to 75)
9449  * @cfg {Array} buttons Array of buttons
9450  * @cfg {Boolean} shim True to create an iframe shim that prevents selects from showing through (defaults to false)
9451  * @constructor
9452  * Create a new BasicDialog.
9453  * @param {String/HTMLElement/Roo.Element} el The container element or DOM node, or its id
9454  * @param {Object} config Configuration options
9455  */
9456 Roo.BasicDialog = function(el, config){
9457     this.el = Roo.get(el);
9458     var dh = Roo.DomHelper;
9459     if(!this.el && config && config.autoCreate){
9460         if(typeof config.autoCreate == "object"){
9461             if(!config.autoCreate.id){
9462                 config.autoCreate.id = el;
9463             }
9464             this.el = dh.append(document.body,
9465                         config.autoCreate, true);
9466         }else{
9467             this.el = dh.append(document.body,
9468                         {tag: "div", id: el, style:'visibility:hidden;'}, true);
9469         }
9470     }
9471     el = this.el;
9472     el.setDisplayed(true);
9473     el.hide = this.hideAction;
9474     this.id = el.id;
9475     el.addClass("x-dlg");
9476
9477     Roo.apply(this, config);
9478
9479     this.proxy = el.createProxy("x-dlg-proxy");
9480     this.proxy.hide = this.hideAction;
9481     this.proxy.setOpacity(.5);
9482     this.proxy.hide();
9483
9484     if(config.width){
9485         el.setWidth(config.width);
9486     }
9487     if(config.height){
9488         el.setHeight(config.height);
9489     }
9490     this.size = el.getSize();
9491     if(typeof config.x != "undefined" && typeof config.y != "undefined"){
9492         this.xy = [config.x,config.y];
9493     }else{
9494         this.xy = el.getCenterXY(true);
9495     }
9496     /** The header element @type Roo.Element */
9497     this.header = el.child("> .x-dlg-hd");
9498     /** The body element @type Roo.Element */
9499     this.body = el.child("> .x-dlg-bd");
9500     /** The footer element @type Roo.Element */
9501     this.footer = el.child("> .x-dlg-ft");
9502
9503     if(!this.header){
9504         this.header = el.createChild({tag: "div", cls:"x-dlg-hd", html: "&#160;"}, this.body ? this.body.dom : null);
9505     }
9506     if(!this.body){
9507         this.body = el.createChild({tag: "div", cls:"x-dlg-bd"});
9508     }
9509
9510     this.header.unselectable();
9511     if(this.title){
9512         this.header.update(this.title);
9513     }
9514     // this element allows the dialog to be focused for keyboard event
9515     this.focusEl = el.createChild({tag: "a", href:"#", cls:"x-dlg-focus", tabIndex:"-1"});
9516     this.focusEl.swallowEvent("click", true);
9517
9518     this.header.wrap({cls:"x-dlg-hd-right"}).wrap({cls:"x-dlg-hd-left"}, true);
9519
9520     // wrap the body and footer for special rendering
9521     this.bwrap = this.body.wrap({tag: "div", cls:"x-dlg-dlg-body"});
9522     if(this.footer){
9523         this.bwrap.dom.appendChild(this.footer.dom);
9524     }
9525
9526     this.bg = this.el.createChild({
9527         tag: "div", cls:"x-dlg-bg",
9528         html: '<div class="x-dlg-bg-left"><div class="x-dlg-bg-right"><div class="x-dlg-bg-center">&#160;</div></div></div>'
9529     });
9530     this.centerBg = this.bg.child("div.x-dlg-bg-center");
9531
9532
9533     if(this.autoScroll !== false && !this.autoTabs){
9534         this.body.setStyle("overflow", "auto");
9535     }
9536
9537     this.toolbox = this.el.createChild({cls: "x-dlg-toolbox"});
9538
9539     if(this.closable !== false){
9540         this.el.addClass("x-dlg-closable");
9541         this.close = this.toolbox.createChild({cls:"x-dlg-close"});
9542         this.close.on("click", this.closeClick, this);
9543         this.close.addClassOnOver("x-dlg-close-over");
9544     }
9545     if(this.collapsible !== false){
9546         this.collapseBtn = this.toolbox.createChild({cls:"x-dlg-collapse"});
9547         this.collapseBtn.on("click", this.collapseClick, this);
9548         this.collapseBtn.addClassOnOver("x-dlg-collapse-over");
9549         this.header.on("dblclick", this.collapseClick, this);
9550     }
9551     if(this.resizable !== false){
9552         this.el.addClass("x-dlg-resizable");
9553         this.resizer = new Roo.Resizable(el, {
9554             minWidth: this.minWidth || 80,
9555             minHeight:this.minHeight || 80,
9556             handles: this.resizeHandles || "all",
9557             pinned: true
9558         });
9559         this.resizer.on("beforeresize", this.beforeResize, this);
9560         this.resizer.on("resize", this.onResize, this);
9561     }
9562     if(this.draggable !== false){
9563         el.addClass("x-dlg-draggable");
9564         if (!this.proxyDrag) {
9565             var dd = new Roo.dd.DD(el.dom.id, "WindowDrag");
9566         }
9567         else {
9568             var dd = new Roo.dd.DDProxy(el.dom.id, "WindowDrag", {dragElId: this.proxy.id});
9569         }
9570         dd.setHandleElId(this.header.id);
9571         dd.endDrag = this.endMove.createDelegate(this);
9572         dd.startDrag = this.startMove.createDelegate(this);
9573         dd.onDrag = this.onDrag.createDelegate(this);
9574         dd.scroll = false;
9575         this.dd = dd;
9576     }
9577     if(this.modal){
9578         this.mask = dh.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
9579         this.mask.enableDisplayMode("block");
9580         this.mask.hide();
9581         this.el.addClass("x-dlg-modal");
9582     }
9583     if(this.shadow){
9584         this.shadow = new Roo.Shadow({
9585             mode : typeof this.shadow == "string" ? this.shadow : "sides",
9586             offset : this.shadowOffset
9587         });
9588     }else{
9589         this.shadowOffset = 0;
9590     }
9591     if(Roo.useShims && this.shim !== false){
9592         this.shim = this.el.createShim();
9593         this.shim.hide = this.hideAction;
9594         this.shim.hide();
9595     }else{
9596         this.shim = false;
9597     }
9598     if(this.autoTabs){
9599         this.initTabs();
9600     }
9601     if (this.buttons) { 
9602         var bts= this.buttons;
9603         this.buttons = [];
9604         Roo.each(bts, function(b) {
9605             this.addButton(b);
9606         }, this);
9607     }
9608     
9609     
9610     this.addEvents({
9611         /**
9612          * @event keydown
9613          * Fires when a key is pressed
9614          * @param {Roo.BasicDialog} this
9615          * @param {Roo.EventObject} e
9616          */
9617         "keydown" : true,
9618         /**
9619          * @event move
9620          * Fires when this dialog is moved by the user.
9621          * @param {Roo.BasicDialog} this
9622          * @param {Number} x The new page X
9623          * @param {Number} y The new page Y
9624          */
9625         "move" : true,
9626         /**
9627          * @event resize
9628          * Fires when this dialog is resized by the user.
9629          * @param {Roo.BasicDialog} this
9630          * @param {Number} width The new width
9631          * @param {Number} height The new height
9632          */
9633         "resize" : true,
9634         /**
9635          * @event beforehide
9636          * Fires before this dialog is hidden.
9637          * @param {Roo.BasicDialog} this
9638          */
9639         "beforehide" : true,
9640         /**
9641          * @event hide
9642          * Fires when this dialog is hidden.
9643          * @param {Roo.BasicDialog} this
9644          */
9645         "hide" : true,
9646         /**
9647          * @event beforeshow
9648          * Fires before this dialog is shown.
9649          * @param {Roo.BasicDialog} this
9650          */
9651         "beforeshow" : true,
9652         /**
9653          * @event show
9654          * Fires when this dialog is shown.
9655          * @param {Roo.BasicDialog} this
9656          */
9657         "show" : true
9658     });
9659     el.on("keydown", this.onKeyDown, this);
9660     el.on("mousedown", this.toFront, this);
9661     Roo.EventManager.onWindowResize(this.adjustViewport, this, true);
9662     this.el.hide();
9663     Roo.DialogManager.register(this);
9664     Roo.BasicDialog.superclass.constructor.call(this);
9665 };
9666
9667 Roo.extend(Roo.BasicDialog, Roo.util.Observable, {
9668     shadowOffset: Roo.isIE ? 6 : 5,
9669     minHeight: 80,
9670     minWidth: 200,
9671     minButtonWidth: 75,
9672     defaultButton: null,
9673     buttonAlign: "right",
9674     tabTag: 'div',
9675     firstShow: true,
9676
9677     /**
9678      * Sets the dialog title text
9679      * @param {String} text The title text to display
9680      * @return {Roo.BasicDialog} this
9681      */
9682     setTitle : function(text){
9683         this.header.update(text);
9684         return this;
9685     },
9686
9687     // private
9688     closeClick : function(){
9689         this.hide();
9690     },
9691
9692     // private
9693     collapseClick : function(){
9694         this[this.collapsed ? "expand" : "collapse"]();
9695     },
9696
9697     /**
9698      * Collapses the dialog to its minimized state (only the title bar is visible).
9699      * Equivalent to the user clicking the collapse dialog button.
9700      */
9701     collapse : function(){
9702         if(!this.collapsed){
9703             this.collapsed = true;
9704             this.el.addClass("x-dlg-collapsed");
9705             this.restoreHeight = this.el.getHeight();
9706             this.resizeTo(this.el.getWidth(), this.header.getHeight());
9707         }
9708     },
9709
9710     /**
9711      * Expands a collapsed dialog back to its normal state.  Equivalent to the user
9712      * clicking the expand dialog button.
9713      */
9714     expand : function(){
9715         if(this.collapsed){
9716             this.collapsed = false;
9717             this.el.removeClass("x-dlg-collapsed");
9718             this.resizeTo(this.el.getWidth(), this.restoreHeight);
9719         }
9720     },
9721
9722     /**
9723      * Reinitializes the tabs component, clearing out old tabs and finding new ones.
9724      * @return {Roo.TabPanel} The tabs component
9725      */
9726     initTabs : function(){
9727         var tabs = this.getTabs();
9728         while(tabs.getTab(0)){
9729             tabs.removeTab(0);
9730         }
9731         this.el.select(this.tabTag+'.x-dlg-tab').each(function(el){
9732             var dom = el.dom;
9733             tabs.addTab(Roo.id(dom), dom.title);
9734             dom.title = "";
9735         });
9736         tabs.activate(0);
9737         return tabs;
9738     },
9739
9740     // private
9741     beforeResize : function(){
9742         this.resizer.minHeight = Math.max(this.minHeight, this.getHeaderFooterHeight(true)+40);
9743     },
9744
9745     // private
9746     onResize : function(){
9747         this.refreshSize();
9748         this.syncBodyHeight();
9749         this.adjustAssets();
9750         this.focus();
9751         this.fireEvent("resize", this, this.size.width, this.size.height);
9752     },
9753
9754     // private
9755     onKeyDown : function(e){
9756         if(this.isVisible()){
9757             this.fireEvent("keydown", this, e);
9758         }
9759     },
9760
9761     /**
9762      * Resizes the dialog.
9763      * @param {Number} width
9764      * @param {Number} height
9765      * @return {Roo.BasicDialog} this
9766      */
9767     resizeTo : function(width, height){
9768         this.el.setSize(width, height);
9769         this.size = {width: width, height: height};
9770         this.syncBodyHeight();
9771         if(this.fixedcenter){
9772             this.center();
9773         }
9774         if(this.isVisible()){
9775             this.constrainXY();
9776             this.adjustAssets();
9777         }
9778         this.fireEvent("resize", this, width, height);
9779         return this;
9780     },
9781
9782
9783     /**
9784      * Resizes the dialog to fit the specified content size.
9785      * @param {Number} width
9786      * @param {Number} height
9787      * @return {Roo.BasicDialog} this
9788      */
9789     setContentSize : function(w, h){
9790         h += this.getHeaderFooterHeight() + this.body.getMargins("tb");
9791         w += this.body.getMargins("lr") + this.bwrap.getMargins("lr") + this.centerBg.getPadding("lr");
9792         //if(!this.el.isBorderBox()){
9793             h +=  this.body.getPadding("tb") + this.bwrap.getBorderWidth("tb") + this.body.getBorderWidth("tb") + this.el.getBorderWidth("tb");
9794             w += this.body.getPadding("lr") + this.bwrap.getBorderWidth("lr") + this.body.getBorderWidth("lr") + this.bwrap.getPadding("lr") + this.el.getBorderWidth("lr");
9795         //}
9796         if(this.tabs){
9797             h += this.tabs.stripWrap.getHeight() + this.tabs.bodyEl.getMargins("tb") + this.tabs.bodyEl.getPadding("tb");
9798             w += this.tabs.bodyEl.getMargins("lr") + this.tabs.bodyEl.getPadding("lr");
9799         }
9800         this.resizeTo(w, h);
9801         return this;
9802     },
9803
9804     /**
9805      * Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be
9806      * executed in response to a particular key being pressed while the dialog is active.
9807      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the following options:
9808      *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
9809      * @param {Function} fn The function to call
9810      * @param {Object} scope (optional) The scope of the function
9811      * @return {Roo.BasicDialog} this
9812      */
9813     addKeyListener : function(key, fn, scope){
9814         var keyCode, shift, ctrl, alt;
9815         if(typeof key == "object" && !(key instanceof Array)){
9816             keyCode = key["key"];
9817             shift = key["shift"];
9818             ctrl = key["ctrl"];
9819             alt = key["alt"];
9820         }else{
9821             keyCode = key;
9822         }
9823         var handler = function(dlg, e){
9824             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
9825                 var k = e.getKey();
9826                 if(keyCode instanceof Array){
9827                     for(var i = 0, len = keyCode.length; i < len; i++){
9828                         if(keyCode[i] == k){
9829                           fn.call(scope || window, dlg, k, e);
9830                           return;
9831                         }
9832                     }
9833                 }else{
9834                     if(k == keyCode){
9835                         fn.call(scope || window, dlg, k, e);
9836                     }
9837                 }
9838             }
9839         };
9840         this.on("keydown", handler);
9841         return this;
9842     },
9843
9844     /**
9845      * Returns the TabPanel component (creates it if it doesn't exist).
9846      * Note: If you wish to simply check for the existence of tabs without creating them,
9847      * check for a null 'tabs' property.
9848      * @return {Roo.TabPanel} The tabs component
9849      */
9850     getTabs : function(){
9851         if(!this.tabs){
9852             this.el.addClass("x-dlg-auto-tabs");
9853             this.body.addClass(this.tabPosition == "bottom" ? "x-tabs-bottom" : "x-tabs-top");
9854             this.tabs = new Roo.TabPanel(this.body.dom, this.tabPosition == "bottom");
9855         }
9856         return this.tabs;
9857     },
9858
9859     /**
9860      * Adds a button to the footer section of the dialog.
9861      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
9862      * object or a valid Roo.DomHelper element config
9863      * @param {Function} handler The function called when the button is clicked
9864      * @param {Object} scope (optional) The scope of the handler function (accepts position as a property)
9865      * @return {Roo.Button} The new button
9866      */
9867     addButton : function(config, handler, scope){
9868         var dh = Roo.DomHelper;
9869         if(!this.footer){
9870             this.footer = dh.append(this.bwrap, {tag: "div", cls:"x-dlg-ft"}, true);
9871         }
9872         if(!this.btnContainer){
9873             var tb = this.footer.createChild({
9874
9875                 cls:"x-dlg-btns x-dlg-btns-"+this.buttonAlign,
9876                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
9877             }, null, true);
9878             this.btnContainer = tb.firstChild.firstChild.firstChild;
9879         }
9880         var bconfig = {
9881             handler: handler,
9882             scope: scope,
9883             minWidth: this.minButtonWidth,
9884             hideParent:true
9885         };
9886         if(typeof config == "string"){
9887             bconfig.text = config;
9888         }else{
9889             if(config.tag){
9890                 bconfig.dhconfig = config;
9891             }else{
9892                 Roo.apply(bconfig, config);
9893             }
9894         }
9895         var fc = false;
9896         if ((typeof(bconfig.position) != 'undefined') && bconfig.position < this.btnContainer.childNodes.length-1) {
9897             bconfig.position = Math.max(0, bconfig.position);
9898             fc = this.btnContainer.childNodes[bconfig.position];
9899         }
9900          
9901         var btn = new Roo.Button(
9902             fc ? 
9903                 this.btnContainer.insertBefore(document.createElement("td"),fc)
9904                 : this.btnContainer.appendChild(document.createElement("td")),
9905             //Roo.get(this.btnContainer).createChild( { tag: 'td'},  fc ),
9906             bconfig
9907         );
9908         this.syncBodyHeight();
9909         if(!this.buttons){
9910             /**
9911              * Array of all the buttons that have been added to this dialog via addButton
9912              * @type Array
9913              */
9914             this.buttons = [];
9915         }
9916         this.buttons.push(btn);
9917         return btn;
9918     },
9919
9920     /**
9921      * Sets the default button to be focused when the dialog is displayed.
9922      * @param {Roo.BasicDialog.Button} btn The button object returned by {@link #addButton}
9923      * @return {Roo.BasicDialog} this
9924      */
9925     setDefaultButton : function(btn){
9926         this.defaultButton = btn;
9927         return this;
9928     },
9929
9930     // private
9931     getHeaderFooterHeight : function(safe){
9932         var height = 0;
9933         if(this.header){
9934            height += this.header.getHeight();
9935         }
9936         if(this.footer){
9937            var fm = this.footer.getMargins();
9938             height += (this.footer.getHeight()+fm.top+fm.bottom);
9939         }
9940         height += this.bwrap.getPadding("tb")+this.bwrap.getBorderWidth("tb");
9941         height += this.centerBg.getPadding("tb");
9942         return height;
9943     },
9944
9945     // private
9946     syncBodyHeight : function()
9947     {
9948         var bd = this.body, // the text
9949             cb = this.centerBg, // wrapper around bottom.. but does not seem to be used..
9950             bw = this.bwrap;
9951         var height = this.size.height - this.getHeaderFooterHeight(false);
9952         bd.setHeight(height-bd.getMargins("tb"));
9953         var hh = this.header.getHeight();
9954         var h = this.size.height-hh;
9955         cb.setHeight(h);
9956         
9957         bw.setLeftTop(cb.getPadding("l"), hh+cb.getPadding("t"));
9958         bw.setHeight(h-cb.getPadding("tb"));
9959         
9960         bw.setWidth(this.el.getWidth(true)-cb.getPadding("lr"));
9961         bd.setWidth(bw.getWidth(true));
9962         if(this.tabs){
9963             this.tabs.syncHeight();
9964             if(Roo.isIE){
9965                 this.tabs.el.repaint();
9966             }
9967         }
9968     },
9969
9970     /**
9971      * Restores the previous state of the dialog if Roo.state is configured.
9972      * @return {Roo.BasicDialog} this
9973      */
9974     restoreState : function(){
9975         var box = Roo.state.Manager.get(this.stateId || (this.el.id + "-state"));
9976         if(box && box.width){
9977             this.xy = [box.x, box.y];
9978             this.resizeTo(box.width, box.height);
9979         }
9980         return this;
9981     },
9982
9983     // private
9984     beforeShow : function(){
9985         this.expand();
9986         if(this.fixedcenter){
9987             this.xy = this.el.getCenterXY(true);
9988         }
9989         if(this.modal){
9990             Roo.get(document.body).addClass("x-body-masked");
9991             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
9992             this.mask.show();
9993         }
9994         this.constrainXY();
9995     },
9996
9997     // private
9998     animShow : function(){
9999         var b = Roo.get(this.animateTarget).getBox();
10000         this.proxy.setSize(b.width, b.height);
10001         this.proxy.setLocation(b.x, b.y);
10002         this.proxy.show();
10003         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height,
10004                     true, .35, this.showEl.createDelegate(this));
10005     },
10006
10007     /**
10008      * Shows the dialog.
10009      * @param {String/HTMLElement/Roo.Element} animateTarget (optional) Reset the animation target
10010      * @return {Roo.BasicDialog} this
10011      */
10012     show : function(animateTarget){
10013         if (this.fireEvent("beforeshow", this) === false){
10014             return;
10015         }
10016         if(this.syncHeightBeforeShow){
10017             this.syncBodyHeight();
10018         }else if(this.firstShow){
10019             this.firstShow = false;
10020             this.syncBodyHeight(); // sync the height on the first show instead of in the constructor
10021         }
10022         this.animateTarget = animateTarget || this.animateTarget;
10023         if(!this.el.isVisible()){
10024             this.beforeShow();
10025             if(this.animateTarget && Roo.get(this.animateTarget)){
10026                 this.animShow();
10027             }else{
10028                 this.showEl();
10029             }
10030         }
10031         return this;
10032     },
10033
10034     // private
10035     showEl : function(){
10036         this.proxy.hide();
10037         this.el.setXY(this.xy);
10038         this.el.show();
10039         this.adjustAssets(true);
10040         this.toFront();
10041         this.focus();
10042         // IE peekaboo bug - fix found by Dave Fenwick
10043         if(Roo.isIE){
10044             this.el.repaint();
10045         }
10046         this.fireEvent("show", this);
10047     },
10048
10049     /**
10050      * Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the
10051      * dialog itself will receive focus.
10052      */
10053     focus : function(){
10054         if(this.defaultButton){
10055             this.defaultButton.focus();
10056         }else{
10057             this.focusEl.focus();
10058         }
10059     },
10060
10061     // private
10062     constrainXY : function(){
10063         if(this.constraintoviewport !== false){
10064             if(!this.viewSize){
10065                 if(this.container){
10066                     var s = this.container.getSize();
10067                     this.viewSize = [s.width, s.height];
10068                 }else{
10069                     this.viewSize = [Roo.lib.Dom.getViewWidth(),Roo.lib.Dom.getViewHeight()];
10070                 }
10071             }
10072             var s = Roo.get(this.container||document).getScroll();
10073
10074             var x = this.xy[0], y = this.xy[1];
10075             var w = this.size.width, h = this.size.height;
10076             var vw = this.viewSize[0], vh = this.viewSize[1];
10077             // only move it if it needs it
10078             var moved = false;
10079             // first validate right/bottom
10080             if(x + w > vw+s.left){
10081                 x = vw - w;
10082                 moved = true;
10083             }
10084             if(y + h > vh+s.top){
10085                 y = vh - h;
10086                 moved = true;
10087             }
10088             // then make sure top/left isn't negative
10089             if(x < s.left){
10090                 x = s.left;
10091                 moved = true;
10092             }
10093             if(y < s.top){
10094                 y = s.top;
10095                 moved = true;
10096             }
10097             if(moved){
10098                 // cache xy
10099                 this.xy = [x, y];
10100                 if(this.isVisible()){
10101                     this.el.setLocation(x, y);
10102                     this.adjustAssets();
10103                 }
10104             }
10105         }
10106     },
10107
10108     // private
10109     onDrag : function(){
10110         if(!this.proxyDrag){
10111             this.xy = this.el.getXY();
10112             this.adjustAssets();
10113         }
10114     },
10115
10116     // private
10117     adjustAssets : function(doShow){
10118         var x = this.xy[0], y = this.xy[1];
10119         var w = this.size.width, h = this.size.height;
10120         if(doShow === true){
10121             if(this.shadow){
10122                 this.shadow.show(this.el);
10123             }
10124             if(this.shim){
10125                 this.shim.show();
10126             }
10127         }
10128         if(this.shadow && this.shadow.isVisible()){
10129             this.shadow.show(this.el);
10130         }
10131         if(this.shim && this.shim.isVisible()){
10132             this.shim.setBounds(x, y, w, h);
10133         }
10134     },
10135
10136     // private
10137     adjustViewport : function(w, h){
10138         if(!w || !h){
10139             w = Roo.lib.Dom.getViewWidth();
10140             h = Roo.lib.Dom.getViewHeight();
10141         }
10142         // cache the size
10143         this.viewSize = [w, h];
10144         if(this.modal && this.mask.isVisible()){
10145             this.mask.setSize(w, h); // first make sure the mask isn't causing overflow
10146             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
10147         }
10148         if(this.isVisible()){
10149             this.constrainXY();
10150         }
10151     },
10152
10153     /**
10154      * Destroys this dialog and all its supporting elements (including any tabs, shim,
10155      * shadow, proxy, mask, etc.)  Also removes all event listeners.
10156      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
10157      */
10158     destroy : function(removeEl){
10159         if(this.isVisible()){
10160             this.animateTarget = null;
10161             this.hide();
10162         }
10163         Roo.EventManager.removeResizeListener(this.adjustViewport, this);
10164         if(this.tabs){
10165             this.tabs.destroy(removeEl);
10166         }
10167         Roo.destroy(
10168              this.shim,
10169              this.proxy,
10170              this.resizer,
10171              this.close,
10172              this.mask
10173         );
10174         if(this.dd){
10175             this.dd.unreg();
10176         }
10177         if(this.buttons){
10178            for(var i = 0, len = this.buttons.length; i < len; i++){
10179                this.buttons[i].destroy();
10180            }
10181         }
10182         this.el.removeAllListeners();
10183         if(removeEl === true){
10184             this.el.update("");
10185             this.el.remove();
10186         }
10187         Roo.DialogManager.unregister(this);
10188     },
10189
10190     // private
10191     startMove : function(){
10192         if(this.proxyDrag){
10193             this.proxy.show();
10194         }
10195         if(this.constraintoviewport !== false){
10196             this.dd.constrainTo(document.body, {right: this.shadowOffset, bottom: this.shadowOffset});
10197         }
10198     },
10199
10200     // private
10201     endMove : function(){
10202         if(!this.proxyDrag){
10203             Roo.dd.DD.prototype.endDrag.apply(this.dd, arguments);
10204         }else{
10205             Roo.dd.DDProxy.prototype.endDrag.apply(this.dd, arguments);
10206             this.proxy.hide();
10207         }
10208         this.refreshSize();
10209         this.adjustAssets();
10210         this.focus();
10211         this.fireEvent("move", this, this.xy[0], this.xy[1]);
10212     },
10213
10214     /**
10215      * Brings this dialog to the front of any other visible dialogs
10216      * @return {Roo.BasicDialog} this
10217      */
10218     toFront : function(){
10219         Roo.DialogManager.bringToFront(this);
10220         return this;
10221     },
10222
10223     /**
10224      * Sends this dialog to the back (under) of any other visible dialogs
10225      * @return {Roo.BasicDialog} this
10226      */
10227     toBack : function(){
10228         Roo.DialogManager.sendToBack(this);
10229         return this;
10230     },
10231
10232     /**
10233      * Centers this dialog in the viewport
10234      * @return {Roo.BasicDialog} this
10235      */
10236     center : function(){
10237         var xy = this.el.getCenterXY(true);
10238         this.moveTo(xy[0], xy[1]);
10239         return this;
10240     },
10241
10242     /**
10243      * Moves the dialog's top-left corner to the specified point
10244      * @param {Number} x
10245      * @param {Number} y
10246      * @return {Roo.BasicDialog} this
10247      */
10248     moveTo : function(x, y){
10249         this.xy = [x,y];
10250         if(this.isVisible()){
10251             this.el.setXY(this.xy);
10252             this.adjustAssets();
10253         }
10254         return this;
10255     },
10256
10257     /**
10258      * Aligns the dialog to the specified element
10259      * @param {String/HTMLElement/Roo.Element} element The element to align to.
10260      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details).
10261      * @param {Array} offsets (optional) Offset the positioning by [x, y]
10262      * @return {Roo.BasicDialog} this
10263      */
10264     alignTo : function(element, position, offsets){
10265         this.xy = this.el.getAlignToXY(element, position, offsets);
10266         if(this.isVisible()){
10267             this.el.setXY(this.xy);
10268             this.adjustAssets();
10269         }
10270         return this;
10271     },
10272
10273     /**
10274      * Anchors an element to another element and realigns it when the window is resized.
10275      * @param {String/HTMLElement/Roo.Element} element The element to align to.
10276      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details)
10277      * @param {Array} offsets (optional) Offset the positioning by [x, y]
10278      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
10279      * is a number, it is used as the buffer delay (defaults to 50ms).
10280      * @return {Roo.BasicDialog} this
10281      */
10282     anchorTo : function(el, alignment, offsets, monitorScroll){
10283         var action = function(){
10284             this.alignTo(el, alignment, offsets);
10285         };
10286         Roo.EventManager.onWindowResize(action, this);
10287         var tm = typeof monitorScroll;
10288         if(tm != 'undefined'){
10289             Roo.EventManager.on(window, 'scroll', action, this,
10290                 {buffer: tm == 'number' ? monitorScroll : 50});
10291         }
10292         action.call(this);
10293         return this;
10294     },
10295
10296     /**
10297      * Returns true if the dialog is visible
10298      * @return {Boolean}
10299      */
10300     isVisible : function(){
10301         return this.el.isVisible();
10302     },
10303
10304     // private
10305     animHide : function(callback){
10306         var b = Roo.get(this.animateTarget).getBox();
10307         this.proxy.show();
10308         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height);
10309         this.el.hide();
10310         this.proxy.setBounds(b.x, b.y, b.width, b.height, true, .35,
10311                     this.hideEl.createDelegate(this, [callback]));
10312     },
10313
10314     /**
10315      * Hides the dialog.
10316      * @param {Function} callback (optional) Function to call when the dialog is hidden
10317      * @return {Roo.BasicDialog} this
10318      */
10319     hide : function(callback){
10320         if (this.fireEvent("beforehide", this) === false){
10321             return;
10322         }
10323         if(this.shadow){
10324             this.shadow.hide();
10325         }
10326         if(this.shim) {
10327           this.shim.hide();
10328         }
10329         // sometimes animateTarget seems to get set.. causing problems...
10330         // this just double checks..
10331         if(this.animateTarget && Roo.get(this.animateTarget)) {
10332            this.animHide(callback);
10333         }else{
10334             this.el.hide();
10335             this.hideEl(callback);
10336         }
10337         return this;
10338     },
10339
10340     // private
10341     hideEl : function(callback){
10342         this.proxy.hide();
10343         if(this.modal){
10344             this.mask.hide();
10345             Roo.get(document.body).removeClass("x-body-masked");
10346         }
10347         this.fireEvent("hide", this);
10348         if(typeof callback == "function"){
10349             callback();
10350         }
10351     },
10352
10353     // private
10354     hideAction : function(){
10355         this.setLeft("-10000px");
10356         this.setTop("-10000px");
10357         this.setStyle("visibility", "hidden");
10358     },
10359
10360     // private
10361     refreshSize : function(){
10362         this.size = this.el.getSize();
10363         this.xy = this.el.getXY();
10364         Roo.state.Manager.set(this.stateId || this.el.id + "-state", this.el.getBox());
10365     },
10366
10367     // private
10368     // z-index is managed by the DialogManager and may be overwritten at any time
10369     setZIndex : function(index){
10370         if(this.modal){
10371             this.mask.setStyle("z-index", index);
10372         }
10373         if(this.shim){
10374             this.shim.setStyle("z-index", ++index);
10375         }
10376         if(this.shadow){
10377             this.shadow.setZIndex(++index);
10378         }
10379         this.el.setStyle("z-index", ++index);
10380         if(this.proxy){
10381             this.proxy.setStyle("z-index", ++index);
10382         }
10383         if(this.resizer){
10384             this.resizer.proxy.setStyle("z-index", ++index);
10385         }
10386
10387         this.lastZIndex = index;
10388     },
10389
10390     /**
10391      * Returns the element for this dialog
10392      * @return {Roo.Element} The underlying dialog Element
10393      */
10394     getEl : function(){
10395         return this.el;
10396     }
10397 });
10398
10399 /**
10400  * @class Roo.DialogManager
10401  * Provides global access to BasicDialogs that have been created and
10402  * support for z-indexing (layering) multiple open dialogs.
10403  */
10404 Roo.DialogManager = function(){
10405     var list = {};
10406     var accessList = [];
10407     var front = null;
10408
10409     // private
10410     var sortDialogs = function(d1, d2){
10411         return (!d1._lastAccess || d1._lastAccess < d2._lastAccess) ? -1 : 1;
10412     };
10413
10414     // private
10415     var orderDialogs = function(){
10416         accessList.sort(sortDialogs);
10417         var seed = Roo.DialogManager.zseed;
10418         for(var i = 0, len = accessList.length; i < len; i++){
10419             var dlg = accessList[i];
10420             if(dlg){
10421                 dlg.setZIndex(seed + (i*10));
10422             }
10423         }
10424     };
10425
10426     return {
10427         /**
10428          * The starting z-index for BasicDialogs (defaults to 9000)
10429          * @type Number The z-index value
10430          */
10431         zseed : 9000,
10432
10433         // private
10434         register : function(dlg){
10435             list[dlg.id] = dlg;
10436             accessList.push(dlg);
10437         },
10438
10439         // private
10440         unregister : function(dlg){
10441             delete list[dlg.id];
10442             var i=0;
10443             var len=0;
10444             if(!accessList.indexOf){
10445                 for(  i = 0, len = accessList.length; i < len; i++){
10446                     if(accessList[i] == dlg){
10447                         accessList.splice(i, 1);
10448                         return;
10449                     }
10450                 }
10451             }else{
10452                  i = accessList.indexOf(dlg);
10453                 if(i != -1){
10454                     accessList.splice(i, 1);
10455                 }
10456             }
10457         },
10458
10459         /**
10460          * Gets a registered dialog by id
10461          * @param {String/Object} id The id of the dialog or a dialog
10462          * @return {Roo.BasicDialog} this
10463          */
10464         get : function(id){
10465             return typeof id == "object" ? id : list[id];
10466         },
10467
10468         /**
10469          * Brings the specified dialog to the front
10470          * @param {String/Object} dlg The id of the dialog or a dialog
10471          * @return {Roo.BasicDialog} this
10472          */
10473         bringToFront : function(dlg){
10474             dlg = this.get(dlg);
10475             if(dlg != front){
10476                 front = dlg;
10477                 dlg._lastAccess = new Date().getTime();
10478                 orderDialogs();
10479             }
10480             return dlg;
10481         },
10482
10483         /**
10484          * Sends the specified dialog to the back
10485          * @param {String/Object} dlg The id of the dialog or a dialog
10486          * @return {Roo.BasicDialog} this
10487          */
10488         sendToBack : function(dlg){
10489             dlg = this.get(dlg);
10490             dlg._lastAccess = -(new Date().getTime());
10491             orderDialogs();
10492             return dlg;
10493         },
10494
10495         /**
10496          * Hides all dialogs
10497          */
10498         hideAll : function(){
10499             for(var id in list){
10500                 if(list[id] && typeof list[id] != "function" && list[id].isVisible()){
10501                     list[id].hide();
10502                 }
10503             }
10504         }
10505     };
10506 }();
10507
10508 /**
10509  * @class Roo.LayoutDialog
10510  * @extends Roo.BasicDialog
10511  * Dialog which provides adjustments for working with a layout in a Dialog.
10512  * Add your necessary layout config options to the dialog's config.<br>
10513  * Example usage (including a nested layout):
10514  * <pre><code>
10515 if(!dialog){
10516     dialog = new Roo.LayoutDialog("download-dlg", {
10517         modal: true,
10518         width:600,
10519         height:450,
10520         shadow:true,
10521         minWidth:500,
10522         minHeight:350,
10523         autoTabs:true,
10524         proxyDrag:true,
10525         // layout config merges with the dialog config
10526         center:{
10527             tabPosition: "top",
10528             alwaysShowTabs: true
10529         }
10530     });
10531     dialog.addKeyListener(27, dialog.hide, dialog);
10532     dialog.setDefaultButton(dialog.addButton("Close", dialog.hide, dialog));
10533     dialog.addButton("Build It!", this.getDownload, this);
10534
10535     // we can even add nested layouts
10536     var innerLayout = new Roo.BorderLayout("dl-inner", {
10537         east: {
10538             initialSize: 200,
10539             autoScroll:true,
10540             split:true
10541         },
10542         center: {
10543             autoScroll:true
10544         }
10545     });
10546     innerLayout.beginUpdate();
10547     innerLayout.add("east", new Roo.ContentPanel("dl-details"));
10548     innerLayout.add("center", new Roo.ContentPanel("selection-panel"));
10549     innerLayout.endUpdate(true);
10550
10551     var layout = dialog.getLayout();
10552     layout.beginUpdate();
10553     layout.add("center", new Roo.ContentPanel("standard-panel",
10554                         {title: "Download the Source", fitToFrame:true}));
10555     layout.add("center", new Roo.NestedLayoutPanel(innerLayout,
10556                {title: "Build your own roo.js"}));
10557     layout.getRegion("center").showPanel(sp);
10558     layout.endUpdate();
10559 }
10560 </code></pre>
10561     * @constructor
10562     * @param {String/HTMLElement/Roo.Element} el The id of or container element, or config
10563     * @param {Object} config configuration options
10564   */
10565 Roo.LayoutDialog = function(el, cfg){
10566     
10567     var config=  cfg;
10568     if (typeof(cfg) == 'undefined') {
10569         config = Roo.apply({}, el);
10570         // not sure why we use documentElement here.. - it should always be body.
10571         // IE7 borks horribly if we use documentElement.
10572         // webkit also does not like documentElement - it creates a body element...
10573         el = Roo.get( document.body || document.documentElement ).createChild();
10574         //config.autoCreate = true;
10575     }
10576     
10577     
10578     config.autoTabs = false;
10579     Roo.LayoutDialog.superclass.constructor.call(this, el, config);
10580     this.body.setStyle({overflow:"hidden", position:"relative"});
10581     this.layout = new Roo.BorderLayout(this.body.dom, config);
10582     this.layout.monitorWindowResize = false;
10583     this.el.addClass("x-dlg-auto-layout");
10584     // fix case when center region overwrites center function
10585     this.center = Roo.BasicDialog.prototype.center;
10586     this.on("show", this.layout.layout, this.layout, true);
10587     if (config.items) {
10588         var xitems = config.items;
10589         delete config.items;
10590         Roo.each(xitems, this.addxtype, this);
10591     }
10592     
10593     
10594 };
10595 Roo.extend(Roo.LayoutDialog, Roo.BasicDialog, {
10596     /**
10597      * Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout.
10598      * @deprecated
10599      */
10600     endUpdate : function(){
10601         this.layout.endUpdate();
10602     },
10603
10604     /**
10605      * Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout.
10606      *  @deprecated
10607      */
10608     beginUpdate : function(){
10609         this.layout.beginUpdate();
10610     },
10611
10612     /**
10613      * Get the BorderLayout for this dialog
10614      * @return {Roo.BorderLayout}
10615      */
10616     getLayout : function(){
10617         return this.layout;
10618     },
10619
10620     showEl : function(){
10621         Roo.LayoutDialog.superclass.showEl.apply(this, arguments);
10622         if(Roo.isIE7){
10623             this.layout.layout();
10624         }
10625     },
10626
10627     // private
10628     // Use the syncHeightBeforeShow config option to control this automatically
10629     syncBodyHeight : function(){
10630         Roo.LayoutDialog.superclass.syncBodyHeight.call(this);
10631         if(this.layout){this.layout.layout();}
10632     },
10633     
10634       /**
10635      * Add an xtype element (actually adds to the layout.)
10636      * @return {Object} xdata xtype object data.
10637      */
10638     
10639     addxtype : function(c) {
10640         return this.layout.addxtype(c);
10641     }
10642 });/*
10643  * Based on:
10644  * Ext JS Library 1.1.1
10645  * Copyright(c) 2006-2007, Ext JS, LLC.
10646  *
10647  * Originally Released Under LGPL - original licence link has changed is not relivant.
10648  *
10649  * Fork - LGPL
10650  * <script type="text/javascript">
10651  */
10652  
10653 /**
10654  * @class Roo.MessageBox
10655  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
10656  * Example usage:
10657  *<pre><code>
10658 // Basic alert:
10659 Roo.Msg.alert('Status', 'Changes saved successfully.');
10660
10661 // Prompt for user data:
10662 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
10663     if (btn == 'ok'){
10664         // process text value...
10665     }
10666 });
10667
10668 // Show a dialog using config options:
10669 Roo.Msg.show({
10670    title:'Save Changes?',
10671    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
10672    buttons: Roo.Msg.YESNOCANCEL,
10673    fn: processResult,
10674    animEl: 'elId'
10675 });
10676 </code></pre>
10677  * @singleton
10678  */
10679 Roo.MessageBox = function(){
10680     var dlg, opt, mask, waitTimer;
10681     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
10682     var buttons, activeTextEl, bwidth;
10683
10684     // private
10685     var handleButton = function(button){
10686         dlg.hide();
10687         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
10688     };
10689
10690     // private
10691     var handleHide = function(){
10692         if(opt && opt.cls){
10693             dlg.el.removeClass(opt.cls);
10694         }
10695         if(waitTimer){
10696             Roo.TaskMgr.stop(waitTimer);
10697             waitTimer = null;
10698         }
10699     };
10700
10701     // private
10702     var updateButtons = function(b){
10703         var width = 0;
10704         if(!b){
10705             buttons["ok"].hide();
10706             buttons["cancel"].hide();
10707             buttons["yes"].hide();
10708             buttons["no"].hide();
10709             dlg.footer.dom.style.display = 'none';
10710             return width;
10711         }
10712         dlg.footer.dom.style.display = '';
10713         for(var k in buttons){
10714             if(typeof buttons[k] != "function"){
10715                 if(b[k]){
10716                     buttons[k].show();
10717                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.MessageBox.buttonText[k]);
10718                     width += buttons[k].el.getWidth()+15;
10719                 }else{
10720                     buttons[k].hide();
10721                 }
10722             }
10723         }
10724         return width;
10725     };
10726
10727     // private
10728     var handleEsc = function(d, k, e){
10729         if(opt && opt.closable !== false){
10730             dlg.hide();
10731         }
10732         if(e){
10733             e.stopEvent();
10734         }
10735     };
10736
10737     return {
10738         /**
10739          * Returns a reference to the underlying {@link Roo.BasicDialog} element
10740          * @return {Roo.BasicDialog} The BasicDialog element
10741          */
10742         getDialog : function(){
10743            if(!dlg){
10744                 dlg = new Roo.BasicDialog("x-msg-box", {
10745                     autoCreate : true,
10746                     shadow: true,
10747                     draggable: true,
10748                     resizable:false,
10749                     constraintoviewport:false,
10750                     fixedcenter:true,
10751                     collapsible : false,
10752                     shim:true,
10753                     modal: true,
10754                     width:400, height:100,
10755                     buttonAlign:"center",
10756                     closeClick : function(){
10757                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
10758                             handleButton("no");
10759                         }else{
10760                             handleButton("cancel");
10761                         }
10762                     }
10763                 });
10764                 dlg.on("hide", handleHide);
10765                 mask = dlg.mask;
10766                 dlg.addKeyListener(27, handleEsc);
10767                 buttons = {};
10768                 var bt = this.buttonText;
10769                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
10770                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
10771                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
10772                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
10773                 bodyEl = dlg.body.createChild({
10774
10775                     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>'
10776                 });
10777                 msgEl = bodyEl.dom.firstChild;
10778                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
10779                 textboxEl.enableDisplayMode();
10780                 textboxEl.addKeyListener([10,13], function(){
10781                     if(dlg.isVisible() && opt && opt.buttons){
10782                         if(opt.buttons.ok){
10783                             handleButton("ok");
10784                         }else if(opt.buttons.yes){
10785                             handleButton("yes");
10786                         }
10787                     }
10788                 });
10789                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
10790                 textareaEl.enableDisplayMode();
10791                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
10792                 progressEl.enableDisplayMode();
10793                 var pf = progressEl.dom.firstChild;
10794                 if (pf) {
10795                     pp = Roo.get(pf.firstChild);
10796                     pp.setHeight(pf.offsetHeight);
10797                 }
10798                 
10799             }
10800             return dlg;
10801         },
10802
10803         /**
10804          * Updates the message box body text
10805          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
10806          * the XHTML-compliant non-breaking space character '&amp;#160;')
10807          * @return {Roo.MessageBox} This message box
10808          */
10809         updateText : function(text){
10810             if(!dlg.isVisible() && !opt.width){
10811                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
10812             }
10813             msgEl.innerHTML = text || '&#160;';
10814       
10815             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
10816             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
10817             var w = Math.max(
10818                     Math.min(opt.width || cw , this.maxWidth), 
10819                     Math.max(opt.minWidth || this.minWidth, bwidth)
10820             );
10821             if(opt.prompt){
10822                 activeTextEl.setWidth(w);
10823             }
10824             if(dlg.isVisible()){
10825                 dlg.fixedcenter = false;
10826             }
10827             // to big, make it scroll. = But as usual stupid IE does not support
10828             // !important..
10829             
10830             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
10831                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
10832                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
10833             } else {
10834                 bodyEl.dom.style.height = '';
10835                 bodyEl.dom.style.overflowY = '';
10836             }
10837             if (cw > w) {
10838                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
10839             } else {
10840                 bodyEl.dom.style.overflowX = '';
10841             }
10842             
10843             dlg.setContentSize(w, bodyEl.getHeight());
10844             if(dlg.isVisible()){
10845                 dlg.fixedcenter = true;
10846             }
10847             return this;
10848         },
10849
10850         /**
10851          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
10852          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
10853          * @param {Number} value Any number between 0 and 1 (e.g., .5)
10854          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
10855          * @return {Roo.MessageBox} This message box
10856          */
10857         updateProgress : function(value, text){
10858             if(text){
10859                 this.updateText(text);
10860             }
10861             if (pp) { // weird bug on my firefox - for some reason this is not defined
10862                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
10863             }
10864             return this;
10865         },        
10866
10867         /**
10868          * Returns true if the message box is currently displayed
10869          * @return {Boolean} True if the message box is visible, else false
10870          */
10871         isVisible : function(){
10872             return dlg && dlg.isVisible();  
10873         },
10874
10875         /**
10876          * Hides the message box if it is displayed
10877          */
10878         hide : function(){
10879             if(this.isVisible()){
10880                 dlg.hide();
10881             }  
10882         },
10883
10884         /**
10885          * Displays a new message box, or reinitializes an existing message box, based on the config options
10886          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
10887          * The following config object properties are supported:
10888          * <pre>
10889 Property    Type             Description
10890 ----------  ---------------  ------------------------------------------------------------------------------------
10891 animEl            String/Element   An id or Element from which the message box should animate as it opens and
10892                                    closes (defaults to undefined)
10893 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
10894                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
10895 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
10896                                    progress and wait dialogs will ignore this property and always hide the
10897                                    close button as they can only be closed programmatically.
10898 cls               String           A custom CSS class to apply to the message box element
10899 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
10900                                    displayed (defaults to 75)
10901 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
10902                                    function will be btn (the name of the button that was clicked, if applicable,
10903                                    e.g. "ok"), and text (the value of the active text field, if applicable).
10904                                    Progress and wait dialogs will ignore this option since they do not respond to
10905                                    user actions and can only be closed programmatically, so any required function
10906                                    should be called by the same code after it closes the dialog.
10907 icon              String           A CSS class that provides a background image to be used as an icon for
10908                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
10909 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
10910 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
10911 modal             Boolean          False to allow user interaction with the page while the message box is
10912                                    displayed (defaults to true)
10913 msg               String           A string that will replace the existing message box body text (defaults
10914                                    to the XHTML-compliant non-breaking space character '&#160;')
10915 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
10916 progress          Boolean          True to display a progress bar (defaults to false)
10917 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
10918 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
10919 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
10920 title             String           The title text
10921 value             String           The string value to set into the active textbox element if displayed
10922 wait              Boolean          True to display a progress bar (defaults to false)
10923 width             Number           The width of the dialog in pixels
10924 </pre>
10925          *
10926          * Example usage:
10927          * <pre><code>
10928 Roo.Msg.show({
10929    title: 'Address',
10930    msg: 'Please enter your address:',
10931    width: 300,
10932    buttons: Roo.MessageBox.OKCANCEL,
10933    multiline: true,
10934    fn: saveAddress,
10935    animEl: 'addAddressBtn'
10936 });
10937 </code></pre>
10938          * @param {Object} config Configuration options
10939          * @return {Roo.MessageBox} This message box
10940          */
10941         show : function(options)
10942         {
10943             
10944             // this causes nightmares if you show one dialog after another
10945             // especially on callbacks..
10946              
10947             if(this.isVisible()){
10948                 
10949                 this.hide();
10950                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
10951                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
10952                 Roo.log("New Dialog Message:" +  options.msg )
10953                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
10954                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
10955                 
10956             }
10957             var d = this.getDialog();
10958             opt = options;
10959             d.setTitle(opt.title || "&#160;");
10960             d.close.setDisplayed(opt.closable !== false);
10961             activeTextEl = textboxEl;
10962             opt.prompt = opt.prompt || (opt.multiline ? true : false);
10963             if(opt.prompt){
10964                 if(opt.multiline){
10965                     textboxEl.hide();
10966                     textareaEl.show();
10967                     textareaEl.setHeight(typeof opt.multiline == "number" ?
10968                         opt.multiline : this.defaultTextHeight);
10969                     activeTextEl = textareaEl;
10970                 }else{
10971                     textboxEl.show();
10972                     textareaEl.hide();
10973                 }
10974             }else{
10975                 textboxEl.hide();
10976                 textareaEl.hide();
10977             }
10978             progressEl.setDisplayed(opt.progress === true);
10979             this.updateProgress(0);
10980             activeTextEl.dom.value = opt.value || "";
10981             if(opt.prompt){
10982                 dlg.setDefaultButton(activeTextEl);
10983             }else{
10984                 var bs = opt.buttons;
10985                 var db = null;
10986                 if(bs && bs.ok){
10987                     db = buttons["ok"];
10988                 }else if(bs && bs.yes){
10989                     db = buttons["yes"];
10990                 }
10991                 dlg.setDefaultButton(db);
10992             }
10993             bwidth = updateButtons(opt.buttons);
10994             this.updateText(opt.msg);
10995             if(opt.cls){
10996                 d.el.addClass(opt.cls);
10997             }
10998             d.proxyDrag = opt.proxyDrag === true;
10999             d.modal = opt.modal !== false;
11000             d.mask = opt.modal !== false ? mask : false;
11001             if(!d.isVisible()){
11002                 // force it to the end of the z-index stack so it gets a cursor in FF
11003                 document.body.appendChild(dlg.el.dom);
11004                 d.animateTarget = null;
11005                 d.show(options.animEl);
11006             }
11007             return this;
11008         },
11009
11010         /**
11011          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
11012          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
11013          * and closing the message box when the process is complete.
11014          * @param {String} title The title bar text
11015          * @param {String} msg The message box body text
11016          * @return {Roo.MessageBox} This message box
11017          */
11018         progress : function(title, msg){
11019             this.show({
11020                 title : title,
11021                 msg : msg,
11022                 buttons: false,
11023                 progress:true,
11024                 closable:false,
11025                 minWidth: this.minProgressWidth,
11026                 modal : true
11027             });
11028             return this;
11029         },
11030
11031         /**
11032          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
11033          * If a callback function is passed it will be called after the user clicks the button, and the
11034          * id of the button that was clicked will be passed as the only parameter to the callback
11035          * (could also be the top-right close button).
11036          * @param {String} title The title bar text
11037          * @param {String} msg The message box body text
11038          * @param {Function} fn (optional) The callback function invoked after the message box is closed
11039          * @param {Object} scope (optional) The scope of the callback function
11040          * @return {Roo.MessageBox} This message box
11041          */
11042         alert : function(title, msg, fn, scope){
11043             this.show({
11044                 title : title,
11045                 msg : msg,
11046                 buttons: this.OK,
11047                 fn: fn,
11048                 scope : scope,
11049                 modal : true
11050             });
11051             return this;
11052         },
11053
11054         /**
11055          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
11056          * interaction while waiting for a long-running process to complete that does not have defined intervals.
11057          * You are responsible for closing the message box when the process is complete.
11058          * @param {String} msg The message box body text
11059          * @param {String} title (optional) The title bar text
11060          * @return {Roo.MessageBox} This message box
11061          */
11062         wait : function(msg, title){
11063             this.show({
11064                 title : title,
11065                 msg : msg,
11066                 buttons: false,
11067                 closable:false,
11068                 progress:true,
11069                 modal:true,
11070                 width:300,
11071                 wait:true
11072             });
11073             waitTimer = Roo.TaskMgr.start({
11074                 run: function(i){
11075                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
11076                 },
11077                 interval: 1000
11078             });
11079             return this;
11080         },
11081
11082         /**
11083          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
11084          * If a callback function is passed it will be called after the user clicks either button, and the id of the
11085          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
11086          * @param {String} title The title bar text
11087          * @param {String} msg The message box body text
11088          * @param {Function} fn (optional) The callback function invoked after the message box is closed
11089          * @param {Object} scope (optional) The scope of the callback function
11090          * @return {Roo.MessageBox} This message box
11091          */
11092         confirm : function(title, msg, fn, scope){
11093             this.show({
11094                 title : title,
11095                 msg : msg,
11096                 buttons: this.YESNO,
11097                 fn: fn,
11098                 scope : scope,
11099                 modal : true
11100             });
11101             return this;
11102         },
11103
11104         /**
11105          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
11106          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
11107          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
11108          * (could also be the top-right close button) and the text that was entered will be passed as the two
11109          * parameters to the callback.
11110          * @param {String} title The title bar text
11111          * @param {String} msg The message box body text
11112          * @param {Function} fn (optional) The callback function invoked after the message box is closed
11113          * @param {Object} scope (optional) The scope of the callback function
11114          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
11115          * property, or the height in pixels to create the textbox (defaults to false / single-line)
11116          * @return {Roo.MessageBox} This message box
11117          */
11118         prompt : function(title, msg, fn, scope, multiline){
11119             this.show({
11120                 title : title,
11121                 msg : msg,
11122                 buttons: this.OKCANCEL,
11123                 fn: fn,
11124                 minWidth:250,
11125                 scope : scope,
11126                 prompt:true,
11127                 multiline: multiline,
11128                 modal : true
11129             });
11130             return this;
11131         },
11132
11133         /**
11134          * Button config that displays a single OK button
11135          * @type Object
11136          */
11137         OK : {ok:true},
11138         /**
11139          * Button config that displays Yes and No buttons
11140          * @type Object
11141          */
11142         YESNO : {yes:true, no:true},
11143         /**
11144          * Button config that displays OK and Cancel buttons
11145          * @type Object
11146          */
11147         OKCANCEL : {ok:true, cancel:true},
11148         /**
11149          * Button config that displays Yes, No and Cancel buttons
11150          * @type Object
11151          */
11152         YESNOCANCEL : {yes:true, no:true, cancel:true},
11153
11154         /**
11155          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
11156          * @type Number
11157          */
11158         defaultTextHeight : 75,
11159         /**
11160          * The maximum width in pixels of the message box (defaults to 600)
11161          * @type Number
11162          */
11163         maxWidth : 600,
11164         /**
11165          * The minimum width in pixels of the message box (defaults to 100)
11166          * @type Number
11167          */
11168         minWidth : 100,
11169         /**
11170          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
11171          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
11172          * @type Number
11173          */
11174         minProgressWidth : 250,
11175         /**
11176          * An object containing the default button text strings that can be overriden for localized language support.
11177          * Supported properties are: ok, cancel, yes and no.
11178          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
11179          * @type Object
11180          */
11181         buttonText : {
11182             ok : "OK",
11183             cancel : "Cancel",
11184             yes : "Yes",
11185             no : "No"
11186         }
11187     };
11188 }();
11189
11190 /**
11191  * Shorthand for {@link Roo.MessageBox}
11192  */
11193 Roo.Msg = Roo.MessageBox;/*
11194  * Based on:
11195  * Ext JS Library 1.1.1
11196  * Copyright(c) 2006-2007, Ext JS, LLC.
11197  *
11198  * Originally Released Under LGPL - original licence link has changed is not relivant.
11199  *
11200  * Fork - LGPL
11201  * <script type="text/javascript">
11202  */
11203 /**
11204  * @class Roo.QuickTips
11205  * Provides attractive and customizable tooltips for any element.
11206  * @singleton
11207  */
11208 Roo.QuickTips = function(){
11209     var el, tipBody, tipBodyText, tipTitle, tm, cfg, close, tagEls = {}, esc, removeCls = null, bdLeft, bdRight;
11210     var ce, bd, xy, dd;
11211     var visible = false, disabled = true, inited = false;
11212     var showProc = 1, hideProc = 1, dismissProc = 1, locks = [];
11213     
11214     var onOver = function(e){
11215         if(disabled){
11216             return;
11217         }
11218         var t = e.getTarget();
11219         if(!t || t.nodeType !== 1 || t == document || t == document.body){
11220             return;
11221         }
11222         if(ce && t == ce.el){
11223             clearTimeout(hideProc);
11224             return;
11225         }
11226         if(t && tagEls[t.id]){
11227             tagEls[t.id].el = t;
11228             showProc = show.defer(tm.showDelay, tm, [tagEls[t.id]]);
11229             return;
11230         }
11231         var ttp, et = Roo.fly(t);
11232         var ns = cfg.namespace;
11233         if(tm.interceptTitles && t.title){
11234             ttp = t.title;
11235             t.qtip = ttp;
11236             t.removeAttribute("title");
11237             e.preventDefault();
11238         }else{
11239             ttp = t.qtip || et.getAttributeNS(ns, cfg.attribute) || et.getAttributeNS(cfg.alt_namespace, cfg.attribute) ;
11240         }
11241         if(ttp){
11242             showProc = show.defer(tm.showDelay, tm, [{
11243                 el: t, 
11244                 text: ttp.replace(/\\n/g,'<br/>'),
11245                 width: et.getAttributeNS(ns, cfg.width),
11246                 autoHide: et.getAttributeNS(ns, cfg.hide) != "user",
11247                 title: et.getAttributeNS(ns, cfg.title),
11248                     cls: et.getAttributeNS(ns, cfg.cls)
11249             }]);
11250         }
11251     };
11252     
11253     var onOut = function(e){
11254         clearTimeout(showProc);
11255         var t = e.getTarget();
11256         if(t && ce && ce.el == t && (tm.autoHide && ce.autoHide !== false)){
11257             hideProc = setTimeout(hide, tm.hideDelay);
11258         }
11259     };
11260     
11261     var onMove = function(e){
11262         if(disabled){
11263             return;
11264         }
11265         xy = e.getXY();
11266         xy[1] += 18;
11267         if(tm.trackMouse && ce){
11268             el.setXY(xy);
11269         }
11270     };
11271     
11272     var onDown = function(e){
11273         clearTimeout(showProc);
11274         clearTimeout(hideProc);
11275         if(!e.within(el)){
11276             if(tm.hideOnClick){
11277                 hide();
11278                 tm.disable();
11279                 tm.enable.defer(100, tm);
11280             }
11281         }
11282     };
11283     
11284     var getPad = function(){
11285         return 2;//bdLeft.getPadding('l')+bdRight.getPadding('r');
11286     };
11287
11288     var show = function(o){
11289         if(disabled){
11290             return;
11291         }
11292         clearTimeout(dismissProc);
11293         ce = o;
11294         if(removeCls){ // in case manually hidden
11295             el.removeClass(removeCls);
11296             removeCls = null;
11297         }
11298         if(ce.cls){
11299             el.addClass(ce.cls);
11300             removeCls = ce.cls;
11301         }
11302         if(ce.title){
11303             tipTitle.update(ce.title);
11304             tipTitle.show();
11305         }else{
11306             tipTitle.update('');
11307             tipTitle.hide();
11308         }
11309         el.dom.style.width  = tm.maxWidth+'px';
11310         //tipBody.dom.style.width = '';
11311         tipBodyText.update(o.text);
11312         var p = getPad(), w = ce.width;
11313         if(!w){
11314             var td = tipBodyText.dom;
11315             var aw = Math.max(td.offsetWidth, td.clientWidth, td.scrollWidth);
11316             if(aw > tm.maxWidth){
11317                 w = tm.maxWidth;
11318             }else if(aw < tm.minWidth){
11319                 w = tm.minWidth;
11320             }else{
11321                 w = aw;
11322             }
11323         }
11324         //tipBody.setWidth(w);
11325         el.setWidth(parseInt(w, 10) + p);
11326         if(ce.autoHide === false){
11327             close.setDisplayed(true);
11328             if(dd){
11329                 dd.unlock();
11330             }
11331         }else{
11332             close.setDisplayed(false);
11333             if(dd){
11334                 dd.lock();
11335             }
11336         }
11337         if(xy){
11338             el.avoidY = xy[1]-18;
11339             el.setXY(xy);
11340         }
11341         if(tm.animate){
11342             el.setOpacity(.1);
11343             el.setStyle("visibility", "visible");
11344             el.fadeIn({callback: afterShow});
11345         }else{
11346             afterShow();
11347         }
11348     };
11349     
11350     var afterShow = function(){
11351         if(ce){
11352             el.show();
11353             esc.enable();
11354             if(tm.autoDismiss && ce.autoHide !== false){
11355                 dismissProc = setTimeout(hide, tm.autoDismissDelay);
11356             }
11357         }
11358     };
11359     
11360     var hide = function(noanim){
11361         clearTimeout(dismissProc);
11362         clearTimeout(hideProc);
11363         ce = null;
11364         if(el.isVisible()){
11365             esc.disable();
11366             if(noanim !== true && tm.animate){
11367                 el.fadeOut({callback: afterHide});
11368             }else{
11369                 afterHide();
11370             } 
11371         }
11372     };
11373     
11374     var afterHide = function(){
11375         el.hide();
11376         if(removeCls){
11377             el.removeClass(removeCls);
11378             removeCls = null;
11379         }
11380     };
11381     
11382     return {
11383         /**
11384         * @cfg {Number} minWidth
11385         * The minimum width of the quick tip (defaults to 40)
11386         */
11387        minWidth : 40,
11388         /**
11389         * @cfg {Number} maxWidth
11390         * The maximum width of the quick tip (defaults to 300)
11391         */
11392        maxWidth : 300,
11393         /**
11394         * @cfg {Boolean} interceptTitles
11395         * True to automatically use the element's DOM title value if available (defaults to false)
11396         */
11397        interceptTitles : false,
11398         /**
11399         * @cfg {Boolean} trackMouse
11400         * True to have the quick tip follow the mouse as it moves over the target element (defaults to false)
11401         */
11402        trackMouse : false,
11403         /**
11404         * @cfg {Boolean} hideOnClick
11405         * True to hide the quick tip if the user clicks anywhere in the document (defaults to true)
11406         */
11407        hideOnClick : true,
11408         /**
11409         * @cfg {Number} showDelay
11410         * Delay in milliseconds before the quick tip displays after the mouse enters the target element (defaults to 500)
11411         */
11412        showDelay : 500,
11413         /**
11414         * @cfg {Number} hideDelay
11415         * Delay in milliseconds before the quick tip hides when autoHide = true (defaults to 200)
11416         */
11417        hideDelay : 200,
11418         /**
11419         * @cfg {Boolean} autoHide
11420         * True to automatically hide the quick tip after the mouse exits the target element (defaults to true).
11421         * Used in conjunction with hideDelay.
11422         */
11423        autoHide : true,
11424         /**
11425         * @cfg {Boolean}
11426         * True to automatically hide the quick tip after a set period of time, regardless of the user's actions
11427         * (defaults to true).  Used in conjunction with autoDismissDelay.
11428         */
11429        autoDismiss : true,
11430         /**
11431         * @cfg {Number}
11432         * Delay in milliseconds before the quick tip hides when autoDismiss = true (defaults to 5000)
11433         */
11434        autoDismissDelay : 5000,
11435        /**
11436         * @cfg {Boolean} animate
11437         * True to turn on fade animation. Defaults to false (ClearType/scrollbar flicker issues in IE7).
11438         */
11439        animate : false,
11440
11441        /**
11442         * @cfg {String} title
11443         * Title text to display (defaults to '').  This can be any valid HTML markup.
11444         */
11445         title: '',
11446        /**
11447         * @cfg {String} text
11448         * Body text to display (defaults to '').  This can be any valid HTML markup.
11449         */
11450         text : '',
11451        /**
11452         * @cfg {String} cls
11453         * A CSS class to apply to the base quick tip element (defaults to '').
11454         */
11455         cls : '',
11456        /**
11457         * @cfg {Number} width
11458         * Width in pixels of the quick tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
11459         * minWidth or maxWidth.
11460         */
11461         width : null,
11462
11463     /**
11464      * Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access
11465      * or display QuickTips in a page.
11466      */
11467        init : function(){
11468           tm = Roo.QuickTips;
11469           cfg = tm.tagConfig;
11470           if(!inited){
11471               if(!Roo.isReady){ // allow calling of init() before onReady
11472                   Roo.onReady(Roo.QuickTips.init, Roo.QuickTips);
11473                   return;
11474               }
11475               el = new Roo.Layer({cls:"x-tip", shadow:"drop", shim: true, constrain:true, shadowOffset:4});
11476               el.fxDefaults = {stopFx: true};
11477               // maximum custom styling
11478               //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>');
11479               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>');              
11480               tipTitle = el.child('h3');
11481               tipTitle.enableDisplayMode("block");
11482               tipBody = el.child('div.x-tip-bd');
11483               tipBodyText = el.child('div.x-tip-bd-inner');
11484               //bdLeft = el.child('div.x-tip-bd-left');
11485               //bdRight = el.child('div.x-tip-bd-right');
11486               close = el.child('div.x-tip-close');
11487               close.enableDisplayMode("block");
11488               close.on("click", hide);
11489               var d = Roo.get(document);
11490               d.on("mousedown", onDown);
11491               d.on("mouseover", onOver);
11492               d.on("mouseout", onOut);
11493               d.on("mousemove", onMove);
11494               esc = d.addKeyListener(27, hide);
11495               esc.disable();
11496               if(Roo.dd.DD){
11497                   dd = el.initDD("default", null, {
11498                       onDrag : function(){
11499                           el.sync();  
11500                       }
11501                   });
11502                   dd.setHandleElId(tipTitle.id);
11503                   dd.lock();
11504               }
11505               inited = true;
11506           }
11507           this.enable(); 
11508        },
11509
11510     /**
11511      * Configures a new quick tip instance and assigns it to a target element.  The following config options
11512      * are supported:
11513      * <pre>
11514 Property    Type                   Description
11515 ----------  ---------------------  ------------------------------------------------------------------------
11516 target      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to
11517      * </ul>
11518      * @param {Object} config The config object
11519      */
11520        register : function(config){
11521            var cs = config instanceof Array ? config : arguments;
11522            for(var i = 0, len = cs.length; i < len; i++) {
11523                var c = cs[i];
11524                var target = c.target;
11525                if(target){
11526                    if(target instanceof Array){
11527                        for(var j = 0, jlen = target.length; j < jlen; j++){
11528                            tagEls[target[j]] = c;
11529                        }
11530                    }else{
11531                        tagEls[typeof target == 'string' ? target : Roo.id(target)] = c;
11532                    }
11533                }
11534            }
11535        },
11536
11537     /**
11538      * Removes this quick tip from its element and destroys it.
11539      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
11540      */
11541        unregister : function(el){
11542            delete tagEls[Roo.id(el)];
11543        },
11544
11545     /**
11546      * Enable this quick tip.
11547      */
11548        enable : function(){
11549            if(inited && disabled){
11550                locks.pop();
11551                if(locks.length < 1){
11552                    disabled = false;
11553                }
11554            }
11555        },
11556
11557     /**
11558      * Disable this quick tip.
11559      */
11560        disable : function(){
11561           disabled = true;
11562           clearTimeout(showProc);
11563           clearTimeout(hideProc);
11564           clearTimeout(dismissProc);
11565           if(ce){
11566               hide(true);
11567           }
11568           locks.push(1);
11569        },
11570
11571     /**
11572      * Returns true if the quick tip is enabled, else false.
11573      */
11574        isEnabled : function(){
11575             return !disabled;
11576        },
11577
11578         // private
11579        tagConfig : {
11580            namespace : "roo", // was ext?? this may break..
11581            alt_namespace : "ext",
11582            attribute : "qtip",
11583            width : "width",
11584            target : "target",
11585            title : "qtitle",
11586            hide : "hide",
11587            cls : "qclass"
11588        }
11589    };
11590 }();
11591
11592 // backwards compat
11593 Roo.QuickTips.tips = Roo.QuickTips.register;/*
11594  * Based on:
11595  * Ext JS Library 1.1.1
11596  * Copyright(c) 2006-2007, Ext JS, LLC.
11597  *
11598  * Originally Released Under LGPL - original licence link has changed is not relivant.
11599  *
11600  * Fork - LGPL
11601  * <script type="text/javascript">
11602  */
11603  
11604
11605 /**
11606  * @class Roo.tree.TreePanel
11607  * @extends Roo.data.Tree
11608
11609  * @cfg {Boolean} rootVisible false to hide the root node (defaults to true)
11610  * @cfg {Boolean} lines false to disable tree lines (defaults to true)
11611  * @cfg {Boolean} enableDD true to enable drag and drop
11612  * @cfg {Boolean} enableDrag true to enable just drag
11613  * @cfg {Boolean} enableDrop true to enable just drop
11614  * @cfg {Object} dragConfig Custom config to pass to the {@link Roo.tree.TreeDragZone} instance
11615  * @cfg {Object} dropConfig Custom config to pass to the {@link Roo.tree.TreeDropZone} instance
11616  * @cfg {String} ddGroup The DD group this TreePanel belongs to
11617  * @cfg {String} ddAppendOnly True if the tree should only allow append drops (use for trees which are sorted)
11618  * @cfg {Boolean} ddScroll true to enable YUI body scrolling
11619  * @cfg {Boolean} containerScroll true to register this container with ScrollManager
11620  * @cfg {Boolean} hlDrop false to disable node highlight on drop (defaults to the value of Roo.enableFx)
11621  * @cfg {String} hlColor The color of the node highlight (defaults to C3DAF9)
11622  * @cfg {Boolean} animate true to enable animated expand/collapse (defaults to the value of Roo.enableFx)
11623  * @cfg {Boolean} singleExpand true if only 1 node per branch may be expanded
11624  * @cfg {Boolean} selModel A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})
11625  * @cfg {Boolean} loader A TreeLoader for use with this TreePanel
11626  * @cfg {Object|Roo.tree.TreeEditor} editor The TreeEditor or xtype data to display when clicked.
11627  * @cfg {String} pathSeparator The token used to separate sub-paths in path strings (defaults to '/')
11628  * @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>
11629  * @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>
11630  * 
11631  * @constructor
11632  * @param {String/HTMLElement/Element} el The container element
11633  * @param {Object} config
11634  */
11635 Roo.tree.TreePanel = function(el, config){
11636     var root = false;
11637     var loader = false;
11638     if (config.root) {
11639         root = config.root;
11640         delete config.root;
11641     }
11642     if (config.loader) {
11643         loader = config.loader;
11644         delete config.loader;
11645     }
11646     
11647     Roo.apply(this, config);
11648     Roo.tree.TreePanel.superclass.constructor.call(this);
11649     this.el = Roo.get(el);
11650     this.el.addClass('x-tree');
11651     //console.log(root);
11652     if (root) {
11653         this.setRootNode( Roo.factory(root, Roo.tree));
11654     }
11655     if (loader) {
11656         this.loader = Roo.factory(loader, Roo.tree);
11657     }
11658    /**
11659     * Read-only. The id of the container element becomes this TreePanel's id.
11660     */
11661     this.id = this.el.id;
11662     this.addEvents({
11663         /**
11664         * @event beforeload
11665         * Fires before a node is loaded, return false to cancel
11666         * @param {Node} node The node being loaded
11667         */
11668         "beforeload" : true,
11669         /**
11670         * @event load
11671         * Fires when a node is loaded
11672         * @param {Node} node The node that was loaded
11673         */
11674         "load" : true,
11675         /**
11676         * @event textchange
11677         * Fires when the text for a node is changed
11678         * @param {Node} node The node
11679         * @param {String} text The new text
11680         * @param {String} oldText The old text
11681         */
11682         "textchange" : true,
11683         /**
11684         * @event beforeexpand
11685         * Fires before a node is expanded, return false to cancel.
11686         * @param {Node} node The node
11687         * @param {Boolean} deep
11688         * @param {Boolean} anim
11689         */
11690         "beforeexpand" : true,
11691         /**
11692         * @event beforecollapse
11693         * Fires before a node is collapsed, return false to cancel.
11694         * @param {Node} node The node
11695         * @param {Boolean} deep
11696         * @param {Boolean} anim
11697         */
11698         "beforecollapse" : true,
11699         /**
11700         * @event expand
11701         * Fires when a node is expanded
11702         * @param {Node} node The node
11703         */
11704         "expand" : true,
11705         /**
11706         * @event disabledchange
11707         * Fires when the disabled status of a node changes
11708         * @param {Node} node The node
11709         * @param {Boolean} disabled
11710         */
11711         "disabledchange" : true,
11712         /**
11713         * @event collapse
11714         * Fires when a node is collapsed
11715         * @param {Node} node The node
11716         */
11717         "collapse" : true,
11718         /**
11719         * @event beforeclick
11720         * Fires before click processing on a node. Return false to cancel the default action.
11721         * @param {Node} node The node
11722         * @param {Roo.EventObject} e The event object
11723         */
11724         "beforeclick":true,
11725         /**
11726         * @event checkchange
11727         * Fires when a node with a checkbox's checked property changes
11728         * @param {Node} this This node
11729         * @param {Boolean} checked
11730         */
11731         "checkchange":true,
11732         /**
11733         * @event click
11734         * Fires when a node is clicked
11735         * @param {Node} node The node
11736         * @param {Roo.EventObject} e The event object
11737         */
11738         "click":true,
11739         /**
11740         * @event dblclick
11741         * Fires when a node is double clicked
11742         * @param {Node} node The node
11743         * @param {Roo.EventObject} e The event object
11744         */
11745         "dblclick":true,
11746         /**
11747         * @event contextmenu
11748         * Fires when a node is right clicked
11749         * @param {Node} node The node
11750         * @param {Roo.EventObject} e The event object
11751         */
11752         "contextmenu":true,
11753         /**
11754         * @event beforechildrenrendered
11755         * Fires right before the child nodes for a node are rendered
11756         * @param {Node} node The node
11757         */
11758         "beforechildrenrendered":true,
11759         /**
11760         * @event startdrag
11761         * Fires when a node starts being dragged
11762         * @param {Roo.tree.TreePanel} this
11763         * @param {Roo.tree.TreeNode} node
11764         * @param {event} e The raw browser event
11765         */ 
11766        "startdrag" : true,
11767        /**
11768         * @event enddrag
11769         * Fires when a drag operation is complete
11770         * @param {Roo.tree.TreePanel} this
11771         * @param {Roo.tree.TreeNode} node
11772         * @param {event} e The raw browser event
11773         */
11774        "enddrag" : true,
11775        /**
11776         * @event dragdrop
11777         * Fires when a dragged node is dropped on a valid DD target
11778         * @param {Roo.tree.TreePanel} this
11779         * @param {Roo.tree.TreeNode} node
11780         * @param {DD} dd The dd it was dropped on
11781         * @param {event} e The raw browser event
11782         */
11783        "dragdrop" : true,
11784        /**
11785         * @event beforenodedrop
11786         * Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent
11787         * passed to handlers has the following properties:<br />
11788         * <ul style="padding:5px;padding-left:16px;">
11789         * <li>tree - The TreePanel</li>
11790         * <li>target - The node being targeted for the drop</li>
11791         * <li>data - The drag data from the drag source</li>
11792         * <li>point - The point of the drop - append, above or below</li>
11793         * <li>source - The drag source</li>
11794         * <li>rawEvent - Raw mouse event</li>
11795         * <li>dropNode - Drop node(s) provided by the source <b>OR</b> you can supply node(s)
11796         * to be inserted by setting them on this object.</li>
11797         * <li>cancel - Set this to true to cancel the drop.</li>
11798         * </ul>
11799         * @param {Object} dropEvent
11800         */
11801        "beforenodedrop" : true,
11802        /**
11803         * @event nodedrop
11804         * Fires after a DD object is dropped on a node in this tree. The dropEvent
11805         * passed to handlers has the following properties:<br />
11806         * <ul style="padding:5px;padding-left:16px;">
11807         * <li>tree - The TreePanel</li>
11808         * <li>target - The node being targeted for the drop</li>
11809         * <li>data - The drag data from the drag source</li>
11810         * <li>point - The point of the drop - append, above or below</li>
11811         * <li>source - The drag source</li>
11812         * <li>rawEvent - Raw mouse event</li>
11813         * <li>dropNode - Dropped node(s).</li>
11814         * </ul>
11815         * @param {Object} dropEvent
11816         */
11817        "nodedrop" : true,
11818         /**
11819         * @event nodedragover
11820         * Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent
11821         * passed to handlers has the following properties:<br />
11822         * <ul style="padding:5px;padding-left:16px;">
11823         * <li>tree - The TreePanel</li>
11824         * <li>target - The node being targeted for the drop</li>
11825         * <li>data - The drag data from the drag source</li>
11826         * <li>point - The point of the drop - append, above or below</li>
11827         * <li>source - The drag source</li>
11828         * <li>rawEvent - Raw mouse event</li>
11829         * <li>dropNode - Drop node(s) provided by the source.</li>
11830         * <li>cancel - Set this to true to signal drop not allowed.</li>
11831         * </ul>
11832         * @param {Object} dragOverEvent
11833         */
11834        "nodedragover" : true,
11835        /**
11836         * @event appendnode
11837         * Fires when append node to the tree
11838         * @param {Roo.tree.TreePanel} this
11839         * @param {Roo.tree.TreeNode} node
11840         * @param {Number} index The index of the newly appended node
11841         */
11842        "appendnode" : true
11843         
11844     });
11845     if(this.singleExpand){
11846        this.on("beforeexpand", this.restrictExpand, this);
11847     }
11848     if (this.editor) {
11849         this.editor.tree = this;
11850         this.editor = Roo.factory(this.editor, Roo.tree);
11851     }
11852     
11853     if (this.selModel) {
11854         this.selModel = Roo.factory(this.selModel, Roo.tree);
11855     }
11856    
11857 };
11858 Roo.extend(Roo.tree.TreePanel, Roo.data.Tree, {
11859     rootVisible : true,
11860     animate: Roo.enableFx,
11861     lines : true,
11862     enableDD : false,
11863     hlDrop : Roo.enableFx,
11864   
11865     renderer: false,
11866     
11867     rendererTip: false,
11868     // private
11869     restrictExpand : function(node){
11870         var p = node.parentNode;
11871         if(p){
11872             if(p.expandedChild && p.expandedChild.parentNode == p){
11873                 p.expandedChild.collapse();
11874             }
11875             p.expandedChild = node;
11876         }
11877     },
11878
11879     // private override
11880     setRootNode : function(node){
11881         Roo.tree.TreePanel.superclass.setRootNode.call(this, node);
11882         if(!this.rootVisible){
11883             node.ui = new Roo.tree.RootTreeNodeUI(node);
11884         }
11885         return node;
11886     },
11887
11888     /**
11889      * Returns the container element for this TreePanel
11890      */
11891     getEl : function(){
11892         return this.el;
11893     },
11894
11895     /**
11896      * Returns the default TreeLoader for this TreePanel
11897      */
11898     getLoader : function(){
11899         return this.loader;
11900     },
11901
11902     /**
11903      * Expand all nodes
11904      */
11905     expandAll : function(){
11906         this.root.expand(true);
11907     },
11908
11909     /**
11910      * Collapse all nodes
11911      */
11912     collapseAll : function(){
11913         this.root.collapse(true);
11914     },
11915
11916     /**
11917      * Returns the selection model used by this TreePanel
11918      */
11919     getSelectionModel : function(){
11920         if(!this.selModel){
11921             this.selModel = new Roo.tree.DefaultSelectionModel();
11922         }
11923         return this.selModel;
11924     },
11925
11926     /**
11927      * Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. "id")
11928      * @param {String} attribute (optional) Defaults to null (return the actual nodes)
11929      * @param {TreeNode} startNode (optional) The node to start from, defaults to the root
11930      * @return {Array}
11931      */
11932     getChecked : function(a, startNode){
11933         startNode = startNode || this.root;
11934         var r = [];
11935         var f = function(){
11936             if(this.attributes.checked){
11937                 r.push(!a ? this : (a == 'id' ? this.id : this.attributes[a]));
11938             }
11939         }
11940         startNode.cascade(f);
11941         return r;
11942     },
11943
11944     /**
11945      * Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
11946      * @param {String} path
11947      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
11948      * @param {Function} callback (optional) The callback to call when the expand is complete. The callback will be called with
11949      * (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.
11950      */
11951     expandPath : function(path, attr, callback){
11952         attr = attr || "id";
11953         var keys = path.split(this.pathSeparator);
11954         var curNode = this.root;
11955         if(curNode.attributes[attr] != keys[1]){ // invalid root
11956             if(callback){
11957                 callback(false, null);
11958             }
11959             return;
11960         }
11961         var index = 1;
11962         var f = function(){
11963             if(++index == keys.length){
11964                 if(callback){
11965                     callback(true, curNode);
11966                 }
11967                 return;
11968             }
11969             var c = curNode.findChild(attr, keys[index]);
11970             if(!c){
11971                 if(callback){
11972                     callback(false, curNode);
11973                 }
11974                 return;
11975             }
11976             curNode = c;
11977             c.expand(false, false, f);
11978         };
11979         curNode.expand(false, false, f);
11980     },
11981
11982     /**
11983      * Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
11984      * @param {String} path
11985      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
11986      * @param {Function} callback (optional) The callback to call when the selection is complete. The callback will be called with
11987      * (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.
11988      */
11989     selectPath : function(path, attr, callback){
11990         attr = attr || "id";
11991         var keys = path.split(this.pathSeparator);
11992         var v = keys.pop();
11993         if(keys.length > 0){
11994             var f = function(success, node){
11995                 if(success && node){
11996                     var n = node.findChild(attr, v);
11997                     if(n){
11998                         n.select();
11999                         if(callback){
12000                             callback(true, n);
12001                         }
12002                     }else if(callback){
12003                         callback(false, n);
12004                     }
12005                 }else{
12006                     if(callback){
12007                         callback(false, n);
12008                     }
12009                 }
12010             };
12011             this.expandPath(keys.join(this.pathSeparator), attr, f);
12012         }else{
12013             this.root.select();
12014             if(callback){
12015                 callback(true, this.root);
12016             }
12017         }
12018     },
12019
12020     getTreeEl : function(){
12021         return this.el;
12022     },
12023
12024     /**
12025      * Trigger rendering of this TreePanel
12026      */
12027     render : function(){
12028         if (this.innerCt) {
12029             return this; // stop it rendering more than once!!
12030         }
12031         
12032         this.innerCt = this.el.createChild({tag:"ul",
12033                cls:"x-tree-root-ct " +
12034                (this.lines ? "x-tree-lines" : "x-tree-no-lines")});
12035
12036         if(this.containerScroll){
12037             Roo.dd.ScrollManager.register(this.el);
12038         }
12039         if((this.enableDD || this.enableDrop) && !this.dropZone){
12040            /**
12041             * The dropZone used by this tree if drop is enabled
12042             * @type Roo.tree.TreeDropZone
12043             */
12044              this.dropZone = new Roo.tree.TreeDropZone(this, this.dropConfig || {
12045                ddGroup: this.ddGroup || "TreeDD", appendOnly: this.ddAppendOnly === true
12046            });
12047         }
12048         if((this.enableDD || this.enableDrag) && !this.dragZone){
12049            /**
12050             * The dragZone used by this tree if drag is enabled
12051             * @type Roo.tree.TreeDragZone
12052             */
12053             this.dragZone = new Roo.tree.TreeDragZone(this, this.dragConfig || {
12054                ddGroup: this.ddGroup || "TreeDD",
12055                scroll: this.ddScroll
12056            });
12057         }
12058         this.getSelectionModel().init(this);
12059         if (!this.root) {
12060             Roo.log("ROOT not set in tree");
12061             return this;
12062         }
12063         this.root.render();
12064         if(!this.rootVisible){
12065             this.root.renderChildren();
12066         }
12067         return this;
12068     }
12069 });/*
12070  * Based on:
12071  * Ext JS Library 1.1.1
12072  * Copyright(c) 2006-2007, Ext JS, LLC.
12073  *
12074  * Originally Released Under LGPL - original licence link has changed is not relivant.
12075  *
12076  * Fork - LGPL
12077  * <script type="text/javascript">
12078  */
12079  
12080
12081 /**
12082  * @class Roo.tree.DefaultSelectionModel
12083  * @extends Roo.util.Observable
12084  * The default single selection for a TreePanel.
12085  * @param {Object} cfg Configuration
12086  */
12087 Roo.tree.DefaultSelectionModel = function(cfg){
12088    this.selNode = null;
12089    
12090    
12091    
12092    this.addEvents({
12093        /**
12094         * @event selectionchange
12095         * Fires when the selected node changes
12096         * @param {DefaultSelectionModel} this
12097         * @param {TreeNode} node the new selection
12098         */
12099        "selectionchange" : true,
12100
12101        /**
12102         * @event beforeselect
12103         * Fires before the selected node changes, return false to cancel the change
12104         * @param {DefaultSelectionModel} this
12105         * @param {TreeNode} node the new selection
12106         * @param {TreeNode} node the old selection
12107         */
12108        "beforeselect" : true
12109    });
12110    
12111     Roo.tree.DefaultSelectionModel.superclass.constructor.call(this,cfg);
12112 };
12113
12114 Roo.extend(Roo.tree.DefaultSelectionModel, Roo.util.Observable, {
12115     init : function(tree){
12116         this.tree = tree;
12117         tree.getTreeEl().on("keydown", this.onKeyDown, this);
12118         tree.on("click", this.onNodeClick, this);
12119     },
12120     
12121     onNodeClick : function(node, e){
12122         if (e.ctrlKey && this.selNode == node)  {
12123             this.unselect(node);
12124             return;
12125         }
12126         this.select(node);
12127     },
12128     
12129     /**
12130      * Select a node.
12131      * @param {TreeNode} node The node to select
12132      * @return {TreeNode} The selected node
12133      */
12134     select : function(node){
12135         var last = this.selNode;
12136         if(last != node && this.fireEvent('beforeselect', this, node, last) !== false){
12137             if(last){
12138                 last.ui.onSelectedChange(false);
12139             }
12140             this.selNode = node;
12141             node.ui.onSelectedChange(true);
12142             this.fireEvent("selectionchange", this, node, last);
12143         }
12144         return node;
12145     },
12146     
12147     /**
12148      * Deselect a node.
12149      * @param {TreeNode} node The node to unselect
12150      */
12151     unselect : function(node){
12152         if(this.selNode == node){
12153             this.clearSelections();
12154         }    
12155     },
12156     
12157     /**
12158      * Clear all selections
12159      */
12160     clearSelections : function(){
12161         var n = this.selNode;
12162         if(n){
12163             n.ui.onSelectedChange(false);
12164             this.selNode = null;
12165             this.fireEvent("selectionchange", this, null);
12166         }
12167         return n;
12168     },
12169     
12170     /**
12171      * Get the selected node
12172      * @return {TreeNode} The selected node
12173      */
12174     getSelectedNode : function(){
12175         return this.selNode;    
12176     },
12177     
12178     /**
12179      * Returns true if the node is selected
12180      * @param {TreeNode} node The node to check
12181      * @return {Boolean}
12182      */
12183     isSelected : function(node){
12184         return this.selNode == node;  
12185     },
12186
12187     /**
12188      * Selects the node above the selected node in the tree, intelligently walking the nodes
12189      * @return TreeNode The new selection
12190      */
12191     selectPrevious : function(){
12192         var s = this.selNode || this.lastSelNode;
12193         if(!s){
12194             return null;
12195         }
12196         var ps = s.previousSibling;
12197         if(ps){
12198             if(!ps.isExpanded() || ps.childNodes.length < 1){
12199                 return this.select(ps);
12200             } else{
12201                 var lc = ps.lastChild;
12202                 while(lc && lc.isExpanded() && lc.childNodes.length > 0){
12203                     lc = lc.lastChild;
12204                 }
12205                 return this.select(lc);
12206             }
12207         } else if(s.parentNode && (this.tree.rootVisible || !s.parentNode.isRoot)){
12208             return this.select(s.parentNode);
12209         }
12210         return null;
12211     },
12212
12213     /**
12214      * Selects the node above the selected node in the tree, intelligently walking the nodes
12215      * @return TreeNode The new selection
12216      */
12217     selectNext : function(){
12218         var s = this.selNode || this.lastSelNode;
12219         if(!s){
12220             return null;
12221         }
12222         if(s.firstChild && s.isExpanded()){
12223              return this.select(s.firstChild);
12224          }else if(s.nextSibling){
12225              return this.select(s.nextSibling);
12226          }else if(s.parentNode){
12227             var newS = null;
12228             s.parentNode.bubble(function(){
12229                 if(this.nextSibling){
12230                     newS = this.getOwnerTree().selModel.select(this.nextSibling);
12231                     return false;
12232                 }
12233             });
12234             return newS;
12235          }
12236         return null;
12237     },
12238
12239     onKeyDown : function(e){
12240         var s = this.selNode || this.lastSelNode;
12241         // undesirable, but required
12242         var sm = this;
12243         if(!s){
12244             return;
12245         }
12246         var k = e.getKey();
12247         switch(k){
12248              case e.DOWN:
12249                  e.stopEvent();
12250                  this.selectNext();
12251              break;
12252              case e.UP:
12253                  e.stopEvent();
12254                  this.selectPrevious();
12255              break;
12256              case e.RIGHT:
12257                  e.preventDefault();
12258                  if(s.hasChildNodes()){
12259                      if(!s.isExpanded()){
12260                          s.expand();
12261                      }else if(s.firstChild){
12262                          this.select(s.firstChild, e);
12263                      }
12264                  }
12265              break;
12266              case e.LEFT:
12267                  e.preventDefault();
12268                  if(s.hasChildNodes() && s.isExpanded()){
12269                      s.collapse();
12270                  }else if(s.parentNode && (this.tree.rootVisible || s.parentNode != this.tree.getRootNode())){
12271                      this.select(s.parentNode, e);
12272                  }
12273              break;
12274         };
12275     }
12276 });
12277
12278 /**
12279  * @class Roo.tree.MultiSelectionModel
12280  * @extends Roo.util.Observable
12281  * Multi selection for a TreePanel.
12282  * @param {Object} cfg Configuration
12283  */
12284 Roo.tree.MultiSelectionModel = function(){
12285    this.selNodes = [];
12286    this.selMap = {};
12287    this.addEvents({
12288        /**
12289         * @event selectionchange
12290         * Fires when the selected nodes change
12291         * @param {MultiSelectionModel} this
12292         * @param {Array} nodes Array of the selected nodes
12293         */
12294        "selectionchange" : true
12295    });
12296    Roo.tree.MultiSelectionModel.superclass.constructor.call(this,cfg);
12297    
12298 };
12299
12300 Roo.extend(Roo.tree.MultiSelectionModel, Roo.util.Observable, {
12301     init : function(tree){
12302         this.tree = tree;
12303         tree.getTreeEl().on("keydown", this.onKeyDown, this);
12304         tree.on("click", this.onNodeClick, this);
12305     },
12306     
12307     onNodeClick : function(node, e){
12308         this.select(node, e, e.ctrlKey);
12309     },
12310     
12311     /**
12312      * Select a node.
12313      * @param {TreeNode} node The node to select
12314      * @param {EventObject} e (optional) An event associated with the selection
12315      * @param {Boolean} keepExisting True to retain existing selections
12316      * @return {TreeNode} The selected node
12317      */
12318     select : function(node, e, keepExisting){
12319         if(keepExisting !== true){
12320             this.clearSelections(true);
12321         }
12322         if(this.isSelected(node)){
12323             this.lastSelNode = node;
12324             return node;
12325         }
12326         this.selNodes.push(node);
12327         this.selMap[node.id] = node;
12328         this.lastSelNode = node;
12329         node.ui.onSelectedChange(true);
12330         this.fireEvent("selectionchange", this, this.selNodes);
12331         return node;
12332     },
12333     
12334     /**
12335      * Deselect a node.
12336      * @param {TreeNode} node The node to unselect
12337      */
12338     unselect : function(node){
12339         if(this.selMap[node.id]){
12340             node.ui.onSelectedChange(false);
12341             var sn = this.selNodes;
12342             var index = -1;
12343             if(sn.indexOf){
12344                 index = sn.indexOf(node);
12345             }else{
12346                 for(var i = 0, len = sn.length; i < len; i++){
12347                     if(sn[i] == node){
12348                         index = i;
12349                         break;
12350                     }
12351                 }
12352             }
12353             if(index != -1){
12354                 this.selNodes.splice(index, 1);
12355             }
12356             delete this.selMap[node.id];
12357             this.fireEvent("selectionchange", this, this.selNodes);
12358         }
12359     },
12360     
12361     /**
12362      * Clear all selections
12363      */
12364     clearSelections : function(suppressEvent){
12365         var sn = this.selNodes;
12366         if(sn.length > 0){
12367             for(var i = 0, len = sn.length; i < len; i++){
12368                 sn[i].ui.onSelectedChange(false);
12369             }
12370             this.selNodes = [];
12371             this.selMap = {};
12372             if(suppressEvent !== true){
12373                 this.fireEvent("selectionchange", this, this.selNodes);
12374             }
12375         }
12376     },
12377     
12378     /**
12379      * Returns true if the node is selected
12380      * @param {TreeNode} node The node to check
12381      * @return {Boolean}
12382      */
12383     isSelected : function(node){
12384         return this.selMap[node.id] ? true : false;  
12385     },
12386     
12387     /**
12388      * Returns an array of the selected nodes
12389      * @return {Array}
12390      */
12391     getSelectedNodes : function(){
12392         return this.selNodes;    
12393     },
12394
12395     onKeyDown : Roo.tree.DefaultSelectionModel.prototype.onKeyDown,
12396
12397     selectNext : Roo.tree.DefaultSelectionModel.prototype.selectNext,
12398
12399     selectPrevious : Roo.tree.DefaultSelectionModel.prototype.selectPrevious
12400 });/*
12401  * Based on:
12402  * Ext JS Library 1.1.1
12403  * Copyright(c) 2006-2007, Ext JS, LLC.
12404  *
12405  * Originally Released Under LGPL - original licence link has changed is not relivant.
12406  *
12407  * Fork - LGPL
12408  * <script type="text/javascript">
12409  */
12410  
12411 /**
12412  * @class Roo.tree.TreeNode
12413  * @extends Roo.data.Node
12414  * @cfg {String} text The text for this node
12415  * @cfg {Boolean} expanded true to start the node expanded
12416  * @cfg {Boolean} allowDrag false to make this node undraggable if DD is on (defaults to true)
12417  * @cfg {Boolean} allowDrop false if this node cannot be drop on
12418  * @cfg {Boolean} disabled true to start the node disabled
12419  * @cfg {String} icon The path to an icon for the node. The preferred way to do this
12420  *    is to use the cls or iconCls attributes and add the icon via a CSS background image.
12421  * @cfg {String} cls A css class to be added to the node
12422  * @cfg {String} iconCls A css class to be added to the nodes icon element for applying css background images
12423  * @cfg {String} href URL of the link used for the node (defaults to #)
12424  * @cfg {String} hrefTarget target frame for the link
12425  * @cfg {String} qtip An Ext QuickTip for the node
12426  * @cfg {String} qtipCfg An Ext QuickTip config for the node (used instead of qtip)
12427  * @cfg {Boolean} singleClickExpand True for single click expand on this node
12428  * @cfg {Function} uiProvider A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)
12429  * @cfg {Boolean} checked True to render a checked checkbox for this node, false to render an unchecked checkbox
12430  * (defaults to undefined with no checkbox rendered)
12431  * @constructor
12432  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node
12433  */
12434 Roo.tree.TreeNode = function(attributes){
12435     attributes = attributes || {};
12436     if(typeof attributes == "string"){
12437         attributes = {text: attributes};
12438     }
12439     this.childrenRendered = false;
12440     this.rendered = false;
12441     Roo.tree.TreeNode.superclass.constructor.call(this, attributes);
12442     this.expanded = attributes.expanded === true;
12443     this.isTarget = attributes.isTarget !== false;
12444     this.draggable = attributes.draggable !== false && attributes.allowDrag !== false;
12445     this.allowChildren = attributes.allowChildren !== false && attributes.allowDrop !== false;
12446
12447     /**
12448      * Read-only. The text for this node. To change it use setText().
12449      * @type String
12450      */
12451     this.text = attributes.text;
12452     /**
12453      * True if this node is disabled.
12454      * @type Boolean
12455      */
12456     this.disabled = attributes.disabled === true;
12457
12458     this.addEvents({
12459         /**
12460         * @event textchange
12461         * Fires when the text for this node is changed
12462         * @param {Node} this This node
12463         * @param {String} text The new text
12464         * @param {String} oldText The old text
12465         */
12466         "textchange" : true,
12467         /**
12468         * @event beforeexpand
12469         * Fires before this node is expanded, return false to cancel.
12470         * @param {Node} this This node
12471         * @param {Boolean} deep
12472         * @param {Boolean} anim
12473         */
12474         "beforeexpand" : true,
12475         /**
12476         * @event beforecollapse
12477         * Fires before this node is collapsed, return false to cancel.
12478         * @param {Node} this This node
12479         * @param {Boolean} deep
12480         * @param {Boolean} anim
12481         */
12482         "beforecollapse" : true,
12483         /**
12484         * @event expand
12485         * Fires when this node is expanded
12486         * @param {Node} this This node
12487         */
12488         "expand" : true,
12489         /**
12490         * @event disabledchange
12491         * Fires when the disabled status of this node changes
12492         * @param {Node} this This node
12493         * @param {Boolean} disabled
12494         */
12495         "disabledchange" : true,
12496         /**
12497         * @event collapse
12498         * Fires when this node is collapsed
12499         * @param {Node} this This node
12500         */
12501         "collapse" : true,
12502         /**
12503         * @event beforeclick
12504         * Fires before click processing. Return false to cancel the default action.
12505         * @param {Node} this This node
12506         * @param {Roo.EventObject} e The event object
12507         */
12508         "beforeclick":true,
12509         /**
12510         * @event checkchange
12511         * Fires when a node with a checkbox's checked property changes
12512         * @param {Node} this This node
12513         * @param {Boolean} checked
12514         */
12515         "checkchange":true,
12516         /**
12517         * @event click
12518         * Fires when this node is clicked
12519         * @param {Node} this This node
12520         * @param {Roo.EventObject} e The event object
12521         */
12522         "click":true,
12523         /**
12524         * @event dblclick
12525         * Fires when this node is double clicked
12526         * @param {Node} this This node
12527         * @param {Roo.EventObject} e The event object
12528         */
12529         "dblclick":true,
12530         /**
12531         * @event contextmenu
12532         * Fires when this node is right clicked
12533         * @param {Node} this This node
12534         * @param {Roo.EventObject} e The event object
12535         */
12536         "contextmenu":true,
12537         /**
12538         * @event beforechildrenrendered
12539         * Fires right before the child nodes for this node are rendered
12540         * @param {Node} this This node
12541         */
12542         "beforechildrenrendered":true
12543     });
12544
12545     var uiClass = this.attributes.uiProvider || Roo.tree.TreeNodeUI;
12546
12547     /**
12548      * Read-only. The UI for this node
12549      * @type TreeNodeUI
12550      */
12551     this.ui = new uiClass(this);
12552     
12553     // finally support items[]
12554     if (typeof(this.attributes.items) == 'undefined' || !this.attributes.items) {
12555         return;
12556     }
12557     
12558     
12559     Roo.each(this.attributes.items, function(c) {
12560         this.appendChild(Roo.factory(c,Roo.Tree));
12561     }, this);
12562     delete this.attributes.items;
12563     
12564     
12565     
12566 };
12567 Roo.extend(Roo.tree.TreeNode, Roo.data.Node, {
12568     preventHScroll: true,
12569     /**
12570      * Returns true if this node is expanded
12571      * @return {Boolean}
12572      */
12573     isExpanded : function(){
12574         return this.expanded;
12575     },
12576
12577     /**
12578      * Returns the UI object for this node
12579      * @return {TreeNodeUI}
12580      */
12581     getUI : function(){
12582         return this.ui;
12583     },
12584
12585     // private override
12586     setFirstChild : function(node){
12587         var of = this.firstChild;
12588         Roo.tree.TreeNode.superclass.setFirstChild.call(this, node);
12589         if(this.childrenRendered && of && node != of){
12590             of.renderIndent(true, true);
12591         }
12592         if(this.rendered){
12593             this.renderIndent(true, true);
12594         }
12595     },
12596
12597     // private override
12598     setLastChild : function(node){
12599         var ol = this.lastChild;
12600         Roo.tree.TreeNode.superclass.setLastChild.call(this, node);
12601         if(this.childrenRendered && ol && node != ol){
12602             ol.renderIndent(true, true);
12603         }
12604         if(this.rendered){
12605             this.renderIndent(true, true);
12606         }
12607     },
12608
12609     // these methods are overridden to provide lazy rendering support
12610     // private override
12611     appendChild : function()
12612     {
12613         var node = Roo.tree.TreeNode.superclass.appendChild.apply(this, arguments);
12614         if(node && this.childrenRendered){
12615             node.render();
12616         }
12617         this.ui.updateExpandIcon();
12618         return node;
12619     },
12620
12621     // private override
12622     removeChild : function(node){
12623         this.ownerTree.getSelectionModel().unselect(node);
12624         Roo.tree.TreeNode.superclass.removeChild.apply(this, arguments);
12625         // if it's been rendered remove dom node
12626         if(this.childrenRendered){
12627             node.ui.remove();
12628         }
12629         if(this.childNodes.length < 1){
12630             this.collapse(false, false);
12631         }else{
12632             this.ui.updateExpandIcon();
12633         }
12634         if(!this.firstChild) {
12635             this.childrenRendered = false;
12636         }
12637         return node;
12638     },
12639
12640     // private override
12641     insertBefore : function(node, refNode){
12642         var newNode = Roo.tree.TreeNode.superclass.insertBefore.apply(this, arguments);
12643         if(newNode && refNode && this.childrenRendered){
12644             node.render();
12645         }
12646         this.ui.updateExpandIcon();
12647         return newNode;
12648     },
12649
12650     /**
12651      * Sets the text for this node
12652      * @param {String} text
12653      */
12654     setText : function(text){
12655         var oldText = this.text;
12656         this.text = text;
12657         this.attributes.text = text;
12658         if(this.rendered){ // event without subscribing
12659             this.ui.onTextChange(this, text, oldText);
12660         }
12661         this.fireEvent("textchange", this, text, oldText);
12662     },
12663
12664     /**
12665      * Triggers selection of this node
12666      */
12667     select : function(){
12668         this.getOwnerTree().getSelectionModel().select(this);
12669     },
12670
12671     /**
12672      * Triggers deselection of this node
12673      */
12674     unselect : function(){
12675         this.getOwnerTree().getSelectionModel().unselect(this);
12676     },
12677
12678     /**
12679      * Returns true if this node is selected
12680      * @return {Boolean}
12681      */
12682     isSelected : function(){
12683         return this.getOwnerTree().getSelectionModel().isSelected(this);
12684     },
12685
12686     /**
12687      * Expand this node.
12688      * @param {Boolean} deep (optional) True to expand all children as well
12689      * @param {Boolean} anim (optional) false to cancel the default animation
12690      * @param {Function} callback (optional) A callback to be called when
12691      * expanding this node completes (does not wait for deep expand to complete).
12692      * Called with 1 parameter, this node.
12693      */
12694     expand : function(deep, anim, callback){
12695         if(!this.expanded){
12696             if(this.fireEvent("beforeexpand", this, deep, anim) === false){
12697                 return;
12698             }
12699             if(!this.childrenRendered){
12700                 this.renderChildren();
12701             }
12702             this.expanded = true;
12703             
12704             if(!this.isHiddenRoot() && (this.getOwnerTree() && this.getOwnerTree().animate && anim !== false) || anim){
12705                 this.ui.animExpand(function(){
12706                     this.fireEvent("expand", this);
12707                     if(typeof callback == "function"){
12708                         callback(this);
12709                     }
12710                     if(deep === true){
12711                         this.expandChildNodes(true);
12712                     }
12713                 }.createDelegate(this));
12714                 return;
12715             }else{
12716                 this.ui.expand();
12717                 this.fireEvent("expand", this);
12718                 if(typeof callback == "function"){
12719                     callback(this);
12720                 }
12721             }
12722         }else{
12723            if(typeof callback == "function"){
12724                callback(this);
12725            }
12726         }
12727         if(deep === true){
12728             this.expandChildNodes(true);
12729         }
12730     },
12731
12732     isHiddenRoot : function(){
12733         return this.isRoot && !this.getOwnerTree().rootVisible;
12734     },
12735
12736     /**
12737      * Collapse this node.
12738      * @param {Boolean} deep (optional) True to collapse all children as well
12739      * @param {Boolean} anim (optional) false to cancel the default animation
12740      */
12741     collapse : function(deep, anim){
12742         if(this.expanded && !this.isHiddenRoot()){
12743             if(this.fireEvent("beforecollapse", this, deep, anim) === false){
12744                 return;
12745             }
12746             this.expanded = false;
12747             if((this.getOwnerTree().animate && anim !== false) || anim){
12748                 this.ui.animCollapse(function(){
12749                     this.fireEvent("collapse", this);
12750                     if(deep === true){
12751                         this.collapseChildNodes(true);
12752                     }
12753                 }.createDelegate(this));
12754                 return;
12755             }else{
12756                 this.ui.collapse();
12757                 this.fireEvent("collapse", this);
12758             }
12759         }
12760         if(deep === true){
12761             var cs = this.childNodes;
12762             for(var i = 0, len = cs.length; i < len; i++) {
12763                 cs[i].collapse(true, false);
12764             }
12765         }
12766     },
12767
12768     // private
12769     delayedExpand : function(delay){
12770         if(!this.expandProcId){
12771             this.expandProcId = this.expand.defer(delay, this);
12772         }
12773     },
12774
12775     // private
12776     cancelExpand : function(){
12777         if(this.expandProcId){
12778             clearTimeout(this.expandProcId);
12779         }
12780         this.expandProcId = false;
12781     },
12782
12783     /**
12784      * Toggles expanded/collapsed state of the node
12785      */
12786     toggle : function(){
12787         if(this.expanded){
12788             this.collapse();
12789         }else{
12790             this.expand();
12791         }
12792     },
12793
12794     /**
12795      * Ensures all parent nodes are expanded
12796      */
12797     ensureVisible : function(callback){
12798         var tree = this.getOwnerTree();
12799         tree.expandPath(this.parentNode.getPath(), false, function(){
12800             tree.getTreeEl().scrollChildIntoView(this.ui.anchor);
12801             Roo.callback(callback);
12802         }.createDelegate(this));
12803     },
12804
12805     /**
12806      * Expand all child nodes
12807      * @param {Boolean} deep (optional) true if the child nodes should also expand their child nodes
12808      */
12809     expandChildNodes : function(deep){
12810         var cs = this.childNodes;
12811         for(var i = 0, len = cs.length; i < len; i++) {
12812                 cs[i].expand(deep);
12813         }
12814     },
12815
12816     /**
12817      * Collapse all child nodes
12818      * @param {Boolean} deep (optional) true if the child nodes should also collapse their child nodes
12819      */
12820     collapseChildNodes : function(deep){
12821         var cs = this.childNodes;
12822         for(var i = 0, len = cs.length; i < len; i++) {
12823                 cs[i].collapse(deep);
12824         }
12825     },
12826
12827     /**
12828      * Disables this node
12829      */
12830     disable : function(){
12831         this.disabled = true;
12832         this.unselect();
12833         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
12834             this.ui.onDisableChange(this, true);
12835         }
12836         this.fireEvent("disabledchange", this, true);
12837     },
12838
12839     /**
12840      * Enables this node
12841      */
12842     enable : function(){
12843         this.disabled = false;
12844         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
12845             this.ui.onDisableChange(this, false);
12846         }
12847         this.fireEvent("disabledchange", this, false);
12848     },
12849
12850     // private
12851     renderChildren : function(suppressEvent){
12852         if(suppressEvent !== false){
12853             this.fireEvent("beforechildrenrendered", this);
12854         }
12855         var cs = this.childNodes;
12856         for(var i = 0, len = cs.length; i < len; i++){
12857             cs[i].render(true);
12858         }
12859         this.childrenRendered = true;
12860     },
12861
12862     // private
12863     sort : function(fn, scope){
12864         Roo.tree.TreeNode.superclass.sort.apply(this, arguments);
12865         if(this.childrenRendered){
12866             var cs = this.childNodes;
12867             for(var i = 0, len = cs.length; i < len; i++){
12868                 cs[i].render(true);
12869             }
12870         }
12871     },
12872
12873     // private
12874     render : function(bulkRender){
12875         this.ui.render(bulkRender);
12876         if(!this.rendered){
12877             this.rendered = true;
12878             if(this.expanded){
12879                 this.expanded = false;
12880                 this.expand(false, false);
12881             }
12882         }
12883     },
12884
12885     // private
12886     renderIndent : function(deep, refresh){
12887         if(refresh){
12888             this.ui.childIndent = null;
12889         }
12890         this.ui.renderIndent();
12891         if(deep === true && this.childrenRendered){
12892             var cs = this.childNodes;
12893             for(var i = 0, len = cs.length; i < len; i++){
12894                 cs[i].renderIndent(true, refresh);
12895             }
12896         }
12897     }
12898 });/*
12899  * Based on:
12900  * Ext JS Library 1.1.1
12901  * Copyright(c) 2006-2007, Ext JS, LLC.
12902  *
12903  * Originally Released Under LGPL - original licence link has changed is not relivant.
12904  *
12905  * Fork - LGPL
12906  * <script type="text/javascript">
12907  */
12908  
12909 /**
12910  * @class Roo.tree.AsyncTreeNode
12911  * @extends Roo.tree.TreeNode
12912  * @cfg {TreeLoader} loader A TreeLoader to be used by this node (defaults to the loader defined on the tree)
12913  * @constructor
12914  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node 
12915  */
12916  Roo.tree.AsyncTreeNode = function(config){
12917     this.loaded = false;
12918     this.loading = false;
12919     Roo.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
12920     /**
12921     * @event beforeload
12922     * Fires before this node is loaded, return false to cancel
12923     * @param {Node} this This node
12924     */
12925     this.addEvents({'beforeload':true, 'load': true});
12926     /**
12927     * @event load
12928     * Fires when this node is loaded
12929     * @param {Node} this This node
12930     */
12931     /**
12932      * The loader used by this node (defaults to using the tree's defined loader)
12933      * @type TreeLoader
12934      * @property loader
12935      */
12936 };
12937 Roo.extend(Roo.tree.AsyncTreeNode, Roo.tree.TreeNode, {
12938     expand : function(deep, anim, callback){
12939         if(this.loading){ // if an async load is already running, waiting til it's done
12940             var timer;
12941             var f = function(){
12942                 if(!this.loading){ // done loading
12943                     clearInterval(timer);
12944                     this.expand(deep, anim, callback);
12945                 }
12946             }.createDelegate(this);
12947             timer = setInterval(f, 200);
12948             return;
12949         }
12950         if(!this.loaded){
12951             if(this.fireEvent("beforeload", this) === false){
12952                 return;
12953             }
12954             this.loading = true;
12955             this.ui.beforeLoad(this);
12956             var loader = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
12957             if(loader){
12958                 loader.load(this, this.loadComplete.createDelegate(this, [deep, anim, callback]));
12959                 return;
12960             }
12961         }
12962         Roo.tree.AsyncTreeNode.superclass.expand.call(this, deep, anim, callback);
12963     },
12964     
12965     /**
12966      * Returns true if this node is currently loading
12967      * @return {Boolean}
12968      */
12969     isLoading : function(){
12970         return this.loading;  
12971     },
12972     
12973     loadComplete : function(deep, anim, callback){
12974         this.loading = false;
12975         this.loaded = true;
12976         this.ui.afterLoad(this);
12977         this.fireEvent("load", this);
12978         this.expand(deep, anim, callback);
12979     },
12980     
12981     /**
12982      * Returns true if this node has been loaded
12983      * @return {Boolean}
12984      */
12985     isLoaded : function(){
12986         return this.loaded;
12987     },
12988     
12989     hasChildNodes : function(){
12990         if(!this.isLeaf() && !this.loaded){
12991             return true;
12992         }else{
12993             return Roo.tree.AsyncTreeNode.superclass.hasChildNodes.call(this);
12994         }
12995     },
12996
12997     /**
12998      * Trigger a reload for this node
12999      * @param {Function} callback
13000      */
13001     reload : function(callback){
13002         this.collapse(false, false);
13003         while(this.firstChild){
13004             this.removeChild(this.firstChild);
13005         }
13006         this.childrenRendered = false;
13007         this.loaded = false;
13008         if(this.isHiddenRoot()){
13009             this.expanded = false;
13010         }
13011         this.expand(false, false, callback);
13012     }
13013 });/*
13014  * Based on:
13015  * Ext JS Library 1.1.1
13016  * Copyright(c) 2006-2007, Ext JS, LLC.
13017  *
13018  * Originally Released Under LGPL - original licence link has changed is not relivant.
13019  *
13020  * Fork - LGPL
13021  * <script type="text/javascript">
13022  */
13023  
13024 /**
13025  * @class Roo.tree.TreeNodeUI
13026  * @constructor
13027  * @param {Object} node The node to render
13028  * The TreeNode UI implementation is separate from the
13029  * tree implementation. Unless you are customizing the tree UI,
13030  * you should never have to use this directly.
13031  */
13032 Roo.tree.TreeNodeUI = function(node){
13033     this.node = node;
13034     this.rendered = false;
13035     this.animating = false;
13036     this.emptyIcon = Roo.BLANK_IMAGE_URL;
13037 };
13038
13039 Roo.tree.TreeNodeUI.prototype = {
13040     removeChild : function(node){
13041         if(this.rendered){
13042             this.ctNode.removeChild(node.ui.getEl());
13043         }
13044     },
13045
13046     beforeLoad : function(){
13047          this.addClass("x-tree-node-loading");
13048     },
13049
13050     afterLoad : function(){
13051          this.removeClass("x-tree-node-loading");
13052     },
13053
13054     onTextChange : function(node, text, oldText){
13055         if(this.rendered){
13056             this.textNode.innerHTML = text;
13057         }
13058     },
13059
13060     onDisableChange : function(node, state){
13061         this.disabled = state;
13062         if(state){
13063             this.addClass("x-tree-node-disabled");
13064         }else{
13065             this.removeClass("x-tree-node-disabled");
13066         }
13067     },
13068
13069     onSelectedChange : function(state){
13070         if(state){
13071             this.focus();
13072             this.addClass("x-tree-selected");
13073         }else{
13074             //this.blur();
13075             this.removeClass("x-tree-selected");
13076         }
13077     },
13078
13079     onMove : function(tree, node, oldParent, newParent, index, refNode){
13080         this.childIndent = null;
13081         if(this.rendered){
13082             var targetNode = newParent.ui.getContainer();
13083             if(!targetNode){//target not rendered
13084                 this.holder = document.createElement("div");
13085                 this.holder.appendChild(this.wrap);
13086                 return;
13087             }
13088             var insertBefore = refNode ? refNode.ui.getEl() : null;
13089             if(insertBefore){
13090                 targetNode.insertBefore(this.wrap, insertBefore);
13091             }else{
13092                 targetNode.appendChild(this.wrap);
13093             }
13094             this.node.renderIndent(true);
13095         }
13096     },
13097
13098     addClass : function(cls){
13099         if(this.elNode){
13100             Roo.fly(this.elNode).addClass(cls);
13101         }
13102     },
13103
13104     removeClass : function(cls){
13105         if(this.elNode){
13106             Roo.fly(this.elNode).removeClass(cls);
13107         }
13108     },
13109
13110     remove : function(){
13111         if(this.rendered){
13112             this.holder = document.createElement("div");
13113             this.holder.appendChild(this.wrap);
13114         }
13115     },
13116
13117     fireEvent : function(){
13118         return this.node.fireEvent.apply(this.node, arguments);
13119     },
13120
13121     initEvents : function(){
13122         this.node.on("move", this.onMove, this);
13123         var E = Roo.EventManager;
13124         var a = this.anchor;
13125
13126         var el = Roo.fly(a, '_treeui');
13127
13128         if(Roo.isOpera){ // opera render bug ignores the CSS
13129             el.setStyle("text-decoration", "none");
13130         }
13131
13132         el.on("click", this.onClick, this);
13133         el.on("dblclick", this.onDblClick, this);
13134
13135         if(this.checkbox){
13136             Roo.EventManager.on(this.checkbox,
13137                     Roo.isIE ? 'click' : 'change', this.onCheckChange, this);
13138         }
13139
13140         el.on("contextmenu", this.onContextMenu, this);
13141
13142         var icon = Roo.fly(this.iconNode);
13143         icon.on("click", this.onClick, this);
13144         icon.on("dblclick", this.onDblClick, this);
13145         icon.on("contextmenu", this.onContextMenu, this);
13146         E.on(this.ecNode, "click", this.ecClick, this, true);
13147
13148         if(this.node.disabled){
13149             this.addClass("x-tree-node-disabled");
13150         }
13151         if(this.node.hidden){
13152             this.addClass("x-tree-node-disabled");
13153         }
13154         var ot = this.node.getOwnerTree();
13155         var dd = ot ? (ot.enableDD || ot.enableDrag || ot.enableDrop) : false;
13156         if(dd && (!this.node.isRoot || ot.rootVisible)){
13157             Roo.dd.Registry.register(this.elNode, {
13158                 node: this.node,
13159                 handles: this.getDDHandles(),
13160                 isHandle: false
13161             });
13162         }
13163     },
13164
13165     getDDHandles : function(){
13166         return [this.iconNode, this.textNode];
13167     },
13168
13169     hide : function(){
13170         if(this.rendered){
13171             this.wrap.style.display = "none";
13172         }
13173     },
13174
13175     show : function(){
13176         if(this.rendered){
13177             this.wrap.style.display = "";
13178         }
13179     },
13180
13181     onContextMenu : function(e){
13182         if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
13183             e.preventDefault();
13184             this.focus();
13185             this.fireEvent("contextmenu", this.node, e);
13186         }
13187     },
13188
13189     onClick : function(e){
13190         if(this.dropping){
13191             e.stopEvent();
13192             return;
13193         }
13194         if(this.fireEvent("beforeclick", this.node, e) !== false){
13195             if(!this.disabled && this.node.attributes.href){
13196                 this.fireEvent("click", this.node, e);
13197                 return;
13198             }
13199             e.preventDefault();
13200             if(this.disabled){
13201                 return;
13202             }
13203
13204             if(this.node.attributes.singleClickExpand && !this.animating && this.node.hasChildNodes()){
13205                 this.node.toggle();
13206             }
13207
13208             this.fireEvent("click", this.node, e);
13209         }else{
13210             e.stopEvent();
13211         }
13212     },
13213
13214     onDblClick : function(e){
13215         e.preventDefault();
13216         if(this.disabled){
13217             return;
13218         }
13219         if(this.checkbox){
13220             this.toggleCheck();
13221         }
13222         if(!this.animating && this.node.hasChildNodes()){
13223             this.node.toggle();
13224         }
13225         this.fireEvent("dblclick", this.node, e);
13226     },
13227
13228     onCheckChange : function(){
13229         var checked = this.checkbox.checked;
13230         this.node.attributes.checked = checked;
13231         this.fireEvent('checkchange', this.node, checked);
13232     },
13233
13234     ecClick : function(e){
13235         if(!this.animating && this.node.hasChildNodes()){
13236             this.node.toggle();
13237         }
13238     },
13239
13240     startDrop : function(){
13241         this.dropping = true;
13242     },
13243
13244     // delayed drop so the click event doesn't get fired on a drop
13245     endDrop : function(){
13246        setTimeout(function(){
13247            this.dropping = false;
13248        }.createDelegate(this), 50);
13249     },
13250
13251     expand : function(){
13252         this.updateExpandIcon();
13253         this.ctNode.style.display = "";
13254     },
13255
13256     focus : function(){
13257         if(!this.node.preventHScroll){
13258             try{this.anchor.focus();
13259             }catch(e){}
13260         }else if(!Roo.isIE){
13261             try{
13262                 var noscroll = this.node.getOwnerTree().getTreeEl().dom;
13263                 var l = noscroll.scrollLeft;
13264                 this.anchor.focus();
13265                 noscroll.scrollLeft = l;
13266             }catch(e){}
13267         }
13268     },
13269
13270     toggleCheck : function(value){
13271         var cb = this.checkbox;
13272         if(cb){
13273             cb.checked = (value === undefined ? !cb.checked : value);
13274         }
13275     },
13276
13277     blur : function(){
13278         try{
13279             this.anchor.blur();
13280         }catch(e){}
13281     },
13282
13283     animExpand : function(callback){
13284         var ct = Roo.get(this.ctNode);
13285         ct.stopFx();
13286         if(!this.node.hasChildNodes()){
13287             this.updateExpandIcon();
13288             this.ctNode.style.display = "";
13289             Roo.callback(callback);
13290             return;
13291         }
13292         this.animating = true;
13293         this.updateExpandIcon();
13294
13295         ct.slideIn('t', {
13296            callback : function(){
13297                this.animating = false;
13298                Roo.callback(callback);
13299             },
13300             scope: this,
13301             duration: this.node.ownerTree.duration || .25
13302         });
13303     },
13304
13305     highlight : function(){
13306         var tree = this.node.getOwnerTree();
13307         Roo.fly(this.wrap).highlight(
13308             tree.hlColor || "C3DAF9",
13309             {endColor: tree.hlBaseColor}
13310         );
13311     },
13312
13313     collapse : function(){
13314         this.updateExpandIcon();
13315         this.ctNode.style.display = "none";
13316     },
13317
13318     animCollapse : function(callback){
13319         var ct = Roo.get(this.ctNode);
13320         ct.enableDisplayMode('block');
13321         ct.stopFx();
13322
13323         this.animating = true;
13324         this.updateExpandIcon();
13325
13326         ct.slideOut('t', {
13327             callback : function(){
13328                this.animating = false;
13329                Roo.callback(callback);
13330             },
13331             scope: this,
13332             duration: this.node.ownerTree.duration || .25
13333         });
13334     },
13335
13336     getContainer : function(){
13337         return this.ctNode;
13338     },
13339
13340     getEl : function(){
13341         return this.wrap;
13342     },
13343
13344     appendDDGhost : function(ghostNode){
13345         ghostNode.appendChild(this.elNode.cloneNode(true));
13346     },
13347
13348     getDDRepairXY : function(){
13349         return Roo.lib.Dom.getXY(this.iconNode);
13350     },
13351
13352     onRender : function(){
13353         this.render();
13354     },
13355
13356     render : function(bulkRender){
13357         var n = this.node, a = n.attributes;
13358         var targetNode = n.parentNode ?
13359               n.parentNode.ui.getContainer() : n.ownerTree.innerCt.dom;
13360
13361         if(!this.rendered){
13362             this.rendered = true;
13363
13364             this.renderElements(n, a, targetNode, bulkRender);
13365
13366             if(a.qtip){
13367                if(this.textNode.setAttributeNS){
13368                    this.textNode.setAttributeNS("ext", "qtip", a.qtip);
13369                    if(a.qtipTitle){
13370                        this.textNode.setAttributeNS("ext", "qtitle", a.qtipTitle);
13371                    }
13372                }else{
13373                    this.textNode.setAttribute("ext:qtip", a.qtip);
13374                    if(a.qtipTitle){
13375                        this.textNode.setAttribute("ext:qtitle", a.qtipTitle);
13376                    }
13377                }
13378             }else if(a.qtipCfg){
13379                 a.qtipCfg.target = Roo.id(this.textNode);
13380                 Roo.QuickTips.register(a.qtipCfg);
13381             }
13382             this.initEvents();
13383             if(!this.node.expanded){
13384                 this.updateExpandIcon();
13385             }
13386         }else{
13387             if(bulkRender === true) {
13388                 targetNode.appendChild(this.wrap);
13389             }
13390         }
13391     },
13392
13393     renderElements : function(n, a, targetNode, bulkRender)
13394     {
13395         // add some indent caching, this helps performance when rendering a large tree
13396         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
13397         var t = n.getOwnerTree();
13398         var txt = t && t.renderer ? t.renderer(n.attributes) : Roo.util.Format.htmlEncode(n.text);
13399         if (typeof(n.attributes.html) != 'undefined') {
13400             txt = n.attributes.html;
13401         }
13402         var tip = t && t.rendererTip ? t.rendererTip(n.attributes) : txt;
13403         var cb = typeof a.checked == 'boolean';
13404         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
13405         var buf = ['<li class="x-tree-node"><div class="x-tree-node-el ', a.cls,'">',
13406             '<span class="x-tree-node-indent">',this.indentMarkup,"</span>",
13407             '<img src="', this.emptyIcon, '" class="x-tree-ec-icon" />',
13408             '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',(a.icon ? " x-tree-node-inline-icon" : ""),(a.iconCls ? " "+a.iconCls : ""),'" unselectable="on" />',
13409             cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + (a.checked ? 'checked="checked" />' : ' />')) : '',
13410             '<a hidefocus="on" href="',href,'" tabIndex="1" ',
13411              a.hrefTarget ? ' target="'+a.hrefTarget+'"' : "", 
13412                 '><span unselectable="on" qtip="' , tip ,'">',txt,"</span></a></div>",
13413             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
13414             "</li>"];
13415
13416         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
13417             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
13418                                 n.nextSibling.ui.getEl(), buf.join(""));
13419         }else{
13420             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
13421         }
13422
13423         this.elNode = this.wrap.childNodes[0];
13424         this.ctNode = this.wrap.childNodes[1];
13425         var cs = this.elNode.childNodes;
13426         this.indentNode = cs[0];
13427         this.ecNode = cs[1];
13428         this.iconNode = cs[2];
13429         var index = 3;
13430         if(cb){
13431             this.checkbox = cs[3];
13432             index++;
13433         }
13434         this.anchor = cs[index];
13435         this.textNode = cs[index].firstChild;
13436     },
13437
13438     getAnchor : function(){
13439         return this.anchor;
13440     },
13441
13442     getTextEl : function(){
13443         return this.textNode;
13444     },
13445
13446     getIconEl : function(){
13447         return this.iconNode;
13448     },
13449
13450     isChecked : function(){
13451         return this.checkbox ? this.checkbox.checked : false;
13452     },
13453
13454     updateExpandIcon : function(){
13455         if(this.rendered){
13456             var n = this.node, c1, c2;
13457             var cls = n.isLast() ? "x-tree-elbow-end" : "x-tree-elbow";
13458             var hasChild = n.hasChildNodes();
13459             if(hasChild){
13460                 if(n.expanded){
13461                     cls += "-minus";
13462                     c1 = "x-tree-node-collapsed";
13463                     c2 = "x-tree-node-expanded";
13464                 }else{
13465                     cls += "-plus";
13466                     c1 = "x-tree-node-expanded";
13467                     c2 = "x-tree-node-collapsed";
13468                 }
13469                 if(this.wasLeaf){
13470                     this.removeClass("x-tree-node-leaf");
13471                     this.wasLeaf = false;
13472                 }
13473                 if(this.c1 != c1 || this.c2 != c2){
13474                     Roo.fly(this.elNode).replaceClass(c1, c2);
13475                     this.c1 = c1; this.c2 = c2;
13476                 }
13477             }else{
13478                 // this changes non-leafs into leafs if they have no children.
13479                 // it's not very rational behaviour..
13480                 
13481                 if(!this.wasLeaf && this.node.leaf){
13482                     Roo.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-leaf");
13483                     delete this.c1;
13484                     delete this.c2;
13485                     this.wasLeaf = true;
13486                 }
13487             }
13488             var ecc = "x-tree-ec-icon "+cls;
13489             if(this.ecc != ecc){
13490                 this.ecNode.className = ecc;
13491                 this.ecc = ecc;
13492             }
13493         }
13494     },
13495
13496     getChildIndent : function(){
13497         if(!this.childIndent){
13498             var buf = [];
13499             var p = this.node;
13500             while(p){
13501                 if(!p.isRoot || (p.isRoot && p.ownerTree.rootVisible)){
13502                     if(!p.isLast()) {
13503                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-elbow-line" />');
13504                     } else {
13505                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-icon" />');
13506                     }
13507                 }
13508                 p = p.parentNode;
13509             }
13510             this.childIndent = buf.join("");
13511         }
13512         return this.childIndent;
13513     },
13514
13515     renderIndent : function(){
13516         if(this.rendered){
13517             var indent = "";
13518             var p = this.node.parentNode;
13519             if(p){
13520                 indent = p.ui.getChildIndent();
13521             }
13522             if(this.indentMarkup != indent){ // don't rerender if not required
13523                 this.indentNode.innerHTML = indent;
13524                 this.indentMarkup = indent;
13525             }
13526             this.updateExpandIcon();
13527         }
13528     }
13529 };
13530
13531 Roo.tree.RootTreeNodeUI = function(){
13532     Roo.tree.RootTreeNodeUI.superclass.constructor.apply(this, arguments);
13533 };
13534 Roo.extend(Roo.tree.RootTreeNodeUI, Roo.tree.TreeNodeUI, {
13535     render : function(){
13536         if(!this.rendered){
13537             var targetNode = this.node.ownerTree.innerCt.dom;
13538             this.node.expanded = true;
13539             targetNode.innerHTML = '<div class="x-tree-root-node"></div>';
13540             this.wrap = this.ctNode = targetNode.firstChild;
13541         }
13542     },
13543     collapse : function(){
13544     },
13545     expand : function(){
13546     }
13547 });/*
13548  * Based on:
13549  * Ext JS Library 1.1.1
13550  * Copyright(c) 2006-2007, Ext JS, LLC.
13551  *
13552  * Originally Released Under LGPL - original licence link has changed is not relivant.
13553  *
13554  * Fork - LGPL
13555  * <script type="text/javascript">
13556  */
13557 /**
13558  * @class Roo.tree.TreeLoader
13559  * @extends Roo.util.Observable
13560  * A TreeLoader provides for lazy loading of an {@link Roo.tree.TreeNode}'s child
13561  * nodes from a specified URL. The response must be a javascript Array definition
13562  * who's elements are node definition objects. eg:
13563  * <pre><code>
13564 {  success : true,
13565    data :      [
13566    
13567     { 'id': 1, 'text': 'A folder Node', 'leaf': false },
13568     { 'id': 2, 'text': 'A leaf Node', 'leaf': true }
13569     ]
13570 }
13571
13572
13573 </code></pre>
13574  * <br><br>
13575  * The old style respose with just an array is still supported, but not recommended.
13576  * <br><br>
13577  *
13578  * A server request is sent, and child nodes are loaded only when a node is expanded.
13579  * The loading node's id is passed to the server under the parameter name "node" to
13580  * enable the server to produce the correct child nodes.
13581  * <br><br>
13582  * To pass extra parameters, an event handler may be attached to the "beforeload"
13583  * event, and the parameters specified in the TreeLoader's baseParams property:
13584  * <pre><code>
13585     myTreeLoader.on("beforeload", function(treeLoader, node) {
13586         this.baseParams.category = node.attributes.category;
13587     }, this);
13588     
13589 </code></pre>
13590  *
13591  * This would pass an HTTP parameter called "category" to the server containing
13592  * the value of the Node's "category" attribute.
13593  * @constructor
13594  * Creates a new Treeloader.
13595  * @param {Object} config A config object containing config properties.
13596  */
13597 Roo.tree.TreeLoader = function(config){
13598     this.baseParams = {};
13599     this.requestMethod = "POST";
13600     Roo.apply(this, config);
13601
13602     this.addEvents({
13603     
13604         /**
13605          * @event beforeload
13606          * Fires before a network request is made to retrieve the Json text which specifies a node's children.
13607          * @param {Object} This TreeLoader object.
13608          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
13609          * @param {Object} callback The callback function specified in the {@link #load} call.
13610          */
13611         beforeload : true,
13612         /**
13613          * @event load
13614          * Fires when the node has been successfuly loaded.
13615          * @param {Object} This TreeLoader object.
13616          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
13617          * @param {Object} response The response object containing the data from the server.
13618          */
13619         load : true,
13620         /**
13621          * @event loadexception
13622          * Fires if the network request failed.
13623          * @param {Object} This TreeLoader object.
13624          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
13625          * @param {Object} response The response object containing the data from the server.
13626          */
13627         loadexception : true,
13628         /**
13629          * @event create
13630          * Fires before a node is created, enabling you to return custom Node types 
13631          * @param {Object} This TreeLoader object.
13632          * @param {Object} attr - the data returned from the AJAX call (modify it to suit)
13633          */
13634         create : true
13635     });
13636
13637     Roo.tree.TreeLoader.superclass.constructor.call(this);
13638 };
13639
13640 Roo.extend(Roo.tree.TreeLoader, Roo.util.Observable, {
13641     /**
13642     * @cfg {String} dataUrl The URL from which to request a Json string which
13643     * specifies an array of node definition object representing the child nodes
13644     * to be loaded.
13645     */
13646     /**
13647     * @cfg {String} requestMethod either GET or POST
13648     * defaults to POST (due to BC)
13649     * to be loaded.
13650     */
13651     /**
13652     * @cfg {Object} baseParams (optional) An object containing properties which
13653     * specify HTTP parameters to be passed to each request for child nodes.
13654     */
13655     /**
13656     * @cfg {Object} baseAttrs (optional) An object containing attributes to be added to all nodes
13657     * created by this loader. If the attributes sent by the server have an attribute in this object,
13658     * they take priority.
13659     */
13660     /**
13661     * @cfg {Object} uiProviders (optional) An object containing properties which
13662     * 
13663     * DEPRECATED - use 'create' event handler to modify attributes - which affect creation.
13664     * specify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional
13665     * <i>uiProvider</i> attribute of a returned child node is a string rather
13666     * than a reference to a TreeNodeUI implementation, this that string value
13667     * is used as a property name in the uiProviders object. You can define the provider named
13668     * 'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)
13669     */
13670     uiProviders : {},
13671
13672     /**
13673     * @cfg {Boolean} clearOnLoad (optional) Default to true. Remove previously existing
13674     * child nodes before loading.
13675     */
13676     clearOnLoad : true,
13677
13678     /**
13679     * @cfg {String} root (optional) Default to false. Use this to read data from an object 
13680     * property on loading, rather than expecting an array. (eg. more compatible to a standard
13681     * Grid query { data : [ .....] }
13682     */
13683     
13684     root : false,
13685      /**
13686     * @cfg {String} queryParam (optional) 
13687     * Name of the query as it will be passed on the querystring (defaults to 'node')
13688     * eg. the request will be ?node=[id]
13689     */
13690     
13691     
13692     queryParam: false,
13693     
13694     /**
13695      * Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.
13696      * This is called automatically when a node is expanded, but may be used to reload
13697      * a node (or append new children if the {@link #clearOnLoad} option is false.)
13698      * @param {Roo.tree.TreeNode} node
13699      * @param {Function} callback
13700      */
13701     load : function(node, callback){
13702         if(this.clearOnLoad){
13703             while(node.firstChild){
13704                 node.removeChild(node.firstChild);
13705             }
13706         }
13707         if(node.attributes.children){ // preloaded json children
13708             var cs = node.attributes.children;
13709             for(var i = 0, len = cs.length; i < len; i++){
13710                 node.appendChild(this.createNode(cs[i]));
13711             }
13712             if(typeof callback == "function"){
13713                 callback();
13714             }
13715         }else if(this.dataUrl){
13716             this.requestData(node, callback);
13717         }
13718     },
13719
13720     getParams: function(node){
13721         var buf = [], bp = this.baseParams;
13722         for(var key in bp){
13723             if(typeof bp[key] != "function"){
13724                 buf.push(encodeURIComponent(key), "=", encodeURIComponent(bp[key]), "&");
13725             }
13726         }
13727         var n = this.queryParam === false ? 'node' : this.queryParam;
13728         buf.push(n + "=", encodeURIComponent(node.id));
13729         return buf.join("");
13730     },
13731
13732     requestData : function(node, callback){
13733         if(this.fireEvent("beforeload", this, node, callback) !== false){
13734             this.transId = Roo.Ajax.request({
13735                 method:this.requestMethod,
13736                 url: this.dataUrl||this.url,
13737                 success: this.handleResponse,
13738                 failure: this.handleFailure,
13739                 scope: this,
13740                 argument: {callback: callback, node: node},
13741                 params: this.getParams(node)
13742             });
13743         }else{
13744             // if the load is cancelled, make sure we notify
13745             // the node that we are done
13746             if(typeof callback == "function"){
13747                 callback();
13748             }
13749         }
13750     },
13751
13752     isLoading : function(){
13753         return this.transId ? true : false;
13754     },
13755
13756     abort : function(){
13757         if(this.isLoading()){
13758             Roo.Ajax.abort(this.transId);
13759         }
13760     },
13761
13762     // private
13763     createNode : function(attr)
13764     {
13765         // apply baseAttrs, nice idea Corey!
13766         if(this.baseAttrs){
13767             Roo.applyIf(attr, this.baseAttrs);
13768         }
13769         if(this.applyLoader !== false){
13770             attr.loader = this;
13771         }
13772         // uiProvider = depreciated..
13773         
13774         if(typeof(attr.uiProvider) == 'string'){
13775            attr.uiProvider = this.uiProviders[attr.uiProvider] || 
13776                 /**  eval:var:attr */ eval(attr.uiProvider);
13777         }
13778         if(typeof(this.uiProviders['default']) != 'undefined') {
13779             attr.uiProvider = this.uiProviders['default'];
13780         }
13781         
13782         this.fireEvent('create', this, attr);
13783         
13784         attr.leaf  = typeof(attr.leaf) == 'string' ? attr.leaf * 1 : attr.leaf;
13785         return(attr.leaf ?
13786                         new Roo.tree.TreeNode(attr) :
13787                         new Roo.tree.AsyncTreeNode(attr));
13788     },
13789
13790     processResponse : function(response, node, callback)
13791     {
13792         var json = response.responseText;
13793         try {
13794             
13795             var o = Roo.decode(json);
13796             
13797             if (this.root === false && typeof(o.success) != undefined) {
13798                 this.root = 'data'; // the default behaviour for list like data..
13799                 }
13800                 
13801             if (this.root !== false &&  !o.success) {
13802                 // it's a failure condition.
13803                 var a = response.argument;
13804                 this.fireEvent("loadexception", this, a.node, response);
13805                 Roo.log("Load failed - should have a handler really");
13806                 return;
13807             }
13808             
13809             
13810             
13811             if (this.root !== false) {
13812                  o = o[this.root];
13813             }
13814             
13815             for(var i = 0, len = o.length; i < len; i++){
13816                 var n = this.createNode(o[i]);
13817                 if(n){
13818                     node.appendChild(n);
13819                 }
13820             }
13821             if(typeof callback == "function"){
13822                 callback(this, node);
13823             }
13824         }catch(e){
13825             this.handleFailure(response);
13826         }
13827     },
13828
13829     handleResponse : function(response){
13830         this.transId = false;
13831         var a = response.argument;
13832         this.processResponse(response, a.node, a.callback);
13833         this.fireEvent("load", this, a.node, response);
13834     },
13835
13836     handleFailure : function(response)
13837     {
13838         // should handle failure better..
13839         this.transId = false;
13840         var a = response.argument;
13841         this.fireEvent("loadexception", this, a.node, response);
13842         if(typeof a.callback == "function"){
13843             a.callback(this, a.node);
13844         }
13845     }
13846 });/*
13847  * Based on:
13848  * Ext JS Library 1.1.1
13849  * Copyright(c) 2006-2007, Ext JS, LLC.
13850  *
13851  * Originally Released Under LGPL - original licence link has changed is not relivant.
13852  *
13853  * Fork - LGPL
13854  * <script type="text/javascript">
13855  */
13856
13857 /**
13858 * @class Roo.tree.TreeFilter
13859 * Note this class is experimental and doesn't update the indent (lines) or expand collapse icons of the nodes
13860 * @param {TreePanel} tree
13861 * @param {Object} config (optional)
13862  */
13863 Roo.tree.TreeFilter = function(tree, config){
13864     this.tree = tree;
13865     this.filtered = {};
13866     Roo.apply(this, config);
13867 };
13868
13869 Roo.tree.TreeFilter.prototype = {
13870     clearBlank:false,
13871     reverse:false,
13872     autoClear:false,
13873     remove:false,
13874
13875      /**
13876      * Filter the data by a specific attribute.
13877      * @param {String/RegExp} value Either string that the attribute value
13878      * should start with or a RegExp to test against the attribute
13879      * @param {String} attr (optional) The attribute passed in your node's attributes collection. Defaults to "text".
13880      * @param {TreeNode} startNode (optional) The node to start the filter at.
13881      */
13882     filter : function(value, attr, startNode){
13883         attr = attr || "text";
13884         var f;
13885         if(typeof value == "string"){
13886             var vlen = value.length;
13887             // auto clear empty filter
13888             if(vlen == 0 && this.clearBlank){
13889                 this.clear();
13890                 return;
13891             }
13892             value = value.toLowerCase();
13893             f = function(n){
13894                 return n.attributes[attr].substr(0, vlen).toLowerCase() == value;
13895             };
13896         }else if(value.exec){ // regex?
13897             f = function(n){
13898                 return value.test(n.attributes[attr]);
13899             };
13900         }else{
13901             throw 'Illegal filter type, must be string or regex';
13902         }
13903         this.filterBy(f, null, startNode);
13904         },
13905
13906     /**
13907      * Filter by a function. The passed function will be called with each
13908      * node in the tree (or from the startNode). If the function returns true, the node is kept
13909      * otherwise it is filtered. If a node is filtered, its children are also filtered.
13910      * @param {Function} fn The filter function
13911      * @param {Object} scope (optional) The scope of the function (defaults to the current node)
13912      */
13913     filterBy : function(fn, scope, startNode){
13914         startNode = startNode || this.tree.root;
13915         if(this.autoClear){
13916             this.clear();
13917         }
13918         var af = this.filtered, rv = this.reverse;
13919         var f = function(n){
13920             if(n == startNode){
13921                 return true;
13922             }
13923             if(af[n.id]){
13924                 return false;
13925             }
13926             var m = fn.call(scope || n, n);
13927             if(!m || rv){
13928                 af[n.id] = n;
13929                 n.ui.hide();
13930                 return false;
13931             }
13932             return true;
13933         };
13934         startNode.cascade(f);
13935         if(this.remove){
13936            for(var id in af){
13937                if(typeof id != "function"){
13938                    var n = af[id];
13939                    if(n && n.parentNode){
13940                        n.parentNode.removeChild(n);
13941                    }
13942                }
13943            }
13944         }
13945     },
13946
13947     /**
13948      * Clears the current filter. Note: with the "remove" option
13949      * set a filter cannot be cleared.
13950      */
13951     clear : function(){
13952         var t = this.tree;
13953         var af = this.filtered;
13954         for(var id in af){
13955             if(typeof id != "function"){
13956                 var n = af[id];
13957                 if(n){
13958                     n.ui.show();
13959                 }
13960             }
13961         }
13962         this.filtered = {};
13963     }
13964 };
13965 /*
13966  * Based on:
13967  * Ext JS Library 1.1.1
13968  * Copyright(c) 2006-2007, Ext JS, LLC.
13969  *
13970  * Originally Released Under LGPL - original licence link has changed is not relivant.
13971  *
13972  * Fork - LGPL
13973  * <script type="text/javascript">
13974  */
13975  
13976
13977 /**
13978  * @class Roo.tree.TreeSorter
13979  * Provides sorting of nodes in a TreePanel
13980  * 
13981  * @cfg {Boolean} folderSort True to sort leaf nodes under non leaf nodes
13982  * @cfg {String} property The named attribute on the node to sort by (defaults to text)
13983  * @cfg {String} dir The direction to sort (asc or desc) (defaults to asc)
13984  * @cfg {String} leafAttr The attribute used to determine leaf nodes in folder sort (defaults to "leaf")
13985  * @cfg {Boolean} caseSensitive true for case sensitive sort (defaults to false)
13986  * @cfg {Function} sortType A custom "casting" function used to convert node values before sorting
13987  * @constructor
13988  * @param {TreePanel} tree
13989  * @param {Object} config
13990  */
13991 Roo.tree.TreeSorter = function(tree, config){
13992     Roo.apply(this, config);
13993     tree.on("beforechildrenrendered", this.doSort, this);
13994     tree.on("append", this.updateSort, this);
13995     tree.on("insert", this.updateSort, this);
13996     
13997     var dsc = this.dir && this.dir.toLowerCase() == "desc";
13998     var p = this.property || "text";
13999     var sortType = this.sortType;
14000     var fs = this.folderSort;
14001     var cs = this.caseSensitive === true;
14002     var leafAttr = this.leafAttr || 'leaf';
14003
14004     this.sortFn = function(n1, n2){
14005         if(fs){
14006             if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){
14007                 return 1;
14008             }
14009             if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){
14010                 return -1;
14011             }
14012         }
14013         var v1 = sortType ? sortType(n1) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());
14014         var v2 = sortType ? sortType(n2) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());
14015         if(v1 < v2){
14016                         return dsc ? +1 : -1;
14017                 }else if(v1 > v2){
14018                         return dsc ? -1 : +1;
14019         }else{
14020                 return 0;
14021         }
14022     };
14023 };
14024
14025 Roo.tree.TreeSorter.prototype = {
14026     doSort : function(node){
14027         node.sort(this.sortFn);
14028     },
14029     
14030     compareNodes : function(n1, n2){
14031         return (n1.text.toUpperCase() > n2.text.toUpperCase() ? 1 : -1);
14032     },
14033     
14034     updateSort : function(tree, node){
14035         if(node.childrenRendered){
14036             this.doSort.defer(1, this, [node]);
14037         }
14038     }
14039 };/*
14040  * Based on:
14041  * Ext JS Library 1.1.1
14042  * Copyright(c) 2006-2007, Ext JS, LLC.
14043  *
14044  * Originally Released Under LGPL - original licence link has changed is not relivant.
14045  *
14046  * Fork - LGPL
14047  * <script type="text/javascript">
14048  */
14049
14050 if(Roo.dd.DropZone){
14051     
14052 Roo.tree.TreeDropZone = function(tree, config){
14053     this.allowParentInsert = false;
14054     this.allowContainerDrop = false;
14055     this.appendOnly = false;
14056     Roo.tree.TreeDropZone.superclass.constructor.call(this, tree.innerCt, config);
14057     this.tree = tree;
14058     this.lastInsertClass = "x-tree-no-status";
14059     this.dragOverData = {};
14060 };
14061
14062 Roo.extend(Roo.tree.TreeDropZone, Roo.dd.DropZone, {
14063     ddGroup : "TreeDD",
14064     scroll:  true,
14065     
14066     expandDelay : 1000,
14067     
14068     expandNode : function(node){
14069         if(node.hasChildNodes() && !node.isExpanded()){
14070             node.expand(false, null, this.triggerCacheRefresh.createDelegate(this));
14071         }
14072     },
14073     
14074     queueExpand : function(node){
14075         this.expandProcId = this.expandNode.defer(this.expandDelay, this, [node]);
14076     },
14077     
14078     cancelExpand : function(){
14079         if(this.expandProcId){
14080             clearTimeout(this.expandProcId);
14081             this.expandProcId = false;
14082         }
14083     },
14084     
14085     isValidDropPoint : function(n, pt, dd, e, data){
14086         if(!n || !data){ return false; }
14087         var targetNode = n.node;
14088         var dropNode = data.node;
14089         // default drop rules
14090         if(!(targetNode && targetNode.isTarget && pt)){
14091             return false;
14092         }
14093         if(pt == "append" && targetNode.allowChildren === false){
14094             return false;
14095         }
14096         if((pt == "above" || pt == "below") && (targetNode.parentNode && targetNode.parentNode.allowChildren === false)){
14097             return false;
14098         }
14099         if(dropNode && (targetNode == dropNode || dropNode.contains(targetNode))){
14100             return false;
14101         }
14102         // reuse the object
14103         var overEvent = this.dragOverData;
14104         overEvent.tree = this.tree;
14105         overEvent.target = targetNode;
14106         overEvent.data = data;
14107         overEvent.point = pt;
14108         overEvent.source = dd;
14109         overEvent.rawEvent = e;
14110         overEvent.dropNode = dropNode;
14111         overEvent.cancel = false;  
14112         var result = this.tree.fireEvent("nodedragover", overEvent);
14113         return overEvent.cancel === false && result !== false;
14114     },
14115     
14116     getDropPoint : function(e, n, dd)
14117     {
14118         var tn = n.node;
14119         if(tn.isRoot){
14120             return tn.allowChildren !== false ? "append" : false; // always append for root
14121         }
14122         var dragEl = n.ddel;
14123         var t = Roo.lib.Dom.getY(dragEl), b = t + dragEl.offsetHeight;
14124         var y = Roo.lib.Event.getPageY(e);
14125         //var noAppend = tn.allowChildren === false || tn.isLeaf();
14126         
14127         // we may drop nodes anywhere, as long as allowChildren has not been set to false..
14128         var noAppend = tn.allowChildren === false;
14129         if(this.appendOnly || tn.parentNode.allowChildren === false){
14130             return noAppend ? false : "append";
14131         }
14132         var noBelow = false;
14133         if(!this.allowParentInsert){
14134             noBelow = tn.hasChildNodes() && tn.isExpanded();
14135         }
14136         var q = (b - t) / (noAppend ? 2 : 3);
14137         if(y >= t && y < (t + q)){
14138             return "above";
14139         }else if(!noBelow && (noAppend || y >= b-q && y <= b)){
14140             return "below";
14141         }else{
14142             return "append";
14143         }
14144     },
14145     
14146     onNodeEnter : function(n, dd, e, data)
14147     {
14148         this.cancelExpand();
14149     },
14150     
14151     onNodeOver : function(n, dd, e, data)
14152     {
14153        
14154         var pt = this.getDropPoint(e, n, dd);
14155         var node = n.node;
14156         
14157         // auto node expand check
14158         if(!this.expandProcId && pt == "append" && node.hasChildNodes() && !n.node.isExpanded()){
14159             this.queueExpand(node);
14160         }else if(pt != "append"){
14161             this.cancelExpand();
14162         }
14163         
14164         // set the insert point style on the target node
14165         var returnCls = this.dropNotAllowed;
14166         if(this.isValidDropPoint(n, pt, dd, e, data)){
14167            if(pt){
14168                var el = n.ddel;
14169                var cls;
14170                if(pt == "above"){
14171                    returnCls = n.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
14172                    cls = "x-tree-drag-insert-above";
14173                }else if(pt == "below"){
14174                    returnCls = n.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
14175                    cls = "x-tree-drag-insert-below";
14176                }else{
14177                    returnCls = "x-tree-drop-ok-append";
14178                    cls = "x-tree-drag-append";
14179                }
14180                if(this.lastInsertClass != cls){
14181                    Roo.fly(el).replaceClass(this.lastInsertClass, cls);
14182                    this.lastInsertClass = cls;
14183                }
14184            }
14185        }
14186        return returnCls;
14187     },
14188     
14189     onNodeOut : function(n, dd, e, data){
14190         
14191         this.cancelExpand();
14192         this.removeDropIndicators(n);
14193     },
14194     
14195     onNodeDrop : function(n, dd, e, data){
14196         var point = this.getDropPoint(e, n, dd);
14197         var targetNode = n.node;
14198         targetNode.ui.startDrop();
14199         if(!this.isValidDropPoint(n, point, dd, e, data)){
14200             targetNode.ui.endDrop();
14201             return false;
14202         }
14203         // first try to find the drop node
14204         var dropNode = data.node || (dd.getTreeNode ? dd.getTreeNode(data, targetNode, point, e) : null);
14205         var dropEvent = {
14206             tree : this.tree,
14207             target: targetNode,
14208             data: data,
14209             point: point,
14210             source: dd,
14211             rawEvent: e,
14212             dropNode: dropNode,
14213             cancel: !dropNode   
14214         };
14215         var retval = this.tree.fireEvent("beforenodedrop", dropEvent);
14216         if(retval === false || dropEvent.cancel === true || !dropEvent.dropNode){
14217             targetNode.ui.endDrop();
14218             return false;
14219         }
14220         // allow target changing
14221         targetNode = dropEvent.target;
14222         if(point == "append" && !targetNode.isExpanded()){
14223             targetNode.expand(false, null, function(){
14224                 this.completeDrop(dropEvent);
14225             }.createDelegate(this));
14226         }else{
14227             this.completeDrop(dropEvent);
14228         }
14229         return true;
14230     },
14231     
14232     completeDrop : function(de){
14233         var ns = de.dropNode, p = de.point, t = de.target;
14234         if(!(ns instanceof Array)){
14235             ns = [ns];
14236         }
14237         var n;
14238         for(var i = 0, len = ns.length; i < len; i++){
14239             n = ns[i];
14240             if(p == "above"){
14241                 t.parentNode.insertBefore(n, t);
14242             }else if(p == "below"){
14243                 t.parentNode.insertBefore(n, t.nextSibling);
14244             }else{
14245                 t.appendChild(n);
14246             }
14247         }
14248         n.ui.focus();
14249         if(this.tree.hlDrop){
14250             n.ui.highlight();
14251         }
14252         t.ui.endDrop();
14253         this.tree.fireEvent("nodedrop", de);
14254     },
14255     
14256     afterNodeMoved : function(dd, data, e, targetNode, dropNode){
14257         if(this.tree.hlDrop){
14258             dropNode.ui.focus();
14259             dropNode.ui.highlight();
14260         }
14261         this.tree.fireEvent("nodedrop", this.tree, targetNode, data, dd, e);
14262     },
14263     
14264     getTree : function(){
14265         return this.tree;
14266     },
14267     
14268     removeDropIndicators : function(n){
14269         if(n && n.ddel){
14270             var el = n.ddel;
14271             Roo.fly(el).removeClass([
14272                     "x-tree-drag-insert-above",
14273                     "x-tree-drag-insert-below",
14274                     "x-tree-drag-append"]);
14275             this.lastInsertClass = "_noclass";
14276         }
14277     },
14278     
14279     beforeDragDrop : function(target, e, id){
14280         this.cancelExpand();
14281         return true;
14282     },
14283     
14284     afterRepair : function(data){
14285         if(data && Roo.enableFx){
14286             data.node.ui.highlight();
14287         }
14288         this.hideProxy();
14289     } 
14290     
14291 });
14292
14293 }
14294 /*
14295  * Based on:
14296  * Ext JS Library 1.1.1
14297  * Copyright(c) 2006-2007, Ext JS, LLC.
14298  *
14299  * Originally Released Under LGPL - original licence link has changed is not relivant.
14300  *
14301  * Fork - LGPL
14302  * <script type="text/javascript">
14303  */
14304  
14305
14306 if(Roo.dd.DragZone){
14307 Roo.tree.TreeDragZone = function(tree, config){
14308     Roo.tree.TreeDragZone.superclass.constructor.call(this, tree.getTreeEl(), config);
14309     this.tree = tree;
14310 };
14311
14312 Roo.extend(Roo.tree.TreeDragZone, Roo.dd.DragZone, {
14313     ddGroup : "TreeDD",
14314    
14315     onBeforeDrag : function(data, e){
14316         var n = data.node;
14317         return n && n.draggable && !n.disabled;
14318     },
14319      
14320     
14321     onInitDrag : function(e){
14322         var data = this.dragData;
14323         this.tree.getSelectionModel().select(data.node);
14324         this.proxy.update("");
14325         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
14326         this.tree.fireEvent("startdrag", this.tree, data.node, e);
14327     },
14328     
14329     getRepairXY : function(e, data){
14330         return data.node.ui.getDDRepairXY();
14331     },
14332     
14333     onEndDrag : function(data, e){
14334         this.tree.fireEvent("enddrag", this.tree, data.node, e);
14335         
14336         
14337     },
14338     
14339     onValidDrop : function(dd, e, id){
14340         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
14341         this.hideProxy();
14342     },
14343     
14344     beforeInvalidDrop : function(e, id){
14345         // this scrolls the original position back into view
14346         var sm = this.tree.getSelectionModel();
14347         sm.clearSelections();
14348         sm.select(this.dragData.node);
14349     }
14350 });
14351 }/*
14352  * Based on:
14353  * Ext JS Library 1.1.1
14354  * Copyright(c) 2006-2007, Ext JS, LLC.
14355  *
14356  * Originally Released Under LGPL - original licence link has changed is not relivant.
14357  *
14358  * Fork - LGPL
14359  * <script type="text/javascript">
14360  */
14361 /**
14362  * @class Roo.tree.TreeEditor
14363  * @extends Roo.Editor
14364  * Provides editor functionality for inline tree node editing.  Any valid {@link Roo.form.Field} can be used
14365  * as the editor field.
14366  * @constructor
14367  * @param {Object} config (used to be the tree panel.)
14368  * @param {Object} oldconfig DEPRECIATED Either a prebuilt {@link Roo.form.Field} instance or a Field config object
14369  * 
14370  * @cfg {Roo.tree.TreePanel} tree The tree to bind to.
14371  * @cfg {Roo.form.TextField|Object} field The field configuration
14372  *
14373  * 
14374  */
14375 Roo.tree.TreeEditor = function(config, oldconfig) { // was -- (tree, config){
14376     var tree = config;
14377     var field;
14378     if (oldconfig) { // old style..
14379         field = oldconfig.events ? oldconfig : new Roo.form.TextField(oldconfig);
14380     } else {
14381         // new style..
14382         tree = config.tree;
14383         config.field = config.field  || {};
14384         config.field.xtype = 'TextField';
14385         field = Roo.factory(config.field, Roo.form);
14386     }
14387     config = config || {};
14388     
14389     
14390     this.addEvents({
14391         /**
14392          * @event beforenodeedit
14393          * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
14394          * false from the handler of this event.
14395          * @param {Editor} this
14396          * @param {Roo.tree.Node} node 
14397          */
14398         "beforenodeedit" : true
14399     });
14400     
14401     //Roo.log(config);
14402     Roo.tree.TreeEditor.superclass.constructor.call(this, field, config);
14403
14404     this.tree = tree;
14405
14406     tree.on('beforeclick', this.beforeNodeClick, this);
14407     tree.getTreeEl().on('mousedown', this.hide, this);
14408     this.on('complete', this.updateNode, this);
14409     this.on('beforestartedit', this.fitToTree, this);
14410     this.on('startedit', this.bindScroll, this, {delay:10});
14411     this.on('specialkey', this.onSpecialKey, this);
14412 };
14413
14414 Roo.extend(Roo.tree.TreeEditor, Roo.Editor, {
14415     /**
14416      * @cfg {String} alignment
14417      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "l-l").
14418      */
14419     alignment: "l-l",
14420     // inherit
14421     autoSize: false,
14422     /**
14423      * @cfg {Boolean} hideEl
14424      * True to hide the bound element while the editor is displayed (defaults to false)
14425      */
14426     hideEl : false,
14427     /**
14428      * @cfg {String} cls
14429      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
14430      */
14431     cls: "x-small-editor x-tree-editor",
14432     /**
14433      * @cfg {Boolean} shim
14434      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
14435      */
14436     shim:false,
14437     // inherit
14438     shadow:"frame",
14439     /**
14440      * @cfg {Number} maxWidth
14441      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
14442      * the containing tree element's size, it will be automatically limited for you to the container width, taking
14443      * scroll and client offsets into account prior to each edit.
14444      */
14445     maxWidth: 250,
14446
14447     editDelay : 350,
14448
14449     // private
14450     fitToTree : function(ed, el){
14451         var td = this.tree.getTreeEl().dom, nd = el.dom;
14452         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
14453             td.scrollLeft = nd.offsetLeft;
14454         }
14455         var w = Math.min(
14456                 this.maxWidth,
14457                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
14458         this.setSize(w, '');
14459         
14460         return this.fireEvent('beforenodeedit', this, this.editNode);
14461         
14462     },
14463
14464     // private
14465     triggerEdit : function(node){
14466         this.completeEdit();
14467         this.editNode = node;
14468         this.startEdit(node.ui.textNode, node.text);
14469     },
14470
14471     // private
14472     bindScroll : function(){
14473         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
14474     },
14475
14476     // private
14477     beforeNodeClick : function(node, e){
14478         var sinceLast = (this.lastClick ? this.lastClick.getElapsed() : 0);
14479         this.lastClick = new Date();
14480         if(sinceLast > this.editDelay && this.tree.getSelectionModel().isSelected(node)){
14481             e.stopEvent();
14482             this.triggerEdit(node);
14483             return false;
14484         }
14485         return true;
14486     },
14487
14488     // private
14489     updateNode : function(ed, value){
14490         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
14491         this.editNode.setText(value);
14492     },
14493
14494     // private
14495     onHide : function(){
14496         Roo.tree.TreeEditor.superclass.onHide.call(this);
14497         if(this.editNode){
14498             this.editNode.ui.focus();
14499         }
14500     },
14501
14502     // private
14503     onSpecialKey : function(field, e){
14504         var k = e.getKey();
14505         if(k == e.ESC){
14506             e.stopEvent();
14507             this.cancelEdit();
14508         }else if(k == e.ENTER && !e.hasModifier()){
14509             e.stopEvent();
14510             this.completeEdit();
14511         }
14512     }
14513 });//<Script type="text/javascript">
14514 /*
14515  * Based on:
14516  * Ext JS Library 1.1.1
14517  * Copyright(c) 2006-2007, Ext JS, LLC.
14518  *
14519  * Originally Released Under LGPL - original licence link has changed is not relivant.
14520  *
14521  * Fork - LGPL
14522  * <script type="text/javascript">
14523  */
14524  
14525 /**
14526  * Not documented??? - probably should be...
14527  */
14528
14529 Roo.tree.ColumnNodeUI = Roo.extend(Roo.tree.TreeNodeUI, {
14530     //focus: Roo.emptyFn, // prevent odd scrolling behavior
14531     
14532     renderElements : function(n, a, targetNode, bulkRender){
14533         //consel.log("renderElements?");
14534         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
14535
14536         var t = n.getOwnerTree();
14537         var tid = Pman.Tab.Document_TypesTree.tree.el.id;
14538         
14539         var cols = t.columns;
14540         var bw = t.borderWidth;
14541         var c = cols[0];
14542         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
14543          var cb = typeof a.checked == "boolean";
14544         var tx = String.format('{0}',n.text || (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
14545         var colcls = 'x-t-' + tid + '-c0';
14546         var buf = [
14547             '<li class="x-tree-node">',
14548             
14549                 
14550                 '<div class="x-tree-node-el ', a.cls,'">',
14551                     // extran...
14552                     '<div class="x-tree-col ', colcls, '" style="width:', c.width-bw, 'px;">',
14553                 
14554                 
14555                         '<span class="x-tree-node-indent">',this.indentMarkup,'</span>',
14556                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon  " />',
14557                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',
14558                            (a.icon ? ' x-tree-node-inline-icon' : ''),
14559                            (a.iconCls ? ' '+a.iconCls : ''),
14560                            '" unselectable="on" />',
14561                         (cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + 
14562                              (a.checked ? 'checked="checked" />' : ' />')) : ''),
14563                              
14564                         '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
14565                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>',
14566                             '<span unselectable="on" qtip="' + tx + '">',
14567                              tx,
14568                              '</span></a>' ,
14569                     '</div>',
14570                      '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
14571                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>'
14572                  ];
14573         for(var i = 1, len = cols.length; i < len; i++){
14574             c = cols[i];
14575             colcls = 'x-t-' + tid + '-c' +i;
14576             tx = String.format('{0}', (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
14577             buf.push('<div class="x-tree-col ', colcls, ' ' ,(c.cls?c.cls:''),'" style="width:',c.width-bw,'px;">',
14578                         '<div class="x-tree-col-text" qtip="' + tx +'">',tx,"</div>",
14579                       "</div>");
14580          }
14581          
14582          buf.push(
14583             '</a>',
14584             '<div class="x-clear"></div></div>',
14585             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
14586             "</li>");
14587         
14588         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
14589             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
14590                                 n.nextSibling.ui.getEl(), buf.join(""));
14591         }else{
14592             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
14593         }
14594         var el = this.wrap.firstChild;
14595         this.elRow = el;
14596         this.elNode = el.firstChild;
14597         this.ranchor = el.childNodes[1];
14598         this.ctNode = this.wrap.childNodes[1];
14599         var cs = el.firstChild.childNodes;
14600         this.indentNode = cs[0];
14601         this.ecNode = cs[1];
14602         this.iconNode = cs[2];
14603         var index = 3;
14604         if(cb){
14605             this.checkbox = cs[3];
14606             index++;
14607         }
14608         this.anchor = cs[index];
14609         
14610         this.textNode = cs[index].firstChild;
14611         
14612         //el.on("click", this.onClick, this);
14613         //el.on("dblclick", this.onDblClick, this);
14614         
14615         
14616        // console.log(this);
14617     },
14618     initEvents : function(){
14619         Roo.tree.ColumnNodeUI.superclass.initEvents.call(this);
14620         
14621             
14622         var a = this.ranchor;
14623
14624         var el = Roo.get(a);
14625
14626         if(Roo.isOpera){ // opera render bug ignores the CSS
14627             el.setStyle("text-decoration", "none");
14628         }
14629
14630         el.on("click", this.onClick, this);
14631         el.on("dblclick", this.onDblClick, this);
14632         el.on("contextmenu", this.onContextMenu, this);
14633         
14634     },
14635     
14636     /*onSelectedChange : function(state){
14637         if(state){
14638             this.focus();
14639             this.addClass("x-tree-selected");
14640         }else{
14641             //this.blur();
14642             this.removeClass("x-tree-selected");
14643         }
14644     },*/
14645     addClass : function(cls){
14646         if(this.elRow){
14647             Roo.fly(this.elRow).addClass(cls);
14648         }
14649         
14650     },
14651     
14652     
14653     removeClass : function(cls){
14654         if(this.elRow){
14655             Roo.fly(this.elRow).removeClass(cls);
14656         }
14657     }
14658
14659     
14660     
14661 });//<Script type="text/javascript">
14662
14663 /*
14664  * Based on:
14665  * Ext JS Library 1.1.1
14666  * Copyright(c) 2006-2007, Ext JS, LLC.
14667  *
14668  * Originally Released Under LGPL - original licence link has changed is not relivant.
14669  *
14670  * Fork - LGPL
14671  * <script type="text/javascript">
14672  */
14673  
14674
14675 /**
14676  * @class Roo.tree.ColumnTree
14677  * @extends Roo.data.TreePanel
14678  * @cfg {Object} columns  Including width, header, renderer, cls, dataIndex 
14679  * @cfg {int} borderWidth  compined right/left border allowance
14680  * @constructor
14681  * @param {String/HTMLElement/Element} el The container element
14682  * @param {Object} config
14683  */
14684 Roo.tree.ColumnTree =  function(el, config)
14685 {
14686    Roo.tree.ColumnTree.superclass.constructor.call(this, el , config);
14687    this.addEvents({
14688         /**
14689         * @event resize
14690         * Fire this event on a container when it resizes
14691         * @param {int} w Width
14692         * @param {int} h Height
14693         */
14694        "resize" : true
14695     });
14696     this.on('resize', this.onResize, this);
14697 };
14698
14699 Roo.extend(Roo.tree.ColumnTree, Roo.tree.TreePanel, {
14700     //lines:false,
14701     
14702     
14703     borderWidth: Roo.isBorderBox ? 0 : 2, 
14704     headEls : false,
14705     
14706     render : function(){
14707         // add the header.....
14708        
14709         Roo.tree.ColumnTree.superclass.render.apply(this);
14710         
14711         this.el.addClass('x-column-tree');
14712         
14713         this.headers = this.el.createChild(
14714             {cls:'x-tree-headers'},this.innerCt.dom);
14715    
14716         var cols = this.columns, c;
14717         var totalWidth = 0;
14718         this.headEls = [];
14719         var  len = cols.length;
14720         for(var i = 0; i < len; i++){
14721              c = cols[i];
14722              totalWidth += c.width;
14723             this.headEls.push(this.headers.createChild({
14724                  cls:'x-tree-hd ' + (c.cls?c.cls+'-hd':''),
14725                  cn: {
14726                      cls:'x-tree-hd-text',
14727                      html: c.header
14728                  },
14729                  style:'width:'+(c.width-this.borderWidth)+'px;'
14730              }));
14731         }
14732         this.headers.createChild({cls:'x-clear'});
14733         // prevent floats from wrapping when clipped
14734         this.headers.setWidth(totalWidth);
14735         //this.innerCt.setWidth(totalWidth);
14736         this.innerCt.setStyle({ overflow: 'auto' });
14737         this.onResize(this.width, this.height);
14738              
14739         
14740     },
14741     onResize : function(w,h)
14742     {
14743         this.height = h;
14744         this.width = w;
14745         // resize cols..
14746         this.innerCt.setWidth(this.width);
14747         this.innerCt.setHeight(this.height-20);
14748         
14749         // headers...
14750         var cols = this.columns, c;
14751         var totalWidth = 0;
14752         var expEl = false;
14753         var len = cols.length;
14754         for(var i = 0; i < len; i++){
14755             c = cols[i];
14756             if (this.autoExpandColumn !== false && c.dataIndex == this.autoExpandColumn) {
14757                 // it's the expander..
14758                 expEl  = this.headEls[i];
14759                 continue;
14760             }
14761             totalWidth += c.width;
14762             
14763         }
14764         if (expEl) {
14765             expEl.setWidth(  ((w - totalWidth)-this.borderWidth - 20));
14766         }
14767         this.headers.setWidth(w-20);
14768
14769         
14770         
14771         
14772     }
14773 });
14774 /*
14775  * Based on:
14776  * Ext JS Library 1.1.1
14777  * Copyright(c) 2006-2007, Ext JS, LLC.
14778  *
14779  * Originally Released Under LGPL - original licence link has changed is not relivant.
14780  *
14781  * Fork - LGPL
14782  * <script type="text/javascript">
14783  */
14784  
14785 /**
14786  * @class Roo.menu.Menu
14787  * @extends Roo.util.Observable
14788  * A menu object.  This is the container to which you add all other menu items.  Menu can also serve a as a base class
14789  * when you want a specialzed menu based off of another component (like {@link Roo.menu.DateMenu} for example).
14790  * @constructor
14791  * Creates a new Menu
14792  * @param {Object} config Configuration options
14793  */
14794 Roo.menu.Menu = function(config){
14795     
14796     Roo.menu.Menu.superclass.constructor.call(this, config);
14797     
14798     this.id = this.id || Roo.id();
14799     this.addEvents({
14800         /**
14801          * @event beforeshow
14802          * Fires before this menu is displayed
14803          * @param {Roo.menu.Menu} this
14804          */
14805         beforeshow : true,
14806         /**
14807          * @event beforehide
14808          * Fires before this menu is hidden
14809          * @param {Roo.menu.Menu} this
14810          */
14811         beforehide : true,
14812         /**
14813          * @event show
14814          * Fires after this menu is displayed
14815          * @param {Roo.menu.Menu} this
14816          */
14817         show : true,
14818         /**
14819          * @event hide
14820          * Fires after this menu is hidden
14821          * @param {Roo.menu.Menu} this
14822          */
14823         hide : true,
14824         /**
14825          * @event click
14826          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
14827          * @param {Roo.menu.Menu} this
14828          * @param {Roo.menu.Item} menuItem The menu item that was clicked
14829          * @param {Roo.EventObject} e
14830          */
14831         click : true,
14832         /**
14833          * @event mouseover
14834          * Fires when the mouse is hovering over this menu
14835          * @param {Roo.menu.Menu} this
14836          * @param {Roo.EventObject} e
14837          * @param {Roo.menu.Item} menuItem The menu item that was clicked
14838          */
14839         mouseover : true,
14840         /**
14841          * @event mouseout
14842          * Fires when the mouse exits this menu
14843          * @param {Roo.menu.Menu} this
14844          * @param {Roo.EventObject} e
14845          * @param {Roo.menu.Item} menuItem The menu item that was clicked
14846          */
14847         mouseout : true,
14848         /**
14849          * @event itemclick
14850          * Fires when a menu item contained in this menu is clicked
14851          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
14852          * @param {Roo.EventObject} e
14853          */
14854         itemclick: true
14855     });
14856     if (this.registerMenu) {
14857         Roo.menu.MenuMgr.register(this);
14858     }
14859     
14860     var mis = this.items;
14861     this.items = new Roo.util.MixedCollection();
14862     if(mis){
14863         this.add.apply(this, mis);
14864     }
14865 };
14866
14867 Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
14868     /**
14869      * @cfg {Number} minWidth The minimum width of the menu in pixels (defaults to 120)
14870      */
14871     minWidth : 120,
14872     /**
14873      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
14874      * for bottom-right shadow (defaults to "sides")
14875      */
14876     shadow : "sides",
14877     /**
14878      * @cfg {String} subMenuAlign The {@link Roo.Element#alignTo} anchor position value to use for submenus of
14879      * this menu (defaults to "tl-tr?")
14880      */
14881     subMenuAlign : "tl-tr?",
14882     /**
14883      * @cfg {String} defaultAlign The default {@link Roo.Element#alignTo) anchor position value for this menu
14884      * relative to its element of origin (defaults to "tl-bl?")
14885      */
14886     defaultAlign : "tl-bl?",
14887     /**
14888      * @cfg {Boolean} allowOtherMenus True to allow multiple menus to be displayed at the same time (defaults to false)
14889      */
14890     allowOtherMenus : false,
14891     /**
14892      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
14893      */
14894     registerMenu : true,
14895
14896     hidden:true,
14897
14898     // private
14899     render : function(){
14900         if(this.el){
14901             return;
14902         }
14903         var el = this.el = new Roo.Layer({
14904             cls: "x-menu",
14905             shadow:this.shadow,
14906             constrain: false,
14907             parentEl: this.parentEl || document.body,
14908             zindex:15000
14909         });
14910
14911         this.keyNav = new Roo.menu.MenuNav(this);
14912
14913         if(this.plain){
14914             el.addClass("x-menu-plain");
14915         }
14916         if(this.cls){
14917             el.addClass(this.cls);
14918         }
14919         // generic focus element
14920         this.focusEl = el.createChild({
14921             tag: "a", cls: "x-menu-focus", href: "#", onclick: "return false;", tabIndex:"-1"
14922         });
14923         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
14924         //disabling touch- as it's causing issues ..
14925         //ul.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
14926         ul.on('click'   , this.onClick, this);
14927         
14928         
14929         ul.on("mouseover", this.onMouseOver, this);
14930         ul.on("mouseout", this.onMouseOut, this);
14931         this.items.each(function(item){
14932             if (item.hidden) {
14933                 return;
14934             }
14935             
14936             var li = document.createElement("li");
14937             li.className = "x-menu-list-item";
14938             ul.dom.appendChild(li);
14939             item.render(li, this);
14940         }, this);
14941         this.ul = ul;
14942         this.autoWidth();
14943     },
14944
14945     // private
14946     autoWidth : function(){
14947         var el = this.el, ul = this.ul;
14948         if(!el){
14949             return;
14950         }
14951         var w = this.width;
14952         if(w){
14953             el.setWidth(w);
14954         }else if(Roo.isIE){
14955             el.setWidth(this.minWidth);
14956             var t = el.dom.offsetWidth; // force recalc
14957             el.setWidth(ul.getWidth()+el.getFrameWidth("lr"));
14958         }
14959     },
14960
14961     // private
14962     delayAutoWidth : function(){
14963         if(this.rendered){
14964             if(!this.awTask){
14965                 this.awTask = new Roo.util.DelayedTask(this.autoWidth, this);
14966             }
14967             this.awTask.delay(20);
14968         }
14969     },
14970
14971     // private
14972     findTargetItem : function(e){
14973         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
14974         if(t && t.menuItemId){
14975             return this.items.get(t.menuItemId);
14976         }
14977     },
14978
14979     // private
14980     onClick : function(e){
14981         Roo.log("menu.onClick");
14982         var t = this.findTargetItem(e);
14983         if(!t){
14984             return;
14985         }
14986         Roo.log(e);
14987         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
14988             if(t == this.activeItem && t.shouldDeactivate(e)){
14989                 this.activeItem.deactivate();
14990                 delete this.activeItem;
14991                 return;
14992             }
14993             if(t.canActivate){
14994                 this.setActiveItem(t, true);
14995             }
14996             return;
14997             
14998             
14999         }
15000         
15001         t.onClick(e);
15002         this.fireEvent("click", this, t, e);
15003     },
15004
15005     // private
15006     setActiveItem : function(item, autoExpand){
15007         if(item != this.activeItem){
15008             if(this.activeItem){
15009                 this.activeItem.deactivate();
15010             }
15011             this.activeItem = item;
15012             item.activate(autoExpand);
15013         }else if(autoExpand){
15014             item.expandMenu();
15015         }
15016     },
15017
15018     // private
15019     tryActivate : function(start, step){
15020         var items = this.items;
15021         for(var i = start, len = items.length; i >= 0 && i < len; i+= step){
15022             var item = items.get(i);
15023             if(!item.disabled && item.canActivate){
15024                 this.setActiveItem(item, false);
15025                 return item;
15026             }
15027         }
15028         return false;
15029     },
15030
15031     // private
15032     onMouseOver : function(e){
15033         var t;
15034         if(t = this.findTargetItem(e)){
15035             if(t.canActivate && !t.disabled){
15036                 this.setActiveItem(t, true);
15037             }
15038         }
15039         this.fireEvent("mouseover", this, e, t);
15040     },
15041
15042     // private
15043     onMouseOut : function(e){
15044         var t;
15045         if(t = this.findTargetItem(e)){
15046             if(t == this.activeItem && t.shouldDeactivate(e)){
15047                 this.activeItem.deactivate();
15048                 delete this.activeItem;
15049             }
15050         }
15051         this.fireEvent("mouseout", this, e, t);
15052     },
15053
15054     /**
15055      * Read-only.  Returns true if the menu is currently displayed, else false.
15056      * @type Boolean
15057      */
15058     isVisible : function(){
15059         return this.el && !this.hidden;
15060     },
15061
15062     /**
15063      * Displays this menu relative to another element
15064      * @param {String/HTMLElement/Roo.Element} element The element to align to
15065      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
15066      * the element (defaults to this.defaultAlign)
15067      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
15068      */
15069     show : function(el, pos, parentMenu){
15070         this.parentMenu = parentMenu;
15071         if(!this.el){
15072             this.render();
15073         }
15074         this.fireEvent("beforeshow", this);
15075         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
15076     },
15077
15078     /**
15079      * Displays this menu at a specific xy position
15080      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
15081      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
15082      */
15083     showAt : function(xy, parentMenu, /* private: */_e){
15084         this.parentMenu = parentMenu;
15085         if(!this.el){
15086             this.render();
15087         }
15088         if(_e !== false){
15089             this.fireEvent("beforeshow", this);
15090             xy = this.el.adjustForConstraints(xy);
15091         }
15092         this.el.setXY(xy);
15093         this.el.show();
15094         this.hidden = false;
15095         this.focus();
15096         this.fireEvent("show", this);
15097     },
15098
15099     focus : function(){
15100         if(!this.hidden){
15101             this.doFocus.defer(50, this);
15102         }
15103     },
15104
15105     doFocus : function(){
15106         if(!this.hidden){
15107             this.focusEl.focus();
15108         }
15109     },
15110
15111     /**
15112      * Hides this menu and optionally all parent menus
15113      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
15114      */
15115     hide : function(deep){
15116         if(this.el && this.isVisible()){
15117             this.fireEvent("beforehide", this);
15118             if(this.activeItem){
15119                 this.activeItem.deactivate();
15120                 this.activeItem = null;
15121             }
15122             this.el.hide();
15123             this.hidden = true;
15124             this.fireEvent("hide", this);
15125         }
15126         if(deep === true && this.parentMenu){
15127             this.parentMenu.hide(true);
15128         }
15129     },
15130
15131     /**
15132      * Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.
15133      * Any of the following are valid:
15134      * <ul>
15135      * <li>Any menu item object based on {@link Roo.menu.Item}</li>
15136      * <li>An HTMLElement object which will be converted to a menu item</li>
15137      * <li>A menu item config object that will be created as a new menu item</li>
15138      * <li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise
15139      * it will be converted into a {@link Roo.menu.TextItem} and added</li>
15140      * </ul>
15141      * Usage:
15142      * <pre><code>
15143 // Create the menu
15144 var menu = new Roo.menu.Menu();
15145
15146 // Create a menu item to add by reference
15147 var menuItem = new Roo.menu.Item({ text: 'New Item!' });
15148
15149 // Add a bunch of items at once using different methods.
15150 // Only the last item added will be returned.
15151 var item = menu.add(
15152     menuItem,                // add existing item by ref
15153     'Dynamic Item',          // new TextItem
15154     '-',                     // new separator
15155     { text: 'Config Item' }  // new item by config
15156 );
15157 </code></pre>
15158      * @param {Mixed} args One or more menu items, menu item configs or other objects that can be converted to menu items
15159      * @return {Roo.menu.Item} The menu item that was added, or the last one if multiple items were added
15160      */
15161     add : function(){
15162         var a = arguments, l = a.length, item;
15163         for(var i = 0; i < l; i++){
15164             var el = a[i];
15165             if ((typeof(el) == "object") && el.xtype && el.xns) {
15166                 el = Roo.factory(el, Roo.menu);
15167             }
15168             
15169             if(el.render){ // some kind of Item
15170                 item = this.addItem(el);
15171             }else if(typeof el == "string"){ // string
15172                 if(el == "separator" || el == "-"){
15173                     item = this.addSeparator();
15174                 }else{
15175                     item = this.addText(el);
15176                 }
15177             }else if(el.tagName || el.el){ // element
15178                 item = this.addElement(el);
15179             }else if(typeof el == "object"){ // must be menu item config?
15180                 item = this.addMenuItem(el);
15181             }
15182         }
15183         return item;
15184     },
15185
15186     /**
15187      * Returns this menu's underlying {@link Roo.Element} object
15188      * @return {Roo.Element} The element
15189      */
15190     getEl : function(){
15191         if(!this.el){
15192             this.render();
15193         }
15194         return this.el;
15195     },
15196
15197     /**
15198      * Adds a separator bar to the menu
15199      * @return {Roo.menu.Item} The menu item that was added
15200      */
15201     addSeparator : function(){
15202         return this.addItem(new Roo.menu.Separator());
15203     },
15204
15205     /**
15206      * Adds an {@link Roo.Element} object to the menu
15207      * @param {String/HTMLElement/Roo.Element} el The element or DOM node to add, or its id
15208      * @return {Roo.menu.Item} The menu item that was added
15209      */
15210     addElement : function(el){
15211         return this.addItem(new Roo.menu.BaseItem(el));
15212     },
15213
15214     /**
15215      * Adds an existing object based on {@link Roo.menu.Item} to the menu
15216      * @param {Roo.menu.Item} item The menu item to add
15217      * @return {Roo.menu.Item} The menu item that was added
15218      */
15219     addItem : function(item){
15220         this.items.add(item);
15221         if(this.ul){
15222             var li = document.createElement("li");
15223             li.className = "x-menu-list-item";
15224             this.ul.dom.appendChild(li);
15225             item.render(li, this);
15226             this.delayAutoWidth();
15227         }
15228         return item;
15229     },
15230
15231     /**
15232      * Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu
15233      * @param {Object} config A MenuItem config object
15234      * @return {Roo.menu.Item} The menu item that was added
15235      */
15236     addMenuItem : function(config){
15237         if(!(config instanceof Roo.menu.Item)){
15238             if(typeof config.checked == "boolean"){ // must be check menu item config?
15239                 config = new Roo.menu.CheckItem(config);
15240             }else{
15241                 config = new Roo.menu.Item(config);
15242             }
15243         }
15244         return this.addItem(config);
15245     },
15246
15247     /**
15248      * Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu
15249      * @param {String} text The text to display in the menu item
15250      * @return {Roo.menu.Item} The menu item that was added
15251      */
15252     addText : function(text){
15253         return this.addItem(new Roo.menu.TextItem({ text : text }));
15254     },
15255
15256     /**
15257      * Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index
15258      * @param {Number} index The index in the menu's list of current items where the new item should be inserted
15259      * @param {Roo.menu.Item} item The menu item to add
15260      * @return {Roo.menu.Item} The menu item that was added
15261      */
15262     insert : function(index, item){
15263         this.items.insert(index, item);
15264         if(this.ul){
15265             var li = document.createElement("li");
15266             li.className = "x-menu-list-item";
15267             this.ul.dom.insertBefore(li, this.ul.dom.childNodes[index]);
15268             item.render(li, this);
15269             this.delayAutoWidth();
15270         }
15271         return item;
15272     },
15273
15274     /**
15275      * Removes an {@link Roo.menu.Item} from the menu and destroys the object
15276      * @param {Roo.menu.Item} item The menu item to remove
15277      */
15278     remove : function(item){
15279         this.items.removeKey(item.id);
15280         item.destroy();
15281     },
15282
15283     /**
15284      * Removes and destroys all items in the menu
15285      */
15286     removeAll : function(){
15287         var f;
15288         while(f = this.items.first()){
15289             this.remove(f);
15290         }
15291     }
15292 });
15293
15294 // MenuNav is a private utility class used internally by the Menu
15295 Roo.menu.MenuNav = function(menu){
15296     Roo.menu.MenuNav.superclass.constructor.call(this, menu.el);
15297     this.scope = this.menu = menu;
15298 };
15299
15300 Roo.extend(Roo.menu.MenuNav, Roo.KeyNav, {
15301     doRelay : function(e, h){
15302         var k = e.getKey();
15303         if(!this.menu.activeItem && e.isNavKeyPress() && k != e.SPACE && k != e.RETURN){
15304             this.menu.tryActivate(0, 1);
15305             return false;
15306         }
15307         return h.call(this.scope || this, e, this.menu);
15308     },
15309
15310     up : function(e, m){
15311         if(!m.tryActivate(m.items.indexOf(m.activeItem)-1, -1)){
15312             m.tryActivate(m.items.length-1, -1);
15313         }
15314     },
15315
15316     down : function(e, m){
15317         if(!m.tryActivate(m.items.indexOf(m.activeItem)+1, 1)){
15318             m.tryActivate(0, 1);
15319         }
15320     },
15321
15322     right : function(e, m){
15323         if(m.activeItem){
15324             m.activeItem.expandMenu(true);
15325         }
15326     },
15327
15328     left : function(e, m){
15329         m.hide();
15330         if(m.parentMenu && m.parentMenu.activeItem){
15331             m.parentMenu.activeItem.activate();
15332         }
15333     },
15334
15335     enter : function(e, m){
15336         if(m.activeItem){
15337             e.stopPropagation();
15338             m.activeItem.onClick(e);
15339             m.fireEvent("click", this, m.activeItem);
15340             return true;
15341         }
15342     }
15343 });/*
15344  * Based on:
15345  * Ext JS Library 1.1.1
15346  * Copyright(c) 2006-2007, Ext JS, LLC.
15347  *
15348  * Originally Released Under LGPL - original licence link has changed is not relivant.
15349  *
15350  * Fork - LGPL
15351  * <script type="text/javascript">
15352  */
15353  
15354 /**
15355  * @class Roo.menu.MenuMgr
15356  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
15357  * @singleton
15358  */
15359 Roo.menu.MenuMgr = function(){
15360    var menus, active, groups = {}, attached = false, lastShow = new Date();
15361
15362    // private - called when first menu is created
15363    function init(){
15364        menus = {};
15365        active = new Roo.util.MixedCollection();
15366        Roo.get(document).addKeyListener(27, function(){
15367            if(active.length > 0){
15368                hideAll();
15369            }
15370        });
15371    }
15372
15373    // private
15374    function hideAll(){
15375        if(active && active.length > 0){
15376            var c = active.clone();
15377            c.each(function(m){
15378                m.hide();
15379            });
15380        }
15381    }
15382
15383    // private
15384    function onHide(m){
15385        active.remove(m);
15386        if(active.length < 1){
15387            Roo.get(document).un("mousedown", onMouseDown);
15388            attached = false;
15389        }
15390    }
15391
15392    // private
15393    function onShow(m){
15394        var last = active.last();
15395        lastShow = new Date();
15396        active.add(m);
15397        if(!attached){
15398            Roo.get(document).on("mousedown", onMouseDown);
15399            attached = true;
15400        }
15401        if(m.parentMenu){
15402           m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
15403           m.parentMenu.activeChild = m;
15404        }else if(last && last.isVisible()){
15405           m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
15406        }
15407    }
15408
15409    // private
15410    function onBeforeHide(m){
15411        if(m.activeChild){
15412            m.activeChild.hide();
15413        }
15414        if(m.autoHideTimer){
15415            clearTimeout(m.autoHideTimer);
15416            delete m.autoHideTimer;
15417        }
15418    }
15419
15420    // private
15421    function onBeforeShow(m){
15422        var pm = m.parentMenu;
15423        if(!pm && !m.allowOtherMenus){
15424            hideAll();
15425        }else if(pm && pm.activeChild && active != m){
15426            pm.activeChild.hide();
15427        }
15428    }
15429
15430    // private
15431    function onMouseDown(e){
15432        if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
15433            hideAll();
15434        }
15435    }
15436
15437    // private
15438    function onBeforeCheck(mi, state){
15439        if(state){
15440            var g = groups[mi.group];
15441            for(var i = 0, l = g.length; i < l; i++){
15442                if(g[i] != mi){
15443                    g[i].setChecked(false);
15444                }
15445            }
15446        }
15447    }
15448
15449    return {
15450
15451        /**
15452         * Hides all menus that are currently visible
15453         */
15454        hideAll : function(){
15455             hideAll();  
15456        },
15457
15458        // private
15459        register : function(menu){
15460            if(!menus){
15461                init();
15462            }
15463            menus[menu.id] = menu;
15464            menu.on("beforehide", onBeforeHide);
15465            menu.on("hide", onHide);
15466            menu.on("beforeshow", onBeforeShow);
15467            menu.on("show", onShow);
15468            var g = menu.group;
15469            if(g && menu.events["checkchange"]){
15470                if(!groups[g]){
15471                    groups[g] = [];
15472                }
15473                groups[g].push(menu);
15474                menu.on("checkchange", onCheck);
15475            }
15476        },
15477
15478         /**
15479          * Returns a {@link Roo.menu.Menu} object
15480          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
15481          * be used to generate and return a new Menu instance.
15482          */
15483        get : function(menu){
15484            if(typeof menu == "string"){ // menu id
15485                return menus[menu];
15486            }else if(menu.events){  // menu instance
15487                return menu;
15488            }else if(typeof menu.length == 'number'){ // array of menu items?
15489                return new Roo.menu.Menu({items:menu});
15490            }else{ // otherwise, must be a config
15491                return new Roo.menu.Menu(menu);
15492            }
15493        },
15494
15495        // private
15496        unregister : function(menu){
15497            delete menus[menu.id];
15498            menu.un("beforehide", onBeforeHide);
15499            menu.un("hide", onHide);
15500            menu.un("beforeshow", onBeforeShow);
15501            menu.un("show", onShow);
15502            var g = menu.group;
15503            if(g && menu.events["checkchange"]){
15504                groups[g].remove(menu);
15505                menu.un("checkchange", onCheck);
15506            }
15507        },
15508
15509        // private
15510        registerCheckable : function(menuItem){
15511            var g = menuItem.group;
15512            if(g){
15513                if(!groups[g]){
15514                    groups[g] = [];
15515                }
15516                groups[g].push(menuItem);
15517                menuItem.on("beforecheckchange", onBeforeCheck);
15518            }
15519        },
15520
15521        // private
15522        unregisterCheckable : function(menuItem){
15523            var g = menuItem.group;
15524            if(g){
15525                groups[g].remove(menuItem);
15526                menuItem.un("beforecheckchange", onBeforeCheck);
15527            }
15528        }
15529    };
15530 }();/*
15531  * Based on:
15532  * Ext JS Library 1.1.1
15533  * Copyright(c) 2006-2007, Ext JS, LLC.
15534  *
15535  * Originally Released Under LGPL - original licence link has changed is not relivant.
15536  *
15537  * Fork - LGPL
15538  * <script type="text/javascript">
15539  */
15540  
15541
15542 /**
15543  * @class Roo.menu.BaseItem
15544  * @extends Roo.Component
15545  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
15546  * management and base configuration options shared by all menu components.
15547  * @constructor
15548  * Creates a new BaseItem
15549  * @param {Object} config Configuration options
15550  */
15551 Roo.menu.BaseItem = function(config){
15552     Roo.menu.BaseItem.superclass.constructor.call(this, config);
15553
15554     this.addEvents({
15555         /**
15556          * @event click
15557          * Fires when this item is clicked
15558          * @param {Roo.menu.BaseItem} this
15559          * @param {Roo.EventObject} e
15560          */
15561         click: true,
15562         /**
15563          * @event activate
15564          * Fires when this item is activated
15565          * @param {Roo.menu.BaseItem} this
15566          */
15567         activate : true,
15568         /**
15569          * @event deactivate
15570          * Fires when this item is deactivated
15571          * @param {Roo.menu.BaseItem} this
15572          */
15573         deactivate : true
15574     });
15575
15576     if(this.handler){
15577         this.on("click", this.handler, this.scope, true);
15578     }
15579 };
15580
15581 Roo.extend(Roo.menu.BaseItem, Roo.Component, {
15582     /**
15583      * @cfg {Function} handler
15584      * A function that will handle the click event of this menu item (defaults to undefined)
15585      */
15586     /**
15587      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
15588      */
15589     canActivate : false,
15590     
15591      /**
15592      * @cfg {Boolean} hidden True to prevent creation of this menu item (defaults to false)
15593      */
15594     hidden: false,
15595     
15596     /**
15597      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
15598      */
15599     activeClass : "x-menu-item-active",
15600     /**
15601      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
15602      */
15603     hideOnClick : true,
15604     /**
15605      * @cfg {Number} hideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
15606      */
15607     hideDelay : 100,
15608
15609     // private
15610     ctype: "Roo.menu.BaseItem",
15611
15612     // private
15613     actionMode : "container",
15614
15615     // private
15616     render : function(container, parentMenu){
15617         this.parentMenu = parentMenu;
15618         Roo.menu.BaseItem.superclass.render.call(this, container);
15619         this.container.menuItemId = this.id;
15620     },
15621
15622     // private
15623     onRender : function(container, position){
15624         this.el = Roo.get(this.el);
15625         container.dom.appendChild(this.el.dom);
15626     },
15627
15628     // private
15629     onClick : function(e){
15630         if(!this.disabled && this.fireEvent("click", this, e) !== false
15631                 && this.parentMenu.fireEvent("itemclick", this, e) !== false){
15632             this.handleClick(e);
15633         }else{
15634             e.stopEvent();
15635         }
15636     },
15637
15638     // private
15639     activate : function(){
15640         if(this.disabled){
15641             return false;
15642         }
15643         var li = this.container;
15644         li.addClass(this.activeClass);
15645         this.region = li.getRegion().adjust(2, 2, -2, -2);
15646         this.fireEvent("activate", this);
15647         return true;
15648     },
15649
15650     // private
15651     deactivate : function(){
15652         this.container.removeClass(this.activeClass);
15653         this.fireEvent("deactivate", this);
15654     },
15655
15656     // private
15657     shouldDeactivate : function(e){
15658         return !this.region || !this.region.contains(e.getPoint());
15659     },
15660
15661     // private
15662     handleClick : function(e){
15663         if(this.hideOnClick){
15664             this.parentMenu.hide.defer(this.hideDelay, this.parentMenu, [true]);
15665         }
15666     },
15667
15668     // private
15669     expandMenu : function(autoActivate){
15670         // do nothing
15671     },
15672
15673     // private
15674     hideMenu : function(){
15675         // do nothing
15676     }
15677 });/*
15678  * Based on:
15679  * Ext JS Library 1.1.1
15680  * Copyright(c) 2006-2007, Ext JS, LLC.
15681  *
15682  * Originally Released Under LGPL - original licence link has changed is not relivant.
15683  *
15684  * Fork - LGPL
15685  * <script type="text/javascript">
15686  */
15687  
15688 /**
15689  * @class Roo.menu.Adapter
15690  * @extends Roo.menu.BaseItem
15691  * 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.
15692  * It provides basic rendering, activation management and enable/disable logic required to work in menus.
15693  * @constructor
15694  * Creates a new Adapter
15695  * @param {Object} config Configuration options
15696  */
15697 Roo.menu.Adapter = function(component, config){
15698     Roo.menu.Adapter.superclass.constructor.call(this, config);
15699     this.component = component;
15700 };
15701 Roo.extend(Roo.menu.Adapter, Roo.menu.BaseItem, {
15702     // private
15703     canActivate : true,
15704
15705     // private
15706     onRender : function(container, position){
15707         this.component.render(container);
15708         this.el = this.component.getEl();
15709     },
15710
15711     // private
15712     activate : function(){
15713         if(this.disabled){
15714             return false;
15715         }
15716         this.component.focus();
15717         this.fireEvent("activate", this);
15718         return true;
15719     },
15720
15721     // private
15722     deactivate : function(){
15723         this.fireEvent("deactivate", this);
15724     },
15725
15726     // private
15727     disable : function(){
15728         this.component.disable();
15729         Roo.menu.Adapter.superclass.disable.call(this);
15730     },
15731
15732     // private
15733     enable : function(){
15734         this.component.enable();
15735         Roo.menu.Adapter.superclass.enable.call(this);
15736     }
15737 });/*
15738  * Based on:
15739  * Ext JS Library 1.1.1
15740  * Copyright(c) 2006-2007, Ext JS, LLC.
15741  *
15742  * Originally Released Under LGPL - original licence link has changed is not relivant.
15743  *
15744  * Fork - LGPL
15745  * <script type="text/javascript">
15746  */
15747
15748 /**
15749  * @class Roo.menu.TextItem
15750  * @extends Roo.menu.BaseItem
15751  * Adds a static text string to a menu, usually used as either a heading or group separator.
15752  * Note: old style constructor with text is still supported.
15753  * 
15754  * @constructor
15755  * Creates a new TextItem
15756  * @param {Object} cfg Configuration
15757  */
15758 Roo.menu.TextItem = function(cfg){
15759     if (typeof(cfg) == 'string') {
15760         this.text = cfg;
15761     } else {
15762         Roo.apply(this,cfg);
15763     }
15764     
15765     Roo.menu.TextItem.superclass.constructor.call(this);
15766 };
15767
15768 Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, {
15769     /**
15770      * @cfg {Boolean} text Text to show on item.
15771      */
15772     text : '',
15773     
15774     /**
15775      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
15776      */
15777     hideOnClick : false,
15778     /**
15779      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
15780      */
15781     itemCls : "x-menu-text",
15782
15783     // private
15784     onRender : function(){
15785         var s = document.createElement("span");
15786         s.className = this.itemCls;
15787         s.innerHTML = this.text;
15788         this.el = s;
15789         Roo.menu.TextItem.superclass.onRender.apply(this, arguments);
15790     }
15791 });/*
15792  * Based on:
15793  * Ext JS Library 1.1.1
15794  * Copyright(c) 2006-2007, Ext JS, LLC.
15795  *
15796  * Originally Released Under LGPL - original licence link has changed is not relivant.
15797  *
15798  * Fork - LGPL
15799  * <script type="text/javascript">
15800  */
15801
15802 /**
15803  * @class Roo.menu.Separator
15804  * @extends Roo.menu.BaseItem
15805  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
15806  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
15807  * @constructor
15808  * @param {Object} config Configuration options
15809  */
15810 Roo.menu.Separator = function(config){
15811     Roo.menu.Separator.superclass.constructor.call(this, config);
15812 };
15813
15814 Roo.extend(Roo.menu.Separator, Roo.menu.BaseItem, {
15815     /**
15816      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
15817      */
15818     itemCls : "x-menu-sep",
15819     /**
15820      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
15821      */
15822     hideOnClick : false,
15823
15824     // private
15825     onRender : function(li){
15826         var s = document.createElement("span");
15827         s.className = this.itemCls;
15828         s.innerHTML = "&#160;";
15829         this.el = s;
15830         li.addClass("x-menu-sep-li");
15831         Roo.menu.Separator.superclass.onRender.apply(this, arguments);
15832     }
15833 });/*
15834  * Based on:
15835  * Ext JS Library 1.1.1
15836  * Copyright(c) 2006-2007, Ext JS, LLC.
15837  *
15838  * Originally Released Under LGPL - original licence link has changed is not relivant.
15839  *
15840  * Fork - LGPL
15841  * <script type="text/javascript">
15842  */
15843 /**
15844  * @class Roo.menu.Item
15845  * @extends Roo.menu.BaseItem
15846  * A base class for all menu items that require menu-related functionality (like sub-menus) and are not static
15847  * display items.  Item extends the base functionality of {@link Roo.menu.BaseItem} by adding menu-specific
15848  * activation and click handling.
15849  * @constructor
15850  * Creates a new Item
15851  * @param {Object} config Configuration options
15852  */
15853 Roo.menu.Item = function(config){
15854     Roo.menu.Item.superclass.constructor.call(this, config);
15855     if(this.menu){
15856         this.menu = Roo.menu.MenuMgr.get(this.menu);
15857     }
15858 };
15859 Roo.extend(Roo.menu.Item, Roo.menu.BaseItem, {
15860     
15861     /**
15862      * @cfg {String} text
15863      * The text to show on the menu item.
15864      */
15865     text: '',
15866      /**
15867      * @cfg {String} HTML to render in menu
15868      * The text to show on the menu item (HTML version).
15869      */
15870     html: '',
15871     /**
15872      * @cfg {String} icon
15873      * The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)
15874      */
15875     icon: undefined,
15876     /**
15877      * @cfg {String} itemCls The default CSS class to use for menu items (defaults to "x-menu-item")
15878      */
15879     itemCls : "x-menu-item",
15880     /**
15881      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to true)
15882      */
15883     canActivate : true,
15884     /**
15885      * @cfg {Number} showDelay Length of time in milliseconds to wait before showing this item (defaults to 200)
15886      */
15887     showDelay: 200,
15888     // doc'd in BaseItem
15889     hideDelay: 200,
15890
15891     // private
15892     ctype: "Roo.menu.Item",
15893     
15894     // private
15895     onRender : function(container, position){
15896         var el = document.createElement("a");
15897         el.hideFocus = true;
15898         el.unselectable = "on";
15899         el.href = this.href || "#";
15900         if(this.hrefTarget){
15901             el.target = this.hrefTarget;
15902         }
15903         el.className = this.itemCls + (this.menu ?  " x-menu-item-arrow" : "") + (this.cls ?  " " + this.cls : "");
15904         
15905         var html = this.html.length ? this.html  : String.format('{0}',this.text);
15906         
15907         el.innerHTML = String.format(
15908                 '<img src="{0}" class="x-menu-item-icon {1}" />' + html,
15909                 this.icon || Roo.BLANK_IMAGE_URL, this.iconCls || '');
15910         this.el = el;
15911         Roo.menu.Item.superclass.onRender.call(this, container, position);
15912     },
15913
15914     /**
15915      * Sets the text to display in this menu item
15916      * @param {String} text The text to display
15917      * @param {Boolean} isHTML true to indicate text is pure html.
15918      */
15919     setText : function(text, isHTML){
15920         if (isHTML) {
15921             this.html = text;
15922         } else {
15923             this.text = text;
15924             this.html = '';
15925         }
15926         if(this.rendered){
15927             var html = this.html.length ? this.html  : String.format('{0}',this.text);
15928      
15929             this.el.update(String.format(
15930                 '<img src="{0}" class="x-menu-item-icon {2}">' + html,
15931                 this.icon || Roo.BLANK_IMAGE_URL, this.text, this.iconCls || ''));
15932             this.parentMenu.autoWidth();
15933         }
15934     },
15935
15936     // private
15937     handleClick : function(e){
15938         if(!this.href){ // if no link defined, stop the event automatically
15939             e.stopEvent();
15940         }
15941         Roo.menu.Item.superclass.handleClick.apply(this, arguments);
15942     },
15943
15944     // private
15945     activate : function(autoExpand){
15946         if(Roo.menu.Item.superclass.activate.apply(this, arguments)){
15947             this.focus();
15948             if(autoExpand){
15949                 this.expandMenu();
15950             }
15951         }
15952         return true;
15953     },
15954
15955     // private
15956     shouldDeactivate : function(e){
15957         if(Roo.menu.Item.superclass.shouldDeactivate.call(this, e)){
15958             if(this.menu && this.menu.isVisible()){
15959                 return !this.menu.getEl().getRegion().contains(e.getPoint());
15960             }
15961             return true;
15962         }
15963         return false;
15964     },
15965
15966     // private
15967     deactivate : function(){
15968         Roo.menu.Item.superclass.deactivate.apply(this, arguments);
15969         this.hideMenu();
15970     },
15971
15972     // private
15973     expandMenu : function(autoActivate){
15974         if(!this.disabled && this.menu){
15975             clearTimeout(this.hideTimer);
15976             delete this.hideTimer;
15977             if(!this.menu.isVisible() && !this.showTimer){
15978                 this.showTimer = this.deferExpand.defer(this.showDelay, this, [autoActivate]);
15979             }else if (this.menu.isVisible() && autoActivate){
15980                 this.menu.tryActivate(0, 1);
15981             }
15982         }
15983     },
15984
15985     // private
15986     deferExpand : function(autoActivate){
15987         delete this.showTimer;
15988         this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
15989         if(autoActivate){
15990             this.menu.tryActivate(0, 1);
15991         }
15992     },
15993
15994     // private
15995     hideMenu : function(){
15996         clearTimeout(this.showTimer);
15997         delete this.showTimer;
15998         if(!this.hideTimer && this.menu && this.menu.isVisible()){
15999             this.hideTimer = this.deferHide.defer(this.hideDelay, this);
16000         }
16001     },
16002
16003     // private
16004     deferHide : function(){
16005         delete this.hideTimer;
16006         this.menu.hide();
16007     }
16008 });/*
16009  * Based on:
16010  * Ext JS Library 1.1.1
16011  * Copyright(c) 2006-2007, Ext JS, LLC.
16012  *
16013  * Originally Released Under LGPL - original licence link has changed is not relivant.
16014  *
16015  * Fork - LGPL
16016  * <script type="text/javascript">
16017  */
16018  
16019 /**
16020  * @class Roo.menu.CheckItem
16021  * @extends Roo.menu.Item
16022  * Adds a menu item that contains a checkbox by default, but can also be part of a radio group.
16023  * @constructor
16024  * Creates a new CheckItem
16025  * @param {Object} config Configuration options
16026  */
16027 Roo.menu.CheckItem = function(config){
16028     Roo.menu.CheckItem.superclass.constructor.call(this, config);
16029     this.addEvents({
16030         /**
16031          * @event beforecheckchange
16032          * Fires before the checked value is set, providing an opportunity to cancel if needed
16033          * @param {Roo.menu.CheckItem} this
16034          * @param {Boolean} checked The new checked value that will be set
16035          */
16036         "beforecheckchange" : true,
16037         /**
16038          * @event checkchange
16039          * Fires after the checked value has been set
16040          * @param {Roo.menu.CheckItem} this
16041          * @param {Boolean} checked The checked value that was set
16042          */
16043         "checkchange" : true
16044     });
16045     if(this.checkHandler){
16046         this.on('checkchange', this.checkHandler, this.scope);
16047     }
16048 };
16049 Roo.extend(Roo.menu.CheckItem, Roo.menu.Item, {
16050     /**
16051      * @cfg {String} group
16052      * All check items with the same group name will automatically be grouped into a single-select
16053      * radio button group (defaults to '')
16054      */
16055     /**
16056      * @cfg {String} itemCls The default CSS class to use for check items (defaults to "x-menu-item x-menu-check-item")
16057      */
16058     itemCls : "x-menu-item x-menu-check-item",
16059     /**
16060      * @cfg {String} groupClass The default CSS class to use for radio group check items (defaults to "x-menu-group-item")
16061      */
16062     groupClass : "x-menu-group-item",
16063
16064     /**
16065      * @cfg {Boolean} checked True to initialize this checkbox as checked (defaults to false).  Note that
16066      * if this checkbox is part of a radio group (group = true) only the last item in the group that is
16067      * initialized with checked = true will be rendered as checked.
16068      */
16069     checked: false,
16070
16071     // private
16072     ctype: "Roo.menu.CheckItem",
16073
16074     // private
16075     onRender : function(c){
16076         Roo.menu.CheckItem.superclass.onRender.apply(this, arguments);
16077         if(this.group){
16078             this.el.addClass(this.groupClass);
16079         }
16080         Roo.menu.MenuMgr.registerCheckable(this);
16081         if(this.checked){
16082             this.checked = false;
16083             this.setChecked(true, true);
16084         }
16085     },
16086
16087     // private
16088     destroy : function(){
16089         if(this.rendered){
16090             Roo.menu.MenuMgr.unregisterCheckable(this);
16091         }
16092         Roo.menu.CheckItem.superclass.destroy.apply(this, arguments);
16093     },
16094
16095     /**
16096      * Set the checked state of this item
16097      * @param {Boolean} checked The new checked value
16098      * @param {Boolean} suppressEvent (optional) True to prevent the checkchange event from firing (defaults to false)
16099      */
16100     setChecked : function(state, suppressEvent){
16101         if(this.checked != state && this.fireEvent("beforecheckchange", this, state) !== false){
16102             if(this.container){
16103                 this.container[state ? "addClass" : "removeClass"]("x-menu-item-checked");
16104             }
16105             this.checked = state;
16106             if(suppressEvent !== true){
16107                 this.fireEvent("checkchange", this, state);
16108             }
16109         }
16110     },
16111
16112     // private
16113     handleClick : function(e){
16114        if(!this.disabled && !(this.checked && this.group)){// disable unselect on radio item
16115            this.setChecked(!this.checked);
16116        }
16117        Roo.menu.CheckItem.superclass.handleClick.apply(this, arguments);
16118     }
16119 });/*
16120  * Based on:
16121  * Ext JS Library 1.1.1
16122  * Copyright(c) 2006-2007, Ext JS, LLC.
16123  *
16124  * Originally Released Under LGPL - original licence link has changed is not relivant.
16125  *
16126  * Fork - LGPL
16127  * <script type="text/javascript">
16128  */
16129  
16130 /**
16131  * @class Roo.menu.DateItem
16132  * @extends Roo.menu.Adapter
16133  * A menu item that wraps the {@link Roo.DatPicker} component.
16134  * @constructor
16135  * Creates a new DateItem
16136  * @param {Object} config Configuration options
16137  */
16138 Roo.menu.DateItem = function(config){
16139     Roo.menu.DateItem.superclass.constructor.call(this, new Roo.DatePicker(config), config);
16140     /** The Roo.DatePicker object @type Roo.DatePicker */
16141     this.picker = this.component;
16142     this.addEvents({select: true});
16143     
16144     this.picker.on("render", function(picker){
16145         picker.getEl().swallowEvent("click");
16146         picker.container.addClass("x-menu-date-item");
16147     });
16148
16149     this.picker.on("select", this.onSelect, this);
16150 };
16151
16152 Roo.extend(Roo.menu.DateItem, Roo.menu.Adapter, {
16153     // private
16154     onSelect : function(picker, date){
16155         this.fireEvent("select", this, date, picker);
16156         Roo.menu.DateItem.superclass.handleClick.call(this);
16157     }
16158 });/*
16159  * Based on:
16160  * Ext JS Library 1.1.1
16161  * Copyright(c) 2006-2007, Ext JS, LLC.
16162  *
16163  * Originally Released Under LGPL - original licence link has changed is not relivant.
16164  *
16165  * Fork - LGPL
16166  * <script type="text/javascript">
16167  */
16168  
16169 /**
16170  * @class Roo.menu.ColorItem
16171  * @extends Roo.menu.Adapter
16172  * A menu item that wraps the {@link Roo.ColorPalette} component.
16173  * @constructor
16174  * Creates a new ColorItem
16175  * @param {Object} config Configuration options
16176  */
16177 Roo.menu.ColorItem = function(config){
16178     Roo.menu.ColorItem.superclass.constructor.call(this, new Roo.ColorPalette(config), config);
16179     /** The Roo.ColorPalette object @type Roo.ColorPalette */
16180     this.palette = this.component;
16181     this.relayEvents(this.palette, ["select"]);
16182     if(this.selectHandler){
16183         this.on('select', this.selectHandler, this.scope);
16184     }
16185 };
16186 Roo.extend(Roo.menu.ColorItem, Roo.menu.Adapter);/*
16187  * Based on:
16188  * Ext JS Library 1.1.1
16189  * Copyright(c) 2006-2007, Ext JS, LLC.
16190  *
16191  * Originally Released Under LGPL - original licence link has changed is not relivant.
16192  *
16193  * Fork - LGPL
16194  * <script type="text/javascript">
16195  */
16196  
16197
16198 /**
16199  * @class Roo.menu.DateMenu
16200  * @extends Roo.menu.Menu
16201  * A menu containing a {@link Roo.menu.DateItem} component (which provides a date picker).
16202  * @constructor
16203  * Creates a new DateMenu
16204  * @param {Object} config Configuration options
16205  */
16206 Roo.menu.DateMenu = function(config){
16207     Roo.menu.DateMenu.superclass.constructor.call(this, config);
16208     this.plain = true;
16209     var di = new Roo.menu.DateItem(config);
16210     this.add(di);
16211     /**
16212      * The {@link Roo.DatePicker} instance for this DateMenu
16213      * @type DatePicker
16214      */
16215     this.picker = di.picker;
16216     /**
16217      * @event select
16218      * @param {DatePicker} picker
16219      * @param {Date} date
16220      */
16221     this.relayEvents(di, ["select"]);
16222     this.on('beforeshow', function(){
16223         if(this.picker){
16224             this.picker.hideMonthPicker(false);
16225         }
16226     }, this);
16227 };
16228 Roo.extend(Roo.menu.DateMenu, Roo.menu.Menu, {
16229     cls:'x-date-menu'
16230 });/*
16231  * Based on:
16232  * Ext JS Library 1.1.1
16233  * Copyright(c) 2006-2007, Ext JS, LLC.
16234  *
16235  * Originally Released Under LGPL - original licence link has changed is not relivant.
16236  *
16237  * Fork - LGPL
16238  * <script type="text/javascript">
16239  */
16240  
16241
16242 /**
16243  * @class Roo.menu.ColorMenu
16244  * @extends Roo.menu.Menu
16245  * A menu containing a {@link Roo.menu.ColorItem} component (which provides a basic color picker).
16246  * @constructor
16247  * Creates a new ColorMenu
16248  * @param {Object} config Configuration options
16249  */
16250 Roo.menu.ColorMenu = function(config){
16251     Roo.menu.ColorMenu.superclass.constructor.call(this, config);
16252     this.plain = true;
16253     var ci = new Roo.menu.ColorItem(config);
16254     this.add(ci);
16255     /**
16256      * The {@link Roo.ColorPalette} instance for this ColorMenu
16257      * @type ColorPalette
16258      */
16259     this.palette = ci.palette;
16260     /**
16261      * @event select
16262      * @param {ColorPalette} palette
16263      * @param {String} color
16264      */
16265     this.relayEvents(ci, ["select"]);
16266 };
16267 Roo.extend(Roo.menu.ColorMenu, Roo.menu.Menu);/*
16268  * Based on:
16269  * Ext JS Library 1.1.1
16270  * Copyright(c) 2006-2007, Ext JS, LLC.
16271  *
16272  * Originally Released Under LGPL - original licence link has changed is not relivant.
16273  *
16274  * Fork - LGPL
16275  * <script type="text/javascript">
16276  */
16277  
16278 /**
16279  * @class Roo.form.TextItem
16280  * @extends Roo.BoxComponent
16281  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
16282  * @constructor
16283  * Creates a new TextItem
16284  * @param {Object} config Configuration options
16285  */
16286 Roo.form.TextItem = function(config){
16287     Roo.form.TextItem.superclass.constructor.call(this, config);
16288 };
16289
16290 Roo.extend(Roo.form.TextItem, Roo.BoxComponent,  {
16291     
16292     /**
16293      * @cfg {String} tag the tag for this item (default div)
16294      */
16295     tag : 'div',
16296     /**
16297      * @cfg {String} html the content for this item
16298      */
16299     html : '',
16300     
16301     getAutoCreate : function()
16302     {
16303         var cfg = {
16304             id: this.id,
16305             tag: this.tag,
16306             html: this.html,
16307             cls: 'x-form-item'
16308         };
16309         
16310         return cfg;
16311         
16312     },
16313     
16314     onRender : function(ct, position)
16315     {
16316         Roo.form.TextItem.superclass.onRender.call(this, ct, position);
16317         
16318         if(!this.el){
16319             var cfg = this.getAutoCreate();
16320             if(!cfg.name){
16321                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
16322             }
16323             if (!cfg.name.length) {
16324                 delete cfg.name;
16325             }
16326             this.el = ct.createChild(cfg, position);
16327         }
16328     }
16329     
16330 });/*
16331  * Based on:
16332  * Ext JS Library 1.1.1
16333  * Copyright(c) 2006-2007, Ext JS, LLC.
16334  *
16335  * Originally Released Under LGPL - original licence link has changed is not relivant.
16336  *
16337  * Fork - LGPL
16338  * <script type="text/javascript">
16339  */
16340  
16341 /**
16342  * @class Roo.form.Field
16343  * @extends Roo.BoxComponent
16344  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
16345  * @constructor
16346  * Creates a new Field
16347  * @param {Object} config Configuration options
16348  */
16349 Roo.form.Field = function(config){
16350     Roo.form.Field.superclass.constructor.call(this, config);
16351 };
16352
16353 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
16354     /**
16355      * @cfg {String} fieldLabel Label to use when rendering a form.
16356      */
16357        /**
16358      * @cfg {String} qtip Mouse over tip
16359      */
16360      
16361     /**
16362      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
16363      */
16364     invalidClass : "x-form-invalid",
16365     /**
16366      * @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")
16367      */
16368     invalidText : "The value in this field is invalid",
16369     /**
16370      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
16371      */
16372     focusClass : "x-form-focus",
16373     /**
16374      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
16375       automatic validation (defaults to "keyup").
16376      */
16377     validationEvent : "keyup",
16378     /**
16379      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
16380      */
16381     validateOnBlur : true,
16382     /**
16383      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
16384      */
16385     validationDelay : 250,
16386     /**
16387      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
16388      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
16389      */
16390     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "new-password"},
16391     /**
16392      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
16393      */
16394     fieldClass : "x-form-field",
16395     /**
16396      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
16397      *<pre>
16398 Value         Description
16399 -----------   ----------------------------------------------------------------------
16400 qtip          Display a quick tip when the user hovers over the field
16401 title         Display a default browser title attribute popup
16402 under         Add a block div beneath the field containing the error text
16403 side          Add an error icon to the right of the field with a popup on hover
16404 [element id]  Add the error text directly to the innerHTML of the specified element
16405 </pre>
16406      */
16407     msgTarget : 'qtip',
16408     /**
16409      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
16410      */
16411     msgFx : 'normal',
16412
16413     /**
16414      * @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.
16415      */
16416     readOnly : false,
16417
16418     /**
16419      * @cfg {Boolean} disabled True to disable the field (defaults to false).
16420      */
16421     disabled : false,
16422
16423     /**
16424      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
16425      */
16426     inputType : undefined,
16427     
16428     /**
16429      * @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).
16430          */
16431         tabIndex : undefined,
16432         
16433     // private
16434     isFormField : true,
16435
16436     // private
16437     hasFocus : false,
16438     /**
16439      * @property {Roo.Element} fieldEl
16440      * Element Containing the rendered Field (with label etc.)
16441      */
16442     /**
16443      * @cfg {Mixed} value A value to initialize this field with.
16444      */
16445     value : undefined,
16446
16447     /**
16448      * @cfg {String} name The field's HTML name attribute.
16449      */
16450     /**
16451      * @cfg {String} cls A CSS class to apply to the field's underlying element.
16452      */
16453     // private
16454     loadedValue : false,
16455      
16456      
16457         // private ??
16458         initComponent : function(){
16459         Roo.form.Field.superclass.initComponent.call(this);
16460         this.addEvents({
16461             /**
16462              * @event focus
16463              * Fires when this field receives input focus.
16464              * @param {Roo.form.Field} this
16465              */
16466             focus : true,
16467             /**
16468              * @event blur
16469              * Fires when this field loses input focus.
16470              * @param {Roo.form.Field} this
16471              */
16472             blur : true,
16473             /**
16474              * @event specialkey
16475              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
16476              * {@link Roo.EventObject#getKey} to determine which key was pressed.
16477              * @param {Roo.form.Field} this
16478              * @param {Roo.EventObject} e The event object
16479              */
16480             specialkey : true,
16481             /**
16482              * @event change
16483              * Fires just before the field blurs if the field value has changed.
16484              * @param {Roo.form.Field} this
16485              * @param {Mixed} newValue The new value
16486              * @param {Mixed} oldValue The original value
16487              */
16488             change : true,
16489             /**
16490              * @event invalid
16491              * Fires after the field has been marked as invalid.
16492              * @param {Roo.form.Field} this
16493              * @param {String} msg The validation message
16494              */
16495             invalid : true,
16496             /**
16497              * @event valid
16498              * Fires after the field has been validated with no errors.
16499              * @param {Roo.form.Field} this
16500              */
16501             valid : true,
16502              /**
16503              * @event keyup
16504              * Fires after the key up
16505              * @param {Roo.form.Field} this
16506              * @param {Roo.EventObject}  e The event Object
16507              */
16508             keyup : true
16509         });
16510     },
16511
16512     /**
16513      * Returns the name attribute of the field if available
16514      * @return {String} name The field name
16515      */
16516     getName: function(){
16517          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
16518     },
16519
16520     // private
16521     onRender : function(ct, position){
16522         Roo.form.Field.superclass.onRender.call(this, ct, position);
16523         if(!this.el){
16524             var cfg = this.getAutoCreate();
16525             if(!cfg.name){
16526                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
16527             }
16528             if (!cfg.name.length) {
16529                 delete cfg.name;
16530             }
16531             if(this.inputType){
16532                 cfg.type = this.inputType;
16533             }
16534             this.el = ct.createChild(cfg, position);
16535         }
16536         var type = this.el.dom.type;
16537         if(type){
16538             if(type == 'password'){
16539                 type = 'text';
16540             }
16541             this.el.addClass('x-form-'+type);
16542         }
16543         if(this.readOnly){
16544             this.el.dom.readOnly = true;
16545         }
16546         if(this.tabIndex !== undefined){
16547             this.el.dom.setAttribute('tabIndex', this.tabIndex);
16548         }
16549
16550         this.el.addClass([this.fieldClass, this.cls]);
16551         this.initValue();
16552     },
16553
16554     /**
16555      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
16556      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
16557      * @return {Roo.form.Field} this
16558      */
16559     applyTo : function(target){
16560         this.allowDomMove = false;
16561         this.el = Roo.get(target);
16562         this.render(this.el.dom.parentNode);
16563         return this;
16564     },
16565
16566     // private
16567     initValue : function(){
16568         if(this.value !== undefined){
16569             this.setValue(this.value);
16570         }else if(this.el.dom.value.length > 0){
16571             this.setValue(this.el.dom.value);
16572         }
16573     },
16574
16575     /**
16576      * Returns true if this field has been changed since it was originally loaded and is not disabled.
16577      * DEPRICATED  - it never worked well - use hasChanged/resetHasChanged.
16578      */
16579     isDirty : function() {
16580         if(this.disabled) {
16581             return false;
16582         }
16583         return String(this.getValue()) !== String(this.originalValue);
16584     },
16585
16586     /**
16587      * stores the current value in loadedValue
16588      */
16589     resetHasChanged : function()
16590     {
16591         this.loadedValue = String(this.getValue());
16592     },
16593     /**
16594      * checks the current value against the 'loaded' value.
16595      * Note - will return false if 'resetHasChanged' has not been called first.
16596      */
16597     hasChanged : function()
16598     {
16599         if(this.disabled || this.readOnly) {
16600             return false;
16601         }
16602         return this.loadedValue !== false && String(this.getValue()) !== this.loadedValue;
16603     },
16604     
16605     
16606     
16607     // private
16608     afterRender : function(){
16609         Roo.form.Field.superclass.afterRender.call(this);
16610         this.initEvents();
16611     },
16612
16613     // private
16614     fireKey : function(e){
16615         //Roo.log('field ' + e.getKey());
16616         if(e.isNavKeyPress()){
16617             this.fireEvent("specialkey", this, e);
16618         }
16619     },
16620
16621     /**
16622      * Resets the current field value to the originally loaded value and clears any validation messages
16623      */
16624     reset : function(){
16625         this.setValue(this.resetValue);
16626         this.originalValue = this.getValue();
16627         this.clearInvalid();
16628     },
16629
16630     // private
16631     initEvents : function(){
16632         // safari killled keypress - so keydown is now used..
16633         this.el.on("keydown" , this.fireKey,  this);
16634         this.el.on("focus", this.onFocus,  this);
16635         this.el.on("blur", this.onBlur,  this);
16636         this.el.relayEvent('keyup', this);
16637
16638         // reference to original value for reset
16639         this.originalValue = this.getValue();
16640         this.resetValue =  this.getValue();
16641     },
16642
16643     // private
16644     onFocus : function(){
16645         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
16646             this.el.addClass(this.focusClass);
16647         }
16648         if(!this.hasFocus){
16649             this.hasFocus = true;
16650             this.startValue = this.getValue();
16651             this.fireEvent("focus", this);
16652         }
16653     },
16654
16655     beforeBlur : Roo.emptyFn,
16656
16657     // private
16658     onBlur : function(){
16659         this.beforeBlur();
16660         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
16661             this.el.removeClass(this.focusClass);
16662         }
16663         this.hasFocus = false;
16664         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
16665             this.validate();
16666         }
16667         var v = this.getValue();
16668         if(String(v) !== String(this.startValue)){
16669             this.fireEvent('change', this, v, this.startValue);
16670         }
16671         this.fireEvent("blur", this);
16672     },
16673
16674     /**
16675      * Returns whether or not the field value is currently valid
16676      * @param {Boolean} preventMark True to disable marking the field invalid
16677      * @return {Boolean} True if the value is valid, else false
16678      */
16679     isValid : function(preventMark){
16680         if(this.disabled){
16681             return true;
16682         }
16683         var restore = this.preventMark;
16684         this.preventMark = preventMark === true;
16685         var v = this.validateValue(this.processValue(this.getRawValue()));
16686         this.preventMark = restore;
16687         return v;
16688     },
16689
16690     /**
16691      * Validates the field value
16692      * @return {Boolean} True if the value is valid, else false
16693      */
16694     validate : function(){
16695         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
16696             this.clearInvalid();
16697             return true;
16698         }
16699         return false;
16700     },
16701
16702     processValue : function(value){
16703         return value;
16704     },
16705
16706     // private
16707     // Subclasses should provide the validation implementation by overriding this
16708     validateValue : function(value){
16709         return true;
16710     },
16711
16712     /**
16713      * Mark this field as invalid
16714      * @param {String} msg The validation message
16715      */
16716     markInvalid : function(msg){
16717         if(!this.rendered || this.preventMark){ // not rendered
16718             return;
16719         }
16720         
16721         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
16722         
16723         obj.el.addClass(this.invalidClass);
16724         msg = msg || this.invalidText;
16725         switch(this.msgTarget){
16726             case 'qtip':
16727                 obj.el.dom.qtip = msg;
16728                 obj.el.dom.qclass = 'x-form-invalid-tip';
16729                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
16730                     Roo.QuickTips.enable();
16731                 }
16732                 break;
16733             case 'title':
16734                 this.el.dom.title = msg;
16735                 break;
16736             case 'under':
16737                 if(!this.errorEl){
16738                     var elp = this.el.findParent('.x-form-element', 5, true);
16739                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
16740                     this.errorEl.setWidth(elp.getWidth(true)-20);
16741                 }
16742                 this.errorEl.update(msg);
16743                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
16744                 break;
16745             case 'side':
16746                 if(!this.errorIcon){
16747                     var elp = this.el.findParent('.x-form-element', 5, true);
16748                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
16749                 }
16750                 this.alignErrorIcon();
16751                 this.errorIcon.dom.qtip = msg;
16752                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
16753                 this.errorIcon.show();
16754                 this.on('resize', this.alignErrorIcon, this);
16755                 break;
16756             default:
16757                 var t = Roo.getDom(this.msgTarget);
16758                 t.innerHTML = msg;
16759                 t.style.display = this.msgDisplay;
16760                 break;
16761         }
16762         this.fireEvent('invalid', this, msg);
16763     },
16764
16765     // private
16766     alignErrorIcon : function(){
16767         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
16768     },
16769
16770     /**
16771      * Clear any invalid styles/messages for this field
16772      */
16773     clearInvalid : function(){
16774         if(!this.rendered || this.preventMark){ // not rendered
16775             return;
16776         }
16777         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
16778         
16779         obj.el.removeClass(this.invalidClass);
16780         switch(this.msgTarget){
16781             case 'qtip':
16782                 obj.el.dom.qtip = '';
16783                 break;
16784             case 'title':
16785                 this.el.dom.title = '';
16786                 break;
16787             case 'under':
16788                 if(this.errorEl){
16789                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
16790                 }
16791                 break;
16792             case 'side':
16793                 if(this.errorIcon){
16794                     this.errorIcon.dom.qtip = '';
16795                     this.errorIcon.hide();
16796                     this.un('resize', this.alignErrorIcon, this);
16797                 }
16798                 break;
16799             default:
16800                 var t = Roo.getDom(this.msgTarget);
16801                 t.innerHTML = '';
16802                 t.style.display = 'none';
16803                 break;
16804         }
16805         this.fireEvent('valid', this);
16806     },
16807
16808     /**
16809      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
16810      * @return {Mixed} value The field value
16811      */
16812     getRawValue : function(){
16813         var v = this.el.getValue();
16814         
16815         return v;
16816     },
16817
16818     /**
16819      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
16820      * @return {Mixed} value The field value
16821      */
16822     getValue : function(){
16823         var v = this.el.getValue();
16824          
16825         return v;
16826     },
16827
16828     /**
16829      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
16830      * @param {Mixed} value The value to set
16831      */
16832     setRawValue : function(v){
16833         return this.el.dom.value = (v === null || v === undefined ? '' : v);
16834     },
16835
16836     /**
16837      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
16838      * @param {Mixed} value The value to set
16839      */
16840     setValue : function(v){
16841         this.value = v;
16842         if(this.rendered){
16843             this.el.dom.value = (v === null || v === undefined ? '' : v);
16844              this.validate();
16845         }
16846     },
16847
16848     adjustSize : function(w, h){
16849         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
16850         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
16851         return s;
16852     },
16853
16854     adjustWidth : function(tag, w){
16855         tag = tag.toLowerCase();
16856         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
16857             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
16858                 if(tag == 'input'){
16859                     return w + 2;
16860                 }
16861                 if(tag == 'textarea'){
16862                     return w-2;
16863                 }
16864             }else if(Roo.isOpera){
16865                 if(tag == 'input'){
16866                     return w + 2;
16867                 }
16868                 if(tag == 'textarea'){
16869                     return w-2;
16870                 }
16871             }
16872         }
16873         return w;
16874     }
16875 });
16876
16877
16878 // anything other than normal should be considered experimental
16879 Roo.form.Field.msgFx = {
16880     normal : {
16881         show: function(msgEl, f){
16882             msgEl.setDisplayed('block');
16883         },
16884
16885         hide : function(msgEl, f){
16886             msgEl.setDisplayed(false).update('');
16887         }
16888     },
16889
16890     slide : {
16891         show: function(msgEl, f){
16892             msgEl.slideIn('t', {stopFx:true});
16893         },
16894
16895         hide : function(msgEl, f){
16896             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
16897         }
16898     },
16899
16900     slideRight : {
16901         show: function(msgEl, f){
16902             msgEl.fixDisplay();
16903             msgEl.alignTo(f.el, 'tl-tr');
16904             msgEl.slideIn('l', {stopFx:true});
16905         },
16906
16907         hide : function(msgEl, f){
16908             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
16909         }
16910     }
16911 };/*
16912  * Based on:
16913  * Ext JS Library 1.1.1
16914  * Copyright(c) 2006-2007, Ext JS, LLC.
16915  *
16916  * Originally Released Under LGPL - original licence link has changed is not relivant.
16917  *
16918  * Fork - LGPL
16919  * <script type="text/javascript">
16920  */
16921  
16922
16923 /**
16924  * @class Roo.form.TextField
16925  * @extends Roo.form.Field
16926  * Basic text field.  Can be used as a direct replacement for traditional text inputs, or as the base
16927  * class for more sophisticated input controls (like {@link Roo.form.TextArea} and {@link Roo.form.ComboBox}).
16928  * @constructor
16929  * Creates a new TextField
16930  * @param {Object} config Configuration options
16931  */
16932 Roo.form.TextField = function(config){
16933     Roo.form.TextField.superclass.constructor.call(this, config);
16934     this.addEvents({
16935         /**
16936          * @event autosize
16937          * Fires when the autosize function is triggered.  The field may or may not have actually changed size
16938          * according to the default logic, but this event provides a hook for the developer to apply additional
16939          * logic at runtime to resize the field if needed.
16940              * @param {Roo.form.Field} this This text field
16941              * @param {Number} width The new field width
16942              */
16943         autosize : true
16944     });
16945 };
16946
16947 Roo.extend(Roo.form.TextField, Roo.form.Field,  {
16948     /**
16949      * @cfg {Boolean} grow True if this field should automatically grow and shrink to its content
16950      */
16951     grow : false,
16952     /**
16953      * @cfg {Number} growMin The minimum width to allow when grow = true (defaults to 30)
16954      */
16955     growMin : 30,
16956     /**
16957      * @cfg {Number} growMax The maximum width to allow when grow = true (defaults to 800)
16958      */
16959     growMax : 800,
16960     /**
16961      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
16962      */
16963     vtype : null,
16964     /**
16965      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
16966      */
16967     maskRe : null,
16968     /**
16969      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
16970      */
16971     disableKeyFilter : false,
16972     /**
16973      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
16974      */
16975     allowBlank : true,
16976     /**
16977      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
16978      */
16979     minLength : 0,
16980     /**
16981      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
16982      */
16983     maxLength : Number.MAX_VALUE,
16984     /**
16985      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
16986      */
16987     minLengthText : "The minimum length for this field is {0}",
16988     /**
16989      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
16990      */
16991     maxLengthText : "The maximum length for this field is {0}",
16992     /**
16993      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
16994      */
16995     selectOnFocus : false,
16996     /**
16997      * @cfg {Boolean} allowLeadingSpace True to prevent the stripping of leading white space 
16998      */    
16999     allowLeadingSpace : false,
17000     /**
17001      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
17002      */
17003     blankText : "This field is required",
17004     /**
17005      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
17006      * If available, this function will be called only after the basic validators all return true, and will be passed the
17007      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
17008      */
17009     validator : null,
17010     /**
17011      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
17012      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
17013      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
17014      */
17015     regex : null,
17016     /**
17017      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
17018      */
17019     regexText : "",
17020     /**
17021      * @cfg {String} emptyText The default text to display in an empty field - placeholder... (defaults to null).
17022      */
17023     emptyText : null,
17024    
17025
17026     // private
17027     initEvents : function()
17028     {
17029         if (this.emptyText) {
17030             this.el.attr('placeholder', this.emptyText);
17031         }
17032         
17033         Roo.form.TextField.superclass.initEvents.call(this);
17034         if(this.validationEvent == 'keyup'){
17035             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
17036             this.el.on('keyup', this.filterValidation, this);
17037         }
17038         else if(this.validationEvent !== false){
17039             this.el.on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
17040         }
17041         
17042         if(this.selectOnFocus){
17043             this.on("focus", this.preFocus, this);
17044         }
17045         if (!this.allowLeadingSpace) {
17046             this.on('blur', this.cleanLeadingSpace, this);
17047         }
17048         
17049         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
17050             this.el.on("keypress", this.filterKeys, this);
17051         }
17052         if(this.grow){
17053             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
17054             this.el.on("click", this.autoSize,  this);
17055         }
17056         if(this.el.is('input[type=password]') && Roo.isSafari){
17057             this.el.on('keydown', this.SafariOnKeyDown, this);
17058         }
17059     },
17060
17061     processValue : function(value){
17062         if(this.stripCharsRe){
17063             var newValue = value.replace(this.stripCharsRe, '');
17064             if(newValue !== value){
17065                 this.setRawValue(newValue);
17066                 return newValue;
17067             }
17068         }
17069         return value;
17070     },
17071
17072     filterValidation : function(e){
17073         if(!e.isNavKeyPress()){
17074             this.validationTask.delay(this.validationDelay);
17075         }
17076     },
17077
17078     // private
17079     onKeyUp : function(e){
17080         if(!e.isNavKeyPress()){
17081             this.autoSize();
17082         }
17083     },
17084     // private - clean the leading white space
17085     cleanLeadingSpace : function(e)
17086     {
17087         if ( this.inputType == 'file') {
17088             return;
17089         }
17090         
17091         this.setValue((this.getValue() + '').replace(/^\s+/,''));
17092     },
17093     /**
17094      * Resets the current field value to the originally-loaded value and clears any validation messages.
17095      *  
17096      */
17097     reset : function(){
17098         Roo.form.TextField.superclass.reset.call(this);
17099        
17100     }, 
17101     // private
17102     preFocus : function(){
17103         
17104         if(this.selectOnFocus){
17105             this.el.dom.select();
17106         }
17107     },
17108
17109     
17110     // private
17111     filterKeys : function(e){
17112         var k = e.getKey();
17113         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
17114             return;
17115         }
17116         var c = e.getCharCode(), cc = String.fromCharCode(c);
17117         if(Roo.isIE && (e.isSpecialKey() || !cc)){
17118             return;
17119         }
17120         if(!this.maskRe.test(cc)){
17121             e.stopEvent();
17122         }
17123     },
17124
17125     setValue : function(v){
17126         
17127         Roo.form.TextField.superclass.setValue.apply(this, arguments);
17128         
17129         this.autoSize();
17130     },
17131
17132     /**
17133      * Validates a value according to the field's validation rules and marks the field as invalid
17134      * if the validation fails
17135      * @param {Mixed} value The value to validate
17136      * @return {Boolean} True if the value is valid, else false
17137      */
17138     validateValue : function(value){
17139         if(value.length < 1)  { // if it's blank
17140              if(this.allowBlank){
17141                 this.clearInvalid();
17142                 return true;
17143              }else{
17144                 this.markInvalid(this.blankText);
17145                 return false;
17146              }
17147         }
17148         if(value.length < this.minLength){
17149             this.markInvalid(String.format(this.minLengthText, this.minLength));
17150             return false;
17151         }
17152         if(value.length > this.maxLength){
17153             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
17154             return false;
17155         }
17156         if(this.vtype){
17157             var vt = Roo.form.VTypes;
17158             if(!vt[this.vtype](value, this)){
17159                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
17160                 return false;
17161             }
17162         }
17163         if(typeof this.validator == "function"){
17164             var msg = this.validator(value);
17165             if(msg !== true){
17166                 this.markInvalid(msg);
17167                 return false;
17168             }
17169         }
17170         if(this.regex && !this.regex.test(value)){
17171             this.markInvalid(this.regexText);
17172             return false;
17173         }
17174         return true;
17175     },
17176
17177     /**
17178      * Selects text in this field
17179      * @param {Number} start (optional) The index where the selection should start (defaults to 0)
17180      * @param {Number} end (optional) The index where the selection should end (defaults to the text length)
17181      */
17182     selectText : function(start, end){
17183         var v = this.getRawValue();
17184         if(v.length > 0){
17185             start = start === undefined ? 0 : start;
17186             end = end === undefined ? v.length : end;
17187             var d = this.el.dom;
17188             if(d.setSelectionRange){
17189                 d.setSelectionRange(start, end);
17190             }else if(d.createTextRange){
17191                 var range = d.createTextRange();
17192                 range.moveStart("character", start);
17193                 range.moveEnd("character", v.length-end);
17194                 range.select();
17195             }
17196         }
17197     },
17198
17199     /**
17200      * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.
17201      * This only takes effect if grow = true, and fires the autosize event.
17202      */
17203     autoSize : function(){
17204         if(!this.grow || !this.rendered){
17205             return;
17206         }
17207         if(!this.metrics){
17208             this.metrics = Roo.util.TextMetrics.createInstance(this.el);
17209         }
17210         var el = this.el;
17211         var v = el.dom.value;
17212         var d = document.createElement('div');
17213         d.appendChild(document.createTextNode(v));
17214         v = d.innerHTML;
17215         d = null;
17216         v += "&#160;";
17217         var w = Math.min(this.growMax, Math.max(this.metrics.getWidth(v) + /* add extra padding */ 10, this.growMin));
17218         this.el.setWidth(w);
17219         this.fireEvent("autosize", this, w);
17220     },
17221     
17222     // private
17223     SafariOnKeyDown : function(event)
17224     {
17225         // this is a workaround for a password hang bug on chrome/ webkit.
17226         
17227         var isSelectAll = false;
17228         
17229         if(this.el.dom.selectionEnd > 0){
17230             isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
17231         }
17232         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
17233             event.preventDefault();
17234             this.setValue('');
17235             return;
17236         }
17237         
17238         if(isSelectAll && event.getCharCode() > 31){ // backspace and delete key
17239             
17240             event.preventDefault();
17241             // this is very hacky as keydown always get's upper case.
17242             
17243             var cc = String.fromCharCode(event.getCharCode());
17244             
17245             
17246             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
17247             
17248         }
17249         
17250         
17251     }
17252 });/*
17253  * Based on:
17254  * Ext JS Library 1.1.1
17255  * Copyright(c) 2006-2007, Ext JS, LLC.
17256  *
17257  * Originally Released Under LGPL - original licence link has changed is not relivant.
17258  *
17259  * Fork - LGPL
17260  * <script type="text/javascript">
17261  */
17262  
17263 /**
17264  * @class Roo.form.Hidden
17265  * @extends Roo.form.TextField
17266  * Simple Hidden element used on forms 
17267  * 
17268  * usage: form.add(new Roo.form.HiddenField({ 'name' : 'test1' }));
17269  * 
17270  * @constructor
17271  * Creates a new Hidden form element.
17272  * @param {Object} config Configuration options
17273  */
17274
17275
17276
17277 // easy hidden field...
17278 Roo.form.Hidden = function(config){
17279     Roo.form.Hidden.superclass.constructor.call(this, config);
17280 };
17281   
17282 Roo.extend(Roo.form.Hidden, Roo.form.TextField, {
17283     fieldLabel:      '',
17284     inputType:      'hidden',
17285     width:          50,
17286     allowBlank:     true,
17287     labelSeparator: '',
17288     hidden:         true,
17289     itemCls :       'x-form-item-display-none'
17290
17291
17292 });
17293
17294
17295 /*
17296  * Based on:
17297  * Ext JS Library 1.1.1
17298  * Copyright(c) 2006-2007, Ext JS, LLC.
17299  *
17300  * Originally Released Under LGPL - original licence link has changed is not relivant.
17301  *
17302  * Fork - LGPL
17303  * <script type="text/javascript">
17304  */
17305  
17306 /**
17307  * @class Roo.form.TriggerField
17308  * @extends Roo.form.TextField
17309  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
17310  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
17311  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
17312  * for which you can provide a custom implementation.  For example:
17313  * <pre><code>
17314 var trigger = new Roo.form.TriggerField();
17315 trigger.onTriggerClick = myTriggerFn;
17316 trigger.applyTo('my-field');
17317 </code></pre>
17318  *
17319  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
17320  * {@link Roo.form.DateField} and {@link Roo.form.ComboBox} are perfect examples of this.
17321  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
17322  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
17323  * @constructor
17324  * Create a new TriggerField.
17325  * @param {Object} config Configuration options (valid {@Roo.form.TextField} config options will also be applied
17326  * to the base TextField)
17327  */
17328 Roo.form.TriggerField = function(config){
17329     this.mimicing = false;
17330     Roo.form.TriggerField.superclass.constructor.call(this, config);
17331 };
17332
17333 Roo.extend(Roo.form.TriggerField, Roo.form.TextField,  {
17334     /**
17335      * @cfg {String} triggerClass A CSS class to apply to the trigger
17336      */
17337     /**
17338      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
17339      * {tag: "input", type: "text", size: "16", autocomplete: "off"})
17340      */
17341     defaultAutoCreate : {tag: "input", type: "text", size: "16", autocomplete: "new-password"},
17342     /**
17343      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
17344      */
17345     hideTrigger:false,
17346
17347     /** @cfg {Boolean} grow @hide */
17348     /** @cfg {Number} growMin @hide */
17349     /** @cfg {Number} growMax @hide */
17350
17351     /**
17352      * @hide 
17353      * @method
17354      */
17355     autoSize: Roo.emptyFn,
17356     // private
17357     monitorTab : true,
17358     // private
17359     deferHeight : true,
17360
17361     
17362     actionMode : 'wrap',
17363     // private
17364     onResize : function(w, h){
17365         Roo.form.TriggerField.superclass.onResize.apply(this, arguments);
17366         if(typeof w == 'number'){
17367             var x = w - this.trigger.getWidth();
17368             this.el.setWidth(this.adjustWidth('input', x));
17369             this.trigger.setStyle('left', x+'px');
17370         }
17371     },
17372
17373     // private
17374     adjustSize : Roo.BoxComponent.prototype.adjustSize,
17375
17376     // private
17377     getResizeEl : function(){
17378         return this.wrap;
17379     },
17380
17381     // private
17382     getPositionEl : function(){
17383         return this.wrap;
17384     },
17385
17386     // private
17387     alignErrorIcon : function(){
17388         this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
17389     },
17390
17391     // private
17392     onRender : function(ct, position){
17393         Roo.form.TriggerField.superclass.onRender.call(this, ct, position);
17394         this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
17395         this.trigger = this.wrap.createChild(this.triggerConfig ||
17396                 {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass});
17397         if(this.hideTrigger){
17398             this.trigger.setDisplayed(false);
17399         }
17400         this.initTrigger();
17401         if(!this.width){
17402             this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
17403         }
17404     },
17405
17406     // private
17407     initTrigger : function(){
17408         this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
17409         this.trigger.addClassOnOver('x-form-trigger-over');
17410         this.trigger.addClassOnClick('x-form-trigger-click');
17411     },
17412
17413     // private
17414     onDestroy : function(){
17415         if(this.trigger){
17416             this.trigger.removeAllListeners();
17417             this.trigger.remove();
17418         }
17419         if(this.wrap){
17420             this.wrap.remove();
17421         }
17422         Roo.form.TriggerField.superclass.onDestroy.call(this);
17423     },
17424
17425     // private
17426     onFocus : function(){
17427         Roo.form.TriggerField.superclass.onFocus.call(this);
17428         if(!this.mimicing){
17429             this.wrap.addClass('x-trigger-wrap-focus');
17430             this.mimicing = true;
17431             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
17432             if(this.monitorTab){
17433                 this.el.on("keydown", this.checkTab, this);
17434             }
17435         }
17436     },
17437
17438     // private
17439     checkTab : function(e){
17440         if(e.getKey() == e.TAB){
17441             this.triggerBlur();
17442         }
17443     },
17444
17445     // private
17446     onBlur : function(){
17447         // do nothing
17448     },
17449
17450     // private
17451     mimicBlur : function(e, t){
17452         if(!this.wrap.contains(t) && this.validateBlur()){
17453             this.triggerBlur();
17454         }
17455     },
17456
17457     // private
17458     triggerBlur : function(){
17459         this.mimicing = false;
17460         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
17461         if(this.monitorTab){
17462             this.el.un("keydown", this.checkTab, this);
17463         }
17464         this.wrap.removeClass('x-trigger-wrap-focus');
17465         Roo.form.TriggerField.superclass.onBlur.call(this);
17466     },
17467
17468     // private
17469     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
17470     validateBlur : function(e, t){
17471         return true;
17472     },
17473
17474     // private
17475     onDisable : function(){
17476         Roo.form.TriggerField.superclass.onDisable.call(this);
17477         if(this.wrap){
17478             this.wrap.addClass('x-item-disabled');
17479         }
17480     },
17481
17482     // private
17483     onEnable : function(){
17484         Roo.form.TriggerField.superclass.onEnable.call(this);
17485         if(this.wrap){
17486             this.wrap.removeClass('x-item-disabled');
17487         }
17488     },
17489
17490     // private
17491     onShow : function(){
17492         var ae = this.getActionEl();
17493         
17494         if(ae){
17495             ae.dom.style.display = '';
17496             ae.dom.style.visibility = 'visible';
17497         }
17498     },
17499
17500     // private
17501     
17502     onHide : function(){
17503         var ae = this.getActionEl();
17504         ae.dom.style.display = 'none';
17505     },
17506
17507     /**
17508      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
17509      * by an implementing function.
17510      * @method
17511      * @param {EventObject} e
17512      */
17513     onTriggerClick : Roo.emptyFn
17514 });
17515
17516 // TwinTriggerField is not a public class to be used directly.  It is meant as an abstract base class
17517 // to be extended by an implementing class.  For an example of implementing this class, see the custom
17518 // SearchField implementation here: http://extjs.com/deploy/ext/examples/form/custom.html
17519 Roo.form.TwinTriggerField = Roo.extend(Roo.form.TriggerField, {
17520     initComponent : function(){
17521         Roo.form.TwinTriggerField.superclass.initComponent.call(this);
17522
17523         this.triggerConfig = {
17524             tag:'span', cls:'x-form-twin-triggers', cn:[
17525             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger1Class},
17526             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger2Class}
17527         ]};
17528     },
17529
17530     getTrigger : function(index){
17531         return this.triggers[index];
17532     },
17533
17534     initTrigger : function(){
17535         var ts = this.trigger.select('.x-form-trigger', true);
17536         this.wrap.setStyle('overflow', 'hidden');
17537         var triggerField = this;
17538         ts.each(function(t, all, index){
17539             t.hide = function(){
17540                 var w = triggerField.wrap.getWidth();
17541                 this.dom.style.display = 'none';
17542                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
17543             };
17544             t.show = function(){
17545                 var w = triggerField.wrap.getWidth();
17546                 this.dom.style.display = '';
17547                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
17548             };
17549             var triggerIndex = 'Trigger'+(index+1);
17550
17551             if(this['hide'+triggerIndex]){
17552                 t.dom.style.display = 'none';
17553             }
17554             t.on("click", this['on'+triggerIndex+'Click'], this, {preventDefault:true});
17555             t.addClassOnOver('x-form-trigger-over');
17556             t.addClassOnClick('x-form-trigger-click');
17557         }, this);
17558         this.triggers = ts.elements;
17559     },
17560
17561     onTrigger1Click : Roo.emptyFn,
17562     onTrigger2Click : Roo.emptyFn
17563 });/*
17564  * Based on:
17565  * Ext JS Library 1.1.1
17566  * Copyright(c) 2006-2007, Ext JS, LLC.
17567  *
17568  * Originally Released Under LGPL - original licence link has changed is not relivant.
17569  *
17570  * Fork - LGPL
17571  * <script type="text/javascript">
17572  */
17573  
17574 /**
17575  * @class Roo.form.TextArea
17576  * @extends Roo.form.TextField
17577  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
17578  * support for auto-sizing.
17579  * @constructor
17580  * Creates a new TextArea
17581  * @param {Object} config Configuration options
17582  */
17583 Roo.form.TextArea = function(config){
17584     Roo.form.TextArea.superclass.constructor.call(this, config);
17585     // these are provided exchanges for backwards compat
17586     // minHeight/maxHeight were replaced by growMin/growMax to be
17587     // compatible with TextField growing config values
17588     if(this.minHeight !== undefined){
17589         this.growMin = this.minHeight;
17590     }
17591     if(this.maxHeight !== undefined){
17592         this.growMax = this.maxHeight;
17593     }
17594 };
17595
17596 Roo.extend(Roo.form.TextArea, Roo.form.TextField,  {
17597     /**
17598      * @cfg {Number} growMin The minimum height to allow when grow = true (defaults to 60)
17599      */
17600     growMin : 60,
17601     /**
17602      * @cfg {Number} growMax The maximum height to allow when grow = true (defaults to 1000)
17603      */
17604     growMax: 1000,
17605     /**
17606      * @cfg {Boolean} preventScrollbars True to prevent scrollbars from appearing regardless of how much text is
17607      * in the field (equivalent to setting overflow: hidden, defaults to false)
17608      */
17609     preventScrollbars: false,
17610     /**
17611      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
17612      * {tag: "textarea", style: "width:300px;height:60px;", autocomplete: "off"})
17613      */
17614
17615     // private
17616     onRender : function(ct, position){
17617         if(!this.el){
17618             this.defaultAutoCreate = {
17619                 tag: "textarea",
17620                 style:"width:300px;height:60px;",
17621                 autocomplete: "new-password"
17622             };
17623         }
17624         Roo.form.TextArea.superclass.onRender.call(this, ct, position);
17625         if(this.grow){
17626             this.textSizeEl = Roo.DomHelper.append(document.body, {
17627                 tag: "pre", cls: "x-form-grow-sizer"
17628             });
17629             if(this.preventScrollbars){
17630                 this.el.setStyle("overflow", "hidden");
17631             }
17632             this.el.setHeight(this.growMin);
17633         }
17634     },
17635
17636     onDestroy : function(){
17637         if(this.textSizeEl){
17638             this.textSizeEl.parentNode.removeChild(this.textSizeEl);
17639         }
17640         Roo.form.TextArea.superclass.onDestroy.call(this);
17641     },
17642
17643     // private
17644     onKeyUp : function(e){
17645         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
17646             this.autoSize();
17647         }
17648     },
17649
17650     /**
17651      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
17652      * This only takes effect if grow = true, and fires the autosize event if the height changes.
17653      */
17654     autoSize : function(){
17655         if(!this.grow || !this.textSizeEl){
17656             return;
17657         }
17658         var el = this.el;
17659         var v = el.dom.value;
17660         var ts = this.textSizeEl;
17661
17662         ts.innerHTML = '';
17663         ts.appendChild(document.createTextNode(v));
17664         v = ts.innerHTML;
17665
17666         Roo.fly(ts).setWidth(this.el.getWidth());
17667         if(v.length < 1){
17668             v = "&#160;&#160;";
17669         }else{
17670             if(Roo.isIE){
17671                 v = v.replace(/\n/g, '<p>&#160;</p>');
17672             }
17673             v += "&#160;\n&#160;";
17674         }
17675         ts.innerHTML = v;
17676         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
17677         if(h != this.lastHeight){
17678             this.lastHeight = h;
17679             this.el.setHeight(h);
17680             this.fireEvent("autosize", this, h);
17681         }
17682     }
17683 });/*
17684  * Based on:
17685  * Ext JS Library 1.1.1
17686  * Copyright(c) 2006-2007, Ext JS, LLC.
17687  *
17688  * Originally Released Under LGPL - original licence link has changed is not relivant.
17689  *
17690  * Fork - LGPL
17691  * <script type="text/javascript">
17692  */
17693  
17694
17695 /**
17696  * @class Roo.form.NumberField
17697  * @extends Roo.form.TextField
17698  * Numeric text field that provides automatic keystroke filtering and numeric validation.
17699  * @constructor
17700  * Creates a new NumberField
17701  * @param {Object} config Configuration options
17702  */
17703 Roo.form.NumberField = function(config){
17704     Roo.form.NumberField.superclass.constructor.call(this, config);
17705 };
17706
17707 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
17708     /**
17709      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
17710      */
17711     fieldClass: "x-form-field x-form-num-field",
17712     /**
17713      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
17714      */
17715     allowDecimals : true,
17716     /**
17717      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
17718      */
17719     decimalSeparator : ".",
17720     /**
17721      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
17722      */
17723     decimalPrecision : 2,
17724     /**
17725      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
17726      */
17727     allowNegative : true,
17728     /**
17729      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
17730      */
17731     minValue : Number.NEGATIVE_INFINITY,
17732     /**
17733      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
17734      */
17735     maxValue : Number.MAX_VALUE,
17736     /**
17737      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
17738      */
17739     minText : "The minimum value for this field is {0}",
17740     /**
17741      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
17742      */
17743     maxText : "The maximum value for this field is {0}",
17744     /**
17745      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
17746      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
17747      */
17748     nanText : "{0} is not a valid number",
17749
17750     // private
17751     initEvents : function(){
17752         Roo.form.NumberField.superclass.initEvents.call(this);
17753         var allowed = "0123456789";
17754         if(this.allowDecimals){
17755             allowed += this.decimalSeparator;
17756         }
17757         if(this.allowNegative){
17758             allowed += "-";
17759         }
17760         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
17761         var keyPress = function(e){
17762             var k = e.getKey();
17763             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
17764                 return;
17765             }
17766             var c = e.getCharCode();
17767             if(allowed.indexOf(String.fromCharCode(c)) === -1){
17768                 e.stopEvent();
17769             }
17770         };
17771         this.el.on("keypress", keyPress, this);
17772     },
17773
17774     // private
17775     validateValue : function(value){
17776         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
17777             return false;
17778         }
17779         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
17780              return true;
17781         }
17782         var num = this.parseValue(value);
17783         if(isNaN(num)){
17784             this.markInvalid(String.format(this.nanText, value));
17785             return false;
17786         }
17787         if(num < this.minValue){
17788             this.markInvalid(String.format(this.minText, this.minValue));
17789             return false;
17790         }
17791         if(num > this.maxValue){
17792             this.markInvalid(String.format(this.maxText, this.maxValue));
17793             return false;
17794         }
17795         return true;
17796     },
17797
17798     getValue : function(){
17799         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
17800     },
17801
17802     // private
17803     parseValue : function(value){
17804         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
17805         return isNaN(value) ? '' : value;
17806     },
17807
17808     // private
17809     fixPrecision : function(value){
17810         var nan = isNaN(value);
17811         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
17812             return nan ? '' : value;
17813         }
17814         return parseFloat(value).toFixed(this.decimalPrecision);
17815     },
17816
17817     setValue : function(v){
17818         v = this.fixPrecision(v);
17819         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
17820     },
17821
17822     // private
17823     decimalPrecisionFcn : function(v){
17824         return Math.floor(v);
17825     },
17826
17827     beforeBlur : function(){
17828         var v = this.parseValue(this.getRawValue());
17829         if(v){
17830             this.setValue(v);
17831         }
17832     }
17833 });/*
17834  * Based on:
17835  * Ext JS Library 1.1.1
17836  * Copyright(c) 2006-2007, Ext JS, LLC.
17837  *
17838  * Originally Released Under LGPL - original licence link has changed is not relivant.
17839  *
17840  * Fork - LGPL
17841  * <script type="text/javascript">
17842  */
17843  
17844 /**
17845  * @class Roo.form.DateField
17846  * @extends Roo.form.TriggerField
17847  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
17848 * @constructor
17849 * Create a new DateField
17850 * @param {Object} config
17851  */
17852 Roo.form.DateField = function(config)
17853 {
17854     Roo.form.DateField.superclass.constructor.call(this, config);
17855     
17856       this.addEvents({
17857          
17858         /**
17859          * @event select
17860          * Fires when a date is selected
17861              * @param {Roo.form.DateField} combo This combo box
17862              * @param {Date} date The date selected
17863              */
17864         'select' : true
17865          
17866     });
17867     
17868     
17869     if(typeof this.minValue == "string") {
17870         this.minValue = this.parseDate(this.minValue);
17871     }
17872     if(typeof this.maxValue == "string") {
17873         this.maxValue = this.parseDate(this.maxValue);
17874     }
17875     this.ddMatch = null;
17876     if(this.disabledDates){
17877         var dd = this.disabledDates;
17878         var re = "(?:";
17879         for(var i = 0; i < dd.length; i++){
17880             re += dd[i];
17881             if(i != dd.length-1) {
17882                 re += "|";
17883             }
17884         }
17885         this.ddMatch = new RegExp(re + ")");
17886     }
17887 };
17888
17889 Roo.extend(Roo.form.DateField, Roo.form.TriggerField,  {
17890     /**
17891      * @cfg {String} format
17892      * The default date format string which can be overriden for localization support.  The format must be
17893      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
17894      */
17895     format : "m/d/y",
17896     /**
17897      * @cfg {String} altFormats
17898      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
17899      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
17900      */
17901     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
17902     /**
17903      * @cfg {Array} disabledDays
17904      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
17905      */
17906     disabledDays : null,
17907     /**
17908      * @cfg {String} disabledDaysText
17909      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
17910      */
17911     disabledDaysText : "Disabled",
17912     /**
17913      * @cfg {Array} disabledDates
17914      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
17915      * expression so they are very powerful. Some examples:
17916      * <ul>
17917      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
17918      * <li>["03/08", "09/16"] would disable those days for every year</li>
17919      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
17920      * <li>["03/../2006"] would disable every day in March 2006</li>
17921      * <li>["^03"] would disable every day in every March</li>
17922      * </ul>
17923      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
17924      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
17925      */
17926     disabledDates : null,
17927     /**
17928      * @cfg {String} disabledDatesText
17929      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
17930      */
17931     disabledDatesText : "Disabled",
17932     /**
17933      * @cfg {Date/String} minValue
17934      * The minimum allowed date. Can be either a Javascript date object or a string date in a
17935      * valid format (defaults to null).
17936      */
17937     minValue : null,
17938     /**
17939      * @cfg {Date/String} maxValue
17940      * The maximum allowed date. Can be either a Javascript date object or a string date in a
17941      * valid format (defaults to null).
17942      */
17943     maxValue : null,
17944     /**
17945      * @cfg {String} minText
17946      * The error text to display when the date in the cell is before minValue (defaults to
17947      * 'The date in this field must be after {minValue}').
17948      */
17949     minText : "The date in this field must be equal to or after {0}",
17950     /**
17951      * @cfg {String} maxText
17952      * The error text to display when the date in the cell is after maxValue (defaults to
17953      * 'The date in this field must be before {maxValue}').
17954      */
17955     maxText : "The date in this field must be equal to or before {0}",
17956     /**
17957      * @cfg {String} invalidText
17958      * The error text to display when the date in the field is invalid (defaults to
17959      * '{value} is not a valid date - it must be in the format {format}').
17960      */
17961     invalidText : "{0} is not a valid date - it must be in the format {1}",
17962     /**
17963      * @cfg {String} triggerClass
17964      * An additional CSS class used to style the trigger button.  The trigger will always get the
17965      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
17966      * which displays a calendar icon).
17967      */
17968     triggerClass : 'x-form-date-trigger',
17969     
17970
17971     /**
17972      * @cfg {Boolean} useIso
17973      * if enabled, then the date field will use a hidden field to store the 
17974      * real value as iso formated date. default (false)
17975      */ 
17976     useIso : false,
17977     /**
17978      * @cfg {String/Object} autoCreate
17979      * A DomHelper element spec, or true for a default element spec (defaults to
17980      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
17981      */ 
17982     // private
17983     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
17984     
17985     // private
17986     hiddenField: false,
17987     
17988     onRender : function(ct, position)
17989     {
17990         Roo.form.DateField.superclass.onRender.call(this, ct, position);
17991         if (this.useIso) {
17992             //this.el.dom.removeAttribute('name'); 
17993             Roo.log("Changing name?");
17994             this.el.dom.setAttribute('name', this.name + '____hidden___' ); 
17995             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
17996                     'before', true);
17997             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
17998             // prevent input submission
17999             this.hiddenName = this.name;
18000         }
18001             
18002             
18003     },
18004     
18005     // private
18006     validateValue : function(value)
18007     {
18008         value = this.formatDate(value);
18009         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
18010             Roo.log('super failed');
18011             return false;
18012         }
18013         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
18014              return true;
18015         }
18016         var svalue = value;
18017         value = this.parseDate(value);
18018         if(!value){
18019             Roo.log('parse date failed' + svalue);
18020             this.markInvalid(String.format(this.invalidText, svalue, this.format));
18021             return false;
18022         }
18023         var time = value.getTime();
18024         if(this.minValue && time < this.minValue.getTime()){
18025             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
18026             return false;
18027         }
18028         if(this.maxValue && time > this.maxValue.getTime()){
18029             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
18030             return false;
18031         }
18032         if(this.disabledDays){
18033             var day = value.getDay();
18034             for(var i = 0; i < this.disabledDays.length; i++) {
18035                 if(day === this.disabledDays[i]){
18036                     this.markInvalid(this.disabledDaysText);
18037                     return false;
18038                 }
18039             }
18040         }
18041         var fvalue = this.formatDate(value);
18042         if(this.ddMatch && this.ddMatch.test(fvalue)){
18043             this.markInvalid(String.format(this.disabledDatesText, fvalue));
18044             return false;
18045         }
18046         return true;
18047     },
18048
18049     // private
18050     // Provides logic to override the default TriggerField.validateBlur which just returns true
18051     validateBlur : function(){
18052         return !this.menu || !this.menu.isVisible();
18053     },
18054     
18055     getName: function()
18056     {
18057         // returns hidden if it's set..
18058         if (!this.rendered) {return ''};
18059         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
18060         
18061     },
18062
18063     /**
18064      * Returns the current date value of the date field.
18065      * @return {Date} The date value
18066      */
18067     getValue : function(){
18068         
18069         return  this.hiddenField ?
18070                 this.hiddenField.value :
18071                 this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
18072     },
18073
18074     /**
18075      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
18076      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
18077      * (the default format used is "m/d/y").
18078      * <br />Usage:
18079      * <pre><code>
18080 //All of these calls set the same date value (May 4, 2006)
18081
18082 //Pass a date object:
18083 var dt = new Date('5/4/06');
18084 dateField.setValue(dt);
18085
18086 //Pass a date string (default format):
18087 dateField.setValue('5/4/06');
18088
18089 //Pass a date string (custom format):
18090 dateField.format = 'Y-m-d';
18091 dateField.setValue('2006-5-4');
18092 </code></pre>
18093      * @param {String/Date} date The date or valid date string
18094      */
18095     setValue : function(date){
18096         if (this.hiddenField) {
18097             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
18098         }
18099         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
18100         // make sure the value field is always stored as a date..
18101         this.value = this.parseDate(date);
18102         
18103         
18104     },
18105
18106     // private
18107     parseDate : function(value){
18108         if(!value || value instanceof Date){
18109             return value;
18110         }
18111         var v = Date.parseDate(value, this.format);
18112          if (!v && this.useIso) {
18113             v = Date.parseDate(value, 'Y-m-d');
18114         }
18115         if(!v && this.altFormats){
18116             if(!this.altFormatsArray){
18117                 this.altFormatsArray = this.altFormats.split("|");
18118             }
18119             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
18120                 v = Date.parseDate(value, this.altFormatsArray[i]);
18121             }
18122         }
18123         return v;
18124     },
18125
18126     // private
18127     formatDate : function(date, fmt){
18128         return (!date || !(date instanceof Date)) ?
18129                date : date.dateFormat(fmt || this.format);
18130     },
18131
18132     // private
18133     menuListeners : {
18134         select: function(m, d){
18135             
18136             this.setValue(d);
18137             this.fireEvent('select', this, d);
18138         },
18139         show : function(){ // retain focus styling
18140             this.onFocus();
18141         },
18142         hide : function(){
18143             this.focus.defer(10, this);
18144             var ml = this.menuListeners;
18145             this.menu.un("select", ml.select,  this);
18146             this.menu.un("show", ml.show,  this);
18147             this.menu.un("hide", ml.hide,  this);
18148         }
18149     },
18150
18151     // private
18152     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
18153     onTriggerClick : function(){
18154         if(this.disabled){
18155             return;
18156         }
18157         if(this.menu == null){
18158             this.menu = new Roo.menu.DateMenu();
18159         }
18160         Roo.apply(this.menu.picker,  {
18161             showClear: this.allowBlank,
18162             minDate : this.minValue,
18163             maxDate : this.maxValue,
18164             disabledDatesRE : this.ddMatch,
18165             disabledDatesText : this.disabledDatesText,
18166             disabledDays : this.disabledDays,
18167             disabledDaysText : this.disabledDaysText,
18168             format : this.useIso ? 'Y-m-d' : this.format,
18169             minText : String.format(this.minText, this.formatDate(this.minValue)),
18170             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
18171         });
18172         this.menu.on(Roo.apply({}, this.menuListeners, {
18173             scope:this
18174         }));
18175         this.menu.picker.setValue(this.getValue() || new Date());
18176         this.menu.show(this.el, "tl-bl?");
18177     },
18178
18179     beforeBlur : function(){
18180         var v = this.parseDate(this.getRawValue());
18181         if(v){
18182             this.setValue(v);
18183         }
18184     },
18185
18186     /*@
18187      * overide
18188      * 
18189      */
18190     isDirty : function() {
18191         if(this.disabled) {
18192             return false;
18193         }
18194         
18195         if(typeof(this.startValue) === 'undefined'){
18196             return false;
18197         }
18198         
18199         return String(this.getValue()) !== String(this.startValue);
18200         
18201     },
18202     // @overide
18203     cleanLeadingSpace : function(e)
18204     {
18205        return;
18206     }
18207     
18208 });/*
18209  * Based on:
18210  * Ext JS Library 1.1.1
18211  * Copyright(c) 2006-2007, Ext JS, LLC.
18212  *
18213  * Originally Released Under LGPL - original licence link has changed is not relivant.
18214  *
18215  * Fork - LGPL
18216  * <script type="text/javascript">
18217  */
18218  
18219 /**
18220  * @class Roo.form.MonthField
18221  * @extends Roo.form.TriggerField
18222  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
18223 * @constructor
18224 * Create a new MonthField
18225 * @param {Object} config
18226  */
18227 Roo.form.MonthField = function(config){
18228     
18229     Roo.form.MonthField.superclass.constructor.call(this, config);
18230     
18231       this.addEvents({
18232          
18233         /**
18234          * @event select
18235          * Fires when a date is selected
18236              * @param {Roo.form.MonthFieeld} combo This combo box
18237              * @param {Date} date The date selected
18238              */
18239         'select' : true
18240          
18241     });
18242     
18243     
18244     if(typeof this.minValue == "string") {
18245         this.minValue = this.parseDate(this.minValue);
18246     }
18247     if(typeof this.maxValue == "string") {
18248         this.maxValue = this.parseDate(this.maxValue);
18249     }
18250     this.ddMatch = null;
18251     if(this.disabledDates){
18252         var dd = this.disabledDates;
18253         var re = "(?:";
18254         for(var i = 0; i < dd.length; i++){
18255             re += dd[i];
18256             if(i != dd.length-1) {
18257                 re += "|";
18258             }
18259         }
18260         this.ddMatch = new RegExp(re + ")");
18261     }
18262 };
18263
18264 Roo.extend(Roo.form.MonthField, Roo.form.TriggerField,  {
18265     /**
18266      * @cfg {String} format
18267      * The default date format string which can be overriden for localization support.  The format must be
18268      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
18269      */
18270     format : "M Y",
18271     /**
18272      * @cfg {String} altFormats
18273      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
18274      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
18275      */
18276     altFormats : "M Y|m/Y|m-y|m-Y|my|mY",
18277     /**
18278      * @cfg {Array} disabledDays
18279      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
18280      */
18281     disabledDays : [0,1,2,3,4,5,6],
18282     /**
18283      * @cfg {String} disabledDaysText
18284      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
18285      */
18286     disabledDaysText : "Disabled",
18287     /**
18288      * @cfg {Array} disabledDates
18289      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
18290      * expression so they are very powerful. Some examples:
18291      * <ul>
18292      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
18293      * <li>["03/08", "09/16"] would disable those days for every year</li>
18294      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
18295      * <li>["03/../2006"] would disable every day in March 2006</li>
18296      * <li>["^03"] would disable every day in every March</li>
18297      * </ul>
18298      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
18299      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
18300      */
18301     disabledDates : null,
18302     /**
18303      * @cfg {String} disabledDatesText
18304      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
18305      */
18306     disabledDatesText : "Disabled",
18307     /**
18308      * @cfg {Date/String} minValue
18309      * The minimum allowed date. Can be either a Javascript date object or a string date in a
18310      * valid format (defaults to null).
18311      */
18312     minValue : null,
18313     /**
18314      * @cfg {Date/String} maxValue
18315      * The maximum allowed date. Can be either a Javascript date object or a string date in a
18316      * valid format (defaults to null).
18317      */
18318     maxValue : null,
18319     /**
18320      * @cfg {String} minText
18321      * The error text to display when the date in the cell is before minValue (defaults to
18322      * 'The date in this field must be after {minValue}').
18323      */
18324     minText : "The date in this field must be equal to or after {0}",
18325     /**
18326      * @cfg {String} maxTextf
18327      * The error text to display when the date in the cell is after maxValue (defaults to
18328      * 'The date in this field must be before {maxValue}').
18329      */
18330     maxText : "The date in this field must be equal to or before {0}",
18331     /**
18332      * @cfg {String} invalidText
18333      * The error text to display when the date in the field is invalid (defaults to
18334      * '{value} is not a valid date - it must be in the format {format}').
18335      */
18336     invalidText : "{0} is not a valid date - it must be in the format {1}",
18337     /**
18338      * @cfg {String} triggerClass
18339      * An additional CSS class used to style the trigger button.  The trigger will always get the
18340      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
18341      * which displays a calendar icon).
18342      */
18343     triggerClass : 'x-form-date-trigger',
18344     
18345
18346     /**
18347      * @cfg {Boolean} useIso
18348      * if enabled, then the date field will use a hidden field to store the 
18349      * real value as iso formated date. default (true)
18350      */ 
18351     useIso : true,
18352     /**
18353      * @cfg {String/Object} autoCreate
18354      * A DomHelper element spec, or true for a default element spec (defaults to
18355      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
18356      */ 
18357     // private
18358     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "new-password"},
18359     
18360     // private
18361     hiddenField: false,
18362     
18363     hideMonthPicker : false,
18364     
18365     onRender : function(ct, position)
18366     {
18367         Roo.form.MonthField.superclass.onRender.call(this, ct, position);
18368         if (this.useIso) {
18369             this.el.dom.removeAttribute('name'); 
18370             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
18371                     'before', true);
18372             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
18373             // prevent input submission
18374             this.hiddenName = this.name;
18375         }
18376             
18377             
18378     },
18379     
18380     // private
18381     validateValue : function(value)
18382     {
18383         value = this.formatDate(value);
18384         if(!Roo.form.MonthField.superclass.validateValue.call(this, value)){
18385             return false;
18386         }
18387         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
18388              return true;
18389         }
18390         var svalue = value;
18391         value = this.parseDate(value);
18392         if(!value){
18393             this.markInvalid(String.format(this.invalidText, svalue, this.format));
18394             return false;
18395         }
18396         var time = value.getTime();
18397         if(this.minValue && time < this.minValue.getTime()){
18398             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
18399             return false;
18400         }
18401         if(this.maxValue && time > this.maxValue.getTime()){
18402             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
18403             return false;
18404         }
18405         /*if(this.disabledDays){
18406             var day = value.getDay();
18407             for(var i = 0; i < this.disabledDays.length; i++) {
18408                 if(day === this.disabledDays[i]){
18409                     this.markInvalid(this.disabledDaysText);
18410                     return false;
18411                 }
18412             }
18413         }
18414         */
18415         var fvalue = this.formatDate(value);
18416         /*if(this.ddMatch && this.ddMatch.test(fvalue)){
18417             this.markInvalid(String.format(this.disabledDatesText, fvalue));
18418             return false;
18419         }
18420         */
18421         return true;
18422     },
18423
18424     // private
18425     // Provides logic to override the default TriggerField.validateBlur which just returns true
18426     validateBlur : function(){
18427         return !this.menu || !this.menu.isVisible();
18428     },
18429
18430     /**
18431      * Returns the current date value of the date field.
18432      * @return {Date} The date value
18433      */
18434     getValue : function(){
18435         
18436         
18437         
18438         return  this.hiddenField ?
18439                 this.hiddenField.value :
18440                 this.parseDate(Roo.form.MonthField.superclass.getValue.call(this)) || "";
18441     },
18442
18443     /**
18444      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
18445      * date, using MonthField.format as the date format, according to the same rules as {@link Date#parseDate}
18446      * (the default format used is "m/d/y").
18447      * <br />Usage:
18448      * <pre><code>
18449 //All of these calls set the same date value (May 4, 2006)
18450
18451 //Pass a date object:
18452 var dt = new Date('5/4/06');
18453 monthField.setValue(dt);
18454
18455 //Pass a date string (default format):
18456 monthField.setValue('5/4/06');
18457
18458 //Pass a date string (custom format):
18459 monthField.format = 'Y-m-d';
18460 monthField.setValue('2006-5-4');
18461 </code></pre>
18462      * @param {String/Date} date The date or valid date string
18463      */
18464     setValue : function(date){
18465         Roo.log('month setValue' + date);
18466         // can only be first of month..
18467         
18468         var val = this.parseDate(date);
18469         
18470         if (this.hiddenField) {
18471             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
18472         }
18473         Roo.form.MonthField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
18474         this.value = this.parseDate(date);
18475     },
18476
18477     // private
18478     parseDate : function(value){
18479         if(!value || value instanceof Date){
18480             value = value ? Date.parseDate(value.format('Y-m') + '-01', 'Y-m-d') : null;
18481             return value;
18482         }
18483         var v = Date.parseDate(value, this.format);
18484         if (!v && this.useIso) {
18485             v = Date.parseDate(value, 'Y-m-d');
18486         }
18487         if (v) {
18488             // 
18489             v = Date.parseDate(v.format('Y-m') +'-01', 'Y-m-d');
18490         }
18491         
18492         
18493         if(!v && this.altFormats){
18494             if(!this.altFormatsArray){
18495                 this.altFormatsArray = this.altFormats.split("|");
18496             }
18497             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
18498                 v = Date.parseDate(value, this.altFormatsArray[i]);
18499             }
18500         }
18501         return v;
18502     },
18503
18504     // private
18505     formatDate : function(date, fmt){
18506         return (!date || !(date instanceof Date)) ?
18507                date : date.dateFormat(fmt || this.format);
18508     },
18509
18510     // private
18511     menuListeners : {
18512         select: function(m, d){
18513             this.setValue(d);
18514             this.fireEvent('select', this, d);
18515         },
18516         show : function(){ // retain focus styling
18517             this.onFocus();
18518         },
18519         hide : function(){
18520             this.focus.defer(10, this);
18521             var ml = this.menuListeners;
18522             this.menu.un("select", ml.select,  this);
18523             this.menu.un("show", ml.show,  this);
18524             this.menu.un("hide", ml.hide,  this);
18525         }
18526     },
18527     // private
18528     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
18529     onTriggerClick : function(){
18530         if(this.disabled){
18531             return;
18532         }
18533         if(this.menu == null){
18534             this.menu = new Roo.menu.DateMenu();
18535            
18536         }
18537         
18538         Roo.apply(this.menu.picker,  {
18539             
18540             showClear: this.allowBlank,
18541             minDate : this.minValue,
18542             maxDate : this.maxValue,
18543             disabledDatesRE : this.ddMatch,
18544             disabledDatesText : this.disabledDatesText,
18545             
18546             format : this.useIso ? 'Y-m-d' : this.format,
18547             minText : String.format(this.minText, this.formatDate(this.minValue)),
18548             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
18549             
18550         });
18551          this.menu.on(Roo.apply({}, this.menuListeners, {
18552             scope:this
18553         }));
18554        
18555         
18556         var m = this.menu;
18557         var p = m.picker;
18558         
18559         // hide month picker get's called when we called by 'before hide';
18560         
18561         var ignorehide = true;
18562         p.hideMonthPicker  = function(disableAnim){
18563             if (ignorehide) {
18564                 return;
18565             }
18566              if(this.monthPicker){
18567                 Roo.log("hideMonthPicker called");
18568                 if(disableAnim === true){
18569                     this.monthPicker.hide();
18570                 }else{
18571                     this.monthPicker.slideOut('t', {duration:.2});
18572                     p.setValue(new Date(m.picker.mpSelYear, m.picker.mpSelMonth, 1));
18573                     p.fireEvent("select", this, this.value);
18574                     m.hide();
18575                 }
18576             }
18577         }
18578         
18579         Roo.log('picker set value');
18580         Roo.log(this.getValue());
18581         p.setValue(this.getValue() ? this.parseDate(this.getValue()) : new Date());
18582         m.show(this.el, 'tl-bl?');
18583         ignorehide  = false;
18584         // this will trigger hideMonthPicker..
18585         
18586         
18587         // hidden the day picker
18588         Roo.select('.x-date-picker table', true).first().dom.style.visibility = "hidden";
18589         
18590         
18591         
18592       
18593         
18594         p.showMonthPicker.defer(100, p);
18595     
18596         
18597        
18598     },
18599
18600     beforeBlur : function(){
18601         var v = this.parseDate(this.getRawValue());
18602         if(v){
18603             this.setValue(v);
18604         }
18605     }
18606
18607     /** @cfg {Boolean} grow @hide */
18608     /** @cfg {Number} growMin @hide */
18609     /** @cfg {Number} growMax @hide */
18610     /**
18611      * @hide
18612      * @method autoSize
18613      */
18614 });/*
18615  * Based on:
18616  * Ext JS Library 1.1.1
18617  * Copyright(c) 2006-2007, Ext JS, LLC.
18618  *
18619  * Originally Released Under LGPL - original licence link has changed is not relivant.
18620  *
18621  * Fork - LGPL
18622  * <script type="text/javascript">
18623  */
18624  
18625
18626 /**
18627  * @class Roo.form.ComboBox
18628  * @extends Roo.form.TriggerField
18629  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
18630  * @constructor
18631  * Create a new ComboBox.
18632  * @param {Object} config Configuration options
18633  */
18634 Roo.form.ComboBox = function(config){
18635     Roo.form.ComboBox.superclass.constructor.call(this, config);
18636     this.addEvents({
18637         /**
18638          * @event expand
18639          * Fires when the dropdown list is expanded
18640              * @param {Roo.form.ComboBox} combo This combo box
18641              */
18642         'expand' : true,
18643         /**
18644          * @event collapse
18645          * Fires when the dropdown list is collapsed
18646              * @param {Roo.form.ComboBox} combo This combo box
18647              */
18648         'collapse' : true,
18649         /**
18650          * @event beforeselect
18651          * Fires before a list item is selected. Return false to cancel the selection.
18652              * @param {Roo.form.ComboBox} combo This combo box
18653              * @param {Roo.data.Record} record The data record returned from the underlying store
18654              * @param {Number} index The index of the selected item in the dropdown list
18655              */
18656         'beforeselect' : true,
18657         /**
18658          * @event select
18659          * Fires when a list item is selected
18660              * @param {Roo.form.ComboBox} combo This combo box
18661              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
18662              * @param {Number} index The index of the selected item in the dropdown list
18663              */
18664         'select' : true,
18665         /**
18666          * @event beforequery
18667          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
18668          * The event object passed has these properties:
18669              * @param {Roo.form.ComboBox} combo This combo box
18670              * @param {String} query The query
18671              * @param {Boolean} forceAll true to force "all" query
18672              * @param {Boolean} cancel true to cancel the query
18673              * @param {Object} e The query event object
18674              */
18675         'beforequery': true,
18676          /**
18677          * @event add
18678          * Fires when the 'add' icon is pressed (add a listener to enable add button)
18679              * @param {Roo.form.ComboBox} combo This combo box
18680              */
18681         'add' : true,
18682         /**
18683          * @event edit
18684          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
18685              * @param {Roo.form.ComboBox} combo This combo box
18686              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
18687              */
18688         'edit' : true
18689         
18690         
18691     });
18692     if(this.transform){
18693         this.allowDomMove = false;
18694         var s = Roo.getDom(this.transform);
18695         if(!this.hiddenName){
18696             this.hiddenName = s.name;
18697         }
18698         if(!this.store){
18699             this.mode = 'local';
18700             var d = [], opts = s.options;
18701             for(var i = 0, len = opts.length;i < len; i++){
18702                 var o = opts[i];
18703                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
18704                 if(o.selected) {
18705                     this.value = value;
18706                 }
18707                 d.push([value, o.text]);
18708             }
18709             this.store = new Roo.data.SimpleStore({
18710                 'id': 0,
18711                 fields: ['value', 'text'],
18712                 data : d
18713             });
18714             this.valueField = 'value';
18715             this.displayField = 'text';
18716         }
18717         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
18718         if(!this.lazyRender){
18719             this.target = true;
18720             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
18721             s.parentNode.removeChild(s); // remove it
18722             this.render(this.el.parentNode);
18723         }else{
18724             s.parentNode.removeChild(s); // remove it
18725         }
18726
18727     }
18728     if (this.store) {
18729         this.store = Roo.factory(this.store, Roo.data);
18730     }
18731     
18732     this.selectedIndex = -1;
18733     if(this.mode == 'local'){
18734         if(config.queryDelay === undefined){
18735             this.queryDelay = 10;
18736         }
18737         if(config.minChars === undefined){
18738             this.minChars = 0;
18739         }
18740     }
18741 };
18742
18743 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
18744     /**
18745      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
18746      */
18747     /**
18748      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
18749      * rendering into an Roo.Editor, defaults to false)
18750      */
18751     /**
18752      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
18753      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
18754      */
18755     /**
18756      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
18757      */
18758     /**
18759      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
18760      * the dropdown list (defaults to undefined, with no header element)
18761      */
18762
18763      /**
18764      * @cfg {String/Roo.Template} tpl The template to use to render the output
18765      */
18766      
18767     // private
18768     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
18769     /**
18770      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
18771      */
18772     listWidth: undefined,
18773     /**
18774      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
18775      * mode = 'remote' or 'text' if mode = 'local')
18776      */
18777     displayField: undefined,
18778     /**
18779      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
18780      * mode = 'remote' or 'value' if mode = 'local'). 
18781      * Note: use of a valueField requires the user make a selection
18782      * in order for a value to be mapped.
18783      */
18784     valueField: undefined,
18785     
18786     
18787     /**
18788      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
18789      * field's data value (defaults to the underlying DOM element's name)
18790      */
18791     hiddenName: undefined,
18792     /**
18793      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
18794      */
18795     listClass: '',
18796     /**
18797      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
18798      */
18799     selectedClass: 'x-combo-selected',
18800     /**
18801      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
18802      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
18803      * which displays a downward arrow icon).
18804      */
18805     triggerClass : 'x-form-arrow-trigger',
18806     /**
18807      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
18808      */
18809     shadow:'sides',
18810     /**
18811      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
18812      * anchor positions (defaults to 'tl-bl')
18813      */
18814     listAlign: 'tl-bl?',
18815     /**
18816      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
18817      */
18818     maxHeight: 300,
18819     /**
18820      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
18821      * query specified by the allQuery config option (defaults to 'query')
18822      */
18823     triggerAction: 'query',
18824     /**
18825      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
18826      * (defaults to 4, does not apply if editable = false)
18827      */
18828     minChars : 4,
18829     /**
18830      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
18831      * delay (typeAheadDelay) if it matches a known value (defaults to false)
18832      */
18833     typeAhead: false,
18834     /**
18835      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
18836      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
18837      */
18838     queryDelay: 500,
18839     /**
18840      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
18841      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
18842      */
18843     pageSize: 0,
18844     /**
18845      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
18846      * when editable = true (defaults to false)
18847      */
18848     selectOnFocus:false,
18849     /**
18850      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
18851      */
18852     queryParam: 'query',
18853     /**
18854      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
18855      * when mode = 'remote' (defaults to 'Loading...')
18856      */
18857     loadingText: 'Loading...',
18858     /**
18859      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
18860      */
18861     resizable: false,
18862     /**
18863      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
18864      */
18865     handleHeight : 8,
18866     /**
18867      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
18868      * traditional select (defaults to true)
18869      */
18870     editable: true,
18871     /**
18872      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
18873      */
18874     allQuery: '',
18875     /**
18876      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
18877      */
18878     mode: 'remote',
18879     /**
18880      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
18881      * listWidth has a higher value)
18882      */
18883     minListWidth : 70,
18884     /**
18885      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
18886      * allow the user to set arbitrary text into the field (defaults to false)
18887      */
18888     forceSelection:false,
18889     /**
18890      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
18891      * if typeAhead = true (defaults to 250)
18892      */
18893     typeAheadDelay : 250,
18894     /**
18895      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
18896      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
18897      */
18898     valueNotFoundText : undefined,
18899     /**
18900      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
18901      */
18902     blockFocus : false,
18903     
18904     /**
18905      * @cfg {Boolean} disableClear Disable showing of clear button.
18906      */
18907     disableClear : false,
18908     /**
18909      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
18910      */
18911     alwaysQuery : false,
18912     
18913     //private
18914     addicon : false,
18915     editicon: false,
18916     
18917     // element that contains real text value.. (when hidden is used..)
18918      
18919     // private
18920     onRender : function(ct, position)
18921     {
18922         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
18923         
18924         if(this.hiddenName){
18925             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
18926                     'before', true);
18927             this.hiddenField.value =
18928                 this.hiddenValue !== undefined ? this.hiddenValue :
18929                 this.value !== undefined ? this.value : '';
18930
18931             // prevent input submission
18932             this.el.dom.removeAttribute('name');
18933              
18934              
18935         }
18936         
18937         if(Roo.isGecko){
18938             this.el.dom.setAttribute('autocomplete', 'off');
18939         }
18940
18941         var cls = 'x-combo-list';
18942
18943         this.list = new Roo.Layer({
18944             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
18945         });
18946
18947         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
18948         this.list.setWidth(lw);
18949         this.list.swallowEvent('mousewheel');
18950         this.assetHeight = 0;
18951
18952         if(this.title){
18953             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
18954             this.assetHeight += this.header.getHeight();
18955         }
18956
18957         this.innerList = this.list.createChild({cls:cls+'-inner'});
18958         this.innerList.on('mouseover', this.onViewOver, this);
18959         this.innerList.on('mousemove', this.onViewMove, this);
18960         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
18961         
18962         if(this.allowBlank && !this.pageSize && !this.disableClear){
18963             this.footer = this.list.createChild({cls:cls+'-ft'});
18964             this.pageTb = new Roo.Toolbar(this.footer);
18965            
18966         }
18967         if(this.pageSize){
18968             this.footer = this.list.createChild({cls:cls+'-ft'});
18969             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
18970                     {pageSize: this.pageSize});
18971             
18972         }
18973         
18974         if (this.pageTb && this.allowBlank && !this.disableClear) {
18975             var _this = this;
18976             this.pageTb.add(new Roo.Toolbar.Fill(), {
18977                 cls: 'x-btn-icon x-btn-clear',
18978                 text: '&#160;',
18979                 handler: function()
18980                 {
18981                     _this.collapse();
18982                     _this.clearValue();
18983                     _this.onSelect(false, -1);
18984                 }
18985             });
18986         }
18987         if (this.footer) {
18988             this.assetHeight += this.footer.getHeight();
18989         }
18990         
18991
18992         if(!this.tpl){
18993             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
18994         }
18995
18996         this.view = new Roo.View(this.innerList, this.tpl, {
18997             singleSelect:true,
18998             store: this.store,
18999             selectedClass: this.selectedClass
19000         });
19001
19002         this.view.on('click', this.onViewClick, this);
19003
19004         this.store.on('beforeload', this.onBeforeLoad, this);
19005         this.store.on('load', this.onLoad, this);
19006         this.store.on('loadexception', this.onLoadException, this);
19007
19008         if(this.resizable){
19009             this.resizer = new Roo.Resizable(this.list,  {
19010                pinned:true, handles:'se'
19011             });
19012             this.resizer.on('resize', function(r, w, h){
19013                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
19014                 this.listWidth = w;
19015                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
19016                 this.restrictHeight();
19017             }, this);
19018             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
19019         }
19020         if(!this.editable){
19021             this.editable = true;
19022             this.setEditable(false);
19023         }  
19024         
19025         
19026         if (typeof(this.events.add.listeners) != 'undefined') {
19027             
19028             this.addicon = this.wrap.createChild(
19029                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
19030        
19031             this.addicon.on('click', function(e) {
19032                 this.fireEvent('add', this);
19033             }, this);
19034         }
19035         if (typeof(this.events.edit.listeners) != 'undefined') {
19036             
19037             this.editicon = this.wrap.createChild(
19038                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
19039             if (this.addicon) {
19040                 this.editicon.setStyle('margin-left', '40px');
19041             }
19042             this.editicon.on('click', function(e) {
19043                 
19044                 // we fire even  if inothing is selected..
19045                 this.fireEvent('edit', this, this.lastData );
19046                 
19047             }, this);
19048         }
19049         
19050         
19051         
19052     },
19053
19054     // private
19055     initEvents : function(){
19056         Roo.form.ComboBox.superclass.initEvents.call(this);
19057
19058         this.keyNav = new Roo.KeyNav(this.el, {
19059             "up" : function(e){
19060                 this.inKeyMode = true;
19061                 this.selectPrev();
19062             },
19063
19064             "down" : function(e){
19065                 if(!this.isExpanded()){
19066                     this.onTriggerClick();
19067                 }else{
19068                     this.inKeyMode = true;
19069                     this.selectNext();
19070                 }
19071             },
19072
19073             "enter" : function(e){
19074                 this.onViewClick();
19075                 //return true;
19076             },
19077
19078             "esc" : function(e){
19079                 this.collapse();
19080             },
19081
19082             "tab" : function(e){
19083                 this.onViewClick(false);
19084                 this.fireEvent("specialkey", this, e);
19085                 return true;
19086             },
19087
19088             scope : this,
19089
19090             doRelay : function(foo, bar, hname){
19091                 if(hname == 'down' || this.scope.isExpanded()){
19092                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
19093                 }
19094                 return true;
19095             },
19096
19097             forceKeyDown: true
19098         });
19099         this.queryDelay = Math.max(this.queryDelay || 10,
19100                 this.mode == 'local' ? 10 : 250);
19101         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
19102         if(this.typeAhead){
19103             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
19104         }
19105         if(this.editable !== false){
19106             this.el.on("keyup", this.onKeyUp, this);
19107         }
19108         if(this.forceSelection){
19109             this.on('blur', this.doForce, this);
19110         }
19111     },
19112
19113     onDestroy : function(){
19114         if(this.view){
19115             this.view.setStore(null);
19116             this.view.el.removeAllListeners();
19117             this.view.el.remove();
19118             this.view.purgeListeners();
19119         }
19120         if(this.list){
19121             this.list.destroy();
19122         }
19123         if(this.store){
19124             this.store.un('beforeload', this.onBeforeLoad, this);
19125             this.store.un('load', this.onLoad, this);
19126             this.store.un('loadexception', this.onLoadException, this);
19127         }
19128         Roo.form.ComboBox.superclass.onDestroy.call(this);
19129     },
19130
19131     // private
19132     fireKey : function(e){
19133         if(e.isNavKeyPress() && !this.list.isVisible()){
19134             this.fireEvent("specialkey", this, e);
19135         }
19136     },
19137
19138     // private
19139     onResize: function(w, h){
19140         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
19141         
19142         if(typeof w != 'number'){
19143             // we do not handle it!?!?
19144             return;
19145         }
19146         var tw = this.trigger.getWidth();
19147         tw += this.addicon ? this.addicon.getWidth() : 0;
19148         tw += this.editicon ? this.editicon.getWidth() : 0;
19149         var x = w - tw;
19150         this.el.setWidth( this.adjustWidth('input', x));
19151             
19152         this.trigger.setStyle('left', x+'px');
19153         
19154         if(this.list && this.listWidth === undefined){
19155             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
19156             this.list.setWidth(lw);
19157             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
19158         }
19159         
19160     
19161         
19162     },
19163
19164     /**
19165      * Allow or prevent the user from directly editing the field text.  If false is passed,
19166      * the user will only be able to select from the items defined in the dropdown list.  This method
19167      * is the runtime equivalent of setting the 'editable' config option at config time.
19168      * @param {Boolean} value True to allow the user to directly edit the field text
19169      */
19170     setEditable : function(value){
19171         if(value == this.editable){
19172             return;
19173         }
19174         this.editable = value;
19175         if(!value){
19176             this.el.dom.setAttribute('readOnly', true);
19177             this.el.on('mousedown', this.onTriggerClick,  this);
19178             this.el.addClass('x-combo-noedit');
19179         }else{
19180             this.el.dom.setAttribute('readOnly', false);
19181             this.el.un('mousedown', this.onTriggerClick,  this);
19182             this.el.removeClass('x-combo-noedit');
19183         }
19184     },
19185
19186     // private
19187     onBeforeLoad : function(){
19188         if(!this.hasFocus){
19189             return;
19190         }
19191         this.innerList.update(this.loadingText ?
19192                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
19193         this.restrictHeight();
19194         this.selectedIndex = -1;
19195     },
19196
19197     // private
19198     onLoad : function(){
19199         if(!this.hasFocus){
19200             return;
19201         }
19202         if(this.store.getCount() > 0){
19203             this.expand();
19204             this.restrictHeight();
19205             if(this.lastQuery == this.allQuery){
19206                 if(this.editable){
19207                     this.el.dom.select();
19208                 }
19209                 if(!this.selectByValue(this.value, true)){
19210                     this.select(0, true);
19211                 }
19212             }else{
19213                 this.selectNext();
19214                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
19215                     this.taTask.delay(this.typeAheadDelay);
19216                 }
19217             }
19218         }else{
19219             this.onEmptyResults();
19220         }
19221         //this.el.focus();
19222     },
19223     // private
19224     onLoadException : function()
19225     {
19226         this.collapse();
19227         Roo.log(this.store.reader.jsonData);
19228         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
19229             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
19230         }
19231         
19232         
19233     },
19234     // private
19235     onTypeAhead : function(){
19236         if(this.store.getCount() > 0){
19237             var r = this.store.getAt(0);
19238             var newValue = r.data[this.displayField];
19239             var len = newValue.length;
19240             var selStart = this.getRawValue().length;
19241             if(selStart != len){
19242                 this.setRawValue(newValue);
19243                 this.selectText(selStart, newValue.length);
19244             }
19245         }
19246     },
19247
19248     // private
19249     onSelect : function(record, index){
19250         if(this.fireEvent('beforeselect', this, record, index) !== false){
19251             this.setFromData(index > -1 ? record.data : false);
19252             this.collapse();
19253             this.fireEvent('select', this, record, index);
19254         }
19255     },
19256
19257     /**
19258      * Returns the currently selected field value or empty string if no value is set.
19259      * @return {String} value The selected value
19260      */
19261     getValue : function(){
19262         if(this.valueField){
19263             return typeof this.value != 'undefined' ? this.value : '';
19264         }
19265         return Roo.form.ComboBox.superclass.getValue.call(this);
19266     },
19267
19268     /**
19269      * Clears any text/value currently set in the field
19270      */
19271     clearValue : function(){
19272         if(this.hiddenField){
19273             this.hiddenField.value = '';
19274         }
19275         this.value = '';
19276         this.setRawValue('');
19277         this.lastSelectionText = '';
19278         
19279     },
19280
19281     /**
19282      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
19283      * will be displayed in the field.  If the value does not match the data value of an existing item,
19284      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
19285      * Otherwise the field will be blank (although the value will still be set).
19286      * @param {String} value The value to match
19287      */
19288     setValue : function(v){
19289         var text = v;
19290         if(this.valueField){
19291             var r = this.findRecord(this.valueField, v);
19292             if(r){
19293                 text = r.data[this.displayField];
19294             }else if(this.valueNotFoundText !== undefined){
19295                 text = this.valueNotFoundText;
19296             }
19297         }
19298         this.lastSelectionText = text;
19299         if(this.hiddenField){
19300             this.hiddenField.value = v;
19301         }
19302         Roo.form.ComboBox.superclass.setValue.call(this, text);
19303         this.value = v;
19304     },
19305     /**
19306      * @property {Object} the last set data for the element
19307      */
19308     
19309     lastData : false,
19310     /**
19311      * Sets the value of the field based on a object which is related to the record format for the store.
19312      * @param {Object} value the value to set as. or false on reset?
19313      */
19314     setFromData : function(o){
19315         var dv = ''; // display value
19316         var vv = ''; // value value..
19317         this.lastData = o;
19318         if (this.displayField) {
19319             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
19320         } else {
19321             // this is an error condition!!!
19322             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
19323         }
19324         
19325         if(this.valueField){
19326             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
19327         }
19328         if(this.hiddenField){
19329             this.hiddenField.value = vv;
19330             
19331             this.lastSelectionText = dv;
19332             Roo.form.ComboBox.superclass.setValue.call(this, dv);
19333             this.value = vv;
19334             return;
19335         }
19336         // no hidden field.. - we store the value in 'value', but still display
19337         // display field!!!!
19338         this.lastSelectionText = dv;
19339         Roo.form.ComboBox.superclass.setValue.call(this, dv);
19340         this.value = vv;
19341         
19342         
19343     },
19344     // private
19345     reset : function(){
19346         // overridden so that last data is reset..
19347         this.setValue(this.resetValue);
19348         this.originalValue = this.getValue();
19349         this.clearInvalid();
19350         this.lastData = false;
19351         if (this.view) {
19352             this.view.clearSelections();
19353         }
19354     },
19355     // private
19356     findRecord : function(prop, value){
19357         var record;
19358         if(this.store.getCount() > 0){
19359             this.store.each(function(r){
19360                 if(r.data[prop] == value){
19361                     record = r;
19362                     return false;
19363                 }
19364                 return true;
19365             });
19366         }
19367         return record;
19368     },
19369     
19370     getName: function()
19371     {
19372         // returns hidden if it's set..
19373         if (!this.rendered) {return ''};
19374         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
19375         
19376     },
19377     // private
19378     onViewMove : function(e, t){
19379         this.inKeyMode = false;
19380     },
19381
19382     // private
19383     onViewOver : function(e, t){
19384         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
19385             return;
19386         }
19387         var item = this.view.findItemFromChild(t);
19388         if(item){
19389             var index = this.view.indexOf(item);
19390             this.select(index, false);
19391         }
19392     },
19393
19394     // private
19395     onViewClick : function(doFocus)
19396     {
19397         var index = this.view.getSelectedIndexes()[0];
19398         var r = this.store.getAt(index);
19399         if(r){
19400             this.onSelect(r, index);
19401         }
19402         if(doFocus !== false && !this.blockFocus){
19403             this.el.focus();
19404         }
19405     },
19406
19407     // private
19408     restrictHeight : function(){
19409         this.innerList.dom.style.height = '';
19410         var inner = this.innerList.dom;
19411         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
19412         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
19413         this.list.beginUpdate();
19414         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
19415         this.list.alignTo(this.el, this.listAlign);
19416         this.list.endUpdate();
19417     },
19418
19419     // private
19420     onEmptyResults : function(){
19421         this.collapse();
19422     },
19423
19424     /**
19425      * Returns true if the dropdown list is expanded, else false.
19426      */
19427     isExpanded : function(){
19428         return this.list.isVisible();
19429     },
19430
19431     /**
19432      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
19433      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
19434      * @param {String} value The data value of the item to select
19435      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
19436      * selected item if it is not currently in view (defaults to true)
19437      * @return {Boolean} True if the value matched an item in the list, else false
19438      */
19439     selectByValue : function(v, scrollIntoView){
19440         if(v !== undefined && v !== null){
19441             var r = this.findRecord(this.valueField || this.displayField, v);
19442             if(r){
19443                 this.select(this.store.indexOf(r), scrollIntoView);
19444                 return true;
19445             }
19446         }
19447         return false;
19448     },
19449
19450     /**
19451      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
19452      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
19453      * @param {Number} index The zero-based index of the list item to select
19454      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
19455      * selected item if it is not currently in view (defaults to true)
19456      */
19457     select : function(index, scrollIntoView){
19458         this.selectedIndex = index;
19459         this.view.select(index);
19460         if(scrollIntoView !== false){
19461             var el = this.view.getNode(index);
19462             if(el){
19463                 this.innerList.scrollChildIntoView(el, false);
19464             }
19465         }
19466     },
19467
19468     // private
19469     selectNext : function(){
19470         var ct = this.store.getCount();
19471         if(ct > 0){
19472             if(this.selectedIndex == -1){
19473                 this.select(0);
19474             }else if(this.selectedIndex < ct-1){
19475                 this.select(this.selectedIndex+1);
19476             }
19477         }
19478     },
19479
19480     // private
19481     selectPrev : function(){
19482         var ct = this.store.getCount();
19483         if(ct > 0){
19484             if(this.selectedIndex == -1){
19485                 this.select(0);
19486             }else if(this.selectedIndex != 0){
19487                 this.select(this.selectedIndex-1);
19488             }
19489         }
19490     },
19491
19492     // private
19493     onKeyUp : function(e){
19494         if(this.editable !== false && !e.isSpecialKey()){
19495             this.lastKey = e.getKey();
19496             this.dqTask.delay(this.queryDelay);
19497         }
19498     },
19499
19500     // private
19501     validateBlur : function(){
19502         return !this.list || !this.list.isVisible();   
19503     },
19504
19505     // private
19506     initQuery : function(){
19507         this.doQuery(this.getRawValue());
19508     },
19509
19510     // private
19511     doForce : function(){
19512         if(this.el.dom.value.length > 0){
19513             this.el.dom.value =
19514                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
19515              
19516         }
19517     },
19518
19519     /**
19520      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
19521      * query allowing the query action to be canceled if needed.
19522      * @param {String} query The SQL query to execute
19523      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
19524      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
19525      * saved in the current store (defaults to false)
19526      */
19527     doQuery : function(q, forceAll){
19528         if(q === undefined || q === null){
19529             q = '';
19530         }
19531         var qe = {
19532             query: q,
19533             forceAll: forceAll,
19534             combo: this,
19535             cancel:false
19536         };
19537         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
19538             return false;
19539         }
19540         q = qe.query;
19541         forceAll = qe.forceAll;
19542         if(forceAll === true || (q.length >= this.minChars)){
19543             if(this.lastQuery != q || this.alwaysQuery){
19544                 this.lastQuery = q;
19545                 if(this.mode == 'local'){
19546                     this.selectedIndex = -1;
19547                     if(forceAll){
19548                         this.store.clearFilter();
19549                     }else{
19550                         this.store.filter(this.displayField, q);
19551                     }
19552                     this.onLoad();
19553                 }else{
19554                     this.store.baseParams[this.queryParam] = q;
19555                     this.store.load({
19556                         params: this.getParams(q)
19557                     });
19558                     this.expand();
19559                 }
19560             }else{
19561                 this.selectedIndex = -1;
19562                 this.onLoad();   
19563             }
19564         }
19565     },
19566
19567     // private
19568     getParams : function(q){
19569         var p = {};
19570         //p[this.queryParam] = q;
19571         if(this.pageSize){
19572             p.start = 0;
19573             p.limit = this.pageSize;
19574         }
19575         return p;
19576     },
19577
19578     /**
19579      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
19580      */
19581     collapse : function(){
19582         if(!this.isExpanded()){
19583             return;
19584         }
19585         this.list.hide();
19586         Roo.get(document).un('mousedown', this.collapseIf, this);
19587         Roo.get(document).un('mousewheel', this.collapseIf, this);
19588         if (!this.editable) {
19589             Roo.get(document).un('keydown', this.listKeyPress, this);
19590         }
19591         this.fireEvent('collapse', this);
19592     },
19593
19594     // private
19595     collapseIf : function(e){
19596         if(!e.within(this.wrap) && !e.within(this.list)){
19597             this.collapse();
19598         }
19599     },
19600
19601     /**
19602      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
19603      */
19604     expand : function(){
19605         if(this.isExpanded() || !this.hasFocus){
19606             return;
19607         }
19608         this.list.alignTo(this.el, this.listAlign);
19609         this.list.show();
19610         Roo.get(document).on('mousedown', this.collapseIf, this);
19611         Roo.get(document).on('mousewheel', this.collapseIf, this);
19612         if (!this.editable) {
19613             Roo.get(document).on('keydown', this.listKeyPress, this);
19614         }
19615         
19616         this.fireEvent('expand', this);
19617     },
19618
19619     // private
19620     // Implements the default empty TriggerField.onTriggerClick function
19621     onTriggerClick : function(){
19622         if(this.disabled){
19623             return;
19624         }
19625         if(this.isExpanded()){
19626             this.collapse();
19627             if (!this.blockFocus) {
19628                 this.el.focus();
19629             }
19630             
19631         }else {
19632             this.hasFocus = true;
19633             if(this.triggerAction == 'all') {
19634                 this.doQuery(this.allQuery, true);
19635             } else {
19636                 this.doQuery(this.getRawValue());
19637             }
19638             if (!this.blockFocus) {
19639                 this.el.focus();
19640             }
19641         }
19642     },
19643     listKeyPress : function(e)
19644     {
19645         //Roo.log('listkeypress');
19646         // scroll to first matching element based on key pres..
19647         if (e.isSpecialKey()) {
19648             return false;
19649         }
19650         var k = String.fromCharCode(e.getKey()).toUpperCase();
19651         //Roo.log(k);
19652         var match  = false;
19653         var csel = this.view.getSelectedNodes();
19654         var cselitem = false;
19655         if (csel.length) {
19656             var ix = this.view.indexOf(csel[0]);
19657             cselitem  = this.store.getAt(ix);
19658             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
19659                 cselitem = false;
19660             }
19661             
19662         }
19663         
19664         this.store.each(function(v) { 
19665             if (cselitem) {
19666                 // start at existing selection.
19667                 if (cselitem.id == v.id) {
19668                     cselitem = false;
19669                 }
19670                 return;
19671             }
19672                 
19673             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
19674                 match = this.store.indexOf(v);
19675                 return false;
19676             }
19677         }, this);
19678         
19679         if (match === false) {
19680             return true; // no more action?
19681         }
19682         // scroll to?
19683         this.view.select(match);
19684         var sn = Roo.get(this.view.getSelectedNodes()[0]);
19685         sn.scrollIntoView(sn.dom.parentNode, false);
19686     } 
19687
19688     /** 
19689     * @cfg {Boolean} grow 
19690     * @hide 
19691     */
19692     /** 
19693     * @cfg {Number} growMin 
19694     * @hide 
19695     */
19696     /** 
19697     * @cfg {Number} growMax 
19698     * @hide 
19699     */
19700     /**
19701      * @hide
19702      * @method autoSize
19703      */
19704 });/*
19705  * Copyright(c) 2010-2012, Roo J Solutions Limited
19706  *
19707  * Licence LGPL
19708  *
19709  */
19710
19711 /**
19712  * @class Roo.form.ComboBoxArray
19713  * @extends Roo.form.TextField
19714  * A facebook style adder... for lists of email / people / countries  etc...
19715  * pick multiple items from a combo box, and shows each one.
19716  *
19717  *  Fred [x]  Brian [x]  [Pick another |v]
19718  *
19719  *
19720  *  For this to work: it needs various extra information
19721  *    - normal combo problay has
19722  *      name, hiddenName
19723  *    + displayField, valueField
19724  *
19725  *    For our purpose...
19726  *
19727  *
19728  *   If we change from 'extends' to wrapping...
19729  *   
19730  *  
19731  *
19732  
19733  
19734  * @constructor
19735  * Create a new ComboBoxArray.
19736  * @param {Object} config Configuration options
19737  */
19738  
19739
19740 Roo.form.ComboBoxArray = function(config)
19741 {
19742     this.addEvents({
19743         /**
19744          * @event beforeremove
19745          * Fires before remove the value from the list
19746              * @param {Roo.form.ComboBoxArray} _self This combo box array
19747              * @param {Roo.form.ComboBoxArray.Item} item removed item
19748              */
19749         'beforeremove' : true,
19750         /**
19751          * @event remove
19752          * Fires when remove the value from the list
19753              * @param {Roo.form.ComboBoxArray} _self This combo box array
19754              * @param {Roo.form.ComboBoxArray.Item} item removed item
19755              */
19756         'remove' : true
19757         
19758         
19759     });
19760     
19761     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
19762     
19763     this.items = new Roo.util.MixedCollection(false);
19764     
19765     // construct the child combo...
19766     
19767     
19768     
19769     
19770    
19771     
19772 }
19773
19774  
19775 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
19776
19777     /**
19778      * @cfg {Roo.form.Combo} combo The combo box that is wrapped
19779      */
19780     
19781     lastData : false,
19782     
19783     // behavies liek a hiddne field
19784     inputType:      'hidden',
19785     /**
19786      * @cfg {Number} width The width of the box that displays the selected element
19787      */ 
19788     width:          300,
19789
19790     
19791     
19792     /**
19793      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
19794      */
19795     name : false,
19796     /**
19797      * @cfg {String} hiddenName    The hidden name of the field, often contains an comma seperated list of names
19798      */
19799     hiddenName : false,
19800     
19801     
19802     // private the array of items that are displayed..
19803     items  : false,
19804     // private - the hidden field el.
19805     hiddenEl : false,
19806     // private - the filed el..
19807     el : false,
19808     
19809     //validateValue : function() { return true; }, // all values are ok!
19810     //onAddClick: function() { },
19811     
19812     onRender : function(ct, position) 
19813     {
19814         
19815         // create the standard hidden element
19816         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
19817         
19818         
19819         // give fake names to child combo;
19820         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
19821         this.combo.name = this.name ? (this.name+'-subcombo') : this.name;
19822         
19823         this.combo = Roo.factory(this.combo, Roo.form);
19824         this.combo.onRender(ct, position);
19825         if (typeof(this.combo.width) != 'undefined') {
19826             this.combo.onResize(this.combo.width,0);
19827         }
19828         
19829         this.combo.initEvents();
19830         
19831         // assigned so form know we need to do this..
19832         this.store          = this.combo.store;
19833         this.valueField     = this.combo.valueField;
19834         this.displayField   = this.combo.displayField ;
19835         
19836         
19837         this.combo.wrap.addClass('x-cbarray-grp');
19838         
19839         var cbwrap = this.combo.wrap.createChild(
19840             {tag: 'div', cls: 'x-cbarray-cb'},
19841             this.combo.el.dom
19842         );
19843         
19844              
19845         this.hiddenEl = this.combo.wrap.createChild({
19846             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
19847         });
19848         this.el = this.combo.wrap.createChild({
19849             tag: 'input',  type:'hidden' , name: this.name, value : ''
19850         });
19851          //   this.el.dom.removeAttribute("name");
19852         
19853         
19854         this.outerWrap = this.combo.wrap;
19855         this.wrap = cbwrap;
19856         
19857         this.outerWrap.setWidth(this.width);
19858         this.outerWrap.dom.removeChild(this.el.dom);
19859         
19860         this.wrap.dom.appendChild(this.el.dom);
19861         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
19862         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
19863         
19864         this.combo.trigger.setStyle('position','relative');
19865         this.combo.trigger.setStyle('left', '0px');
19866         this.combo.trigger.setStyle('top', '2px');
19867         
19868         this.combo.el.setStyle('vertical-align', 'text-bottom');
19869         
19870         //this.trigger.setStyle('vertical-align', 'top');
19871         
19872         // this should use the code from combo really... on('add' ....)
19873         if (this.adder) {
19874             
19875         
19876             this.adder = this.outerWrap.createChild(
19877                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
19878             var _t = this;
19879             this.adder.on('click', function(e) {
19880                 _t.fireEvent('adderclick', this, e);
19881             }, _t);
19882         }
19883         //var _t = this;
19884         //this.adder.on('click', this.onAddClick, _t);
19885         
19886         
19887         this.combo.on('select', function(cb, rec, ix) {
19888             this.addItem(rec.data);
19889             
19890             cb.setValue('');
19891             cb.el.dom.value = '';
19892             //cb.lastData = rec.data;
19893             // add to list
19894             
19895         }, this);
19896         
19897         
19898     },
19899     
19900     
19901     getName: function()
19902     {
19903         // returns hidden if it's set..
19904         if (!this.rendered) {return ''};
19905         return  this.hiddenName ? this.hiddenName : this.name;
19906         
19907     },
19908     
19909     
19910     onResize: function(w, h){
19911         
19912         return;
19913         // not sure if this is needed..
19914         //this.combo.onResize(w,h);
19915         
19916         if(typeof w != 'number'){
19917             // we do not handle it!?!?
19918             return;
19919         }
19920         var tw = this.combo.trigger.getWidth();
19921         tw += this.addicon ? this.addicon.getWidth() : 0;
19922         tw += this.editicon ? this.editicon.getWidth() : 0;
19923         var x = w - tw;
19924         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
19925             
19926         this.combo.trigger.setStyle('left', '0px');
19927         
19928         if(this.list && this.listWidth === undefined){
19929             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
19930             this.list.setWidth(lw);
19931             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
19932         }
19933         
19934     
19935         
19936     },
19937     
19938     addItem: function(rec)
19939     {
19940         var valueField = this.combo.valueField;
19941         var displayField = this.combo.displayField;
19942         
19943         if (this.items.indexOfKey(rec[valueField]) > -1) {
19944             //console.log("GOT " + rec.data.id);
19945             return;
19946         }
19947         
19948         var x = new Roo.form.ComboBoxArray.Item({
19949             //id : rec[this.idField],
19950             data : rec,
19951             displayField : displayField ,
19952             tipField : displayField ,
19953             cb : this
19954         });
19955         // use the 
19956         this.items.add(rec[valueField],x);
19957         // add it before the element..
19958         this.updateHiddenEl();
19959         x.render(this.outerWrap, this.wrap.dom);
19960         // add the image handler..
19961     },
19962     
19963     updateHiddenEl : function()
19964     {
19965         this.validate();
19966         if (!this.hiddenEl) {
19967             return;
19968         }
19969         var ar = [];
19970         var idField = this.combo.valueField;
19971         
19972         this.items.each(function(f) {
19973             ar.push(f.data[idField]);
19974         });
19975         this.hiddenEl.dom.value = ar.join(',');
19976         this.validate();
19977     },
19978     
19979     reset : function()
19980     {
19981         this.items.clear();
19982         
19983         Roo.each(this.outerWrap.select('.x-cbarray-item', true).elements, function(el){
19984            el.remove();
19985         });
19986         
19987         this.el.dom.value = '';
19988         if (this.hiddenEl) {
19989             this.hiddenEl.dom.value = '';
19990         }
19991         
19992     },
19993     getValue: function()
19994     {
19995         return this.hiddenEl ? this.hiddenEl.dom.value : '';
19996     },
19997     setValue: function(v) // not a valid action - must use addItems..
19998     {
19999         
20000         this.reset();
20001          
20002         if (this.store.isLocal && (typeof(v) == 'string')) {
20003             // then we can use the store to find the values..
20004             // comma seperated at present.. this needs to allow JSON based encoding..
20005             this.hiddenEl.value  = v;
20006             var v_ar = [];
20007             Roo.each(v.split(','), function(k) {
20008                 Roo.log("CHECK " + this.valueField + ',' + k);
20009                 var li = this.store.query(this.valueField, k);
20010                 if (!li.length) {
20011                     return;
20012                 }
20013                 var add = {};
20014                 add[this.valueField] = k;
20015                 add[this.displayField] = li.item(0).data[this.displayField];
20016                 
20017                 this.addItem(add);
20018             }, this) 
20019              
20020         }
20021         if (typeof(v) == 'object' ) {
20022             // then let's assume it's an array of objects..
20023             Roo.each(v, function(l) {
20024                 this.addItem(l);
20025             }, this);
20026              
20027         }
20028         
20029         
20030     },
20031     setFromData: function(v)
20032     {
20033         // this recieves an object, if setValues is called.
20034         this.reset();
20035         this.el.dom.value = v[this.displayField];
20036         this.hiddenEl.dom.value = v[this.valueField];
20037         if (typeof(v[this.valueField]) != 'string' || !v[this.valueField].length) {
20038             return;
20039         }
20040         var kv = v[this.valueField];
20041         var dv = v[this.displayField];
20042         kv = typeof(kv) != 'string' ? '' : kv;
20043         dv = typeof(dv) != 'string' ? '' : dv;
20044         
20045         
20046         var keys = kv.split(',');
20047         var display = dv.split(',');
20048         for (var i = 0 ; i < keys.length; i++) {
20049             
20050             add = {};
20051             add[this.valueField] = keys[i];
20052             add[this.displayField] = display[i];
20053             this.addItem(add);
20054         }
20055       
20056         
20057     },
20058     
20059     /**
20060      * Validates the combox array value
20061      * @return {Boolean} True if the value is valid, else false
20062      */
20063     validate : function(){
20064         if(this.disabled || this.validateValue(this.processValue(this.getValue()))){
20065             this.clearInvalid();
20066             return true;
20067         }
20068         return false;
20069     },
20070     
20071     validateValue : function(value){
20072         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
20073         
20074     },
20075     
20076     /*@
20077      * overide
20078      * 
20079      */
20080     isDirty : function() {
20081         if(this.disabled) {
20082             return false;
20083         }
20084         
20085         try {
20086             var d = Roo.decode(String(this.originalValue));
20087         } catch (e) {
20088             return String(this.getValue()) !== String(this.originalValue);
20089         }
20090         
20091         var originalValue = [];
20092         
20093         for (var i = 0; i < d.length; i++){
20094             originalValue.push(d[i][this.valueField]);
20095         }
20096         
20097         return String(this.getValue()) !== String(originalValue.join(','));
20098         
20099     }
20100     
20101 });
20102
20103
20104
20105 /**
20106  * @class Roo.form.ComboBoxArray.Item
20107  * @extends Roo.BoxComponent
20108  * A selected item in the list
20109  *  Fred [x]  Brian [x]  [Pick another |v]
20110  * 
20111  * @constructor
20112  * Create a new item.
20113  * @param {Object} config Configuration options
20114  */
20115  
20116 Roo.form.ComboBoxArray.Item = function(config) {
20117     config.id = Roo.id();
20118     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
20119 }
20120
20121 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
20122     data : {},
20123     cb: false,
20124     displayField : false,
20125     tipField : false,
20126     
20127     
20128     defaultAutoCreate : {
20129         tag: 'div',
20130         cls: 'x-cbarray-item',
20131         cn : [ 
20132             { tag: 'div' },
20133             {
20134                 tag: 'img',
20135                 width:16,
20136                 height : 16,
20137                 src : Roo.BLANK_IMAGE_URL ,
20138                 align: 'center'
20139             }
20140         ]
20141         
20142     },
20143     
20144  
20145     onRender : function(ct, position)
20146     {
20147         Roo.form.Field.superclass.onRender.call(this, ct, position);
20148         
20149         if(!this.el){
20150             var cfg = this.getAutoCreate();
20151             this.el = ct.createChild(cfg, position);
20152         }
20153         
20154         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
20155         
20156         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
20157             this.cb.renderer(this.data) :
20158             String.format('{0}',this.data[this.displayField]);
20159         
20160             
20161         this.el.child('div').dom.setAttribute('qtip',
20162                         String.format('{0}',this.data[this.tipField])
20163         );
20164         
20165         this.el.child('img').on('click', this.remove, this);
20166         
20167     },
20168    
20169     remove : function()
20170     {
20171         if(this.cb.disabled){
20172             return;
20173         }
20174         
20175         if(false !== this.cb.fireEvent('beforeremove', this.cb, this)){
20176             this.cb.items.remove(this);
20177             this.el.child('img').un('click', this.remove, this);
20178             this.el.remove();
20179             this.cb.updateHiddenEl();
20180
20181             this.cb.fireEvent('remove', this.cb, this);
20182         }
20183         
20184     }
20185 });/*
20186  * RooJS Library 1.1.1
20187  * Copyright(c) 2008-2011  Alan Knowles
20188  *
20189  * License - LGPL
20190  */
20191  
20192
20193 /**
20194  * @class Roo.form.ComboNested
20195  * @extends Roo.form.ComboBox
20196  * A combobox for that allows selection of nested items in a list,
20197  * eg.
20198  *
20199  *  Book
20200  *    -> red
20201  *    -> green
20202  *  Table
20203  *    -> square
20204  *      ->red
20205  *      ->green
20206  *    -> rectangle
20207  *      ->green
20208  *      
20209  * 
20210  * @constructor
20211  * Create a new ComboNested
20212  * @param {Object} config Configuration options
20213  */
20214 Roo.form.ComboNested = function(config){
20215     Roo.form.ComboCheck.superclass.constructor.call(this, config);
20216     // should verify some data...
20217     // like
20218     // hiddenName = required..
20219     // displayField = required
20220     // valudField == required
20221     var req= [ 'hiddenName', 'displayField', 'valueField' ];
20222     var _t = this;
20223     Roo.each(req, function(e) {
20224         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
20225             throw "Roo.form.ComboNested : missing value for: " + e;
20226         }
20227     });
20228      
20229     
20230 };
20231
20232 Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
20233    
20234     /*
20235      * @config {Number} max Number of columns to show
20236      */
20237     
20238     maxColumns : 3,
20239    
20240     list : null, // the outermost div..
20241     innerLists : null, // the
20242     views : null,
20243     stores : null,
20244     // private
20245     onRender : function(ct, position)
20246     {
20247         Roo.form.ComboBox.superclass.onRender.call(this, ct, position); // skip parent call - got to above..
20248         
20249         if(this.hiddenName){
20250             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
20251                     'before', true);
20252             this.hiddenField.value =
20253                 this.hiddenValue !== undefined ? this.hiddenValue :
20254                 this.value !== undefined ? this.value : '';
20255
20256             // prevent input submission
20257             this.el.dom.removeAttribute('name');
20258              
20259              
20260         }
20261         
20262         if(Roo.isGecko){
20263             this.el.dom.setAttribute('autocomplete', 'off');
20264         }
20265
20266         var cls = 'x-combo-list';
20267
20268         this.list = new Roo.Layer({
20269             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
20270         });
20271
20272         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
20273         this.list.setWidth(lw);
20274         this.list.swallowEvent('mousewheel');
20275         this.assetHeight = 0;
20276
20277         if(this.title){
20278             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
20279             this.assetHeight += this.header.getHeight();
20280         }
20281         this.innerLists = [];
20282         this.views = [];
20283         this.stores = [];
20284         for (var i =0 ; i < this.maxColumns; i++) {
20285             this.onRenderList( cls, i);
20286         }
20287         
20288         // always needs footer, as we are going to have an 'OK' button.
20289         this.footer = this.list.createChild({cls:cls+'-ft'});
20290         this.pageTb = new Roo.Toolbar(this.footer);  
20291         var _this = this;
20292         this.pageTb.add(  {
20293             
20294             text: 'Done',
20295             handler: function()
20296             {
20297                 _this.collapse();
20298             }
20299         });
20300         
20301         if ( this.allowBlank && !this.disableClear) {
20302             
20303             this.pageTb.add(new Roo.Toolbar.Fill(), {
20304                 cls: 'x-btn-icon x-btn-clear',
20305                 text: '&#160;',
20306                 handler: function()
20307                 {
20308                     _this.collapse();
20309                     _this.clearValue();
20310                     _this.onSelect(false, -1);
20311                 }
20312             });
20313         }
20314         if (this.footer) {
20315             this.assetHeight += this.footer.getHeight();
20316         }
20317         
20318     },
20319     onRenderList : function (  cls, i)
20320     {
20321         
20322         var lw = Math.floor(
20323                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
20324         );
20325         
20326         this.list.setWidth(lw); // default to '1'
20327
20328         var il = this.innerLists[i] = this.list.createChild({cls:cls+'-inner'});
20329         //il.on('mouseover', this.onViewOver, this, { list:  i });
20330         //il.on('mousemove', this.onViewMove, this, { list:  i });
20331         il.setWidth(lw);
20332         il.setStyle({ 'overflow-x' : 'hidden'});
20333
20334         if(!this.tpl){
20335             this.tpl = new Roo.Template({
20336                 html :  '<div class="'+cls+'-item '+cls+'-item-{cn:this.isEmpty}">{' + this.displayField + '}</div>',
20337                 isEmpty: function (value, allValues) {
20338                     //Roo.log(value);
20339                     var dl = typeof(value.data) != 'undefined' ? value.data.length : value.length; ///json is a nested response..
20340                     return dl ? 'has-children' : 'no-children'
20341                 }
20342             });
20343         }
20344         
20345         var store  = this.store;
20346         if (i > 0) {
20347             store  = new Roo.data.SimpleStore({
20348                 //fields : this.store.reader.meta.fields,
20349                 reader : this.store.reader,
20350                 data : [ ]
20351             });
20352         }
20353         this.stores[i]  = store;
20354                 
20355         
20356         
20357         var view = this.views[i] = new Roo.View(
20358             il,
20359             this.tpl,
20360             {
20361                 singleSelect:true,
20362                 store: store,
20363                 selectedClass: this.selectedClass
20364             }
20365         );
20366         view.getEl().setWidth(lw);
20367         view.getEl().setStyle({
20368             position: i < 1 ? 'relative' : 'absolute',
20369             top: 0,
20370             left: (i * lw ) + 'px',
20371             display : i > 0 ? 'none' : 'block'
20372         });
20373         view.on('selectionchange', this.onSelectChange, this, {list : i });
20374         view.on('dblclick', this.onDoubleClick, this, {list : i });
20375         //view.on('click', this.onViewClick, this, { list : i });
20376
20377         store.on('beforeload', this.onBeforeLoad, this);
20378         store.on('load',  this.onLoad, this, { list  : i});
20379         store.on('loadexception', this.onLoadException, this);
20380
20381         // hide the other vies..
20382         
20383         
20384         
20385     },
20386     onResize : function()  {},
20387     
20388     restrictHeight : function()
20389     {
20390         var mh = 0;
20391         Roo.each(this.innerLists, function(il,i) {
20392             var el = this.views[i].getEl();
20393             el.dom.style.height = '';
20394             var inner = el.dom;
20395             var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
20396             // only adjust heights on other ones..
20397             if (i < 1) {
20398                 
20399                 el.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
20400                 il.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
20401                 mh = Math.max(el.getHeight(), mh);
20402             }
20403             
20404             
20405         }, this);
20406         
20407         this.list.beginUpdate();
20408         this.list.setHeight(mh+this.list.getFrameWidth('tb')+this.assetHeight);
20409         this.list.alignTo(this.el, this.listAlign);
20410         this.list.endUpdate();
20411         
20412     },
20413      
20414     
20415     // -- store handlers..
20416     // private
20417     onBeforeLoad : function()
20418     {
20419         if(!this.hasFocus){
20420             return;
20421         }
20422         this.innerLists[0].update(this.loadingText ?
20423                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
20424         this.restrictHeight();
20425         this.selectedIndex = -1;
20426     },
20427     // private
20428     onLoad : function(a,b,c,d)
20429     {
20430         
20431         if(!this.hasFocus){
20432             return;
20433         }
20434         
20435         if(this.store.getCount() > 0) {
20436             this.expand();
20437             this.restrictHeight();   
20438         } else {
20439             this.onEmptyResults();
20440         }
20441         /*
20442         this.stores[1].loadData([]);
20443         this.stores[2].loadData([]);
20444         this.views
20445         */    
20446     
20447         //this.el.focus();
20448     },
20449     
20450     
20451     // private
20452     onLoadException : function()
20453     {
20454         this.collapse();
20455         Roo.log(this.store.reader.jsonData);
20456         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
20457             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
20458         }
20459         
20460         
20461     } ,
20462      
20463      
20464
20465     onSelectChange : function (view, sels, opts )
20466     {
20467         var ix = view.getSelectedIndexes();
20468         
20469         
20470         if (opts.list > this.maxColumns - 2) {
20471              
20472             this.setFromData(ix.length ? view.store.getAt(ix[0]).data : {});
20473             return;
20474         }
20475         
20476         if (!ix.length) {
20477             this.setFromData({});
20478             this.stores[opts.list+1].loadData( [] );
20479             return;
20480         }
20481         
20482         var rec = view.store.getAt(ix[0]);
20483         this.setFromData(rec.data);
20484         
20485         var lw = Math.floor(
20486                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
20487         );
20488         var data =  typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
20489         var dl = typeof(data.data) != 'undefined' ? data.total : data.length; ///json is a nested response..
20490         this.stores[opts.list+1].loadData( data );
20491         this.views[opts.list+1].getEl().setHeight( this.innerLists[0].getHeight());
20492         this.views[opts.list+1].getEl().setStyle({ display : dl ? 'block' : 'none' });
20493         this.innerLists[opts.list+1].setHeight( this.innerLists[0].getHeight());
20494         this.list.setWidth(lw * (opts.list + (dl ? 2 : 1))); 
20495     },
20496     onDoubleClick : function()
20497     {
20498         this.collapse(); //??
20499     },
20500     
20501      
20502     
20503     findRecord : function (prop,value)
20504     {
20505         return this.findRecordInStore(this.store, prop,value);
20506     },
20507     
20508      // private
20509     findRecordInStore : function(store, prop, value)
20510     {
20511         var cstore = new Roo.data.SimpleStore({
20512             //fields : this.store.reader.meta.fields, // we need array reader.. for
20513             reader : this.store.reader,
20514             data : [ ]
20515         });
20516         var _this = this;
20517         var record  = false;
20518         if(store.getCount() > 0){
20519            store.each(function(r){
20520                 if(r.data[prop] == value){
20521                     record = r;
20522                     return false;
20523                 }
20524                 if (r.data.cn && r.data.cn.length) {
20525                     cstore.loadData( r.data.cn);
20526                     var cret = _this.findRecordInStore(cstore, prop, value);
20527                     if (cret !== false) {
20528                         record = cret;
20529                         return false;
20530                     }
20531                 }
20532                 
20533                 return true;
20534             });
20535         }
20536         return record;
20537     }
20538     
20539     
20540     
20541     
20542 });/*
20543  * Based on:
20544  * Ext JS Library 1.1.1
20545  * Copyright(c) 2006-2007, Ext JS, LLC.
20546  *
20547  * Originally Released Under LGPL - original licence link has changed is not relivant.
20548  *
20549  * Fork - LGPL
20550  * <script type="text/javascript">
20551  */
20552 /**
20553  * @class Roo.form.Checkbox
20554  * @extends Roo.form.Field
20555  * Single checkbox field.  Can be used as a direct replacement for traditional checkbox fields.
20556  * @constructor
20557  * Creates a new Checkbox
20558  * @param {Object} config Configuration options
20559  */
20560 Roo.form.Checkbox = function(config){
20561     Roo.form.Checkbox.superclass.constructor.call(this, config);
20562     this.addEvents({
20563         /**
20564          * @event check
20565          * Fires when the checkbox is checked or unchecked.
20566              * @param {Roo.form.Checkbox} this This checkbox
20567              * @param {Boolean} checked The new checked value
20568              */
20569         check : true
20570     });
20571 };
20572
20573 Roo.extend(Roo.form.Checkbox, Roo.form.Field,  {
20574     /**
20575      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
20576      */
20577     focusClass : undefined,
20578     /**
20579      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
20580      */
20581     fieldClass: "x-form-field",
20582     /**
20583      * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
20584      */
20585     checked: false,
20586     /**
20587      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
20588      * {tag: "input", type: "checkbox", autocomplete: "off"})
20589      */
20590     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
20591     /**
20592      * @cfg {String} boxLabel The text that appears beside the checkbox
20593      */
20594     boxLabel : "",
20595     /**
20596      * @cfg {String} inputValue The value that should go into the generated input element's value attribute
20597      */  
20598     inputValue : '1',
20599     /**
20600      * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
20601      */
20602      valueOff: '0', // value when not checked..
20603
20604     actionMode : 'viewEl', 
20605     //
20606     // private
20607     itemCls : 'x-menu-check-item x-form-item',
20608     groupClass : 'x-menu-group-item',
20609     inputType : 'hidden',
20610     
20611     
20612     inSetChecked: false, // check that we are not calling self...
20613     
20614     inputElement: false, // real input element?
20615     basedOn: false, // ????
20616     
20617     isFormField: true, // not sure where this is needed!!!!
20618
20619     onResize : function(){
20620         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
20621         if(!this.boxLabel){
20622             this.el.alignTo(this.wrap, 'c-c');
20623         }
20624     },
20625
20626     initEvents : function(){
20627         Roo.form.Checkbox.superclass.initEvents.call(this);
20628         this.el.on("click", this.onClick,  this);
20629         this.el.on("change", this.onClick,  this);
20630     },
20631
20632
20633     getResizeEl : function(){
20634         return this.wrap;
20635     },
20636
20637     getPositionEl : function(){
20638         return this.wrap;
20639     },
20640
20641     // private
20642     onRender : function(ct, position){
20643         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
20644         /*
20645         if(this.inputValue !== undefined){
20646             this.el.dom.value = this.inputValue;
20647         }
20648         */
20649         //this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
20650         this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
20651         var viewEl = this.wrap.createChild({ 
20652             tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
20653         this.viewEl = viewEl;   
20654         this.wrap.on('click', this.onClick,  this); 
20655         
20656         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
20657         this.el.on('propertychange', this.setFromHidden,  this);  //ie
20658         
20659         
20660         
20661         if(this.boxLabel){
20662             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
20663         //    viewEl.on('click', this.onClick,  this); 
20664         }
20665         //if(this.checked){
20666             this.setChecked(this.checked);
20667         //}else{
20668             //this.checked = this.el.dom;
20669         //}
20670
20671     },
20672
20673     // private
20674     initValue : Roo.emptyFn,
20675
20676     /**
20677      * Returns the checked state of the checkbox.
20678      * @return {Boolean} True if checked, else false
20679      */
20680     getValue : function(){
20681         if(this.el){
20682             return String(this.el.dom.value) == String(this.inputValue ) ? this.inputValue : this.valueOff;
20683         }
20684         return this.valueOff;
20685         
20686     },
20687
20688         // private
20689     onClick : function(){ 
20690         if (this.disabled) {
20691             return;
20692         }
20693         this.setChecked(!this.checked);
20694
20695         //if(this.el.dom.checked != this.checked){
20696         //    this.setValue(this.el.dom.checked);
20697        // }
20698     },
20699
20700     /**
20701      * Sets the checked state of the checkbox.
20702      * On is always based on a string comparison between inputValue and the param.
20703      * @param {Boolean/String} value - the value to set 
20704      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
20705      */
20706     setValue : function(v,suppressEvent){
20707         
20708         
20709         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
20710         //if(this.el && this.el.dom){
20711         //    this.el.dom.checked = this.checked;
20712         //    this.el.dom.defaultChecked = this.checked;
20713         //}
20714         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
20715         //this.fireEvent("check", this, this.checked);
20716     },
20717     // private..
20718     setChecked : function(state,suppressEvent)
20719     {
20720         if (this.inSetChecked) {
20721             this.checked = state;
20722             return;
20723         }
20724         
20725     
20726         if(this.wrap){
20727             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
20728         }
20729         this.checked = state;
20730         if(suppressEvent !== true){
20731             this.fireEvent('check', this, state);
20732         }
20733         this.inSetChecked = true;
20734         this.el.dom.value = state ? this.inputValue : this.valueOff;
20735         this.inSetChecked = false;
20736         
20737     },
20738     // handle setting of hidden value by some other method!!?!?
20739     setFromHidden: function()
20740     {
20741         if(!this.el){
20742             return;
20743         }
20744         //console.log("SET FROM HIDDEN");
20745         //alert('setFrom hidden');
20746         this.setValue(this.el.dom.value);
20747     },
20748     
20749     onDestroy : function()
20750     {
20751         if(this.viewEl){
20752             Roo.get(this.viewEl).remove();
20753         }
20754          
20755         Roo.form.Checkbox.superclass.onDestroy.call(this);
20756     },
20757     
20758     setBoxLabel : function(str)
20759     {
20760         this.wrap.select('.x-form-cb-label', true).first().dom.innerHTML = str;
20761     }
20762
20763 });/*
20764  * Based on:
20765  * Ext JS Library 1.1.1
20766  * Copyright(c) 2006-2007, Ext JS, LLC.
20767  *
20768  * Originally Released Under LGPL - original licence link has changed is not relivant.
20769  *
20770  * Fork - LGPL
20771  * <script type="text/javascript">
20772  */
20773  
20774 /**
20775  * @class Roo.form.Radio
20776  * @extends Roo.form.Checkbox
20777  * Single radio field.  Same as Checkbox, but provided as a convenience for automatically setting the input type.
20778  * Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
20779  * @constructor
20780  * Creates a new Radio
20781  * @param {Object} config Configuration options
20782  */
20783 Roo.form.Radio = function(){
20784     Roo.form.Radio.superclass.constructor.apply(this, arguments);
20785 };
20786 Roo.extend(Roo.form.Radio, Roo.form.Checkbox, {
20787     inputType: 'radio',
20788
20789     /**
20790      * If this radio is part of a group, it will return the selected value
20791      * @return {String}
20792      */
20793     getGroupValue : function(){
20794         return this.el.up('form').child('input[name='+this.el.dom.name+']:checked', true).value;
20795     },
20796     
20797     
20798     onRender : function(ct, position){
20799         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
20800         
20801         if(this.inputValue !== undefined){
20802             this.el.dom.value = this.inputValue;
20803         }
20804          
20805         this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
20806         //this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
20807         //var viewEl = this.wrap.createChild({ 
20808         //    tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
20809         //this.viewEl = viewEl;   
20810         //this.wrap.on('click', this.onClick,  this); 
20811         
20812         //this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
20813         //this.el.on('propertychange', this.setFromHidden,  this);  //ie
20814         
20815         
20816         
20817         if(this.boxLabel){
20818             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
20819         //    viewEl.on('click', this.onClick,  this); 
20820         }
20821          if(this.checked){
20822             this.el.dom.checked =   'checked' ;
20823         }
20824          
20825     } 
20826     
20827     
20828 });//<script type="text/javascript">
20829
20830 /*
20831  * Based  Ext JS Library 1.1.1
20832  * Copyright(c) 2006-2007, Ext JS, LLC.
20833  * LGPL
20834  *
20835  */
20836  
20837 /**
20838  * @class Roo.HtmlEditorCore
20839  * @extends Roo.Component
20840  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
20841  *
20842  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
20843  */
20844
20845 Roo.HtmlEditorCore = function(config){
20846     
20847     
20848     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
20849     
20850     
20851     this.addEvents({
20852         /**
20853          * @event initialize
20854          * Fires when the editor is fully initialized (including the iframe)
20855          * @param {Roo.HtmlEditorCore} this
20856          */
20857         initialize: true,
20858         /**
20859          * @event activate
20860          * Fires when the editor is first receives the focus. Any insertion must wait
20861          * until after this event.
20862          * @param {Roo.HtmlEditorCore} this
20863          */
20864         activate: true,
20865          /**
20866          * @event beforesync
20867          * Fires before the textarea is updated with content from the editor iframe. Return false
20868          * to cancel the sync.
20869          * @param {Roo.HtmlEditorCore} this
20870          * @param {String} html
20871          */
20872         beforesync: true,
20873          /**
20874          * @event beforepush
20875          * Fires before the iframe editor is updated with content from the textarea. Return false
20876          * to cancel the push.
20877          * @param {Roo.HtmlEditorCore} this
20878          * @param {String} html
20879          */
20880         beforepush: true,
20881          /**
20882          * @event sync
20883          * Fires when the textarea is updated with content from the editor iframe.
20884          * @param {Roo.HtmlEditorCore} this
20885          * @param {String} html
20886          */
20887         sync: true,
20888          /**
20889          * @event push
20890          * Fires when the iframe editor is updated with content from the textarea.
20891          * @param {Roo.HtmlEditorCore} this
20892          * @param {String} html
20893          */
20894         push: true,
20895         
20896         /**
20897          * @event editorevent
20898          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
20899          * @param {Roo.HtmlEditorCore} this
20900          */
20901         editorevent: true
20902         
20903     });
20904     
20905     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
20906     
20907     // defaults : white / black...
20908     this.applyBlacklists();
20909     
20910     
20911     
20912 };
20913
20914
20915 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
20916
20917
20918      /**
20919      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
20920      */
20921     
20922     owner : false,
20923     
20924      /**
20925      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
20926      *                        Roo.resizable.
20927      */
20928     resizable : false,
20929      /**
20930      * @cfg {Number} height (in pixels)
20931      */   
20932     height: 300,
20933    /**
20934      * @cfg {Number} width (in pixels)
20935      */   
20936     width: 500,
20937     
20938     /**
20939      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
20940      * 
20941      */
20942     stylesheets: false,
20943     
20944     // id of frame..
20945     frameId: false,
20946     
20947     // private properties
20948     validationEvent : false,
20949     deferHeight: true,
20950     initialized : false,
20951     activated : false,
20952     sourceEditMode : false,
20953     onFocus : Roo.emptyFn,
20954     iframePad:3,
20955     hideMode:'offsets',
20956     
20957     clearUp: true,
20958     
20959     // blacklist + whitelisted elements..
20960     black: false,
20961     white: false,
20962      
20963     bodyCls : '',
20964
20965     /**
20966      * Protected method that will not generally be called directly. It
20967      * is called when the editor initializes the iframe with HTML contents. Override this method if you
20968      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
20969      */
20970     getDocMarkup : function(){
20971         // body styles..
20972         var st = '';
20973         
20974         // inherit styels from page...?? 
20975         if (this.stylesheets === false) {
20976             
20977             Roo.get(document.head).select('style').each(function(node) {
20978                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
20979             });
20980             
20981             Roo.get(document.head).select('link').each(function(node) { 
20982                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
20983             });
20984             
20985         } else if (!this.stylesheets.length) {
20986                 // simple..
20987                 st = '<style type="text/css">' +
20988                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
20989                    '</style>';
20990         } else { 
20991             st = '<style type="text/css">' +
20992                     this.stylesheets +
20993                 '</style>';
20994         }
20995         
20996         st +=  '<style type="text/css">' +
20997             'IMG { cursor: pointer } ' +
20998         '</style>';
20999
21000         var cls = 'roo-htmleditor-body';
21001         
21002         if(this.bodyCls.length){
21003             cls += ' ' + this.bodyCls;
21004         }
21005         
21006         return '<html><head>' + st  +
21007             //<style type="text/css">' +
21008             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
21009             //'</style>' +
21010             ' </head><body class="' +  cls + '"></body></html>';
21011     },
21012
21013     // private
21014     onRender : function(ct, position)
21015     {
21016         var _t = this;
21017         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
21018         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
21019         
21020         
21021         this.el.dom.style.border = '0 none';
21022         this.el.dom.setAttribute('tabIndex', -1);
21023         this.el.addClass('x-hidden hide');
21024         
21025         
21026         
21027         if(Roo.isIE){ // fix IE 1px bogus margin
21028             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
21029         }
21030        
21031         
21032         this.frameId = Roo.id();
21033         
21034          
21035         
21036         var iframe = this.owner.wrap.createChild({
21037             tag: 'iframe',
21038             cls: 'form-control', // bootstrap..
21039             id: this.frameId,
21040             name: this.frameId,
21041             frameBorder : 'no',
21042             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
21043         }, this.el
21044         );
21045         
21046         
21047         this.iframe = iframe.dom;
21048
21049          this.assignDocWin();
21050         
21051         this.doc.designMode = 'on';
21052        
21053         this.doc.open();
21054         this.doc.write(this.getDocMarkup());
21055         this.doc.close();
21056
21057         
21058         var task = { // must defer to wait for browser to be ready
21059             run : function(){
21060                 //console.log("run task?" + this.doc.readyState);
21061                 this.assignDocWin();
21062                 if(this.doc.body || this.doc.readyState == 'complete'){
21063                     try {
21064                         this.doc.designMode="on";
21065                     } catch (e) {
21066                         return;
21067                     }
21068                     Roo.TaskMgr.stop(task);
21069                     this.initEditor.defer(10, this);
21070                 }
21071             },
21072             interval : 10,
21073             duration: 10000,
21074             scope: this
21075         };
21076         Roo.TaskMgr.start(task);
21077
21078     },
21079
21080     // private
21081     onResize : function(w, h)
21082     {
21083          Roo.log('resize: ' +w + ',' + h );
21084         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
21085         if(!this.iframe){
21086             return;
21087         }
21088         if(typeof w == 'number'){
21089             
21090             this.iframe.style.width = w + 'px';
21091         }
21092         if(typeof h == 'number'){
21093             
21094             this.iframe.style.height = h + 'px';
21095             if(this.doc){
21096                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
21097             }
21098         }
21099         
21100     },
21101
21102     /**
21103      * Toggles the editor between standard and source edit mode.
21104      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
21105      */
21106     toggleSourceEdit : function(sourceEditMode){
21107         
21108         this.sourceEditMode = sourceEditMode === true;
21109         
21110         if(this.sourceEditMode){
21111  
21112             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
21113             
21114         }else{
21115             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
21116             //this.iframe.className = '';
21117             this.deferFocus();
21118         }
21119         //this.setSize(this.owner.wrap.getSize());
21120         //this.fireEvent('editmodechange', this, this.sourceEditMode);
21121     },
21122
21123     
21124   
21125
21126     /**
21127      * Protected method that will not generally be called directly. If you need/want
21128      * custom HTML cleanup, this is the method you should override.
21129      * @param {String} html The HTML to be cleaned
21130      * return {String} The cleaned HTML
21131      */
21132     cleanHtml : function(html){
21133         html = String(html);
21134         if(html.length > 5){
21135             if(Roo.isSafari){ // strip safari nonsense
21136                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
21137             }
21138         }
21139         if(html == '&nbsp;'){
21140             html = '';
21141         }
21142         return html;
21143     },
21144
21145     /**
21146      * HTML Editor -> Textarea
21147      * Protected method that will not generally be called directly. Syncs the contents
21148      * of the editor iframe with the textarea.
21149      */
21150     syncValue : function(){
21151         if(this.initialized){
21152             var bd = (this.doc.body || this.doc.documentElement);
21153             //this.cleanUpPaste(); -- this is done else where and causes havoc..
21154             var html = bd.innerHTML;
21155             if(Roo.isSafari){
21156                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
21157                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
21158                 if(m && m[1]){
21159                     html = '<div style="'+m[0]+'">' + html + '</div>';
21160                 }
21161             }
21162             html = this.cleanHtml(html);
21163             // fix up the special chars.. normaly like back quotes in word...
21164             // however we do not want to do this with chinese..
21165             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
21166                 
21167                 var cc = match.charCodeAt();
21168
21169                 // Get the character value, handling surrogate pairs
21170                 if (match.length == 2) {
21171                     // It's a surrogate pair, calculate the Unicode code point
21172                     var high = match.charCodeAt(0) - 0xD800;
21173                     var low  = match.charCodeAt(1) - 0xDC00;
21174                     cc = (high * 0x400) + low + 0x10000;
21175                 }  else if (
21176                     (cc >= 0x4E00 && cc < 0xA000 ) ||
21177                     (cc >= 0x3400 && cc < 0x4E00 ) ||
21178                     (cc >= 0xf900 && cc < 0xfb00 )
21179                 ) {
21180                         return match;
21181                 }  
21182          
21183                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
21184                 return "&#" + cc + ";";
21185                 
21186                 
21187             });
21188             
21189             
21190              
21191             if(this.owner.fireEvent('beforesync', this, html) !== false){
21192                 this.el.dom.value = html;
21193                 this.owner.fireEvent('sync', this, html);
21194             }
21195         }
21196     },
21197
21198     /**
21199      * Protected method that will not generally be called directly. Pushes the value of the textarea
21200      * into the iframe editor.
21201      */
21202     pushValue : function(){
21203         if(this.initialized){
21204             var v = this.el.dom.value.trim();
21205             
21206 //            if(v.length < 1){
21207 //                v = '&#160;';
21208 //            }
21209             
21210             if(this.owner.fireEvent('beforepush', this, v) !== false){
21211                 var d = (this.doc.body || this.doc.documentElement);
21212                 d.innerHTML = v;
21213                 this.cleanUpPaste();
21214                 this.el.dom.value = d.innerHTML;
21215                 this.owner.fireEvent('push', this, v);
21216             }
21217         }
21218     },
21219
21220     // private
21221     deferFocus : function(){
21222         this.focus.defer(10, this);
21223     },
21224
21225     // doc'ed in Field
21226     focus : function(){
21227         if(this.win && !this.sourceEditMode){
21228             this.win.focus();
21229         }else{
21230             this.el.focus();
21231         }
21232     },
21233     
21234     assignDocWin: function()
21235     {
21236         var iframe = this.iframe;
21237         
21238          if(Roo.isIE){
21239             this.doc = iframe.contentWindow.document;
21240             this.win = iframe.contentWindow;
21241         } else {
21242 //            if (!Roo.get(this.frameId)) {
21243 //                return;
21244 //            }
21245 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
21246 //            this.win = Roo.get(this.frameId).dom.contentWindow;
21247             
21248             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
21249                 return;
21250             }
21251             
21252             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
21253             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
21254         }
21255     },
21256     
21257     // private
21258     initEditor : function(){
21259         //console.log("INIT EDITOR");
21260         this.assignDocWin();
21261         
21262         
21263         
21264         this.doc.designMode="on";
21265         this.doc.open();
21266         this.doc.write(this.getDocMarkup());
21267         this.doc.close();
21268         
21269         var dbody = (this.doc.body || this.doc.documentElement);
21270         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
21271         // this copies styles from the containing element into thsi one..
21272         // not sure why we need all of this..
21273         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
21274         
21275         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
21276         //ss['background-attachment'] = 'fixed'; // w3c
21277         dbody.bgProperties = 'fixed'; // ie
21278         //Roo.DomHelper.applyStyles(dbody, ss);
21279         Roo.EventManager.on(this.doc, {
21280             //'mousedown': this.onEditorEvent,
21281             'mouseup': this.onEditorEvent,
21282             'dblclick': this.onEditorEvent,
21283             'click': this.onEditorEvent,
21284             'keyup': this.onEditorEvent,
21285             buffer:100,
21286             scope: this
21287         });
21288         if(Roo.isGecko){
21289             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
21290         }
21291         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
21292             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
21293         }
21294         this.initialized = true;
21295
21296         this.owner.fireEvent('initialize', this);
21297         this.pushValue();
21298     },
21299
21300     // private
21301     onDestroy : function(){
21302         
21303         
21304         
21305         if(this.rendered){
21306             
21307             //for (var i =0; i < this.toolbars.length;i++) {
21308             //    // fixme - ask toolbars for heights?
21309             //    this.toolbars[i].onDestroy();
21310            // }
21311             
21312             //this.wrap.dom.innerHTML = '';
21313             //this.wrap.remove();
21314         }
21315     },
21316
21317     // private
21318     onFirstFocus : function(){
21319         
21320         this.assignDocWin();
21321         
21322         
21323         this.activated = true;
21324          
21325     
21326         if(Roo.isGecko){ // prevent silly gecko errors
21327             this.win.focus();
21328             var s = this.win.getSelection();
21329             if(!s.focusNode || s.focusNode.nodeType != 3){
21330                 var r = s.getRangeAt(0);
21331                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
21332                 r.collapse(true);
21333                 this.deferFocus();
21334             }
21335             try{
21336                 this.execCmd('useCSS', true);
21337                 this.execCmd('styleWithCSS', false);
21338             }catch(e){}
21339         }
21340         this.owner.fireEvent('activate', this);
21341     },
21342
21343     // private
21344     adjustFont: function(btn){
21345         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
21346         //if(Roo.isSafari){ // safari
21347         //    adjust *= 2;
21348        // }
21349         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
21350         if(Roo.isSafari){ // safari
21351             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
21352             v =  (v < 10) ? 10 : v;
21353             v =  (v > 48) ? 48 : v;
21354             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
21355             
21356         }
21357         
21358         
21359         v = Math.max(1, v+adjust);
21360         
21361         this.execCmd('FontSize', v  );
21362     },
21363
21364     onEditorEvent : function(e)
21365     {
21366         this.owner.fireEvent('editorevent', this, e);
21367       //  this.updateToolbar();
21368         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
21369     },
21370
21371     insertTag : function(tg)
21372     {
21373         // could be a bit smarter... -> wrap the current selected tRoo..
21374         if (tg.toLowerCase() == 'span' ||
21375             tg.toLowerCase() == 'code' ||
21376             tg.toLowerCase() == 'sup' ||
21377             tg.toLowerCase() == 'sub' 
21378             ) {
21379             
21380             range = this.createRange(this.getSelection());
21381             var wrappingNode = this.doc.createElement(tg.toLowerCase());
21382             wrappingNode.appendChild(range.extractContents());
21383             range.insertNode(wrappingNode);
21384
21385             return;
21386             
21387             
21388             
21389         }
21390         this.execCmd("formatblock",   tg);
21391         
21392     },
21393     
21394     insertText : function(txt)
21395     {
21396         
21397         
21398         var range = this.createRange();
21399         range.deleteContents();
21400                //alert(Sender.getAttribute('label'));
21401                
21402         range.insertNode(this.doc.createTextNode(txt));
21403     } ,
21404     
21405      
21406
21407     /**
21408      * Executes a Midas editor command on the editor document and performs necessary focus and
21409      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
21410      * @param {String} cmd The Midas command
21411      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
21412      */
21413     relayCmd : function(cmd, value){
21414         this.win.focus();
21415         this.execCmd(cmd, value);
21416         this.owner.fireEvent('editorevent', this);
21417         //this.updateToolbar();
21418         this.owner.deferFocus();
21419     },
21420
21421     /**
21422      * Executes a Midas editor command directly on the editor document.
21423      * For visual commands, you should use {@link #relayCmd} instead.
21424      * <b>This should only be called after the editor is initialized.</b>
21425      * @param {String} cmd The Midas command
21426      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
21427      */
21428     execCmd : function(cmd, value){
21429         this.doc.execCommand(cmd, false, value === undefined ? null : value);
21430         this.syncValue();
21431     },
21432  
21433  
21434    
21435     /**
21436      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
21437      * to insert tRoo.
21438      * @param {String} text | dom node.. 
21439      */
21440     insertAtCursor : function(text)
21441     {
21442         
21443         if(!this.activated){
21444             return;
21445         }
21446         /*
21447         if(Roo.isIE){
21448             this.win.focus();
21449             var r = this.doc.selection.createRange();
21450             if(r){
21451                 r.collapse(true);
21452                 r.pasteHTML(text);
21453                 this.syncValue();
21454                 this.deferFocus();
21455             
21456             }
21457             return;
21458         }
21459         */
21460         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
21461             this.win.focus();
21462             
21463             
21464             // from jquery ui (MIT licenced)
21465             var range, node;
21466             var win = this.win;
21467             
21468             if (win.getSelection && win.getSelection().getRangeAt) {
21469                 range = win.getSelection().getRangeAt(0);
21470                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
21471                 range.insertNode(node);
21472             } else if (win.document.selection && win.document.selection.createRange) {
21473                 // no firefox support
21474                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
21475                 win.document.selection.createRange().pasteHTML(txt);
21476             } else {
21477                 // no firefox support
21478                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
21479                 this.execCmd('InsertHTML', txt);
21480             } 
21481             
21482             this.syncValue();
21483             
21484             this.deferFocus();
21485         }
21486     },
21487  // private
21488     mozKeyPress : function(e){
21489         if(e.ctrlKey){
21490             var c = e.getCharCode(), cmd;
21491           
21492             if(c > 0){
21493                 c = String.fromCharCode(c).toLowerCase();
21494                 switch(c){
21495                     case 'b':
21496                         cmd = 'bold';
21497                         break;
21498                     case 'i':
21499                         cmd = 'italic';
21500                         break;
21501                     
21502                     case 'u':
21503                         cmd = 'underline';
21504                         break;
21505                     
21506                     case 'v':
21507                         this.cleanUpPaste.defer(100, this);
21508                         return;
21509                         
21510                 }
21511                 if(cmd){
21512                     this.win.focus();
21513                     this.execCmd(cmd);
21514                     this.deferFocus();
21515                     e.preventDefault();
21516                 }
21517                 
21518             }
21519         }
21520     },
21521
21522     // private
21523     fixKeys : function(){ // load time branching for fastest keydown performance
21524         if(Roo.isIE){
21525             return function(e){
21526                 var k = e.getKey(), r;
21527                 if(k == e.TAB){
21528                     e.stopEvent();
21529                     r = this.doc.selection.createRange();
21530                     if(r){
21531                         r.collapse(true);
21532                         r.pasteHTML('&#160;&#160;&#160;&#160;');
21533                         this.deferFocus();
21534                     }
21535                     return;
21536                 }
21537                 
21538                 if(k == e.ENTER){
21539                     r = this.doc.selection.createRange();
21540                     if(r){
21541                         var target = r.parentElement();
21542                         if(!target || target.tagName.toLowerCase() != 'li'){
21543                             e.stopEvent();
21544                             r.pasteHTML('<br />');
21545                             r.collapse(false);
21546                             r.select();
21547                         }
21548                     }
21549                 }
21550                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
21551                     this.cleanUpPaste.defer(100, this);
21552                     return;
21553                 }
21554                 
21555                 
21556             };
21557         }else if(Roo.isOpera){
21558             return function(e){
21559                 var k = e.getKey();
21560                 if(k == e.TAB){
21561                     e.stopEvent();
21562                     this.win.focus();
21563                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
21564                     this.deferFocus();
21565                 }
21566                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
21567                     this.cleanUpPaste.defer(100, this);
21568                     return;
21569                 }
21570                 
21571             };
21572         }else if(Roo.isSafari){
21573             return function(e){
21574                 var k = e.getKey();
21575                 
21576                 if(k == e.TAB){
21577                     e.stopEvent();
21578                     this.execCmd('InsertText','\t');
21579                     this.deferFocus();
21580                     return;
21581                 }
21582                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
21583                     this.cleanUpPaste.defer(100, this);
21584                     return;
21585                 }
21586                 
21587              };
21588         }
21589     }(),
21590     
21591     getAllAncestors: function()
21592     {
21593         var p = this.getSelectedNode();
21594         var a = [];
21595         if (!p) {
21596             a.push(p); // push blank onto stack..
21597             p = this.getParentElement();
21598         }
21599         
21600         
21601         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
21602             a.push(p);
21603             p = p.parentNode;
21604         }
21605         a.push(this.doc.body);
21606         return a;
21607     },
21608     lastSel : false,
21609     lastSelNode : false,
21610     
21611     
21612     getSelection : function() 
21613     {
21614         this.assignDocWin();
21615         return Roo.isIE ? this.doc.selection : this.win.getSelection();
21616     },
21617     
21618     getSelectedNode: function() 
21619     {
21620         // this may only work on Gecko!!!
21621         
21622         // should we cache this!!!!
21623         
21624         
21625         
21626          
21627         var range = this.createRange(this.getSelection()).cloneRange();
21628         
21629         if (Roo.isIE) {
21630             var parent = range.parentElement();
21631             while (true) {
21632                 var testRange = range.duplicate();
21633                 testRange.moveToElementText(parent);
21634                 if (testRange.inRange(range)) {
21635                     break;
21636                 }
21637                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
21638                     break;
21639                 }
21640                 parent = parent.parentElement;
21641             }
21642             return parent;
21643         }
21644         
21645         // is ancestor a text element.
21646         var ac =  range.commonAncestorContainer;
21647         if (ac.nodeType == 3) {
21648             ac = ac.parentNode;
21649         }
21650         
21651         var ar = ac.childNodes;
21652          
21653         var nodes = [];
21654         var other_nodes = [];
21655         var has_other_nodes = false;
21656         for (var i=0;i<ar.length;i++) {
21657             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
21658                 continue;
21659             }
21660             // fullly contained node.
21661             
21662             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
21663                 nodes.push(ar[i]);
21664                 continue;
21665             }
21666             
21667             // probably selected..
21668             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
21669                 other_nodes.push(ar[i]);
21670                 continue;
21671             }
21672             // outer..
21673             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
21674                 continue;
21675             }
21676             
21677             
21678             has_other_nodes = true;
21679         }
21680         if (!nodes.length && other_nodes.length) {
21681             nodes= other_nodes;
21682         }
21683         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
21684             return false;
21685         }
21686         
21687         return nodes[0];
21688     },
21689     createRange: function(sel)
21690     {
21691         // this has strange effects when using with 
21692         // top toolbar - not sure if it's a great idea.
21693         //this.editor.contentWindow.focus();
21694         if (typeof sel != "undefined") {
21695             try {
21696                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
21697             } catch(e) {
21698                 return this.doc.createRange();
21699             }
21700         } else {
21701             return this.doc.createRange();
21702         }
21703     },
21704     getParentElement: function()
21705     {
21706         
21707         this.assignDocWin();
21708         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
21709         
21710         var range = this.createRange(sel);
21711          
21712         try {
21713             var p = range.commonAncestorContainer;
21714             while (p.nodeType == 3) { // text node
21715                 p = p.parentNode;
21716             }
21717             return p;
21718         } catch (e) {
21719             return null;
21720         }
21721     
21722     },
21723     /***
21724      *
21725      * Range intersection.. the hard stuff...
21726      *  '-1' = before
21727      *  '0' = hits..
21728      *  '1' = after.
21729      *         [ -- selected range --- ]
21730      *   [fail]                        [fail]
21731      *
21732      *    basically..
21733      *      if end is before start or  hits it. fail.
21734      *      if start is after end or hits it fail.
21735      *
21736      *   if either hits (but other is outside. - then it's not 
21737      *   
21738      *    
21739      **/
21740     
21741     
21742     // @see http://www.thismuchiknow.co.uk/?p=64.
21743     rangeIntersectsNode : function(range, node)
21744     {
21745         var nodeRange = node.ownerDocument.createRange();
21746         try {
21747             nodeRange.selectNode(node);
21748         } catch (e) {
21749             nodeRange.selectNodeContents(node);
21750         }
21751     
21752         var rangeStartRange = range.cloneRange();
21753         rangeStartRange.collapse(true);
21754     
21755         var rangeEndRange = range.cloneRange();
21756         rangeEndRange.collapse(false);
21757     
21758         var nodeStartRange = nodeRange.cloneRange();
21759         nodeStartRange.collapse(true);
21760     
21761         var nodeEndRange = nodeRange.cloneRange();
21762         nodeEndRange.collapse(false);
21763     
21764         return rangeStartRange.compareBoundaryPoints(
21765                  Range.START_TO_START, nodeEndRange) == -1 &&
21766                rangeEndRange.compareBoundaryPoints(
21767                  Range.START_TO_START, nodeStartRange) == 1;
21768         
21769          
21770     },
21771     rangeCompareNode : function(range, node)
21772     {
21773         var nodeRange = node.ownerDocument.createRange();
21774         try {
21775             nodeRange.selectNode(node);
21776         } catch (e) {
21777             nodeRange.selectNodeContents(node);
21778         }
21779         
21780         
21781         range.collapse(true);
21782     
21783         nodeRange.collapse(true);
21784      
21785         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
21786         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
21787          
21788         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
21789         
21790         var nodeIsBefore   =  ss == 1;
21791         var nodeIsAfter    = ee == -1;
21792         
21793         if (nodeIsBefore && nodeIsAfter) {
21794             return 0; // outer
21795         }
21796         if (!nodeIsBefore && nodeIsAfter) {
21797             return 1; //right trailed.
21798         }
21799         
21800         if (nodeIsBefore && !nodeIsAfter) {
21801             return 2;  // left trailed.
21802         }
21803         // fully contined.
21804         return 3;
21805     },
21806
21807     // private? - in a new class?
21808     cleanUpPaste :  function()
21809     {
21810         // cleans up the whole document..
21811         Roo.log('cleanuppaste');
21812         
21813         this.cleanUpChildren(this.doc.body);
21814         var clean = this.cleanWordChars(this.doc.body.innerHTML);
21815         if (clean != this.doc.body.innerHTML) {
21816             this.doc.body.innerHTML = clean;
21817         }
21818         
21819     },
21820     
21821     cleanWordChars : function(input) {// change the chars to hex code
21822         var he = Roo.HtmlEditorCore;
21823         
21824         var output = input;
21825         Roo.each(he.swapCodes, function(sw) { 
21826             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
21827             
21828             output = output.replace(swapper, sw[1]);
21829         });
21830         
21831         return output;
21832     },
21833     
21834     
21835     cleanUpChildren : function (n)
21836     {
21837         if (!n.childNodes.length) {
21838             return;
21839         }
21840         for (var i = n.childNodes.length-1; i > -1 ; i--) {
21841            this.cleanUpChild(n.childNodes[i]);
21842         }
21843     },
21844     
21845     
21846         
21847     
21848     cleanUpChild : function (node)
21849     {
21850         var ed = this;
21851         //console.log(node);
21852         if (node.nodeName == "#text") {
21853             // clean up silly Windows -- stuff?
21854             return; 
21855         }
21856         if (node.nodeName == "#comment") {
21857             node.parentNode.removeChild(node);
21858             // clean up silly Windows -- stuff?
21859             return; 
21860         }
21861         var lcname = node.tagName.toLowerCase();
21862         // we ignore whitelists... ?? = not really the way to go, but we probably have not got a full
21863         // whitelist of tags..
21864         
21865         if (this.black.indexOf(lcname) > -1 && this.clearUp ) {
21866             // remove node.
21867             node.parentNode.removeChild(node);
21868             return;
21869             
21870         }
21871         
21872         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
21873         
21874         // spans with no attributes - just remove them..
21875         if ((!node.attributes || !node.attributes.length) && lcname == 'span') { 
21876             remove_keep_children = true;
21877         }
21878         
21879         // remove <a name=....> as rendering on yahoo mailer is borked with this.
21880         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
21881         
21882         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
21883         //    remove_keep_children = true;
21884         //}
21885         
21886         if (remove_keep_children) {
21887             this.cleanUpChildren(node);
21888             // inserts everything just before this node...
21889             while (node.childNodes.length) {
21890                 var cn = node.childNodes[0];
21891                 node.removeChild(cn);
21892                 node.parentNode.insertBefore(cn, node);
21893             }
21894             node.parentNode.removeChild(node);
21895             return;
21896         }
21897         
21898         if (!node.attributes || !node.attributes.length) {
21899             
21900           
21901             
21902             
21903             this.cleanUpChildren(node);
21904             return;
21905         }
21906         
21907         function cleanAttr(n,v)
21908         {
21909             
21910             if (v.match(/^\./) || v.match(/^\//)) {
21911                 return;
21912             }
21913             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/) || v.match(/^ftp:/)) {
21914                 return;
21915             }
21916             if (v.match(/^#/)) {
21917                 return;
21918             }
21919 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
21920             node.removeAttribute(n);
21921             
21922         }
21923         
21924         var cwhite = this.cwhite;
21925         var cblack = this.cblack;
21926             
21927         function cleanStyle(n,v)
21928         {
21929             if (v.match(/expression/)) { //XSS?? should we even bother..
21930                 node.removeAttribute(n);
21931                 return;
21932             }
21933             
21934             var parts = v.split(/;/);
21935             var clean = [];
21936             
21937             Roo.each(parts, function(p) {
21938                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
21939                 if (!p.length) {
21940                     return true;
21941                 }
21942                 var l = p.split(':').shift().replace(/\s+/g,'');
21943                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
21944                 
21945                 if ( cwhite.length && cblack.indexOf(l) > -1) {
21946 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
21947                     //node.removeAttribute(n);
21948                     return true;
21949                 }
21950                 //Roo.log()
21951                 // only allow 'c whitelisted system attributes'
21952                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
21953 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
21954                     //node.removeAttribute(n);
21955                     return true;
21956                 }
21957                 
21958                 
21959                  
21960                 
21961                 clean.push(p);
21962                 return true;
21963             });
21964             if (clean.length) { 
21965                 node.setAttribute(n, clean.join(';'));
21966             } else {
21967                 node.removeAttribute(n);
21968             }
21969             
21970         }
21971         
21972         
21973         for (var i = node.attributes.length-1; i > -1 ; i--) {
21974             var a = node.attributes[i];
21975             //console.log(a);
21976             
21977             if (a.name.toLowerCase().substr(0,2)=='on')  {
21978                 node.removeAttribute(a.name);
21979                 continue;
21980             }
21981             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
21982                 node.removeAttribute(a.name);
21983                 continue;
21984             }
21985             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
21986                 cleanAttr(a.name,a.value); // fixme..
21987                 continue;
21988             }
21989             if (a.name == 'style') {
21990                 cleanStyle(a.name,a.value);
21991                 continue;
21992             }
21993             /// clean up MS crap..
21994             // tecnically this should be a list of valid class'es..
21995             
21996             
21997             if (a.name == 'class') {
21998                 if (a.value.match(/^Mso/)) {
21999                     node.removeAttribute('class');
22000                 }
22001                 
22002                 if (a.value.match(/^body$/)) {
22003                     node.removeAttribute('class');
22004                 }
22005                 continue;
22006             }
22007             
22008             // style cleanup!?
22009             // class cleanup?
22010             
22011         }
22012         
22013         
22014         this.cleanUpChildren(node);
22015         
22016         
22017     },
22018     
22019     /**
22020      * Clean up MS wordisms...
22021      */
22022     cleanWord : function(node)
22023     {
22024         if (!node) {
22025             this.cleanWord(this.doc.body);
22026             return;
22027         }
22028         
22029         if(
22030                 node.nodeName == 'SPAN' &&
22031                 !node.hasAttributes() &&
22032                 node.childNodes.length == 1 &&
22033                 node.firstChild.nodeName == "#text"  
22034         ) {
22035             var textNode = node.firstChild;
22036             node.removeChild(textNode);
22037             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
22038                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
22039             }
22040             node.parentNode.insertBefore(textNode, node);
22041             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
22042                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
22043             }
22044             node.parentNode.removeChild(node);
22045         }
22046         
22047         if (node.nodeName == "#text") {
22048             // clean up silly Windows -- stuff?
22049             return; 
22050         }
22051         if (node.nodeName == "#comment") {
22052             node.parentNode.removeChild(node);
22053             // clean up silly Windows -- stuff?
22054             return; 
22055         }
22056         
22057         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
22058             node.parentNode.removeChild(node);
22059             return;
22060         }
22061         //Roo.log(node.tagName);
22062         // remove - but keep children..
22063         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
22064             //Roo.log('-- removed');
22065             while (node.childNodes.length) {
22066                 var cn = node.childNodes[0];
22067                 node.removeChild(cn);
22068                 node.parentNode.insertBefore(cn, node);
22069                 // move node to parent - and clean it..
22070                 this.cleanWord(cn);
22071             }
22072             node.parentNode.removeChild(node);
22073             /// no need to iterate chidlren = it's got none..
22074             //this.iterateChildren(node, this.cleanWord);
22075             return;
22076         }
22077         // clean styles
22078         if (node.className.length) {
22079             
22080             var cn = node.className.split(/\W+/);
22081             var cna = [];
22082             Roo.each(cn, function(cls) {
22083                 if (cls.match(/Mso[a-zA-Z]+/)) {
22084                     return;
22085                 }
22086                 cna.push(cls);
22087             });
22088             node.className = cna.length ? cna.join(' ') : '';
22089             if (!cna.length) {
22090                 node.removeAttribute("class");
22091             }
22092         }
22093         
22094         if (node.hasAttribute("lang")) {
22095             node.removeAttribute("lang");
22096         }
22097         
22098         if (node.hasAttribute("style")) {
22099             
22100             var styles = node.getAttribute("style").split(";");
22101             var nstyle = [];
22102             Roo.each(styles, function(s) {
22103                 if (!s.match(/:/)) {
22104                     return;
22105                 }
22106                 var kv = s.split(":");
22107                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
22108                     return;
22109                 }
22110                 // what ever is left... we allow.
22111                 nstyle.push(s);
22112             });
22113             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
22114             if (!nstyle.length) {
22115                 node.removeAttribute('style');
22116             }
22117         }
22118         this.iterateChildren(node, this.cleanWord);
22119         
22120         
22121         
22122     },
22123     /**
22124      * iterateChildren of a Node, calling fn each time, using this as the scole..
22125      * @param {DomNode} node node to iterate children of.
22126      * @param {Function} fn method of this class to call on each item.
22127      */
22128     iterateChildren : function(node, fn)
22129     {
22130         if (!node.childNodes.length) {
22131                 return;
22132         }
22133         for (var i = node.childNodes.length-1; i > -1 ; i--) {
22134            fn.call(this, node.childNodes[i])
22135         }
22136     },
22137     
22138     
22139     /**
22140      * cleanTableWidths.
22141      *
22142      * Quite often pasting from word etc.. results in tables with column and widths.
22143      * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
22144      *
22145      */
22146     cleanTableWidths : function(node)
22147     {
22148          
22149          
22150         if (!node) {
22151             this.cleanTableWidths(this.doc.body);
22152             return;
22153         }
22154         
22155         // ignore list...
22156         if (node.nodeName == "#text" || node.nodeName == "#comment") {
22157             return; 
22158         }
22159         Roo.log(node.tagName);
22160         if (!node.tagName.toLowerCase().match(/^(table|td|tr)$/)) {
22161             this.iterateChildren(node, this.cleanTableWidths);
22162             return;
22163         }
22164         if (node.hasAttribute('width')) {
22165             node.removeAttribute('width');
22166         }
22167         
22168          
22169         if (node.hasAttribute("style")) {
22170             // pretty basic...
22171             
22172             var styles = node.getAttribute("style").split(";");
22173             var nstyle = [];
22174             Roo.each(styles, function(s) {
22175                 if (!s.match(/:/)) {
22176                     return;
22177                 }
22178                 var kv = s.split(":");
22179                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
22180                     return;
22181                 }
22182                 // what ever is left... we allow.
22183                 nstyle.push(s);
22184             });
22185             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
22186             if (!nstyle.length) {
22187                 node.removeAttribute('style');
22188             }
22189         }
22190         
22191         this.iterateChildren(node, this.cleanTableWidths);
22192         
22193         
22194     },
22195     
22196     
22197     
22198     
22199     domToHTML : function(currentElement, depth, nopadtext) {
22200         
22201         depth = depth || 0;
22202         nopadtext = nopadtext || false;
22203     
22204         if (!currentElement) {
22205             return this.domToHTML(this.doc.body);
22206         }
22207         
22208         //Roo.log(currentElement);
22209         var j;
22210         var allText = false;
22211         var nodeName = currentElement.nodeName;
22212         var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
22213         
22214         if  (nodeName == '#text') {
22215             
22216             return nopadtext ? currentElement.nodeValue : currentElement.nodeValue.trim();
22217         }
22218         
22219         
22220         var ret = '';
22221         if (nodeName != 'BODY') {
22222              
22223             var i = 0;
22224             // Prints the node tagName, such as <A>, <IMG>, etc
22225             if (tagName) {
22226                 var attr = [];
22227                 for(i = 0; i < currentElement.attributes.length;i++) {
22228                     // quoting?
22229                     var aname = currentElement.attributes.item(i).name;
22230                     if (!currentElement.attributes.item(i).value.length) {
22231                         continue;
22232                     }
22233                     attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
22234                 }
22235                 
22236                 ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
22237             } 
22238             else {
22239                 
22240                 // eack
22241             }
22242         } else {
22243             tagName = false;
22244         }
22245         if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
22246             return ret;
22247         }
22248         if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
22249             nopadtext = true;
22250         }
22251         
22252         
22253         // Traverse the tree
22254         i = 0;
22255         var currentElementChild = currentElement.childNodes.item(i);
22256         var allText = true;
22257         var innerHTML  = '';
22258         lastnode = '';
22259         while (currentElementChild) {
22260             // Formatting code (indent the tree so it looks nice on the screen)
22261             var nopad = nopadtext;
22262             if (lastnode == 'SPAN') {
22263                 nopad  = true;
22264             }
22265             // text
22266             if  (currentElementChild.nodeName == '#text') {
22267                 var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
22268                 toadd = nopadtext ? toadd : toadd.trim();
22269                 if (!nopad && toadd.length > 80) {
22270                     innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
22271                 }
22272                 innerHTML  += toadd;
22273                 
22274                 i++;
22275                 currentElementChild = currentElement.childNodes.item(i);
22276                 lastNode = '';
22277                 continue;
22278             }
22279             allText = false;
22280             
22281             innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
22282                 
22283             // Recursively traverse the tree structure of the child node
22284             innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
22285             lastnode = currentElementChild.nodeName;
22286             i++;
22287             currentElementChild=currentElement.childNodes.item(i);
22288         }
22289         
22290         ret += innerHTML;
22291         
22292         if (!allText) {
22293                 // The remaining code is mostly for formatting the tree
22294             ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
22295         }
22296         
22297         
22298         if (tagName) {
22299             ret+= "</"+tagName+">";
22300         }
22301         return ret;
22302         
22303     },
22304         
22305     applyBlacklists : function()
22306     {
22307         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
22308         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
22309         
22310         this.white = [];
22311         this.black = [];
22312         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
22313             if (b.indexOf(tag) > -1) {
22314                 return;
22315             }
22316             this.white.push(tag);
22317             
22318         }, this);
22319         
22320         Roo.each(w, function(tag) {
22321             if (b.indexOf(tag) > -1) {
22322                 return;
22323             }
22324             if (this.white.indexOf(tag) > -1) {
22325                 return;
22326             }
22327             this.white.push(tag);
22328             
22329         }, this);
22330         
22331         
22332         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
22333             if (w.indexOf(tag) > -1) {
22334                 return;
22335             }
22336             this.black.push(tag);
22337             
22338         }, this);
22339         
22340         Roo.each(b, function(tag) {
22341             if (w.indexOf(tag) > -1) {
22342                 return;
22343             }
22344             if (this.black.indexOf(tag) > -1) {
22345                 return;
22346             }
22347             this.black.push(tag);
22348             
22349         }, this);
22350         
22351         
22352         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
22353         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
22354         
22355         this.cwhite = [];
22356         this.cblack = [];
22357         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
22358             if (b.indexOf(tag) > -1) {
22359                 return;
22360             }
22361             this.cwhite.push(tag);
22362             
22363         }, this);
22364         
22365         Roo.each(w, function(tag) {
22366             if (b.indexOf(tag) > -1) {
22367                 return;
22368             }
22369             if (this.cwhite.indexOf(tag) > -1) {
22370                 return;
22371             }
22372             this.cwhite.push(tag);
22373             
22374         }, this);
22375         
22376         
22377         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
22378             if (w.indexOf(tag) > -1) {
22379                 return;
22380             }
22381             this.cblack.push(tag);
22382             
22383         }, this);
22384         
22385         Roo.each(b, function(tag) {
22386             if (w.indexOf(tag) > -1) {
22387                 return;
22388             }
22389             if (this.cblack.indexOf(tag) > -1) {
22390                 return;
22391             }
22392             this.cblack.push(tag);
22393             
22394         }, this);
22395     },
22396     
22397     setStylesheets : function(stylesheets)
22398     {
22399         if(typeof(stylesheets) == 'string'){
22400             Roo.get(this.iframe.contentDocument.head).createChild({
22401                 tag : 'link',
22402                 rel : 'stylesheet',
22403                 type : 'text/css',
22404                 href : stylesheets
22405             });
22406             
22407             return;
22408         }
22409         var _this = this;
22410      
22411         Roo.each(stylesheets, function(s) {
22412             if(!s.length){
22413                 return;
22414             }
22415             
22416             Roo.get(_this.iframe.contentDocument.head).createChild({
22417                 tag : 'link',
22418                 rel : 'stylesheet',
22419                 type : 'text/css',
22420                 href : s
22421             });
22422         });
22423
22424         
22425     },
22426     
22427     removeStylesheets : function()
22428     {
22429         var _this = this;
22430         
22431         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
22432             s.remove();
22433         });
22434     },
22435     
22436     setStyle : function(style)
22437     {
22438         Roo.get(this.iframe.contentDocument.head).createChild({
22439             tag : 'style',
22440             type : 'text/css',
22441             html : style
22442         });
22443
22444         return;
22445     }
22446     
22447     // hide stuff that is not compatible
22448     /**
22449      * @event blur
22450      * @hide
22451      */
22452     /**
22453      * @event change
22454      * @hide
22455      */
22456     /**
22457      * @event focus
22458      * @hide
22459      */
22460     /**
22461      * @event specialkey
22462      * @hide
22463      */
22464     /**
22465      * @cfg {String} fieldClass @hide
22466      */
22467     /**
22468      * @cfg {String} focusClass @hide
22469      */
22470     /**
22471      * @cfg {String} autoCreate @hide
22472      */
22473     /**
22474      * @cfg {String} inputType @hide
22475      */
22476     /**
22477      * @cfg {String} invalidClass @hide
22478      */
22479     /**
22480      * @cfg {String} invalidText @hide
22481      */
22482     /**
22483      * @cfg {String} msgFx @hide
22484      */
22485     /**
22486      * @cfg {String} validateOnBlur @hide
22487      */
22488 });
22489
22490 Roo.HtmlEditorCore.white = [
22491         'area', 'br', 'img', 'input', 'hr', 'wbr',
22492         
22493        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
22494        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
22495        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
22496        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
22497        'table',   'ul',         'xmp', 
22498        
22499        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
22500       'thead',   'tr', 
22501      
22502       'dir', 'menu', 'ol', 'ul', 'dl',
22503        
22504       'embed',  'object'
22505 ];
22506
22507
22508 Roo.HtmlEditorCore.black = [
22509     //    'embed',  'object', // enable - backend responsiblity to clean thiese
22510         'applet', // 
22511         'base',   'basefont', 'bgsound', 'blink',  'body', 
22512         'frame',  'frameset', 'head',    'html',   'ilayer', 
22513         'iframe', 'layer',  'link',     'meta',    'object',   
22514         'script', 'style' ,'title',  'xml' // clean later..
22515 ];
22516 Roo.HtmlEditorCore.clean = [
22517     'script', 'style', 'title', 'xml'
22518 ];
22519 Roo.HtmlEditorCore.remove = [
22520     'font'
22521 ];
22522 // attributes..
22523
22524 Roo.HtmlEditorCore.ablack = [
22525     'on'
22526 ];
22527     
22528 Roo.HtmlEditorCore.aclean = [ 
22529     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
22530 ];
22531
22532 // protocols..
22533 Roo.HtmlEditorCore.pwhite= [
22534         'http',  'https',  'mailto'
22535 ];
22536
22537 // white listed style attributes.
22538 Roo.HtmlEditorCore.cwhite= [
22539       //  'text-align', /// default is to allow most things..
22540       
22541          
22542 //        'font-size'//??
22543 ];
22544
22545 // black listed style attributes.
22546 Roo.HtmlEditorCore.cblack= [
22547       //  'font-size' -- this can be set by the project 
22548 ];
22549
22550
22551 Roo.HtmlEditorCore.swapCodes   =[ 
22552     [    8211, "--" ], 
22553     [    8212, "--" ], 
22554     [    8216,  "'" ],  
22555     [    8217, "'" ],  
22556     [    8220, '"' ],  
22557     [    8221, '"' ],  
22558     [    8226, "*" ],  
22559     [    8230, "..." ]
22560 ]; 
22561
22562     //<script type="text/javascript">
22563
22564 /*
22565  * Ext JS Library 1.1.1
22566  * Copyright(c) 2006-2007, Ext JS, LLC.
22567  * Licence LGPL
22568  * 
22569  */
22570  
22571  
22572 Roo.form.HtmlEditor = function(config){
22573     
22574     
22575     
22576     Roo.form.HtmlEditor.superclass.constructor.call(this, config);
22577     
22578     if (!this.toolbars) {
22579         this.toolbars = [];
22580     }
22581     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
22582     
22583     
22584 };
22585
22586 /**
22587  * @class Roo.form.HtmlEditor
22588  * @extends Roo.form.Field
22589  * Provides a lightweight HTML Editor component.
22590  *
22591  * This has been tested on Fireforx / Chrome.. IE may not be so great..
22592  * 
22593  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
22594  * supported by this editor.</b><br/><br/>
22595  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
22596  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
22597  */
22598 Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
22599     /**
22600      * @cfg {Boolean} clearUp
22601      */
22602     clearUp : true,
22603       /**
22604      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
22605      */
22606     toolbars : false,
22607    
22608      /**
22609      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
22610      *                        Roo.resizable.
22611      */
22612     resizable : false,
22613      /**
22614      * @cfg {Number} height (in pixels)
22615      */   
22616     height: 300,
22617    /**
22618      * @cfg {Number} width (in pixels)
22619      */   
22620     width: 500,
22621     
22622     /**
22623      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
22624      * 
22625      */
22626     stylesheets: false,
22627     
22628     
22629      /**
22630      * @cfg {Array} blacklist of css styles style attributes (blacklist overrides whitelist)
22631      * 
22632      */
22633     cblack: false,
22634     /**
22635      * @cfg {Array} whitelist of css styles style attributes (blacklist overrides whitelist)
22636      * 
22637      */
22638     cwhite: false,
22639     
22640      /**
22641      * @cfg {Array} blacklist of html tags - in addition to standard blacklist.
22642      * 
22643      */
22644     black: false,
22645     /**
22646      * @cfg {Array} whitelist of html tags - in addition to statndard whitelist
22647      * 
22648      */
22649     white: false,
22650     
22651     // id of frame..
22652     frameId: false,
22653     
22654     // private properties
22655     validationEvent : false,
22656     deferHeight: true,
22657     initialized : false,
22658     activated : false,
22659     
22660     onFocus : Roo.emptyFn,
22661     iframePad:3,
22662     hideMode:'offsets',
22663     
22664     actionMode : 'container', // defaults to hiding it...
22665     
22666     defaultAutoCreate : { // modified by initCompnoent..
22667         tag: "textarea",
22668         style:"width:500px;height:300px;",
22669         autocomplete: "new-password"
22670     },
22671
22672     // private
22673     initComponent : function(){
22674         this.addEvents({
22675             /**
22676              * @event initialize
22677              * Fires when the editor is fully initialized (including the iframe)
22678              * @param {HtmlEditor} this
22679              */
22680             initialize: true,
22681             /**
22682              * @event activate
22683              * Fires when the editor is first receives the focus. Any insertion must wait
22684              * until after this event.
22685              * @param {HtmlEditor} this
22686              */
22687             activate: true,
22688              /**
22689              * @event beforesync
22690              * Fires before the textarea is updated with content from the editor iframe. Return false
22691              * to cancel the sync.
22692              * @param {HtmlEditor} this
22693              * @param {String} html
22694              */
22695             beforesync: true,
22696              /**
22697              * @event beforepush
22698              * Fires before the iframe editor is updated with content from the textarea. Return false
22699              * to cancel the push.
22700              * @param {HtmlEditor} this
22701              * @param {String} html
22702              */
22703             beforepush: true,
22704              /**
22705              * @event sync
22706              * Fires when the textarea is updated with content from the editor iframe.
22707              * @param {HtmlEditor} this
22708              * @param {String} html
22709              */
22710             sync: true,
22711              /**
22712              * @event push
22713              * Fires when the iframe editor is updated with content from the textarea.
22714              * @param {HtmlEditor} this
22715              * @param {String} html
22716              */
22717             push: true,
22718              /**
22719              * @event editmodechange
22720              * Fires when the editor switches edit modes
22721              * @param {HtmlEditor} this
22722              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
22723              */
22724             editmodechange: true,
22725             /**
22726              * @event editorevent
22727              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
22728              * @param {HtmlEditor} this
22729              */
22730             editorevent: true,
22731             /**
22732              * @event firstfocus
22733              * Fires when on first focus - needed by toolbars..
22734              * @param {HtmlEditor} this
22735              */
22736             firstfocus: true,
22737             /**
22738              * @event autosave
22739              * Auto save the htmlEditor value as a file into Events
22740              * @param {HtmlEditor} this
22741              */
22742             autosave: true,
22743             /**
22744              * @event savedpreview
22745              * preview the saved version of htmlEditor
22746              * @param {HtmlEditor} this
22747              */
22748             savedpreview: true,
22749             
22750             /**
22751             * @event stylesheetsclick
22752             * Fires when press the Sytlesheets button
22753             * @param {Roo.HtmlEditorCore} this
22754             */
22755             stylesheetsclick: true
22756         });
22757         this.defaultAutoCreate =  {
22758             tag: "textarea",
22759             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
22760             autocomplete: "new-password"
22761         };
22762     },
22763
22764     /**
22765      * Protected method that will not generally be called directly. It
22766      * is called when the editor creates its toolbar. Override this method if you need to
22767      * add custom toolbar buttons.
22768      * @param {HtmlEditor} editor
22769      */
22770     createToolbar : function(editor){
22771         Roo.log("create toolbars");
22772         if (!editor.toolbars || !editor.toolbars.length) {
22773             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
22774         }
22775         
22776         for (var i =0 ; i < editor.toolbars.length;i++) {
22777             editor.toolbars[i] = Roo.factory(
22778                     typeof(editor.toolbars[i]) == 'string' ?
22779                         { xtype: editor.toolbars[i]} : editor.toolbars[i],
22780                 Roo.form.HtmlEditor);
22781             editor.toolbars[i].init(editor);
22782         }
22783          
22784         
22785     },
22786
22787      
22788     // private
22789     onRender : function(ct, position)
22790     {
22791         var _t = this;
22792         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
22793         
22794         this.wrap = this.el.wrap({
22795             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
22796         });
22797         
22798         this.editorcore.onRender(ct, position);
22799          
22800         if (this.resizable) {
22801             this.resizeEl = new Roo.Resizable(this.wrap, {
22802                 pinned : true,
22803                 wrap: true,
22804                 dynamic : true,
22805                 minHeight : this.height,
22806                 height: this.height,
22807                 handles : this.resizable,
22808                 width: this.width,
22809                 listeners : {
22810                     resize : function(r, w, h) {
22811                         _t.onResize(w,h); // -something
22812                     }
22813                 }
22814             });
22815             
22816         }
22817         this.createToolbar(this);
22818        
22819         
22820         if(!this.width){
22821             this.setSize(this.wrap.getSize());
22822         }
22823         if (this.resizeEl) {
22824             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
22825             // should trigger onReize..
22826         }
22827         
22828         this.keyNav = new Roo.KeyNav(this.el, {
22829             
22830             "tab" : function(e){
22831                 e.preventDefault();
22832                 
22833                 var value = this.getValue();
22834                 
22835                 var start = this.el.dom.selectionStart;
22836                 var end = this.el.dom.selectionEnd;
22837                 
22838                 if(!e.shiftKey){
22839                     
22840                     this.setValue(value.substring(0, start) + "\t" + value.substring(end));
22841                     this.el.dom.setSelectionRange(end + 1, end + 1);
22842                     return;
22843                 }
22844                 
22845                 var f = value.substring(0, start).split("\t");
22846                 
22847                 if(f.pop().length != 0){
22848                     return;
22849                 }
22850                 
22851                 this.setValue(f.join("\t") + value.substring(end));
22852                 this.el.dom.setSelectionRange(start - 1, start - 1);
22853                 
22854             },
22855             
22856             "home" : function(e){
22857                 e.preventDefault();
22858                 
22859                 var curr = this.el.dom.selectionStart;
22860                 var lines = this.getValue().split("\n");
22861                 
22862                 if(!lines.length){
22863                     return;
22864                 }
22865                 
22866                 if(e.ctrlKey){
22867                     this.el.dom.setSelectionRange(0, 0);
22868                     return;
22869                 }
22870                 
22871                 var pos = 0;
22872                 
22873                 for (var i = 0; i < lines.length;i++) {
22874                     pos += lines[i].length;
22875                     
22876                     if(i != 0){
22877                         pos += 1;
22878                     }
22879                     
22880                     if(pos < curr){
22881                         continue;
22882                     }
22883                     
22884                     pos -= lines[i].length;
22885                     
22886                     break;
22887                 }
22888                 
22889                 if(!e.shiftKey){
22890                     this.el.dom.setSelectionRange(pos, pos);
22891                     return;
22892                 }
22893                 
22894                 this.el.dom.selectionStart = pos;
22895                 this.el.dom.selectionEnd = curr;
22896             },
22897             
22898             "end" : function(e){
22899                 e.preventDefault();
22900                 
22901                 var curr = this.el.dom.selectionStart;
22902                 var lines = this.getValue().split("\n");
22903                 
22904                 if(!lines.length){
22905                     return;
22906                 }
22907                 
22908                 if(e.ctrlKey){
22909                     this.el.dom.setSelectionRange(this.getValue().length, this.getValue().length);
22910                     return;
22911                 }
22912                 
22913                 var pos = 0;
22914                 
22915                 for (var i = 0; i < lines.length;i++) {
22916                     
22917                     pos += lines[i].length;
22918                     
22919                     if(i != 0){
22920                         pos += 1;
22921                     }
22922                     
22923                     if(pos < curr){
22924                         continue;
22925                     }
22926                     
22927                     break;
22928                 }
22929                 
22930                 if(!e.shiftKey){
22931                     this.el.dom.setSelectionRange(pos, pos);
22932                     return;
22933                 }
22934                 
22935                 this.el.dom.selectionStart = curr;
22936                 this.el.dom.selectionEnd = pos;
22937             },
22938
22939             scope : this,
22940
22941             doRelay : function(foo, bar, hname){
22942                 return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
22943             },
22944
22945             forceKeyDown: true
22946         });
22947         
22948 //        if(this.autosave && this.w){
22949 //            this.autoSaveFn = setInterval(this.autosave, 1000);
22950 //        }
22951     },
22952
22953     // private
22954     onResize : function(w, h)
22955     {
22956         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
22957         var ew = false;
22958         var eh = false;
22959         
22960         if(this.el ){
22961             if(typeof w == 'number'){
22962                 var aw = w - this.wrap.getFrameWidth('lr');
22963                 this.el.setWidth(this.adjustWidth('textarea', aw));
22964                 ew = aw;
22965             }
22966             if(typeof h == 'number'){
22967                 var tbh = 0;
22968                 for (var i =0; i < this.toolbars.length;i++) {
22969                     // fixme - ask toolbars for heights?
22970                     tbh += this.toolbars[i].tb.el.getHeight();
22971                     if (this.toolbars[i].footer) {
22972                         tbh += this.toolbars[i].footer.el.getHeight();
22973                     }
22974                 }
22975                 
22976                 
22977                 
22978                 
22979                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
22980                 ah -= 5; // knock a few pixes off for look..
22981 //                Roo.log(ah);
22982                 this.el.setHeight(this.adjustWidth('textarea', ah));
22983                 var eh = ah;
22984             }
22985         }
22986         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
22987         this.editorcore.onResize(ew,eh);
22988         
22989     },
22990
22991     /**
22992      * Toggles the editor between standard and source edit mode.
22993      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
22994      */
22995     toggleSourceEdit : function(sourceEditMode)
22996     {
22997         this.editorcore.toggleSourceEdit(sourceEditMode);
22998         
22999         if(this.editorcore.sourceEditMode){
23000             Roo.log('editor - showing textarea');
23001             
23002 //            Roo.log('in');
23003 //            Roo.log(this.syncValue());
23004             this.editorcore.syncValue();
23005             this.el.removeClass('x-hidden');
23006             this.el.dom.removeAttribute('tabIndex');
23007             this.el.focus();
23008             
23009             for (var i = 0; i < this.toolbars.length; i++) {
23010                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
23011                     this.toolbars[i].tb.hide();
23012                     this.toolbars[i].footer.hide();
23013                 }
23014             }
23015             
23016         }else{
23017             Roo.log('editor - hiding textarea');
23018 //            Roo.log('out')
23019 //            Roo.log(this.pushValue()); 
23020             this.editorcore.pushValue();
23021             
23022             this.el.addClass('x-hidden');
23023             this.el.dom.setAttribute('tabIndex', -1);
23024             
23025             for (var i = 0; i < this.toolbars.length; i++) {
23026                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
23027                     this.toolbars[i].tb.show();
23028                     this.toolbars[i].footer.show();
23029                 }
23030             }
23031             
23032             //this.deferFocus();
23033         }
23034         
23035         this.setSize(this.wrap.getSize());
23036         this.onResize(this.wrap.getSize().width, this.wrap.getSize().height);
23037         
23038         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
23039     },
23040  
23041     // private (for BoxComponent)
23042     adjustSize : Roo.BoxComponent.prototype.adjustSize,
23043
23044     // private (for BoxComponent)
23045     getResizeEl : function(){
23046         return this.wrap;
23047     },
23048
23049     // private (for BoxComponent)
23050     getPositionEl : function(){
23051         return this.wrap;
23052     },
23053
23054     // private
23055     initEvents : function(){
23056         this.originalValue = this.getValue();
23057     },
23058
23059     /**
23060      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
23061      * @method
23062      */
23063     markInvalid : Roo.emptyFn,
23064     /**
23065      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
23066      * @method
23067      */
23068     clearInvalid : Roo.emptyFn,
23069
23070     setValue : function(v){
23071         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
23072         this.editorcore.pushValue();
23073     },
23074
23075      
23076     // private
23077     deferFocus : function(){
23078         this.focus.defer(10, this);
23079     },
23080
23081     // doc'ed in Field
23082     focus : function(){
23083         this.editorcore.focus();
23084         
23085     },
23086       
23087
23088     // private
23089     onDestroy : function(){
23090         
23091         
23092         
23093         if(this.rendered){
23094             
23095             for (var i =0; i < this.toolbars.length;i++) {
23096                 // fixme - ask toolbars for heights?
23097                 this.toolbars[i].onDestroy();
23098             }
23099             
23100             this.wrap.dom.innerHTML = '';
23101             this.wrap.remove();
23102         }
23103     },
23104
23105     // private
23106     onFirstFocus : function(){
23107         //Roo.log("onFirstFocus");
23108         this.editorcore.onFirstFocus();
23109          for (var i =0; i < this.toolbars.length;i++) {
23110             this.toolbars[i].onFirstFocus();
23111         }
23112         
23113     },
23114     
23115     // private
23116     syncValue : function()
23117     {
23118         this.editorcore.syncValue();
23119     },
23120     
23121     pushValue : function()
23122     {
23123         this.editorcore.pushValue();
23124     },
23125     
23126     setStylesheets : function(stylesheets)
23127     {
23128         this.editorcore.setStylesheets(stylesheets);
23129     },
23130     
23131     removeStylesheets : function()
23132     {
23133         this.editorcore.removeStylesheets();
23134     }
23135      
23136     
23137     // hide stuff that is not compatible
23138     /**
23139      * @event blur
23140      * @hide
23141      */
23142     /**
23143      * @event change
23144      * @hide
23145      */
23146     /**
23147      * @event focus
23148      * @hide
23149      */
23150     /**
23151      * @event specialkey
23152      * @hide
23153      */
23154     /**
23155      * @cfg {String} fieldClass @hide
23156      */
23157     /**
23158      * @cfg {String} focusClass @hide
23159      */
23160     /**
23161      * @cfg {String} autoCreate @hide
23162      */
23163     /**
23164      * @cfg {String} inputType @hide
23165      */
23166     /**
23167      * @cfg {String} invalidClass @hide
23168      */
23169     /**
23170      * @cfg {String} invalidText @hide
23171      */
23172     /**
23173      * @cfg {String} msgFx @hide
23174      */
23175     /**
23176      * @cfg {String} validateOnBlur @hide
23177      */
23178 });
23179  
23180     // <script type="text/javascript">
23181 /*
23182  * Based on
23183  * Ext JS Library 1.1.1
23184  * Copyright(c) 2006-2007, Ext JS, LLC.
23185  *  
23186  
23187  */
23188
23189 /**
23190  * @class Roo.form.HtmlEditorToolbar1
23191  * Basic Toolbar
23192  * 
23193  * Usage:
23194  *
23195  new Roo.form.HtmlEditor({
23196     ....
23197     toolbars : [
23198         new Roo.form.HtmlEditorToolbar1({
23199             disable : { fonts: 1 , format: 1, ..., ... , ...],
23200             btns : [ .... ]
23201         })
23202     }
23203      
23204  * 
23205  * @cfg {Object} disable List of elements to disable..
23206  * @cfg {Array} btns List of additional buttons.
23207  * 
23208  * 
23209  * NEEDS Extra CSS? 
23210  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
23211  */
23212  
23213 Roo.form.HtmlEditor.ToolbarStandard = function(config)
23214 {
23215     
23216     Roo.apply(this, config);
23217     
23218     // default disabled, based on 'good practice'..
23219     this.disable = this.disable || {};
23220     Roo.applyIf(this.disable, {
23221         fontSize : true,
23222         colors : true,
23223         specialElements : true
23224     });
23225     
23226     
23227     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
23228     // dont call parent... till later.
23229 }
23230
23231 Roo.apply(Roo.form.HtmlEditor.ToolbarStandard.prototype,  {
23232     
23233     tb: false,
23234     
23235     rendered: false,
23236     
23237     editor : false,
23238     editorcore : false,
23239     /**
23240      * @cfg {Object} disable  List of toolbar elements to disable
23241          
23242      */
23243     disable : false,
23244     
23245     
23246      /**
23247      * @cfg {String} createLinkText The default text for the create link prompt
23248      */
23249     createLinkText : 'Please enter the URL for the link:',
23250     /**
23251      * @cfg {String} defaultLinkValue The default value for the create link prompt (defaults to http:/ /)
23252      */
23253     defaultLinkValue : 'http:/'+'/',
23254    
23255     
23256       /**
23257      * @cfg {Array} fontFamilies An array of available font families
23258      */
23259     fontFamilies : [
23260         'Arial',
23261         'Courier New',
23262         'Tahoma',
23263         'Times New Roman',
23264         'Verdana'
23265     ],
23266     
23267     specialChars : [
23268            "&#169;",
23269           "&#174;",     
23270           "&#8482;",    
23271           "&#163;" ,    
23272          // "&#8212;",    
23273           "&#8230;",    
23274           "&#247;" ,    
23275         //  "&#225;" ,     ?? a acute?
23276            "&#8364;"    , //Euro
23277        //   "&#8220;"    ,
23278         //  "&#8221;"    ,
23279         //  "&#8226;"    ,
23280           "&#176;"  //   , // degrees
23281
23282          // "&#233;"     , // e ecute
23283          // "&#250;"     , // u ecute?
23284     ],
23285     
23286     specialElements : [
23287         {
23288             text: "Insert Table",
23289             xtype: 'MenuItem',
23290             xns : Roo.Menu,
23291             ihtml :  '<table><tr><td>Cell</td></tr></table>' 
23292                 
23293         },
23294         {    
23295             text: "Insert Image",
23296             xtype: 'MenuItem',
23297             xns : Roo.Menu,
23298             ihtml : '<img src="about:blank"/>'
23299             
23300         }
23301         
23302          
23303     ],
23304     
23305     
23306     inputElements : [ 
23307             "form", "input:text", "input:hidden", "input:checkbox", "input:radio", "input:password", 
23308             "input:submit", "input:button", "select", "textarea", "label" ],
23309     formats : [
23310         ["p"] ,  
23311         ["h1"],["h2"],["h3"],["h4"],["h5"],["h6"], 
23312         ["pre"],[ "code"], 
23313         ["abbr"],[ "acronym"],[ "address"],[ "cite"],[ "samp"],[ "var"],
23314         ['div'],['span'],
23315         ['sup'],['sub']
23316     ],
23317     
23318     cleanStyles : [
23319         "font-size"
23320     ],
23321      /**
23322      * @cfg {String} defaultFont default font to use.
23323      */
23324     defaultFont: 'tahoma',
23325    
23326     fontSelect : false,
23327     
23328     
23329     formatCombo : false,
23330     
23331     init : function(editor)
23332     {
23333         this.editor = editor;
23334         this.editorcore = editor.editorcore ? editor.editorcore : editor;
23335         var editorcore = this.editorcore;
23336         
23337         var _t = this;
23338         
23339         var fid = editorcore.frameId;
23340         var etb = this;
23341         function btn(id, toggle, handler){
23342             var xid = fid + '-'+ id ;
23343             return {
23344                 id : xid,
23345                 cmd : id,
23346                 cls : 'x-btn-icon x-edit-'+id,
23347                 enableToggle:toggle !== false,
23348                 scope: _t, // was editor...
23349                 handler:handler||_t.relayBtnCmd,
23350                 clickEvent:'mousedown',
23351                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
23352                 tabIndex:-1
23353             };
23354         }
23355         
23356         
23357         
23358         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
23359         this.tb = tb;
23360          // stop form submits
23361         tb.el.on('click', function(e){
23362             e.preventDefault(); // what does this do?
23363         });
23364
23365         if(!this.disable.font) { // && !Roo.isSafari){
23366             /* why no safari for fonts 
23367             editor.fontSelect = tb.el.createChild({
23368                 tag:'select',
23369                 tabIndex: -1,
23370                 cls:'x-font-select',
23371                 html: this.createFontOptions()
23372             });
23373             
23374             editor.fontSelect.on('change', function(){
23375                 var font = editor.fontSelect.dom.value;
23376                 editor.relayCmd('fontname', font);
23377                 editor.deferFocus();
23378             }, editor);
23379             
23380             tb.add(
23381                 editor.fontSelect.dom,
23382                 '-'
23383             );
23384             */
23385             
23386         };
23387         if(!this.disable.formats){
23388             this.formatCombo = new Roo.form.ComboBox({
23389                 store: new Roo.data.SimpleStore({
23390                     id : 'tag',
23391                     fields: ['tag'],
23392                     data : this.formats // from states.js
23393                 }),
23394                 blockFocus : true,
23395                 name : '',
23396                 //autoCreate : {tag: "div",  size: "20"},
23397                 displayField:'tag',
23398                 typeAhead: false,
23399                 mode: 'local',
23400                 editable : false,
23401                 triggerAction: 'all',
23402                 emptyText:'Add tag',
23403                 selectOnFocus:true,
23404                 width:135,
23405                 listeners : {
23406                     'select': function(c, r, i) {
23407                         editorcore.insertTag(r.get('tag'));
23408                         editor.focus();
23409                     }
23410                 }
23411
23412             });
23413             tb.addField(this.formatCombo);
23414             
23415         }
23416         
23417         if(!this.disable.format){
23418             tb.add(
23419                 btn('bold'),
23420                 btn('italic'),
23421                 btn('underline'),
23422                 btn('strikethrough')
23423             );
23424         };
23425         if(!this.disable.fontSize){
23426             tb.add(
23427                 '-',
23428                 
23429                 
23430                 btn('increasefontsize', false, editorcore.adjustFont),
23431                 btn('decreasefontsize', false, editorcore.adjustFont)
23432             );
23433         };
23434         
23435         
23436         if(!this.disable.colors){
23437             tb.add(
23438                 '-', {
23439                     id:editorcore.frameId +'-forecolor',
23440                     cls:'x-btn-icon x-edit-forecolor',
23441                     clickEvent:'mousedown',
23442                     tooltip: this.buttonTips['forecolor'] || undefined,
23443                     tabIndex:-1,
23444                     menu : new Roo.menu.ColorMenu({
23445                         allowReselect: true,
23446                         focus: Roo.emptyFn,
23447                         value:'000000',
23448                         plain:true,
23449                         selectHandler: function(cp, color){
23450                             editorcore.execCmd('forecolor', Roo.isSafari || Roo.isIE ? '#'+color : color);
23451                             editor.deferFocus();
23452                         },
23453                         scope: editorcore,
23454                         clickEvent:'mousedown'
23455                     })
23456                 }, {
23457                     id:editorcore.frameId +'backcolor',
23458                     cls:'x-btn-icon x-edit-backcolor',
23459                     clickEvent:'mousedown',
23460                     tooltip: this.buttonTips['backcolor'] || undefined,
23461                     tabIndex:-1,
23462                     menu : new Roo.menu.ColorMenu({
23463                         focus: Roo.emptyFn,
23464                         value:'FFFFFF',
23465                         plain:true,
23466                         allowReselect: true,
23467                         selectHandler: function(cp, color){
23468                             if(Roo.isGecko){
23469                                 editorcore.execCmd('useCSS', false);
23470                                 editorcore.execCmd('hilitecolor', color);
23471                                 editorcore.execCmd('useCSS', true);
23472                                 editor.deferFocus();
23473                             }else{
23474                                 editorcore.execCmd(Roo.isOpera ? 'hilitecolor' : 'backcolor', 
23475                                     Roo.isSafari || Roo.isIE ? '#'+color : color);
23476                                 editor.deferFocus();
23477                             }
23478                         },
23479                         scope:editorcore,
23480                         clickEvent:'mousedown'
23481                     })
23482                 }
23483             );
23484         };
23485         // now add all the items...
23486         
23487
23488         if(!this.disable.alignments){
23489             tb.add(
23490                 '-',
23491                 btn('justifyleft'),
23492                 btn('justifycenter'),
23493                 btn('justifyright')
23494             );
23495         };
23496
23497         //if(!Roo.isSafari){
23498             if(!this.disable.links){
23499                 tb.add(
23500                     '-',
23501                     btn('createlink', false, this.createLink)    /// MOVE TO HERE?!!?!?!?!
23502                 );
23503             };
23504
23505             if(!this.disable.lists){
23506                 tb.add(
23507                     '-',
23508                     btn('insertorderedlist'),
23509                     btn('insertunorderedlist')
23510                 );
23511             }
23512             if(!this.disable.sourceEdit){
23513                 tb.add(
23514                     '-',
23515                     btn('sourceedit', true, function(btn){
23516                         this.toggleSourceEdit(btn.pressed);
23517                     })
23518                 );
23519             }
23520         //}
23521         
23522         var smenu = { };
23523         // special menu.. - needs to be tidied up..
23524         if (!this.disable.special) {
23525             smenu = {
23526                 text: "&#169;",
23527                 cls: 'x-edit-none',
23528                 
23529                 menu : {
23530                     items : []
23531                 }
23532             };
23533             for (var i =0; i < this.specialChars.length; i++) {
23534                 smenu.menu.items.push({
23535                     
23536                     html: this.specialChars[i],
23537                     handler: function(a,b) {
23538                         editorcore.insertAtCursor(String.fromCharCode(a.html.replace('&#','').replace(';', '')));
23539                         //editor.insertAtCursor(a.html);
23540                         
23541                     },
23542                     tabIndex:-1
23543                 });
23544             }
23545             
23546             
23547             tb.add(smenu);
23548             
23549             
23550         }
23551         
23552         var cmenu = { };
23553         if (!this.disable.cleanStyles) {
23554             cmenu = {
23555                 cls: 'x-btn-icon x-btn-clear',
23556                 
23557                 menu : {
23558                     items : []
23559                 }
23560             };
23561             for (var i =0; i < this.cleanStyles.length; i++) {
23562                 cmenu.menu.items.push({
23563                     actiontype : this.cleanStyles[i],
23564                     html: 'Remove ' + this.cleanStyles[i],
23565                     handler: function(a,b) {
23566 //                        Roo.log(a);
23567 //                        Roo.log(b);
23568                         var c = Roo.get(editorcore.doc.body);
23569                         c.select('[style]').each(function(s) {
23570                             s.dom.style.removeProperty(a.actiontype);
23571                         });
23572                         editorcore.syncValue();
23573                     },
23574                     tabIndex:-1
23575                 });
23576             }
23577              cmenu.menu.items.push({
23578                 actiontype : 'tablewidths',
23579                 html: 'Remove Table Widths',
23580                 handler: function(a,b) {
23581                     editorcore.cleanTableWidths();
23582                     editorcore.syncValue();
23583                 },
23584                 tabIndex:-1
23585             });
23586             cmenu.menu.items.push({
23587                 actiontype : 'word',
23588                 html: 'Remove MS Word Formating',
23589                 handler: function(a,b) {
23590                     editorcore.cleanWord();
23591                     editorcore.syncValue();
23592                 },
23593                 tabIndex:-1
23594             });
23595             
23596             cmenu.menu.items.push({
23597                 actiontype : 'all',
23598                 html: 'Remove All Styles',
23599                 handler: function(a,b) {
23600                     
23601                     var c = Roo.get(editorcore.doc.body);
23602                     c.select('[style]').each(function(s) {
23603                         s.dom.removeAttribute('style');
23604                     });
23605                     editorcore.syncValue();
23606                 },
23607                 tabIndex:-1
23608             });
23609             
23610             cmenu.menu.items.push({
23611                 actiontype : 'all',
23612                 html: 'Remove All CSS Classes',
23613                 handler: function(a,b) {
23614                     
23615                     var c = Roo.get(editorcore.doc.body);
23616                     c.select('[class]').each(function(s) {
23617                         s.dom.removeAttribute('class');
23618                     });
23619                     editorcore.cleanWord();
23620                     editorcore.syncValue();
23621                 },
23622                 tabIndex:-1
23623             });
23624             
23625              cmenu.menu.items.push({
23626                 actiontype : 'tidy',
23627                 html: 'Tidy HTML Source',
23628                 handler: function(a,b) {
23629                     editorcore.doc.body.innerHTML = editorcore.domToHTML();
23630                     editorcore.syncValue();
23631                 },
23632                 tabIndex:-1
23633             });
23634             
23635             
23636             tb.add(cmenu);
23637         }
23638          
23639         if (!this.disable.specialElements) {
23640             var semenu = {
23641                 text: "Other;",
23642                 cls: 'x-edit-none',
23643                 menu : {
23644                     items : []
23645                 }
23646             };
23647             for (var i =0; i < this.specialElements.length; i++) {
23648                 semenu.menu.items.push(
23649                     Roo.apply({ 
23650                         handler: function(a,b) {
23651                             editor.insertAtCursor(this.ihtml);
23652                         }
23653                     }, this.specialElements[i])
23654                 );
23655                     
23656             }
23657             
23658             tb.add(semenu);
23659             
23660             
23661         }
23662          
23663         
23664         if (this.btns) {
23665             for(var i =0; i< this.btns.length;i++) {
23666                 var b = Roo.factory(this.btns[i],Roo.form);
23667                 b.cls =  'x-edit-none';
23668                 
23669                 if(typeof(this.btns[i].cls) != 'undefined' && this.btns[i].cls.indexOf('x-init-enable') !== -1){
23670                     b.cls += ' x-init-enable';
23671                 }
23672                 
23673                 b.scope = editorcore;
23674                 tb.add(b);
23675             }
23676         
23677         }
23678         
23679         
23680         
23681         // disable everything...
23682         
23683         this.tb.items.each(function(item){
23684             
23685            if(
23686                 item.id != editorcore.frameId+ '-sourceedit' && 
23687                 (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)
23688             ){
23689                 
23690                 item.disable();
23691             }
23692         });
23693         this.rendered = true;
23694         
23695         // the all the btns;
23696         editor.on('editorevent', this.updateToolbar, this);
23697         // other toolbars need to implement this..
23698         //editor.on('editmodechange', this.updateToolbar, this);
23699     },
23700     
23701     
23702     relayBtnCmd : function(btn) {
23703         this.editorcore.relayCmd(btn.cmd);
23704     },
23705     // private used internally
23706     createLink : function(){
23707         Roo.log("create link?");
23708         var url = prompt(this.createLinkText, this.defaultLinkValue);
23709         if(url && url != 'http:/'+'/'){
23710             this.editorcore.relayCmd('createlink', url);
23711         }
23712     },
23713
23714     
23715     /**
23716      * Protected method that will not generally be called directly. It triggers
23717      * a toolbar update by reading the markup state of the current selection in the editor.
23718      */
23719     updateToolbar: function(){
23720
23721         if(!this.editorcore.activated){
23722             this.editor.onFirstFocus();
23723             return;
23724         }
23725
23726         var btns = this.tb.items.map, 
23727             doc = this.editorcore.doc,
23728             frameId = this.editorcore.frameId;
23729
23730         if(!this.disable.font && !Roo.isSafari){
23731             /*
23732             var name = (doc.queryCommandValue('FontName')||this.editor.defaultFont).toLowerCase();
23733             if(name != this.fontSelect.dom.value){
23734                 this.fontSelect.dom.value = name;
23735             }
23736             */
23737         }
23738         if(!this.disable.format){
23739             btns[frameId + '-bold'].toggle(doc.queryCommandState('bold'));
23740             btns[frameId + '-italic'].toggle(doc.queryCommandState('italic'));
23741             btns[frameId + '-underline'].toggle(doc.queryCommandState('underline'));
23742             btns[frameId + '-strikethrough'].toggle(doc.queryCommandState('strikethrough'));
23743         }
23744         if(!this.disable.alignments){
23745             btns[frameId + '-justifyleft'].toggle(doc.queryCommandState('justifyleft'));
23746             btns[frameId + '-justifycenter'].toggle(doc.queryCommandState('justifycenter'));
23747             btns[frameId + '-justifyright'].toggle(doc.queryCommandState('justifyright'));
23748         }
23749         if(!Roo.isSafari && !this.disable.lists){
23750             btns[frameId + '-insertorderedlist'].toggle(doc.queryCommandState('insertorderedlist'));
23751             btns[frameId + '-insertunorderedlist'].toggle(doc.queryCommandState('insertunorderedlist'));
23752         }
23753         
23754         var ans = this.editorcore.getAllAncestors();
23755         if (this.formatCombo) {
23756             
23757             
23758             var store = this.formatCombo.store;
23759             this.formatCombo.setValue("");
23760             for (var i =0; i < ans.length;i++) {
23761                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
23762                     // select it..
23763                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
23764                     break;
23765                 }
23766             }
23767         }
23768         
23769         
23770         
23771         // hides menus... - so this cant be on a menu...
23772         Roo.menu.MenuMgr.hideAll();
23773
23774         //this.editorsyncValue();
23775     },
23776    
23777     
23778     createFontOptions : function(){
23779         var buf = [], fs = this.fontFamilies, ff, lc;
23780         
23781         
23782         
23783         for(var i = 0, len = fs.length; i< len; i++){
23784             ff = fs[i];
23785             lc = ff.toLowerCase();
23786             buf.push(
23787                 '<option value="',lc,'" style="font-family:',ff,';"',
23788                     (this.defaultFont == lc ? ' selected="true">' : '>'),
23789                     ff,
23790                 '</option>'
23791             );
23792         }
23793         return buf.join('');
23794     },
23795     
23796     toggleSourceEdit : function(sourceEditMode){
23797         
23798         Roo.log("toolbar toogle");
23799         if(sourceEditMode === undefined){
23800             sourceEditMode = !this.sourceEditMode;
23801         }
23802         this.sourceEditMode = sourceEditMode === true;
23803         var btn = this.tb.items.get(this.editorcore.frameId +'-sourceedit');
23804         // just toggle the button?
23805         if(btn.pressed !== this.sourceEditMode){
23806             btn.toggle(this.sourceEditMode);
23807             return;
23808         }
23809         
23810         if(sourceEditMode){
23811             Roo.log("disabling buttons");
23812             this.tb.items.each(function(item){
23813                 if(item.cmd != 'sourceedit' && (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)){
23814                     item.disable();
23815                 }
23816             });
23817           
23818         }else{
23819             Roo.log("enabling buttons");
23820             if(this.editorcore.initialized){
23821                 this.tb.items.each(function(item){
23822                     item.enable();
23823                 });
23824             }
23825             
23826         }
23827         Roo.log("calling toggole on editor");
23828         // tell the editor that it's been pressed..
23829         this.editor.toggleSourceEdit(sourceEditMode);
23830        
23831     },
23832      /**
23833      * Object collection of toolbar tooltips for the buttons in the editor. The key
23834      * is the command id associated with that button and the value is a valid QuickTips object.
23835      * For example:
23836 <pre><code>
23837 {
23838     bold : {
23839         title: 'Bold (Ctrl+B)',
23840         text: 'Make the selected text bold.',
23841         cls: 'x-html-editor-tip'
23842     },
23843     italic : {
23844         title: 'Italic (Ctrl+I)',
23845         text: 'Make the selected text italic.',
23846         cls: 'x-html-editor-tip'
23847     },
23848     ...
23849 </code></pre>
23850     * @type Object
23851      */
23852     buttonTips : {
23853         bold : {
23854             title: 'Bold (Ctrl+B)',
23855             text: 'Make the selected text bold.',
23856             cls: 'x-html-editor-tip'
23857         },
23858         italic : {
23859             title: 'Italic (Ctrl+I)',
23860             text: 'Make the selected text italic.',
23861             cls: 'x-html-editor-tip'
23862         },
23863         underline : {
23864             title: 'Underline (Ctrl+U)',
23865             text: 'Underline the selected text.',
23866             cls: 'x-html-editor-tip'
23867         },
23868         strikethrough : {
23869             title: 'Strikethrough',
23870             text: 'Strikethrough the selected text.',
23871             cls: 'x-html-editor-tip'
23872         },
23873         increasefontsize : {
23874             title: 'Grow Text',
23875             text: 'Increase the font size.',
23876             cls: 'x-html-editor-tip'
23877         },
23878         decreasefontsize : {
23879             title: 'Shrink Text',
23880             text: 'Decrease the font size.',
23881             cls: 'x-html-editor-tip'
23882         },
23883         backcolor : {
23884             title: 'Text Highlight Color',
23885             text: 'Change the background color of the selected text.',
23886             cls: 'x-html-editor-tip'
23887         },
23888         forecolor : {
23889             title: 'Font Color',
23890             text: 'Change the color of the selected text.',
23891             cls: 'x-html-editor-tip'
23892         },
23893         justifyleft : {
23894             title: 'Align Text Left',
23895             text: 'Align text to the left.',
23896             cls: 'x-html-editor-tip'
23897         },
23898         justifycenter : {
23899             title: 'Center Text',
23900             text: 'Center text in the editor.',
23901             cls: 'x-html-editor-tip'
23902         },
23903         justifyright : {
23904             title: 'Align Text Right',
23905             text: 'Align text to the right.',
23906             cls: 'x-html-editor-tip'
23907         },
23908         insertunorderedlist : {
23909             title: 'Bullet List',
23910             text: 'Start a bulleted list.',
23911             cls: 'x-html-editor-tip'
23912         },
23913         insertorderedlist : {
23914             title: 'Numbered List',
23915             text: 'Start a numbered list.',
23916             cls: 'x-html-editor-tip'
23917         },
23918         createlink : {
23919             title: 'Hyperlink',
23920             text: 'Make the selected text a hyperlink.',
23921             cls: 'x-html-editor-tip'
23922         },
23923         sourceedit : {
23924             title: 'Source Edit',
23925             text: 'Switch to source editing mode.',
23926             cls: 'x-html-editor-tip'
23927         }
23928     },
23929     // private
23930     onDestroy : function(){
23931         if(this.rendered){
23932             
23933             this.tb.items.each(function(item){
23934                 if(item.menu){
23935                     item.menu.removeAll();
23936                     if(item.menu.el){
23937                         item.menu.el.destroy();
23938                     }
23939                 }
23940                 item.destroy();
23941             });
23942              
23943         }
23944     },
23945     onFirstFocus: function() {
23946         this.tb.items.each(function(item){
23947            item.enable();
23948         });
23949     }
23950 });
23951
23952
23953
23954
23955 // <script type="text/javascript">
23956 /*
23957  * Based on
23958  * Ext JS Library 1.1.1
23959  * Copyright(c) 2006-2007, Ext JS, LLC.
23960  *  
23961  
23962  */
23963
23964  
23965 /**
23966  * @class Roo.form.HtmlEditor.ToolbarContext
23967  * Context Toolbar
23968  * 
23969  * Usage:
23970  *
23971  new Roo.form.HtmlEditor({
23972     ....
23973     toolbars : [
23974         { xtype: 'ToolbarStandard', styles : {} }
23975         { xtype: 'ToolbarContext', disable : {} }
23976     ]
23977 })
23978
23979      
23980  * 
23981  * @config : {Object} disable List of elements to disable.. (not done yet.)
23982  * @config : {Object} styles  Map of styles available.
23983  * 
23984  */
23985
23986 Roo.form.HtmlEditor.ToolbarContext = function(config)
23987 {
23988     
23989     Roo.apply(this, config);
23990     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
23991     // dont call parent... till later.
23992     this.styles = this.styles || {};
23993 }
23994
23995  
23996
23997 Roo.form.HtmlEditor.ToolbarContext.types = {
23998     'IMG' : {
23999         width : {
24000             title: "Width",
24001             width: 40
24002         },
24003         height:  {
24004             title: "Height",
24005             width: 40
24006         },
24007         align: {
24008             title: "Align",
24009             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
24010             width : 80
24011             
24012         },
24013         border: {
24014             title: "Border",
24015             width: 40
24016         },
24017         alt: {
24018             title: "Alt",
24019             width: 120
24020         },
24021         src : {
24022             title: "Src",
24023             width: 220
24024         }
24025         
24026     },
24027     'A' : {
24028         name : {
24029             title: "Name",
24030             width: 50
24031         },
24032         target:  {
24033             title: "Target",
24034             width: 120
24035         },
24036         href:  {
24037             title: "Href",
24038             width: 220
24039         } // border?
24040         
24041     },
24042     'TABLE' : {
24043         rows : {
24044             title: "Rows",
24045             width: 20
24046         },
24047         cols : {
24048             title: "Cols",
24049             width: 20
24050         },
24051         width : {
24052             title: "Width",
24053             width: 40
24054         },
24055         height : {
24056             title: "Height",
24057             width: 40
24058         },
24059         border : {
24060             title: "Border",
24061             width: 20
24062         }
24063     },
24064     'TD' : {
24065         width : {
24066             title: "Width",
24067             width: 40
24068         },
24069         height : {
24070             title: "Height",
24071             width: 40
24072         },   
24073         align: {
24074             title: "Align",
24075             opts : [[""],[ "left"],[ "center"],[ "right"],[ "justify"],[ "char"]],
24076             width: 80
24077         },
24078         valign: {
24079             title: "Valign",
24080             opts : [[""],[ "top"],[ "middle"],[ "bottom"],[ "baseline"]],
24081             width: 80
24082         },
24083         colspan: {
24084             title: "Colspan",
24085             width: 20
24086             
24087         },
24088          'font-family'  : {
24089             title : "Font",
24090             style : 'fontFamily',
24091             displayField: 'display',
24092             optname : 'font-family',
24093             width: 140
24094         }
24095     },
24096     'INPUT' : {
24097         name : {
24098             title: "name",
24099             width: 120
24100         },
24101         value : {
24102             title: "Value",
24103             width: 120
24104         },
24105         width : {
24106             title: "Width",
24107             width: 40
24108         }
24109     },
24110     'LABEL' : {
24111         'for' : {
24112             title: "For",
24113             width: 120
24114         }
24115     },
24116     'TEXTAREA' : {
24117           name : {
24118             title: "name",
24119             width: 120
24120         },
24121         rows : {
24122             title: "Rows",
24123             width: 20
24124         },
24125         cols : {
24126             title: "Cols",
24127             width: 20
24128         }
24129     },
24130     'SELECT' : {
24131         name : {
24132             title: "name",
24133             width: 120
24134         },
24135         selectoptions : {
24136             title: "Options",
24137             width: 200
24138         }
24139     },
24140     
24141     // should we really allow this??
24142     // should this just be 
24143     'BODY' : {
24144         title : {
24145             title: "Title",
24146             width: 200,
24147             disabled : true
24148         }
24149     },
24150     'SPAN' : {
24151         'font-family'  : {
24152             title : "Font",
24153             style : 'fontFamily',
24154             displayField: 'display',
24155             optname : 'font-family',
24156             width: 140
24157         }
24158     },
24159     'DIV' : {
24160         'font-family'  : {
24161             title : "Font",
24162             style : 'fontFamily',
24163             displayField: 'display',
24164             optname : 'font-family',
24165             width: 140
24166         }
24167     },
24168      'P' : {
24169         'font-family'  : {
24170             title : "Font",
24171             style : 'fontFamily',
24172             displayField: 'display',
24173             optname : 'font-family',
24174             width: 140
24175         }
24176     },
24177     
24178     '*' : {
24179         // empty..
24180     }
24181
24182 };
24183
24184 // this should be configurable.. - you can either set it up using stores, or modify options somehwere..
24185 Roo.form.HtmlEditor.ToolbarContext.stores = false;
24186
24187 Roo.form.HtmlEditor.ToolbarContext.options = {
24188         'font-family'  : [ 
24189                 [ 'Helvetica,Arial,sans-serif', 'Helvetica'],
24190                 [ 'Courier New', 'Courier New'],
24191                 [ 'Tahoma', 'Tahoma'],
24192                 [ 'Times New Roman,serif', 'Times'],
24193                 [ 'Verdana','Verdana' ]
24194         ]
24195 };
24196
24197 // fixme - these need to be configurable..
24198  
24199
24200 //Roo.form.HtmlEditor.ToolbarContext.types
24201
24202
24203 Roo.apply(Roo.form.HtmlEditor.ToolbarContext.prototype,  {
24204     
24205     tb: false,
24206     
24207     rendered: false,
24208     
24209     editor : false,
24210     editorcore : false,
24211     /**
24212      * @cfg {Object} disable  List of toolbar elements to disable
24213          
24214      */
24215     disable : false,
24216     /**
24217      * @cfg {Object} styles List of styles 
24218      *    eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } 
24219      *
24220      * These must be defined in the page, so they get rendered correctly..
24221      * .headline { }
24222      * TD.underline { }
24223      * 
24224      */
24225     styles : false,
24226     
24227     options: false,
24228     
24229     toolbars : false,
24230     
24231     init : function(editor)
24232     {
24233         this.editor = editor;
24234         this.editorcore = editor.editorcore ? editor.editorcore : editor;
24235         var editorcore = this.editorcore;
24236         
24237         var fid = editorcore.frameId;
24238         var etb = this;
24239         function btn(id, toggle, handler){
24240             var xid = fid + '-'+ id ;
24241             return {
24242                 id : xid,
24243                 cmd : id,
24244                 cls : 'x-btn-icon x-edit-'+id,
24245                 enableToggle:toggle !== false,
24246                 scope: editorcore, // was editor...
24247                 handler:handler||editorcore.relayBtnCmd,
24248                 clickEvent:'mousedown',
24249                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
24250                 tabIndex:-1
24251             };
24252         }
24253         // create a new element.
24254         var wdiv = editor.wrap.createChild({
24255                 tag: 'div'
24256             }, editor.wrap.dom.firstChild.nextSibling, true);
24257         
24258         // can we do this more than once??
24259         
24260          // stop form submits
24261       
24262  
24263         // disable everything...
24264         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
24265         this.toolbars = {};
24266            
24267         for (var i in  ty) {
24268           
24269             this.toolbars[i] = this.buildToolbar(ty[i],i);
24270         }
24271         this.tb = this.toolbars.BODY;
24272         this.tb.el.show();
24273         this.buildFooter();
24274         this.footer.show();
24275         editor.on('hide', function( ) { this.footer.hide() }, this);
24276         editor.on('show', function( ) { this.footer.show() }, this);
24277         
24278          
24279         this.rendered = true;
24280         
24281         // the all the btns;
24282         editor.on('editorevent', this.updateToolbar, this);
24283         // other toolbars need to implement this..
24284         //editor.on('editmodechange', this.updateToolbar, this);
24285     },
24286     
24287     
24288     
24289     /**
24290      * Protected method that will not generally be called directly. It triggers
24291      * a toolbar update by reading the markup state of the current selection in the editor.
24292      *
24293      * Note you can force an update by calling on('editorevent', scope, false)
24294      */
24295     updateToolbar: function(editor,ev,sel){
24296
24297         //Roo.log(ev);
24298         // capture mouse up - this is handy for selecting images..
24299         // perhaps should go somewhere else...
24300         if(!this.editorcore.activated){
24301              this.editor.onFirstFocus();
24302             return;
24303         }
24304         
24305         
24306         
24307         // http://developer.yahoo.com/yui/docs/simple-editor.js.html
24308         // selectNode - might want to handle IE?
24309         if (ev &&
24310             (ev.type == 'mouseup' || ev.type == 'click' ) &&
24311             ev.target && ev.target.tagName == 'IMG') {
24312             // they have click on an image...
24313             // let's see if we can change the selection...
24314             sel = ev.target;
24315          
24316               var nodeRange = sel.ownerDocument.createRange();
24317             try {
24318                 nodeRange.selectNode(sel);
24319             } catch (e) {
24320                 nodeRange.selectNodeContents(sel);
24321             }
24322             //nodeRange.collapse(true);
24323             var s = this.editorcore.win.getSelection();
24324             s.removeAllRanges();
24325             s.addRange(nodeRange);
24326         }  
24327         
24328       
24329         var updateFooter = sel ? false : true;
24330         
24331         
24332         var ans = this.editorcore.getAllAncestors();
24333         
24334         // pick
24335         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
24336         
24337         if (!sel) { 
24338             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editorcore.doc.body;
24339             sel = sel ? sel : this.editorcore.doc.body;
24340             sel = sel.tagName.length ? sel : this.editorcore.doc.body;
24341             
24342         }
24343         // pick a menu that exists..
24344         var tn = sel.tagName.toUpperCase();
24345         //sel = typeof(ty[tn]) != 'undefined' ? sel : this.editor.doc.body;
24346         
24347         tn = sel.tagName.toUpperCase();
24348         
24349         var lastSel = this.tb.selectedNode;
24350         
24351         this.tb.selectedNode = sel;
24352         
24353         // if current menu does not match..
24354         
24355         if ((this.tb.name != tn) || (lastSel != this.tb.selectedNode) || ev === false) {
24356                 
24357             this.tb.el.hide();
24358             ///console.log("show: " + tn);
24359             this.tb =  typeof(ty[tn]) != 'undefined' ? this.toolbars[tn] : this.toolbars['*'];
24360             this.tb.el.show();
24361             // update name
24362             this.tb.items.first().el.innerHTML = tn + ':&nbsp;';
24363             
24364             
24365             // update attributes
24366             if (this.tb.fields) {
24367                 this.tb.fields.each(function(e) {
24368                     if (e.stylename) {
24369                         e.setValue(sel.style[e.stylename]);
24370                         return;
24371                     } 
24372                    e.setValue(sel.getAttribute(e.attrname));
24373                 });
24374             }
24375             
24376             var hasStyles = false;
24377             for(var i in this.styles) {
24378                 hasStyles = true;
24379                 break;
24380             }
24381             
24382             // update styles
24383             if (hasStyles) { 
24384                 var st = this.tb.fields.item(0);
24385                 
24386                 st.store.removeAll();
24387                
24388                 
24389                 var cn = sel.className.split(/\s+/);
24390                 
24391                 var avs = [];
24392                 if (this.styles['*']) {
24393                     
24394                     Roo.each(this.styles['*'], function(v) {
24395                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
24396                     });
24397                 }
24398                 if (this.styles[tn]) { 
24399                     Roo.each(this.styles[tn], function(v) {
24400                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
24401                     });
24402                 }
24403                 
24404                 st.store.loadData(avs);
24405                 st.collapse();
24406                 st.setValue(cn);
24407             }
24408             // flag our selected Node.
24409             this.tb.selectedNode = sel;
24410            
24411            
24412             Roo.menu.MenuMgr.hideAll();
24413
24414         }
24415         
24416         if (!updateFooter) {
24417             //this.footDisp.dom.innerHTML = ''; 
24418             return;
24419         }
24420         // update the footer
24421         //
24422         var html = '';
24423         
24424         this.footerEls = ans.reverse();
24425         Roo.each(this.footerEls, function(a,i) {
24426             if (!a) { return; }
24427             html += html.length ? ' &gt; '  :  '';
24428             
24429             html += '<span class="x-ed-loc-' + i + '">' + a.tagName + '</span>';
24430             
24431         });
24432        
24433         // 
24434         var sz = this.footDisp.up('td').getSize();
24435         this.footDisp.dom.style.width = (sz.width -10) + 'px';
24436         this.footDisp.dom.style.marginLeft = '5px';
24437         
24438         this.footDisp.dom.style.overflow = 'hidden';
24439         
24440         this.footDisp.dom.innerHTML = html;
24441             
24442         //this.editorsyncValue();
24443     },
24444      
24445     
24446    
24447        
24448     // private
24449     onDestroy : function(){
24450         if(this.rendered){
24451             
24452             this.tb.items.each(function(item){
24453                 if(item.menu){
24454                     item.menu.removeAll();
24455                     if(item.menu.el){
24456                         item.menu.el.destroy();
24457                     }
24458                 }
24459                 item.destroy();
24460             });
24461              
24462         }
24463     },
24464     onFirstFocus: function() {
24465         // need to do this for all the toolbars..
24466         this.tb.items.each(function(item){
24467            item.enable();
24468         });
24469     },
24470     buildToolbar: function(tlist, nm)
24471     {
24472         var editor = this.editor;
24473         var editorcore = this.editorcore;
24474          // create a new element.
24475         var wdiv = editor.wrap.createChild({
24476                 tag: 'div'
24477             }, editor.wrap.dom.firstChild.nextSibling, true);
24478         
24479        
24480         var tb = new Roo.Toolbar(wdiv);
24481         // add the name..
24482         
24483         tb.add(nm+ ":&nbsp;");
24484         
24485         var styles = [];
24486         for(var i in this.styles) {
24487             styles.push(i);
24488         }
24489         
24490         // styles...
24491         if (styles && styles.length) {
24492             
24493             // this needs a multi-select checkbox...
24494             tb.addField( new Roo.form.ComboBox({
24495                 store: new Roo.data.SimpleStore({
24496                     id : 'val',
24497                     fields: ['val', 'selected'],
24498                     data : [] 
24499                 }),
24500                 name : '-roo-edit-className',
24501                 attrname : 'className',
24502                 displayField: 'val',
24503                 typeAhead: false,
24504                 mode: 'local',
24505                 editable : false,
24506                 triggerAction: 'all',
24507                 emptyText:'Select Style',
24508                 selectOnFocus:true,
24509                 width: 130,
24510                 listeners : {
24511                     'select': function(c, r, i) {
24512                         // initial support only for on class per el..
24513                         tb.selectedNode.className =  r ? r.get('val') : '';
24514                         editorcore.syncValue();
24515                     }
24516                 }
24517     
24518             }));
24519         }
24520         
24521         var tbc = Roo.form.HtmlEditor.ToolbarContext;
24522         var tbops = tbc.options;
24523         
24524         for (var i in tlist) {
24525             
24526             var item = tlist[i];
24527             tb.add(item.title + ":&nbsp;");
24528             
24529             
24530             //optname == used so you can configure the options available..
24531             var opts = item.opts ? item.opts : false;
24532             if (item.optname) {
24533                 opts = tbops[item.optname];
24534            
24535             }
24536             
24537             if (opts) {
24538                 // opts == pulldown..
24539                 tb.addField( new Roo.form.ComboBox({
24540                     store:   typeof(tbc.stores[i]) != 'undefined' ?  Roo.factory(tbc.stores[i],Roo.data) : new Roo.data.SimpleStore({
24541                         id : 'val',
24542                         fields: ['val', 'display'],
24543                         data : opts  
24544                     }),
24545                     name : '-roo-edit-' + i,
24546                     attrname : i,
24547                     stylename : item.style ? item.style : false,
24548                     displayField: item.displayField ? item.displayField : 'val',
24549                     valueField :  'val',
24550                     typeAhead: false,
24551                     mode: typeof(tbc.stores[i]) != 'undefined'  ? 'remote' : 'local',
24552                     editable : false,
24553                     triggerAction: 'all',
24554                     emptyText:'Select',
24555                     selectOnFocus:true,
24556                     width: item.width ? item.width  : 130,
24557                     listeners : {
24558                         'select': function(c, r, i) {
24559                             if (c.stylename) {
24560                                 tb.selectedNode.style[c.stylename] =  r.get('val');
24561                                 return;
24562                             }
24563                             tb.selectedNode.setAttribute(c.attrname, r.get('val'));
24564                         }
24565                     }
24566
24567                 }));
24568                 continue;
24569                     
24570                  
24571                 
24572                 tb.addField( new Roo.form.TextField({
24573                     name: i,
24574                     width: 100,
24575                     //allowBlank:false,
24576                     value: ''
24577                 }));
24578                 continue;
24579             }
24580             tb.addField( new Roo.form.TextField({
24581                 name: '-roo-edit-' + i,
24582                 attrname : i,
24583                 
24584                 width: item.width,
24585                 //allowBlank:true,
24586                 value: '',
24587                 listeners: {
24588                     'change' : function(f, nv, ov) {
24589                         tb.selectedNode.setAttribute(f.attrname, nv);
24590                         editorcore.syncValue();
24591                     }
24592                 }
24593             }));
24594              
24595         }
24596         
24597         var _this = this;
24598         
24599         if(nm == 'BODY'){
24600             tb.addSeparator();
24601         
24602             tb.addButton( {
24603                 text: 'Stylesheets',
24604
24605                 listeners : {
24606                     click : function ()
24607                     {
24608                         _this.editor.fireEvent('stylesheetsclick', _this.editor);
24609                     }
24610                 }
24611             });
24612         }
24613         
24614         tb.addFill();
24615         tb.addButton( {
24616             text: 'Remove Tag',
24617     
24618             listeners : {
24619                 click : function ()
24620                 {
24621                     // remove
24622                     // undo does not work.
24623                      
24624                     var sn = tb.selectedNode;
24625                     
24626                     var pn = sn.parentNode;
24627                     
24628                     var stn =  sn.childNodes[0];
24629                     var en = sn.childNodes[sn.childNodes.length - 1 ];
24630                     while (sn.childNodes.length) {
24631                         var node = sn.childNodes[0];
24632                         sn.removeChild(node);
24633                         //Roo.log(node);
24634                         pn.insertBefore(node, sn);
24635                         
24636                     }
24637                     pn.removeChild(sn);
24638                     var range = editorcore.createRange();
24639         
24640                     range.setStart(stn,0);
24641                     range.setEnd(en,0); //????
24642                     //range.selectNode(sel);
24643                     
24644                     
24645                     var selection = editorcore.getSelection();
24646                     selection.removeAllRanges();
24647                     selection.addRange(range);
24648                     
24649                     
24650                     
24651                     //_this.updateToolbar(null, null, pn);
24652                     _this.updateToolbar(null, null, null);
24653                     _this.footDisp.dom.innerHTML = ''; 
24654                 }
24655             }
24656             
24657                     
24658                 
24659             
24660         });
24661         
24662         
24663         tb.el.on('click', function(e){
24664             e.preventDefault(); // what does this do?
24665         });
24666         tb.el.setVisibilityMode( Roo.Element.DISPLAY);
24667         tb.el.hide();
24668         tb.name = nm;
24669         // dont need to disable them... as they will get hidden
24670         return tb;
24671          
24672         
24673     },
24674     buildFooter : function()
24675     {
24676         
24677         var fel = this.editor.wrap.createChild();
24678         this.footer = new Roo.Toolbar(fel);
24679         // toolbar has scrolly on left / right?
24680         var footDisp= new Roo.Toolbar.Fill();
24681         var _t = this;
24682         this.footer.add(
24683             {
24684                 text : '&lt;',
24685                 xtype: 'Button',
24686                 handler : function() {
24687                     _t.footDisp.scrollTo('left',0,true)
24688                 }
24689             }
24690         );
24691         this.footer.add( footDisp );
24692         this.footer.add( 
24693             {
24694                 text : '&gt;',
24695                 xtype: 'Button',
24696                 handler : function() {
24697                     // no animation..
24698                     _t.footDisp.select('span').last().scrollIntoView(_t.footDisp,true);
24699                 }
24700             }
24701         );
24702         var fel = Roo.get(footDisp.el);
24703         fel.addClass('x-editor-context');
24704         this.footDispWrap = fel; 
24705         this.footDispWrap.overflow  = 'hidden';
24706         
24707         this.footDisp = fel.createChild();
24708         this.footDispWrap.on('click', this.onContextClick, this)
24709         
24710         
24711     },
24712     onContextClick : function (ev,dom)
24713     {
24714         ev.preventDefault();
24715         var  cn = dom.className;
24716         //Roo.log(cn);
24717         if (!cn.match(/x-ed-loc-/)) {
24718             return;
24719         }
24720         var n = cn.split('-').pop();
24721         var ans = this.footerEls;
24722         var sel = ans[n];
24723         
24724          // pick
24725         var range = this.editorcore.createRange();
24726         
24727         range.selectNodeContents(sel);
24728         //range.selectNode(sel);
24729         
24730         
24731         var selection = this.editorcore.getSelection();
24732         selection.removeAllRanges();
24733         selection.addRange(range);
24734         
24735         
24736         
24737         this.updateToolbar(null, null, sel);
24738         
24739         
24740     }
24741     
24742     
24743     
24744     
24745     
24746 });
24747
24748
24749
24750
24751
24752 /*
24753  * Based on:
24754  * Ext JS Library 1.1.1
24755  * Copyright(c) 2006-2007, Ext JS, LLC.
24756  *
24757  * Originally Released Under LGPL - original licence link has changed is not relivant.
24758  *
24759  * Fork - LGPL
24760  * <script type="text/javascript">
24761  */
24762  
24763 /**
24764  * @class Roo.form.BasicForm
24765  * @extends Roo.util.Observable
24766  * Supplies the functionality to do "actions" on forms and initialize Roo.form.Field types on existing markup.
24767  * @constructor
24768  * @param {String/HTMLElement/Roo.Element} el The form element or its id
24769  * @param {Object} config Configuration options
24770  */
24771 Roo.form.BasicForm = function(el, config){
24772     this.allItems = [];
24773     this.childForms = [];
24774     Roo.apply(this, config);
24775     /*
24776      * The Roo.form.Field items in this form.
24777      * @type MixedCollection
24778      */
24779      
24780      
24781     this.items = new Roo.util.MixedCollection(false, function(o){
24782         return o.id || (o.id = Roo.id());
24783     });
24784     this.addEvents({
24785         /**
24786          * @event beforeaction
24787          * Fires before any action is performed. Return false to cancel the action.
24788          * @param {Form} this
24789          * @param {Action} action The action to be performed
24790          */
24791         beforeaction: true,
24792         /**
24793          * @event actionfailed
24794          * Fires when an action fails.
24795          * @param {Form} this
24796          * @param {Action} action The action that failed
24797          */
24798         actionfailed : true,
24799         /**
24800          * @event actioncomplete
24801          * Fires when an action is completed.
24802          * @param {Form} this
24803          * @param {Action} action The action that completed
24804          */
24805         actioncomplete : true
24806     });
24807     if(el){
24808         this.initEl(el);
24809     }
24810     Roo.form.BasicForm.superclass.constructor.call(this);
24811     
24812     Roo.form.BasicForm.popover.apply();
24813 };
24814
24815 Roo.extend(Roo.form.BasicForm, Roo.util.Observable, {
24816     /**
24817      * @cfg {String} method
24818      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
24819      */
24820     /**
24821      * @cfg {DataReader} reader
24822      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing "load" actions.
24823      * This is optional as there is built-in support for processing JSON.
24824      */
24825     /**
24826      * @cfg {DataReader} errorReader
24827      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on "submit" actions.
24828      * This is completely optional as there is built-in support for processing JSON.
24829      */
24830     /**
24831      * @cfg {String} url
24832      * The URL to use for form actions if one isn't supplied in the action options.
24833      */
24834     /**
24835      * @cfg {Boolean} fileUpload
24836      * Set to true if this form is a file upload.
24837      */
24838      
24839     /**
24840      * @cfg {Object} baseParams
24841      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
24842      */
24843      /**
24844      
24845     /**
24846      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
24847      */
24848     timeout: 30,
24849
24850     // private
24851     activeAction : null,
24852
24853     /**
24854      * @cfg {Boolean} trackResetOnLoad If set to true, form.reset() resets to the last loaded
24855      * or setValues() data instead of when the form was first created.
24856      */
24857     trackResetOnLoad : false,
24858     
24859     
24860     /**
24861      * childForms - used for multi-tab forms
24862      * @type {Array}
24863      */
24864     childForms : false,
24865     
24866     /**
24867      * allItems - full list of fields.
24868      * @type {Array}
24869      */
24870     allItems : false,
24871     
24872     /**
24873      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
24874      * element by passing it or its id or mask the form itself by passing in true.
24875      * @type Mixed
24876      */
24877     waitMsgTarget : false,
24878     
24879     /**
24880      * @type Boolean
24881      */
24882     disableMask : false,
24883     
24884     /**
24885      * @cfg {Boolean} errorMask (true|false) default false
24886      */
24887     errorMask : false,
24888     
24889     /**
24890      * @cfg {Number} maskOffset Default 100
24891      */
24892     maskOffset : 100,
24893
24894     // private
24895     initEl : function(el){
24896         this.el = Roo.get(el);
24897         this.id = this.el.id || Roo.id();
24898         this.el.on('submit', this.onSubmit, this);
24899         this.el.addClass('x-form');
24900     },
24901
24902     // private
24903     onSubmit : function(e){
24904         e.stopEvent();
24905     },
24906
24907     /**
24908      * Returns true if client-side validation on the form is successful.
24909      * @return Boolean
24910      */
24911     isValid : function(){
24912         var valid = true;
24913         var target = false;
24914         this.items.each(function(f){
24915             if(f.validate()){
24916                 return;
24917             }
24918             
24919             valid = false;
24920                 
24921             if(!target && f.el.isVisible(true)){
24922                 target = f;
24923             }
24924         });
24925         
24926         if(this.errorMask && !valid){
24927             Roo.form.BasicForm.popover.mask(this, target);
24928         }
24929         
24930         return valid;
24931     },
24932
24933     /**
24934      * DEPRICATED Returns true if any fields in this form have changed since their original load. 
24935      * @return Boolean
24936      */
24937     isDirty : function(){
24938         var dirty = false;
24939         this.items.each(function(f){
24940            if(f.isDirty()){
24941                dirty = true;
24942                return false;
24943            }
24944         });
24945         return dirty;
24946     },
24947     
24948     /**
24949      * Returns true if any fields in this form have changed since their original load. (New version)
24950      * @return Boolean
24951      */
24952     
24953     hasChanged : function()
24954     {
24955         var dirty = false;
24956         this.items.each(function(f){
24957            if(f.hasChanged()){
24958                dirty = true;
24959                return false;
24960            }
24961         });
24962         return dirty;
24963         
24964     },
24965     /**
24966      * Resets all hasChanged to 'false' -
24967      * The old 'isDirty' used 'original value..' however this breaks reset() and a few other things.
24968      * So hasChanged storage is only to be used for this purpose
24969      * @return Boolean
24970      */
24971     resetHasChanged : function()
24972     {
24973         this.items.each(function(f){
24974            f.resetHasChanged();
24975         });
24976         
24977     },
24978     
24979     
24980     /**
24981      * Performs a predefined action (submit or load) or custom actions you define on this form.
24982      * @param {String} actionName The name of the action type
24983      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
24984      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
24985      * accept other config options):
24986      * <pre>
24987 Property          Type             Description
24988 ----------------  ---------------  ----------------------------------------------------------------------------------
24989 url               String           The url for the action (defaults to the form's url)
24990 method            String           The form method to use (defaults to the form's method, or POST if not defined)
24991 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
24992 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
24993                                    validate the form on the client (defaults to false)
24994      * </pre>
24995      * @return {BasicForm} this
24996      */
24997     doAction : function(action, options){
24998         if(typeof action == 'string'){
24999             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
25000         }
25001         if(this.fireEvent('beforeaction', this, action) !== false){
25002             this.beforeAction(action);
25003             action.run.defer(100, action);
25004         }
25005         return this;
25006     },
25007
25008     /**
25009      * Shortcut to do a submit action.
25010      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
25011      * @return {BasicForm} this
25012      */
25013     submit : function(options){
25014         this.doAction('submit', options);
25015         return this;
25016     },
25017
25018     /**
25019      * Shortcut to do a load action.
25020      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
25021      * @return {BasicForm} this
25022      */
25023     load : function(options){
25024         this.doAction('load', options);
25025         return this;
25026     },
25027
25028     /**
25029      * Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block.
25030      * @param {Record} record The record to edit
25031      * @return {BasicForm} this
25032      */
25033     updateRecord : function(record){
25034         record.beginEdit();
25035         var fs = record.fields;
25036         fs.each(function(f){
25037             var field = this.findField(f.name);
25038             if(field){
25039                 record.set(f.name, field.getValue());
25040             }
25041         }, this);
25042         record.endEdit();
25043         return this;
25044     },
25045
25046     /**
25047      * Loads an Roo.data.Record into this form.
25048      * @param {Record} record The record to load
25049      * @return {BasicForm} this
25050      */
25051     loadRecord : function(record){
25052         this.setValues(record.data);
25053         return this;
25054     },
25055
25056     // private
25057     beforeAction : function(action){
25058         var o = action.options;
25059         
25060         if(!this.disableMask) {
25061             if(this.waitMsgTarget === true){
25062                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
25063             }else if(this.waitMsgTarget){
25064                 this.waitMsgTarget = Roo.get(this.waitMsgTarget);
25065                 this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
25066             }else {
25067                 Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
25068             }
25069         }
25070         
25071          
25072     },
25073
25074     // private
25075     afterAction : function(action, success){
25076         this.activeAction = null;
25077         var o = action.options;
25078         
25079         if(!this.disableMask) {
25080             if(this.waitMsgTarget === true){
25081                 this.el.unmask();
25082             }else if(this.waitMsgTarget){
25083                 this.waitMsgTarget.unmask();
25084             }else{
25085                 Roo.MessageBox.updateProgress(1);
25086                 Roo.MessageBox.hide();
25087             }
25088         }
25089         
25090         if(success){
25091             if(o.reset){
25092                 this.reset();
25093             }
25094             Roo.callback(o.success, o.scope, [this, action]);
25095             this.fireEvent('actioncomplete', this, action);
25096             
25097         }else{
25098             
25099             // failure condition..
25100             // we have a scenario where updates need confirming.
25101             // eg. if a locking scenario exists..
25102             // we look for { errors : { needs_confirm : true }} in the response.
25103             if (
25104                 (typeof(action.result) != 'undefined')  &&
25105                 (typeof(action.result.errors) != 'undefined')  &&
25106                 (typeof(action.result.errors.needs_confirm) != 'undefined')
25107            ){
25108                 var _t = this;
25109                 Roo.MessageBox.confirm(
25110                     "Change requires confirmation",
25111                     action.result.errorMsg,
25112                     function(r) {
25113                         if (r != 'yes') {
25114                             return;
25115                         }
25116                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
25117                     }
25118                     
25119                 );
25120                 
25121                 
25122                 
25123                 return;
25124             }
25125             
25126             Roo.callback(o.failure, o.scope, [this, action]);
25127             // show an error message if no failed handler is set..
25128             if (!this.hasListener('actionfailed')) {
25129                 Roo.MessageBox.alert("Error",
25130                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
25131                         action.result.errorMsg :
25132                         "Saving Failed, please check your entries or try again"
25133                 );
25134             }
25135             
25136             this.fireEvent('actionfailed', this, action);
25137         }
25138         
25139     },
25140
25141     /**
25142      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
25143      * @param {String} id The value to search for
25144      * @return Field
25145      */
25146     findField : function(id){
25147         var field = this.items.get(id);
25148         if(!field){
25149             this.items.each(function(f){
25150                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
25151                     field = f;
25152                     return false;
25153                 }
25154             });
25155         }
25156         return field || null;
25157     },
25158
25159     /**
25160      * Add a secondary form to this one, 
25161      * Used to provide tabbed forms. One form is primary, with hidden values 
25162      * which mirror the elements from the other forms.
25163      * 
25164      * @param {Roo.form.Form} form to add.
25165      * 
25166      */
25167     addForm : function(form)
25168     {
25169        
25170         if (this.childForms.indexOf(form) > -1) {
25171             // already added..
25172             return;
25173         }
25174         this.childForms.push(form);
25175         var n = '';
25176         Roo.each(form.allItems, function (fe) {
25177             
25178             n = typeof(fe.getName) == 'undefined' ? fe.name : fe.getName();
25179             if (this.findField(n)) { // already added..
25180                 return;
25181             }
25182             var add = new Roo.form.Hidden({
25183                 name : n
25184             });
25185             add.render(this.el);
25186             
25187             this.add( add );
25188         }, this);
25189         
25190     },
25191     /**
25192      * Mark fields in this form invalid in bulk.
25193      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
25194      * @return {BasicForm} this
25195      */
25196     markInvalid : function(errors){
25197         if(errors instanceof Array){
25198             for(var i = 0, len = errors.length; i < len; i++){
25199                 var fieldError = errors[i];
25200                 var f = this.findField(fieldError.id);
25201                 if(f){
25202                     f.markInvalid(fieldError.msg);
25203                 }
25204             }
25205         }else{
25206             var field, id;
25207             for(id in errors){
25208                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
25209                     field.markInvalid(errors[id]);
25210                 }
25211             }
25212         }
25213         Roo.each(this.childForms || [], function (f) {
25214             f.markInvalid(errors);
25215         });
25216         
25217         return this;
25218     },
25219
25220     /**
25221      * Set values for fields in this form in bulk.
25222      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
25223      * @return {BasicForm} this
25224      */
25225     setValues : function(values){
25226         if(values instanceof Array){ // array of objects
25227             for(var i = 0, len = values.length; i < len; i++){
25228                 var v = values[i];
25229                 var f = this.findField(v.id);
25230                 if(f){
25231                     f.setValue(v.value);
25232                     if(this.trackResetOnLoad){
25233                         f.originalValue = f.getValue();
25234                     }
25235                 }
25236             }
25237         }else{ // object hash
25238             var field, id;
25239             for(id in values){
25240                 if(typeof values[id] != 'function' && (field = this.findField(id))){
25241                     
25242                     if (field.setFromData && 
25243                         field.valueField && 
25244                         field.displayField &&
25245                         // combos' with local stores can 
25246                         // be queried via setValue()
25247                         // to set their value..
25248                         (field.store && !field.store.isLocal)
25249                         ) {
25250                         // it's a combo
25251                         var sd = { };
25252                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
25253                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
25254                         field.setFromData(sd);
25255                         
25256                     } else {
25257                         field.setValue(values[id]);
25258                     }
25259                     
25260                     
25261                     if(this.trackResetOnLoad){
25262                         field.originalValue = field.getValue();
25263                     }
25264                 }
25265             }
25266         }
25267         this.resetHasChanged();
25268         
25269         
25270         Roo.each(this.childForms || [], function (f) {
25271             f.setValues(values);
25272             f.resetHasChanged();
25273         });
25274                 
25275         return this;
25276     },
25277  
25278     /**
25279      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
25280      * they are returned as an array.
25281      * @param {Boolean} asString
25282      * @return {Object}
25283      */
25284     getValues : function(asString){
25285         if (this.childForms) {
25286             // copy values from the child forms
25287             Roo.each(this.childForms, function (f) {
25288                 this.setValues(f.getValues());
25289             }, this);
25290         }
25291         
25292         // use formdata
25293         if (typeof(FormData) != 'undefined' && asString !== true) {
25294             var fd = (new FormData(this.el.dom)).entries();
25295             var ret = {};
25296             var ent = fd.next();
25297             while (!ent.done) {
25298                 ret[ent.value[0]] = ent.value[1]; // not sure how this will handle duplicates..
25299                 ent = fd.next();
25300             };
25301             return ret;
25302         }
25303         
25304         
25305         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
25306         if(asString === true){
25307             return fs;
25308         }
25309         return Roo.urlDecode(fs);
25310     },
25311     
25312     /**
25313      * Returns the fields in this form as an object with key/value pairs. 
25314      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
25315      * @return {Object}
25316      */
25317     getFieldValues : function(with_hidden)
25318     {
25319         if (this.childForms) {
25320             // copy values from the child forms
25321             // should this call getFieldValues - probably not as we do not currently copy
25322             // hidden fields when we generate..
25323             Roo.each(this.childForms, function (f) {
25324                 this.setValues(f.getValues());
25325             }, this);
25326         }
25327         
25328         var ret = {};
25329         this.items.each(function(f){
25330             if (!f.getName()) {
25331                 return;
25332             }
25333             var v = f.getValue();
25334             if (f.inputType =='radio') {
25335                 if (typeof(ret[f.getName()]) == 'undefined') {
25336                     ret[f.getName()] = ''; // empty..
25337                 }
25338                 
25339                 if (!f.el.dom.checked) {
25340                     return;
25341                     
25342                 }
25343                 v = f.el.dom.value;
25344                 
25345             }
25346             
25347             // not sure if this supported any more..
25348             if ((typeof(v) == 'object') && f.getRawValue) {
25349                 v = f.getRawValue() ; // dates..
25350             }
25351             // combo boxes where name != hiddenName...
25352             if (f.name != f.getName()) {
25353                 ret[f.name] = f.getRawValue();
25354             }
25355             ret[f.getName()] = v;
25356         });
25357         
25358         return ret;
25359     },
25360
25361     /**
25362      * Clears all invalid messages in this form.
25363      * @return {BasicForm} this
25364      */
25365     clearInvalid : function(){
25366         this.items.each(function(f){
25367            f.clearInvalid();
25368         });
25369         
25370         Roo.each(this.childForms || [], function (f) {
25371             f.clearInvalid();
25372         });
25373         
25374         
25375         return this;
25376     },
25377
25378     /**
25379      * Resets this form.
25380      * @return {BasicForm} this
25381      */
25382     reset : function(){
25383         this.items.each(function(f){
25384             f.reset();
25385         });
25386         
25387         Roo.each(this.childForms || [], function (f) {
25388             f.reset();
25389         });
25390         this.resetHasChanged();
25391         
25392         return this;
25393     },
25394
25395     /**
25396      * Add Roo.form components to this form.
25397      * @param {Field} field1
25398      * @param {Field} field2 (optional)
25399      * @param {Field} etc (optional)
25400      * @return {BasicForm} this
25401      */
25402     add : function(){
25403         this.items.addAll(Array.prototype.slice.call(arguments, 0));
25404         return this;
25405     },
25406
25407
25408     /**
25409      * Removes a field from the items collection (does NOT remove its markup).
25410      * @param {Field} field
25411      * @return {BasicForm} this
25412      */
25413     remove : function(field){
25414         this.items.remove(field);
25415         return this;
25416     },
25417
25418     /**
25419      * Looks at the fields in this form, checks them for an id attribute,
25420      * and calls applyTo on the existing dom element with that id.
25421      * @return {BasicForm} this
25422      */
25423     render : function(){
25424         this.items.each(function(f){
25425             if(f.isFormField && !f.rendered && document.getElementById(f.id)){ // if the element exists
25426                 f.applyTo(f.id);
25427             }
25428         });
25429         return this;
25430     },
25431
25432     /**
25433      * Calls {@link Ext#apply} for all fields in this form with the passed object.
25434      * @param {Object} values
25435      * @return {BasicForm} this
25436      */
25437     applyToFields : function(o){
25438         this.items.each(function(f){
25439            Roo.apply(f, o);
25440         });
25441         return this;
25442     },
25443
25444     /**
25445      * Calls {@link Ext#applyIf} for all field in this form with the passed object.
25446      * @param {Object} values
25447      * @return {BasicForm} this
25448      */
25449     applyIfToFields : function(o){
25450         this.items.each(function(f){
25451            Roo.applyIf(f, o);
25452         });
25453         return this;
25454     }
25455 });
25456
25457 // back compat
25458 Roo.BasicForm = Roo.form.BasicForm;
25459
25460 Roo.apply(Roo.form.BasicForm, {
25461     
25462     popover : {
25463         
25464         padding : 5,
25465         
25466         isApplied : false,
25467         
25468         isMasked : false,
25469         
25470         form : false,
25471         
25472         target : false,
25473         
25474         intervalID : false,
25475         
25476         maskEl : false,
25477         
25478         apply : function()
25479         {
25480             if(this.isApplied){
25481                 return;
25482             }
25483             
25484             this.maskEl = {
25485                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
25486                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
25487                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
25488                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
25489             };
25490             
25491             this.maskEl.top.enableDisplayMode("block");
25492             this.maskEl.left.enableDisplayMode("block");
25493             this.maskEl.bottom.enableDisplayMode("block");
25494             this.maskEl.right.enableDisplayMode("block");
25495             
25496             Roo.get(document.body).on('click', function(){
25497                 this.unmask();
25498             }, this);
25499             
25500             Roo.get(document.body).on('touchstart', function(){
25501                 this.unmask();
25502             }, this);
25503             
25504             this.isApplied = true
25505         },
25506         
25507         mask : function(form, target)
25508         {
25509             this.form = form;
25510             
25511             this.target = target;
25512             
25513             if(!this.form.errorMask || !target.el){
25514                 return;
25515             }
25516             
25517             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.x-layout-active-content', 100, true) || Roo.get(document.body);
25518             
25519             var ot = this.target.el.calcOffsetsTo(scrollable);
25520             
25521             var scrollTo = ot[1] - this.form.maskOffset;
25522             
25523             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
25524             
25525             scrollable.scrollTo('top', scrollTo);
25526             
25527             var el = this.target.wrap || this.target.el;
25528             
25529             var box = el.getBox();
25530             
25531             this.maskEl.top.setStyle('position', 'absolute');
25532             this.maskEl.top.setStyle('z-index', 10000);
25533             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
25534             this.maskEl.top.setLeft(0);
25535             this.maskEl.top.setTop(0);
25536             this.maskEl.top.show();
25537             
25538             this.maskEl.left.setStyle('position', 'absolute');
25539             this.maskEl.left.setStyle('z-index', 10000);
25540             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
25541             this.maskEl.left.setLeft(0);
25542             this.maskEl.left.setTop(box.y - this.padding);
25543             this.maskEl.left.show();
25544
25545             this.maskEl.bottom.setStyle('position', 'absolute');
25546             this.maskEl.bottom.setStyle('z-index', 10000);
25547             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
25548             this.maskEl.bottom.setLeft(0);
25549             this.maskEl.bottom.setTop(box.bottom + this.padding);
25550             this.maskEl.bottom.show();
25551
25552             this.maskEl.right.setStyle('position', 'absolute');
25553             this.maskEl.right.setStyle('z-index', 10000);
25554             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
25555             this.maskEl.right.setLeft(box.right + this.padding);
25556             this.maskEl.right.setTop(box.y - this.padding);
25557             this.maskEl.right.show();
25558
25559             this.intervalID = window.setInterval(function() {
25560                 Roo.form.BasicForm.popover.unmask();
25561             }, 10000);
25562
25563             window.onwheel = function(){ return false;};
25564             
25565             (function(){ this.isMasked = true; }).defer(500, this);
25566             
25567         },
25568         
25569         unmask : function()
25570         {
25571             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
25572                 return;
25573             }
25574             
25575             this.maskEl.top.setStyle('position', 'absolute');
25576             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
25577             this.maskEl.top.hide();
25578
25579             this.maskEl.left.setStyle('position', 'absolute');
25580             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
25581             this.maskEl.left.hide();
25582
25583             this.maskEl.bottom.setStyle('position', 'absolute');
25584             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
25585             this.maskEl.bottom.hide();
25586
25587             this.maskEl.right.setStyle('position', 'absolute');
25588             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
25589             this.maskEl.right.hide();
25590             
25591             window.onwheel = function(){ return true;};
25592             
25593             if(this.intervalID){
25594                 window.clearInterval(this.intervalID);
25595                 this.intervalID = false;
25596             }
25597             
25598             this.isMasked = false;
25599             
25600         }
25601         
25602     }
25603     
25604 });/*
25605  * Based on:
25606  * Ext JS Library 1.1.1
25607  * Copyright(c) 2006-2007, Ext JS, LLC.
25608  *
25609  * Originally Released Under LGPL - original licence link has changed is not relivant.
25610  *
25611  * Fork - LGPL
25612  * <script type="text/javascript">
25613  */
25614
25615 /**
25616  * @class Roo.form.Form
25617  * @extends Roo.form.BasicForm
25618  * Adds the ability to dynamically render forms with JavaScript to {@link Roo.form.BasicForm}.
25619  * @constructor
25620  * @param {Object} config Configuration options
25621  */
25622 Roo.form.Form = function(config){
25623     var xitems =  [];
25624     if (config.items) {
25625         xitems = config.items;
25626         delete config.items;
25627     }
25628    
25629     
25630     Roo.form.Form.superclass.constructor.call(this, null, config);
25631     this.url = this.url || this.action;
25632     if(!this.root){
25633         this.root = new Roo.form.Layout(Roo.applyIf({
25634             id: Roo.id()
25635         }, config));
25636     }
25637     this.active = this.root;
25638     /**
25639      * Array of all the buttons that have been added to this form via {@link addButton}
25640      * @type Array
25641      */
25642     this.buttons = [];
25643     this.allItems = [];
25644     this.addEvents({
25645         /**
25646          * @event clientvalidation
25647          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
25648          * @param {Form} this
25649          * @param {Boolean} valid true if the form has passed client-side validation
25650          */
25651         clientvalidation: true,
25652         /**
25653          * @event rendered
25654          * Fires when the form is rendered
25655          * @param {Roo.form.Form} form
25656          */
25657         rendered : true
25658     });
25659     
25660     if (this.progressUrl) {
25661             // push a hidden field onto the list of fields..
25662             this.addxtype( {
25663                     xns: Roo.form, 
25664                     xtype : 'Hidden', 
25665                     name : 'UPLOAD_IDENTIFIER' 
25666             });
25667         }
25668         
25669     
25670     Roo.each(xitems, this.addxtype, this);
25671     
25672 };
25673
25674 Roo.extend(Roo.form.Form, Roo.form.BasicForm, {
25675     /**
25676      * @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
25677      */
25678     /**
25679      * @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
25680      */
25681     /**
25682      * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "center")
25683      */
25684     buttonAlign:'center',
25685
25686     /**
25687      * @cfg {Number} minButtonWidth Minimum width of all buttons in pixels (defaults to 75)
25688      */
25689     minButtonWidth:75,
25690
25691     /**
25692      * @cfg {String} labelAlign Valid values are "left," "top" and "right" (defaults to "left").
25693      * This property cascades to child containers if not set.
25694      */
25695     labelAlign:'left',
25696
25697     /**
25698      * @cfg {Boolean} monitorValid If true the form monitors its valid state <b>client-side</b> and
25699      * fires a looping event with that state. This is required to bind buttons to the valid
25700      * state using the config value formBind:true on the button.
25701      */
25702     monitorValid : false,
25703
25704     /**
25705      * @cfg {Number} monitorPoll The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)
25706      */
25707     monitorPoll : 200,
25708     
25709     /**
25710      * @cfg {String} progressUrl - Url to return progress data 
25711      */
25712     
25713     progressUrl : false,
25714     /**
25715      * @cfg {boolean|FormData} formData - true to use new 'FormData' post, or set to a new FormData({dom form}) Object, if
25716      * sending a formdata with extra parameters - eg uploaded elements.
25717      */
25718     
25719     formData : false,
25720     
25721     /**
25722      * Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the
25723      * fields are added and the column is closed. If no fields are passed the column remains open
25724      * until end() is called.
25725      * @param {Object} config The config to pass to the column
25726      * @param {Field} field1 (optional)
25727      * @param {Field} field2 (optional)
25728      * @param {Field} etc (optional)
25729      * @return Column The column container object
25730      */
25731     column : function(c){
25732         var col = new Roo.form.Column(c);
25733         this.start(col);
25734         if(arguments.length > 1){ // duplicate code required because of Opera
25735             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
25736             this.end();
25737         }
25738         return col;
25739     },
25740
25741     /**
25742      * Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the
25743      * fields are added and the fieldset is closed. If no fields are passed the fieldset remains open
25744      * until end() is called.
25745      * @param {Object} config The config to pass to the fieldset
25746      * @param {Field} field1 (optional)
25747      * @param {Field} field2 (optional)
25748      * @param {Field} etc (optional)
25749      * @return FieldSet The fieldset container object
25750      */
25751     fieldset : function(c){
25752         var fs = new Roo.form.FieldSet(c);
25753         this.start(fs);
25754         if(arguments.length > 1){ // duplicate code required because of Opera
25755             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
25756             this.end();
25757         }
25758         return fs;
25759     },
25760
25761     /**
25762      * Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the
25763      * fields are added and the container is closed. If no fields are passed the container remains open
25764      * until end() is called.
25765      * @param {Object} config The config to pass to the Layout
25766      * @param {Field} field1 (optional)
25767      * @param {Field} field2 (optional)
25768      * @param {Field} etc (optional)
25769      * @return Layout The container object
25770      */
25771     container : function(c){
25772         var l = new Roo.form.Layout(c);
25773         this.start(l);
25774         if(arguments.length > 1){ // duplicate code required because of Opera
25775             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
25776             this.end();
25777         }
25778         return l;
25779     },
25780
25781     /**
25782      * Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass.
25783      * @param {Object} container A Roo.form.Layout or subclass of Layout
25784      * @return {Form} this
25785      */
25786     start : function(c){
25787         // cascade label info
25788         Roo.applyIf(c, {'labelAlign': this.active.labelAlign, 'labelWidth': this.active.labelWidth, 'itemCls': this.active.itemCls});
25789         this.active.stack.push(c);
25790         c.ownerCt = this.active;
25791         this.active = c;
25792         return this;
25793     },
25794
25795     /**
25796      * Closes the current open container
25797      * @return {Form} this
25798      */
25799     end : function(){
25800         if(this.active == this.root){
25801             return this;
25802         }
25803         this.active = this.active.ownerCt;
25804         return this;
25805     },
25806
25807     /**
25808      * Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method
25809      * can also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display
25810      * as the label of the field.
25811      * @param {Field} field1
25812      * @param {Field} field2 (optional)
25813      * @param {Field} etc. (optional)
25814      * @return {Form} this
25815      */
25816     add : function(){
25817         this.active.stack.push.apply(this.active.stack, arguments);
25818         this.allItems.push.apply(this.allItems,arguments);
25819         var r = [];
25820         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
25821             if(a[i].isFormField){
25822                 r.push(a[i]);
25823             }
25824         }
25825         if(r.length > 0){
25826             Roo.form.Form.superclass.add.apply(this, r);
25827         }
25828         return this;
25829     },
25830     
25831
25832     
25833     
25834     
25835      /**
25836      * Find any element that has been added to a form, using it's ID or name
25837      * This can include framesets, columns etc. along with regular fields..
25838      * @param {String} id - id or name to find.
25839      
25840      * @return {Element} e - or false if nothing found.
25841      */
25842     findbyId : function(id)
25843     {
25844         var ret = false;
25845         if (!id) {
25846             return ret;
25847         }
25848         Roo.each(this.allItems, function(f){
25849             if (f.id == id || f.name == id ){
25850                 ret = f;
25851                 return false;
25852             }
25853         });
25854         return ret;
25855     },
25856
25857     
25858     
25859     /**
25860      * Render this form into the passed container. This should only be called once!
25861      * @param {String/HTMLElement/Element} container The element this component should be rendered into
25862      * @return {Form} this
25863      */
25864     render : function(ct)
25865     {
25866         
25867         
25868         
25869         ct = Roo.get(ct);
25870         var o = this.autoCreate || {
25871             tag: 'form',
25872             method : this.method || 'POST',
25873             id : this.id || Roo.id()
25874         };
25875         this.initEl(ct.createChild(o));
25876
25877         this.root.render(this.el);
25878         
25879        
25880              
25881         this.items.each(function(f){
25882             f.render('x-form-el-'+f.id);
25883         });
25884
25885         if(this.buttons.length > 0){
25886             // tables are required to maintain order and for correct IE layout
25887             var tb = this.el.createChild({cls:'x-form-btns-ct', cn: {
25888                 cls:"x-form-btns x-form-btns-"+this.buttonAlign,
25889                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
25890             }}, null, true);
25891             var tr = tb.getElementsByTagName('tr')[0];
25892             for(var i = 0, len = this.buttons.length; i < len; i++) {
25893                 var b = this.buttons[i];
25894                 var td = document.createElement('td');
25895                 td.className = 'x-form-btn-td';
25896                 b.render(tr.appendChild(td));
25897             }
25898         }
25899         if(this.monitorValid){ // initialize after render
25900             this.startMonitoring();
25901         }
25902         this.fireEvent('rendered', this);
25903         return this;
25904     },
25905
25906     /**
25907      * Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered.
25908      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
25909      * object or a valid Roo.DomHelper element config
25910      * @param {Function} handler The function called when the button is clicked
25911      * @param {Object} scope (optional) The scope of the handler function
25912      * @return {Roo.Button}
25913      */
25914     addButton : function(config, handler, scope){
25915         var bc = {
25916             handler: handler,
25917             scope: scope,
25918             minWidth: this.minButtonWidth,
25919             hideParent:true
25920         };
25921         if(typeof config == "string"){
25922             bc.text = config;
25923         }else{
25924             Roo.apply(bc, config);
25925         }
25926         var btn = new Roo.Button(null, bc);
25927         this.buttons.push(btn);
25928         return btn;
25929     },
25930
25931      /**
25932      * Adds a series of form elements (using the xtype property as the factory method.
25933      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)
25934      * @param {Object} config 
25935      */
25936     
25937     addxtype : function()
25938     {
25939         var ar = Array.prototype.slice.call(arguments, 0);
25940         var ret = false;
25941         for(var i = 0; i < ar.length; i++) {
25942             if (!ar[i]) {
25943                 continue; // skip -- if this happends something invalid got sent, we 
25944                 // should ignore it, as basically that interface element will not show up
25945                 // and that should be pretty obvious!!
25946             }
25947             
25948             if (Roo.form[ar[i].xtype]) {
25949                 ar[i].form = this;
25950                 var fe = Roo.factory(ar[i], Roo.form);
25951                 if (!ret) {
25952                     ret = fe;
25953                 }
25954                 fe.form = this;
25955                 if (fe.store) {
25956                     fe.store.form = this;
25957                 }
25958                 if (fe.isLayout) {  
25959                          
25960                     this.start(fe);
25961                     this.allItems.push(fe);
25962                     if (fe.items && fe.addxtype) {
25963                         fe.addxtype.apply(fe, fe.items);
25964                         delete fe.items;
25965                     }
25966                      this.end();
25967                     continue;
25968                 }
25969                 
25970                 
25971                  
25972                 this.add(fe);
25973               //  console.log('adding ' + ar[i].xtype);
25974             }
25975             if (ar[i].xtype == 'Button') {  
25976                 //console.log('adding button');
25977                 //console.log(ar[i]);
25978                 this.addButton(ar[i]);
25979                 this.allItems.push(fe);
25980                 continue;
25981             }
25982             
25983             if (ar[i].xtype == 'end') { // so we can add fieldsets... / layout etc.
25984                 alert('end is not supported on xtype any more, use items');
25985             //    this.end();
25986             //    //console.log('adding end');
25987             }
25988             
25989         }
25990         return ret;
25991     },
25992     
25993     /**
25994      * Starts monitoring of the valid state of this form. Usually this is done by passing the config
25995      * option "monitorValid"
25996      */
25997     startMonitoring : function(){
25998         if(!this.bound){
25999             this.bound = true;
26000             Roo.TaskMgr.start({
26001                 run : this.bindHandler,
26002                 interval : this.monitorPoll || 200,
26003                 scope: this
26004             });
26005         }
26006     },
26007
26008     /**
26009      * Stops monitoring of the valid state of this form
26010      */
26011     stopMonitoring : function(){
26012         this.bound = false;
26013     },
26014
26015     // private
26016     bindHandler : function(){
26017         if(!this.bound){
26018             return false; // stops binding
26019         }
26020         var valid = true;
26021         this.items.each(function(f){
26022             if(!f.isValid(true)){
26023                 valid = false;
26024                 return false;
26025             }
26026         });
26027         for(var i = 0, len = this.buttons.length; i < len; i++){
26028             var btn = this.buttons[i];
26029             if(btn.formBind === true && btn.disabled === valid){
26030                 btn.setDisabled(!valid);
26031             }
26032         }
26033         this.fireEvent('clientvalidation', this, valid);
26034     }
26035     
26036     
26037     
26038     
26039     
26040     
26041     
26042     
26043 });
26044
26045
26046 // back compat
26047 Roo.Form = Roo.form.Form;
26048 /*
26049  * Based on:
26050  * Ext JS Library 1.1.1
26051  * Copyright(c) 2006-2007, Ext JS, LLC.
26052  *
26053  * Originally Released Under LGPL - original licence link has changed is not relivant.
26054  *
26055  * Fork - LGPL
26056  * <script type="text/javascript">
26057  */
26058
26059 // as we use this in bootstrap.
26060 Roo.namespace('Roo.form');
26061  /**
26062  * @class Roo.form.Action
26063  * Internal Class used to handle form actions
26064  * @constructor
26065  * @param {Roo.form.BasicForm} el The form element or its id
26066  * @param {Object} config Configuration options
26067  */
26068
26069  
26070  
26071 // define the action interface
26072 Roo.form.Action = function(form, options){
26073     this.form = form;
26074     this.options = options || {};
26075 };
26076 /**
26077  * Client Validation Failed
26078  * @const 
26079  */
26080 Roo.form.Action.CLIENT_INVALID = 'client';
26081 /**
26082  * Server Validation Failed
26083  * @const 
26084  */
26085 Roo.form.Action.SERVER_INVALID = 'server';
26086  /**
26087  * Connect to Server Failed
26088  * @const 
26089  */
26090 Roo.form.Action.CONNECT_FAILURE = 'connect';
26091 /**
26092  * Reading Data from Server Failed
26093  * @const 
26094  */
26095 Roo.form.Action.LOAD_FAILURE = 'load';
26096
26097 Roo.form.Action.prototype = {
26098     type : 'default',
26099     failureType : undefined,
26100     response : undefined,
26101     result : undefined,
26102
26103     // interface method
26104     run : function(options){
26105
26106     },
26107
26108     // interface method
26109     success : function(response){
26110
26111     },
26112
26113     // interface method
26114     handleResponse : function(response){
26115
26116     },
26117
26118     // default connection failure
26119     failure : function(response){
26120         
26121         this.response = response;
26122         this.failureType = Roo.form.Action.CONNECT_FAILURE;
26123         this.form.afterAction(this, false);
26124     },
26125
26126     processResponse : function(response){
26127         this.response = response;
26128         if(!response.responseText){
26129             return true;
26130         }
26131         this.result = this.handleResponse(response);
26132         return this.result;
26133     },
26134
26135     // utility functions used internally
26136     getUrl : function(appendParams){
26137         var url = this.options.url || this.form.url || this.form.el.dom.action;
26138         if(appendParams){
26139             var p = this.getParams();
26140             if(p){
26141                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
26142             }
26143         }
26144         return url;
26145     },
26146
26147     getMethod : function(){
26148         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
26149     },
26150
26151     getParams : function(){
26152         var bp = this.form.baseParams;
26153         var p = this.options.params;
26154         if(p){
26155             if(typeof p == "object"){
26156                 p = Roo.urlEncode(Roo.applyIf(p, bp));
26157             }else if(typeof p == 'string' && bp){
26158                 p += '&' + Roo.urlEncode(bp);
26159             }
26160         }else if(bp){
26161             p = Roo.urlEncode(bp);
26162         }
26163         return p;
26164     },
26165
26166     createCallback : function(){
26167         return {
26168             success: this.success,
26169             failure: this.failure,
26170             scope: this,
26171             timeout: (this.form.timeout*1000),
26172             upload: this.form.fileUpload ? this.success : undefined
26173         };
26174     }
26175 };
26176
26177 Roo.form.Action.Submit = function(form, options){
26178     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
26179 };
26180
26181 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
26182     type : 'submit',
26183
26184     haveProgress : false,
26185     uploadComplete : false,
26186     
26187     // uploadProgress indicator.
26188     uploadProgress : function()
26189     {
26190         if (!this.form.progressUrl) {
26191             return;
26192         }
26193         
26194         if (!this.haveProgress) {
26195             Roo.MessageBox.progress("Uploading", "Uploading");
26196         }
26197         if (this.uploadComplete) {
26198            Roo.MessageBox.hide();
26199            return;
26200         }
26201         
26202         this.haveProgress = true;
26203    
26204         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
26205         
26206         var c = new Roo.data.Connection();
26207         c.request({
26208             url : this.form.progressUrl,
26209             params: {
26210                 id : uid
26211             },
26212             method: 'GET',
26213             success : function(req){
26214                //console.log(data);
26215                 var rdata = false;
26216                 var edata;
26217                 try  {
26218                    rdata = Roo.decode(req.responseText)
26219                 } catch (e) {
26220                     Roo.log("Invalid data from server..");
26221                     Roo.log(edata);
26222                     return;
26223                 }
26224                 if (!rdata || !rdata.success) {
26225                     Roo.log(rdata);
26226                     Roo.MessageBox.alert(Roo.encode(rdata));
26227                     return;
26228                 }
26229                 var data = rdata.data;
26230                 
26231                 if (this.uploadComplete) {
26232                    Roo.MessageBox.hide();
26233                    return;
26234                 }
26235                    
26236                 if (data){
26237                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
26238                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
26239                     );
26240                 }
26241                 this.uploadProgress.defer(2000,this);
26242             },
26243        
26244             failure: function(data) {
26245                 Roo.log('progress url failed ');
26246                 Roo.log(data);
26247             },
26248             scope : this
26249         });
26250            
26251     },
26252     
26253     
26254     run : function()
26255     {
26256         // run get Values on the form, so it syncs any secondary forms.
26257         this.form.getValues();
26258         
26259         var o = this.options;
26260         var method = this.getMethod();
26261         var isPost = method == 'POST';
26262         if(o.clientValidation === false || this.form.isValid()){
26263             
26264             if (this.form.progressUrl) {
26265                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
26266                     (new Date() * 1) + '' + Math.random());
26267                     
26268             } 
26269             
26270             
26271             Roo.Ajax.request(Roo.apply(this.createCallback(), {
26272                 form:this.form.el.dom,
26273                 url:this.getUrl(!isPost),
26274                 method: method,
26275                 params:isPost ? this.getParams() : null,
26276                 isUpload: this.form.fileUpload,
26277                 formData : this.form.formData
26278             }));
26279             
26280             this.uploadProgress();
26281
26282         }else if (o.clientValidation !== false){ // client validation failed
26283             this.failureType = Roo.form.Action.CLIENT_INVALID;
26284             this.form.afterAction(this, false);
26285         }
26286     },
26287
26288     success : function(response)
26289     {
26290         this.uploadComplete= true;
26291         if (this.haveProgress) {
26292             Roo.MessageBox.hide();
26293         }
26294         
26295         
26296         var result = this.processResponse(response);
26297         if(result === true || result.success){
26298             this.form.afterAction(this, true);
26299             return;
26300         }
26301         if(result.errors){
26302             this.form.markInvalid(result.errors);
26303             this.failureType = Roo.form.Action.SERVER_INVALID;
26304         }
26305         this.form.afterAction(this, false);
26306     },
26307     failure : function(response)
26308     {
26309         this.uploadComplete= true;
26310         if (this.haveProgress) {
26311             Roo.MessageBox.hide();
26312         }
26313         
26314         this.response = response;
26315         this.failureType = Roo.form.Action.CONNECT_FAILURE;
26316         this.form.afterAction(this, false);
26317     },
26318     
26319     handleResponse : function(response){
26320         if(this.form.errorReader){
26321             var rs = this.form.errorReader.read(response);
26322             var errors = [];
26323             if(rs.records){
26324                 for(var i = 0, len = rs.records.length; i < len; i++) {
26325                     var r = rs.records[i];
26326                     errors[i] = r.data;
26327                 }
26328             }
26329             if(errors.length < 1){
26330                 errors = null;
26331             }
26332             return {
26333                 success : rs.success,
26334                 errors : errors
26335             };
26336         }
26337         var ret = false;
26338         try {
26339             ret = Roo.decode(response.responseText);
26340         } catch (e) {
26341             ret = {
26342                 success: false,
26343                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
26344                 errors : []
26345             };
26346         }
26347         return ret;
26348         
26349     }
26350 });
26351
26352
26353 Roo.form.Action.Load = function(form, options){
26354     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
26355     this.reader = this.form.reader;
26356 };
26357
26358 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
26359     type : 'load',
26360
26361     run : function(){
26362         
26363         Roo.Ajax.request(Roo.apply(
26364                 this.createCallback(), {
26365                     method:this.getMethod(),
26366                     url:this.getUrl(false),
26367                     params:this.getParams()
26368         }));
26369     },
26370
26371     success : function(response){
26372         
26373         var result = this.processResponse(response);
26374         if(result === true || !result.success || !result.data){
26375             this.failureType = Roo.form.Action.LOAD_FAILURE;
26376             this.form.afterAction(this, false);
26377             return;
26378         }
26379         this.form.clearInvalid();
26380         this.form.setValues(result.data);
26381         this.form.afterAction(this, true);
26382     },
26383
26384     handleResponse : function(response){
26385         if(this.form.reader){
26386             var rs = this.form.reader.read(response);
26387             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
26388             return {
26389                 success : rs.success,
26390                 data : data
26391             };
26392         }
26393         return Roo.decode(response.responseText);
26394     }
26395 });
26396
26397 Roo.form.Action.ACTION_TYPES = {
26398     'load' : Roo.form.Action.Load,
26399     'submit' : Roo.form.Action.Submit
26400 };/*
26401  * Based on:
26402  * Ext JS Library 1.1.1
26403  * Copyright(c) 2006-2007, Ext JS, LLC.
26404  *
26405  * Originally Released Under LGPL - original licence link has changed is not relivant.
26406  *
26407  * Fork - LGPL
26408  * <script type="text/javascript">
26409  */
26410  
26411 /**
26412  * @class Roo.form.Layout
26413  * @extends Roo.Component
26414  * Creates a container for layout and rendering of fields in an {@link Roo.form.Form}.
26415  * @constructor
26416  * @param {Object} config Configuration options
26417  */
26418 Roo.form.Layout = function(config){
26419     var xitems = [];
26420     if (config.items) {
26421         xitems = config.items;
26422         delete config.items;
26423     }
26424     Roo.form.Layout.superclass.constructor.call(this, config);
26425     this.stack = [];
26426     Roo.each(xitems, this.addxtype, this);
26427      
26428 };
26429
26430 Roo.extend(Roo.form.Layout, Roo.Component, {
26431     /**
26432      * @cfg {String/Object} autoCreate
26433      * A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})
26434      */
26435     /**
26436      * @cfg {String/Object/Function} style
26437      * A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
26438      * a function which returns such a specification.
26439      */
26440     /**
26441      * @cfg {String} labelAlign
26442      * Valid values are "left," "top" and "right" (defaults to "left")
26443      */
26444     /**
26445      * @cfg {Number} labelWidth
26446      * Fixed width in pixels of all field labels (defaults to undefined)
26447      */
26448     /**
26449      * @cfg {Boolean} clear
26450      * True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)
26451      */
26452     clear : true,
26453     /**
26454      * @cfg {String} labelSeparator
26455      * The separator to use after field labels (defaults to ':')
26456      */
26457     labelSeparator : ':',
26458     /**
26459      * @cfg {Boolean} hideLabels
26460      * True to suppress the display of field labels in this layout (defaults to false)
26461      */
26462     hideLabels : false,
26463
26464     // private
26465     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct'},
26466     
26467     isLayout : true,
26468     
26469     // private
26470     onRender : function(ct, position){
26471         if(this.el){ // from markup
26472             this.el = Roo.get(this.el);
26473         }else {  // generate
26474             var cfg = this.getAutoCreate();
26475             this.el = ct.createChild(cfg, position);
26476         }
26477         if(this.style){
26478             this.el.applyStyles(this.style);
26479         }
26480         if(this.labelAlign){
26481             this.el.addClass('x-form-label-'+this.labelAlign);
26482         }
26483         if(this.hideLabels){
26484             this.labelStyle = "display:none";
26485             this.elementStyle = "padding-left:0;";
26486         }else{
26487             if(typeof this.labelWidth == 'number'){
26488                 this.labelStyle = "width:"+this.labelWidth+"px;";
26489                 this.elementStyle = "padding-left:"+((this.labelWidth+(typeof this.labelPad == 'number' ? this.labelPad : 5))+'px')+";";
26490             }
26491             if(this.labelAlign == 'top'){
26492                 this.labelStyle = "width:auto;";
26493                 this.elementStyle = "padding-left:0;";
26494             }
26495         }
26496         var stack = this.stack;
26497         var slen = stack.length;
26498         if(slen > 0){
26499             if(!this.fieldTpl){
26500                 var t = new Roo.Template(
26501                     '<div class="x-form-item {5}">',
26502                         '<label for="{0}" style="{2}">{1}{4}</label>',
26503                         '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
26504                         '</div>',
26505                     '</div><div class="x-form-clear-left"></div>'
26506                 );
26507                 t.disableFormats = true;
26508                 t.compile();
26509                 Roo.form.Layout.prototype.fieldTpl = t;
26510             }
26511             for(var i = 0; i < slen; i++) {
26512                 if(stack[i].isFormField){
26513                     this.renderField(stack[i]);
26514                 }else{
26515                     this.renderComponent(stack[i]);
26516                 }
26517             }
26518         }
26519         if(this.clear){
26520             this.el.createChild({cls:'x-form-clear'});
26521         }
26522     },
26523
26524     // private
26525     renderField : function(f){
26526         f.fieldEl = Roo.get(this.fieldTpl.append(this.el, [
26527                f.id, //0
26528                f.fieldLabel, //1
26529                f.labelStyle||this.labelStyle||'', //2
26530                this.elementStyle||'', //3
26531                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator, //4
26532                f.itemCls||this.itemCls||''  //5
26533        ], true).getPrevSibling());
26534     },
26535
26536     // private
26537     renderComponent : function(c){
26538         c.render(c.isLayout ? this.el : this.el.createChild());    
26539     },
26540     /**
26541      * Adds a object form elements (using the xtype property as the factory method.)
26542      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column
26543      * @param {Object} config 
26544      */
26545     addxtype : function(o)
26546     {
26547         // create the lement.
26548         o.form = this.form;
26549         var fe = Roo.factory(o, Roo.form);
26550         this.form.allItems.push(fe);
26551         this.stack.push(fe);
26552         
26553         if (fe.isFormField) {
26554             this.form.items.add(fe);
26555         }
26556          
26557         return fe;
26558     }
26559 });
26560
26561 /**
26562  * @class Roo.form.Column
26563  * @extends Roo.form.Layout
26564  * Creates a column container for layout and rendering of fields in an {@link Roo.form.Form}.
26565  * @constructor
26566  * @param {Object} config Configuration options
26567  */
26568 Roo.form.Column = function(config){
26569     Roo.form.Column.superclass.constructor.call(this, config);
26570 };
26571
26572 Roo.extend(Roo.form.Column, Roo.form.Layout, {
26573     /**
26574      * @cfg {Number/String} width
26575      * The fixed width of the column in pixels or CSS value (defaults to "auto")
26576      */
26577     /**
26578      * @cfg {String/Object} autoCreate
26579      * A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})
26580      */
26581
26582     // private
26583     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-column'},
26584
26585     // private
26586     onRender : function(ct, position){
26587         Roo.form.Column.superclass.onRender.call(this, ct, position);
26588         if(this.width){
26589             this.el.setWidth(this.width);
26590         }
26591     }
26592 });
26593
26594
26595 /**
26596  * @class Roo.form.Row
26597  * @extends Roo.form.Layout
26598  * Creates a row container for layout and rendering of fields in an {@link Roo.form.Form}.
26599  * @constructor
26600  * @param {Object} config Configuration options
26601  */
26602
26603  
26604 Roo.form.Row = function(config){
26605     Roo.form.Row.superclass.constructor.call(this, config);
26606 };
26607  
26608 Roo.extend(Roo.form.Row, Roo.form.Layout, {
26609       /**
26610      * @cfg {Number/String} width
26611      * The fixed width of the column in pixels or CSS value (defaults to "auto")
26612      */
26613     /**
26614      * @cfg {Number/String} height
26615      * The fixed height of the column in pixels or CSS value (defaults to "auto")
26616      */
26617     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-row'},
26618     
26619     padWidth : 20,
26620     // private
26621     onRender : function(ct, position){
26622         //console.log('row render');
26623         if(!this.rowTpl){
26624             var t = new Roo.Template(
26625                 '<div class="x-form-item {5}" style="float:left;width:{6}px">',
26626                     '<label for="{0}" style="{2}">{1}{4}</label>',
26627                     '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
26628                     '</div>',
26629                 '</div>'
26630             );
26631             t.disableFormats = true;
26632             t.compile();
26633             Roo.form.Layout.prototype.rowTpl = t;
26634         }
26635         this.fieldTpl = this.rowTpl;
26636         
26637         //console.log('lw' + this.labelWidth +', la:' + this.labelAlign);
26638         var labelWidth = 100;
26639         
26640         if ((this.labelAlign != 'top')) {
26641             if (typeof this.labelWidth == 'number') {
26642                 labelWidth = this.labelWidth
26643             }
26644             this.padWidth =  20 + labelWidth;
26645             
26646         }
26647         
26648         Roo.form.Column.superclass.onRender.call(this, ct, position);
26649         if(this.width){
26650             this.el.setWidth(this.width);
26651         }
26652         if(this.height){
26653             this.el.setHeight(this.height);
26654         }
26655     },
26656     
26657     // private
26658     renderField : function(f){
26659         f.fieldEl = this.fieldTpl.append(this.el, [
26660                f.id, f.fieldLabel,
26661                f.labelStyle||this.labelStyle||'',
26662                this.elementStyle||'',
26663                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator,
26664                f.itemCls||this.itemCls||'',
26665                f.width ? f.width + this.padWidth : 160 + this.padWidth
26666        ],true);
26667     }
26668 });
26669  
26670
26671 /**
26672  * @class Roo.form.FieldSet
26673  * @extends Roo.form.Layout
26674  * Creates a fieldset container for layout and rendering of fields in an {@link Roo.form.Form}.
26675  * @constructor
26676  * @param {Object} config Configuration options
26677  */
26678 Roo.form.FieldSet = function(config){
26679     Roo.form.FieldSet.superclass.constructor.call(this, config);
26680 };
26681
26682 Roo.extend(Roo.form.FieldSet, Roo.form.Layout, {
26683     /**
26684      * @cfg {String} legend
26685      * The text to display as the legend for the FieldSet (defaults to '')
26686      */
26687     /**
26688      * @cfg {String/Object} autoCreate
26689      * A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})
26690      */
26691
26692     // private
26693     defaultAutoCreate : {tag: 'fieldset', cn: {tag:'legend'}},
26694
26695     // private
26696     onRender : function(ct, position){
26697         Roo.form.FieldSet.superclass.onRender.call(this, ct, position);
26698         if(this.legend){
26699             this.setLegend(this.legend);
26700         }
26701     },
26702
26703     // private
26704     setLegend : function(text){
26705         if(this.rendered){
26706             this.el.child('legend').update(text);
26707         }
26708     }
26709 });/*
26710  * Based on:
26711  * Ext JS Library 1.1.1
26712  * Copyright(c) 2006-2007, Ext JS, LLC.
26713  *
26714  * Originally Released Under LGPL - original licence link has changed is not relivant.
26715  *
26716  * Fork - LGPL
26717  * <script type="text/javascript">
26718  */
26719 /**
26720  * @class Roo.form.VTypes
26721  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
26722  * @singleton
26723  */
26724 Roo.form.VTypes = function(){
26725     // closure these in so they are only created once.
26726     var alpha = /^[a-zA-Z_]+$/;
26727     var alphanum = /^[a-zA-Z0-9_]+$/;
26728     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
26729     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
26730
26731     // All these messages and functions are configurable
26732     return {
26733         /**
26734          * The function used to validate email addresses
26735          * @param {String} value The email address
26736          */
26737         'email' : function(v){
26738             return email.test(v);
26739         },
26740         /**
26741          * The error text to display when the email validation function returns false
26742          * @type String
26743          */
26744         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
26745         /**
26746          * The keystroke filter mask to be applied on email input
26747          * @type RegExp
26748          */
26749         'emailMask' : /[a-z0-9_\.\-@]/i,
26750
26751         /**
26752          * The function used to validate URLs
26753          * @param {String} value The URL
26754          */
26755         'url' : function(v){
26756             return url.test(v);
26757         },
26758         /**
26759          * The error text to display when the url validation function returns false
26760          * @type String
26761          */
26762         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
26763         
26764         /**
26765          * The function used to validate alpha values
26766          * @param {String} value The value
26767          */
26768         'alpha' : function(v){
26769             return alpha.test(v);
26770         },
26771         /**
26772          * The error text to display when the alpha validation function returns false
26773          * @type String
26774          */
26775         'alphaText' : 'This field should only contain letters and _',
26776         /**
26777          * The keystroke filter mask to be applied on alpha input
26778          * @type RegExp
26779          */
26780         'alphaMask' : /[a-z_]/i,
26781
26782         /**
26783          * The function used to validate alphanumeric values
26784          * @param {String} value The value
26785          */
26786         'alphanum' : function(v){
26787             return alphanum.test(v);
26788         },
26789         /**
26790          * The error text to display when the alphanumeric validation function returns false
26791          * @type String
26792          */
26793         'alphanumText' : 'This field should only contain letters, numbers and _',
26794         /**
26795          * The keystroke filter mask to be applied on alphanumeric input
26796          * @type RegExp
26797          */
26798         'alphanumMask' : /[a-z0-9_]/i
26799     };
26800 }();//<script type="text/javascript">
26801
26802 /**
26803  * @class Roo.form.FCKeditor
26804  * @extends Roo.form.TextArea
26805  * Wrapper around the FCKEditor http://www.fckeditor.net
26806  * @constructor
26807  * Creates a new FCKeditor
26808  * @param {Object} config Configuration options
26809  */
26810 Roo.form.FCKeditor = function(config){
26811     Roo.form.FCKeditor.superclass.constructor.call(this, config);
26812     this.addEvents({
26813          /**
26814          * @event editorinit
26815          * Fired when the editor is initialized - you can add extra handlers here..
26816          * @param {FCKeditor} this
26817          * @param {Object} the FCK object.
26818          */
26819         editorinit : true
26820     });
26821     
26822     
26823 };
26824 Roo.form.FCKeditor.editors = { };
26825 Roo.extend(Roo.form.FCKeditor, Roo.form.TextArea,
26826 {
26827     //defaultAutoCreate : {
26828     //    tag : "textarea",style   : "width:100px;height:60px;" ,autocomplete    : "off"
26829     //},
26830     // private
26831     /**
26832      * @cfg {Object} fck options - see fck manual for details.
26833      */
26834     fckconfig : false,
26835     
26836     /**
26837      * @cfg {Object} fck toolbar set (Basic or Default)
26838      */
26839     toolbarSet : 'Basic',
26840     /**
26841      * @cfg {Object} fck BasePath
26842      */ 
26843     basePath : '/fckeditor/',
26844     
26845     
26846     frame : false,
26847     
26848     value : '',
26849     
26850    
26851     onRender : function(ct, position)
26852     {
26853         if(!this.el){
26854             this.defaultAutoCreate = {
26855                 tag: "textarea",
26856                 style:"width:300px;height:60px;",
26857                 autocomplete: "new-password"
26858             };
26859         }
26860         Roo.form.FCKeditor.superclass.onRender.call(this, ct, position);
26861         /*
26862         if(this.grow){
26863             this.textSizeEl = Roo.DomHelper.append(document.body, {tag: "pre", cls: "x-form-grow-sizer"});
26864             if(this.preventScrollbars){
26865                 this.el.setStyle("overflow", "hidden");
26866             }
26867             this.el.setHeight(this.growMin);
26868         }
26869         */
26870         //console.log('onrender' + this.getId() );
26871         Roo.form.FCKeditor.editors[this.getId()] = this;
26872          
26873
26874         this.replaceTextarea() ;
26875         
26876     },
26877     
26878     getEditor : function() {
26879         return this.fckEditor;
26880     },
26881     /**
26882      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
26883      * @param {Mixed} value The value to set
26884      */
26885     
26886     
26887     setValue : function(value)
26888     {
26889         //console.log('setValue: ' + value);
26890         
26891         if(typeof(value) == 'undefined') { // not sure why this is happending...
26892             return;
26893         }
26894         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
26895         
26896         //if(!this.el || !this.getEditor()) {
26897         //    this.value = value;
26898             //this.setValue.defer(100,this,[value]);    
26899         //    return;
26900         //} 
26901         
26902         if(!this.getEditor()) {
26903             return;
26904         }
26905         
26906         this.getEditor().SetData(value);
26907         
26908         //
26909
26910     },
26911
26912     /**
26913      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
26914      * @return {Mixed} value The field value
26915      */
26916     getValue : function()
26917     {
26918         
26919         if (this.frame && this.frame.dom.style.display == 'none') {
26920             return Roo.form.FCKeditor.superclass.getValue.call(this);
26921         }
26922         
26923         if(!this.el || !this.getEditor()) {
26924            
26925            // this.getValue.defer(100,this); 
26926             return this.value;
26927         }
26928        
26929         
26930         var value=this.getEditor().GetData();
26931         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
26932         return Roo.form.FCKeditor.superclass.getValue.call(this);
26933         
26934
26935     },
26936
26937     /**
26938      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
26939      * @return {Mixed} value The field value
26940      */
26941     getRawValue : function()
26942     {
26943         if (this.frame && this.frame.dom.style.display == 'none') {
26944             return Roo.form.FCKeditor.superclass.getRawValue.call(this);
26945         }
26946         
26947         if(!this.el || !this.getEditor()) {
26948             //this.getRawValue.defer(100,this); 
26949             return this.value;
26950             return;
26951         }
26952         
26953         
26954         
26955         var value=this.getEditor().GetData();
26956         Roo.form.FCKeditor.superclass.setRawValue.apply(this,[value]);
26957         return Roo.form.FCKeditor.superclass.getRawValue.call(this);
26958          
26959     },
26960     
26961     setSize : function(w,h) {
26962         
26963         
26964         
26965         //if (this.frame && this.frame.dom.style.display == 'none') {
26966         //    Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
26967         //    return;
26968         //}
26969         //if(!this.el || !this.getEditor()) {
26970         //    this.setSize.defer(100,this, [w,h]); 
26971         //    return;
26972         //}
26973         
26974         
26975         
26976         Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
26977         
26978         this.frame.dom.setAttribute('width', w);
26979         this.frame.dom.setAttribute('height', h);
26980         this.frame.setSize(w,h);
26981         
26982     },
26983     
26984     toggleSourceEdit : function(value) {
26985         
26986       
26987          
26988         this.el.dom.style.display = value ? '' : 'none';
26989         this.frame.dom.style.display = value ?  'none' : '';
26990         
26991     },
26992     
26993     
26994     focus: function(tag)
26995     {
26996         if (this.frame.dom.style.display == 'none') {
26997             return Roo.form.FCKeditor.superclass.focus.call(this);
26998         }
26999         if(!this.el || !this.getEditor()) {
27000             this.focus.defer(100,this, [tag]); 
27001             return;
27002         }
27003         
27004         
27005         
27006         
27007         var tgs = this.getEditor().EditorDocument.getElementsByTagName(tag);
27008         this.getEditor().Focus();
27009         if (tgs.length) {
27010             if (!this.getEditor().Selection.GetSelection()) {
27011                 this.focus.defer(100,this, [tag]); 
27012                 return;
27013             }
27014             
27015             
27016             var r = this.getEditor().EditorDocument.createRange();
27017             r.setStart(tgs[0],0);
27018             r.setEnd(tgs[0],0);
27019             this.getEditor().Selection.GetSelection().removeAllRanges();
27020             this.getEditor().Selection.GetSelection().addRange(r);
27021             this.getEditor().Focus();
27022         }
27023         
27024     },
27025     
27026     
27027     
27028     replaceTextarea : function()
27029     {
27030         if ( document.getElementById( this.getId() + '___Frame' ) ) {
27031             return ;
27032         }
27033         //if ( !this.checkBrowser || this._isCompatibleBrowser() )
27034         //{
27035             // We must check the elements firstly using the Id and then the name.
27036         var oTextarea = document.getElementById( this.getId() );
27037         
27038         var colElementsByName = document.getElementsByName( this.getId() ) ;
27039          
27040         oTextarea.style.display = 'none' ;
27041
27042         if ( oTextarea.tabIndex ) {            
27043             this.TabIndex = oTextarea.tabIndex ;
27044         }
27045         
27046         this._insertHtmlBefore( this._getConfigHtml(), oTextarea ) ;
27047         this._insertHtmlBefore( this._getIFrameHtml(), oTextarea ) ;
27048         this.frame = Roo.get(this.getId() + '___Frame')
27049     },
27050     
27051     _getConfigHtml : function()
27052     {
27053         var sConfig = '' ;
27054
27055         for ( var o in this.fckconfig ) {
27056             sConfig += sConfig.length > 0  ? '&amp;' : '';
27057             sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.fckconfig[o] ) ;
27058         }
27059
27060         return '<input type="hidden" id="' + this.getId() + '___Config" value="' + sConfig + '" style="display:none" />' ;
27061     },
27062     
27063     
27064     _getIFrameHtml : function()
27065     {
27066         var sFile = 'fckeditor.html' ;
27067         /* no idea what this is about..
27068         try
27069         {
27070             if ( (/fcksource=true/i).test( window.top.location.search ) )
27071                 sFile = 'fckeditor.original.html' ;
27072         }
27073         catch (e) { 
27074         */
27075
27076         var sLink = this.basePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.getId() ) ;
27077         sLink += this.toolbarSet ? ( '&amp;Toolbar=' + this.toolbarSet)  : '';
27078         
27079         
27080         var html = '<iframe id="' + this.getId() +
27081             '___Frame" src="' + sLink +
27082             '" width="' + this.width +
27083             '" height="' + this.height + '"' +
27084             (this.tabIndex ?  ' tabindex="' + this.tabIndex + '"' :'' ) +
27085             ' frameborder="0" scrolling="no"></iframe>' ;
27086
27087         return html ;
27088     },
27089     
27090     _insertHtmlBefore : function( html, element )
27091     {
27092         if ( element.insertAdjacentHTML )       {
27093             // IE
27094             element.insertAdjacentHTML( 'beforeBegin', html ) ;
27095         } else { // Gecko
27096             var oRange = document.createRange() ;
27097             oRange.setStartBefore( element ) ;
27098             var oFragment = oRange.createContextualFragment( html );
27099             element.parentNode.insertBefore( oFragment, element ) ;
27100         }
27101     }
27102     
27103     
27104   
27105     
27106     
27107     
27108     
27109
27110 });
27111
27112 //Roo.reg('fckeditor', Roo.form.FCKeditor);
27113
27114 function FCKeditor_OnComplete(editorInstance){
27115     var f = Roo.form.FCKeditor.editors[editorInstance.Name];
27116     f.fckEditor = editorInstance;
27117     //console.log("loaded");
27118     f.fireEvent('editorinit', f, editorInstance);
27119
27120   
27121
27122  
27123
27124
27125
27126
27127
27128
27129
27130
27131
27132
27133
27134
27135
27136
27137
27138 //<script type="text/javascript">
27139 /**
27140  * @class Roo.form.GridField
27141  * @extends Roo.form.Field
27142  * Embed a grid (or editable grid into a form)
27143  * STATUS ALPHA
27144  * 
27145  * This embeds a grid in a form, the value of the field should be the json encoded array of rows
27146  * it needs 
27147  * xgrid.store = Roo.data.Store
27148  * xgrid.store.proxy = Roo.data.MemoryProxy (data = [] )
27149  * xgrid.store.reader = Roo.data.JsonReader 
27150  * 
27151  * 
27152  * @constructor
27153  * Creates a new GridField
27154  * @param {Object} config Configuration options
27155  */
27156 Roo.form.GridField = function(config){
27157     Roo.form.GridField.superclass.constructor.call(this, config);
27158      
27159 };
27160
27161 Roo.extend(Roo.form.GridField, Roo.form.Field,  {
27162     /**
27163      * @cfg {Number} width  - used to restrict width of grid..
27164      */
27165     width : 100,
27166     /**
27167      * @cfg {Number} height - used to restrict height of grid..
27168      */
27169     height : 50,
27170      /**
27171      * @cfg {Object} xgrid (xtype'd description of grid) { xtype : 'Grid', dataSource: .... }
27172          * 
27173          *}
27174      */
27175     xgrid : false, 
27176     /**
27177      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
27178      * {tag: "input", type: "checkbox", autocomplete: "off"})
27179      */
27180    // defaultAutoCreate : { tag: 'div' },
27181     defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'new-password'},
27182     /**
27183      * @cfg {String} addTitle Text to include for adding a title.
27184      */
27185     addTitle : false,
27186     //
27187     onResize : function(){
27188         Roo.form.Field.superclass.onResize.apply(this, arguments);
27189     },
27190
27191     initEvents : function(){
27192         // Roo.form.Checkbox.superclass.initEvents.call(this);
27193         // has no events...
27194        
27195     },
27196
27197
27198     getResizeEl : function(){
27199         return this.wrap;
27200     },
27201
27202     getPositionEl : function(){
27203         return this.wrap;
27204     },
27205
27206     // private
27207     onRender : function(ct, position){
27208         
27209         this.style = this.style || 'overflow: hidden; border:1px solid #c3daf9;';
27210         var style = this.style;
27211         delete this.style;
27212         
27213         Roo.form.GridField.superclass.onRender.call(this, ct, position);
27214         this.wrap = this.el.wrap({cls: ''}); // not sure why ive done thsi...
27215         this.viewEl = this.wrap.createChild({ tag: 'div' });
27216         if (style) {
27217             this.viewEl.applyStyles(style);
27218         }
27219         if (this.width) {
27220             this.viewEl.setWidth(this.width);
27221         }
27222         if (this.height) {
27223             this.viewEl.setHeight(this.height);
27224         }
27225         //if(this.inputValue !== undefined){
27226         //this.setValue(this.value);
27227         
27228         
27229         this.grid = new Roo.grid[this.xgrid.xtype](this.viewEl, this.xgrid);
27230         
27231         
27232         this.grid.render();
27233         this.grid.getDataSource().on('remove', this.refreshValue, this);
27234         this.grid.getDataSource().on('update', this.refreshValue, this);
27235         this.grid.on('afteredit', this.refreshValue, this);
27236  
27237     },
27238      
27239     
27240     /**
27241      * Sets the value of the item. 
27242      * @param {String} either an object  or a string..
27243      */
27244     setValue : function(v){
27245         //this.value = v;
27246         v = v || []; // empty set..
27247         // this does not seem smart - it really only affects memoryproxy grids..
27248         if (this.grid && this.grid.getDataSource() && typeof(v) != 'undefined') {
27249             var ds = this.grid.getDataSource();
27250             // assumes a json reader..
27251             var data = {}
27252             data[ds.reader.meta.root ] =  typeof(v) == 'string' ? Roo.decode(v) : v;
27253             ds.loadData( data);
27254         }
27255         // clear selection so it does not get stale.
27256         if (this.grid.sm) { 
27257             this.grid.sm.clearSelections();
27258         }
27259         
27260         Roo.form.GridField.superclass.setValue.call(this, v);
27261         this.refreshValue();
27262         // should load data in the grid really....
27263     },
27264     
27265     // private
27266     refreshValue: function() {
27267          var val = [];
27268         this.grid.getDataSource().each(function(r) {
27269             val.push(r.data);
27270         });
27271         this.el.dom.value = Roo.encode(val);
27272     }
27273     
27274      
27275     
27276     
27277 });/*
27278  * Based on:
27279  * Ext JS Library 1.1.1
27280  * Copyright(c) 2006-2007, Ext JS, LLC.
27281  *
27282  * Originally Released Under LGPL - original licence link has changed is not relivant.
27283  *
27284  * Fork - LGPL
27285  * <script type="text/javascript">
27286  */
27287 /**
27288  * @class Roo.form.DisplayField
27289  * @extends Roo.form.Field
27290  * A generic Field to display non-editable data.
27291  * @cfg {Boolean} closable (true|false) default false
27292  * @constructor
27293  * Creates a new Display Field item.
27294  * @param {Object} config Configuration options
27295  */
27296 Roo.form.DisplayField = function(config){
27297     Roo.form.DisplayField.superclass.constructor.call(this, config);
27298     
27299     this.addEvents({
27300         /**
27301          * @event close
27302          * Fires after the click the close btn
27303              * @param {Roo.form.DisplayField} this
27304              */
27305         close : true
27306     });
27307 };
27308
27309 Roo.extend(Roo.form.DisplayField, Roo.form.TextField,  {
27310     inputType:      'hidden',
27311     allowBlank:     true,
27312     readOnly:         true,
27313     
27314  
27315     /**
27316      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
27317      */
27318     focusClass : undefined,
27319     /**
27320      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
27321      */
27322     fieldClass: 'x-form-field',
27323     
27324      /**
27325      * @cfg {Function} valueRenderer The renderer for the field (so you can reformat output). should return raw HTML
27326      */
27327     valueRenderer: undefined,
27328     
27329     width: 100,
27330     /**
27331      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
27332      * {tag: "input", type: "checkbox", autocomplete: "off"})
27333      */
27334      
27335  //   defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
27336  
27337     closable : false,
27338     
27339     onResize : function(){
27340         Roo.form.DisplayField.superclass.onResize.apply(this, arguments);
27341         
27342     },
27343
27344     initEvents : function(){
27345         // Roo.form.Checkbox.superclass.initEvents.call(this);
27346         // has no events...
27347         
27348         if(this.closable){
27349             this.closeEl.on('click', this.onClose, this);
27350         }
27351        
27352     },
27353
27354
27355     getResizeEl : function(){
27356         return this.wrap;
27357     },
27358
27359     getPositionEl : function(){
27360         return this.wrap;
27361     },
27362
27363     // private
27364     onRender : function(ct, position){
27365         
27366         Roo.form.DisplayField.superclass.onRender.call(this, ct, position);
27367         //if(this.inputValue !== undefined){
27368         this.wrap = this.el.wrap();
27369         
27370         this.viewEl = this.wrap.createChild({ tag: 'div', cls: 'x-form-displayfield'});
27371         
27372         if(this.closable){
27373             this.closeEl = this.wrap.createChild({ tag: 'div', cls: 'x-dlg-close'});
27374         }
27375         
27376         if (this.bodyStyle) {
27377             this.viewEl.applyStyles(this.bodyStyle);
27378         }
27379         //this.viewEl.setStyle('padding', '2px');
27380         
27381         this.setValue(this.value);
27382         
27383     },
27384 /*
27385     // private
27386     initValue : Roo.emptyFn,
27387
27388   */
27389
27390         // private
27391     onClick : function(){
27392         
27393     },
27394
27395     /**
27396      * Sets the checked state of the checkbox.
27397      * @param {Boolean/String} checked True, 'true', '1', or 'on' to check the checkbox, any other value will uncheck it.
27398      */
27399     setValue : function(v){
27400         this.value = v;
27401         var html = this.valueRenderer ?  this.valueRenderer(v) : String.format('{0}', v);
27402         // this might be called before we have a dom element..
27403         if (!this.viewEl) {
27404             return;
27405         }
27406         this.viewEl.dom.innerHTML = html;
27407         Roo.form.DisplayField.superclass.setValue.call(this, v);
27408
27409     },
27410     
27411     onClose : function(e)
27412     {
27413         e.preventDefault();
27414         
27415         this.fireEvent('close', this);
27416     }
27417 });/*
27418  * 
27419  * Licence- LGPL
27420  * 
27421  */
27422
27423 /**
27424  * @class Roo.form.DayPicker
27425  * @extends Roo.form.Field
27426  * A Day picker show [M] [T] [W] ....
27427  * @constructor
27428  * Creates a new Day Picker
27429  * @param {Object} config Configuration options
27430  */
27431 Roo.form.DayPicker= function(config){
27432     Roo.form.DayPicker.superclass.constructor.call(this, config);
27433      
27434 };
27435
27436 Roo.extend(Roo.form.DayPicker, Roo.form.Field,  {
27437     /**
27438      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
27439      */
27440     focusClass : undefined,
27441     /**
27442      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
27443      */
27444     fieldClass: "x-form-field",
27445    
27446     /**
27447      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
27448      * {tag: "input", type: "checkbox", autocomplete: "off"})
27449      */
27450     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "new-password"},
27451     
27452    
27453     actionMode : 'viewEl', 
27454     //
27455     // private
27456  
27457     inputType : 'hidden',
27458     
27459      
27460     inputElement: false, // real input element?
27461     basedOn: false, // ????
27462     
27463     isFormField: true, // not sure where this is needed!!!!
27464
27465     onResize : function(){
27466         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
27467         if(!this.boxLabel){
27468             this.el.alignTo(this.wrap, 'c-c');
27469         }
27470     },
27471
27472     initEvents : function(){
27473         Roo.form.Checkbox.superclass.initEvents.call(this);
27474         this.el.on("click", this.onClick,  this);
27475         this.el.on("change", this.onClick,  this);
27476     },
27477
27478
27479     getResizeEl : function(){
27480         return this.wrap;
27481     },
27482
27483     getPositionEl : function(){
27484         return this.wrap;
27485     },
27486
27487     
27488     // private
27489     onRender : function(ct, position){
27490         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
27491        
27492         this.wrap = this.el.wrap({cls: 'x-form-daypick-item '});
27493         
27494         var r1 = '<table><tr>';
27495         var r2 = '<tr class="x-form-daypick-icons">';
27496         for (var i=0; i < 7; i++) {
27497             r1+= '<td><div>' + Date.dayNames[i].substring(0,3) + '</div></td>';
27498             r2+= '<td><img class="x-menu-item-icon" src="' + Roo.BLANK_IMAGE_URL  +'"></td>';
27499         }
27500         
27501         var viewEl = this.wrap.createChild( r1 + '</tr>' + r2 + '</tr></table>');
27502         viewEl.select('img').on('click', this.onClick, this);
27503         this.viewEl = viewEl;   
27504         
27505         
27506         // this will not work on Chrome!!!
27507         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
27508         this.el.on('propertychange', this.setFromHidden,  this);  //ie
27509         
27510         
27511           
27512
27513     },
27514
27515     // private
27516     initValue : Roo.emptyFn,
27517
27518     /**
27519      * Returns the checked state of the checkbox.
27520      * @return {Boolean} True if checked, else false
27521      */
27522     getValue : function(){
27523         return this.el.dom.value;
27524         
27525     },
27526
27527         // private
27528     onClick : function(e){ 
27529         //this.setChecked(!this.checked);
27530         Roo.get(e.target).toggleClass('x-menu-item-checked');
27531         this.refreshValue();
27532         //if(this.el.dom.checked != this.checked){
27533         //    this.setValue(this.el.dom.checked);
27534        // }
27535     },
27536     
27537     // private
27538     refreshValue : function()
27539     {
27540         var val = '';
27541         this.viewEl.select('img',true).each(function(e,i,n)  {
27542             val += e.is(".x-menu-item-checked") ? String(n) : '';
27543         });
27544         this.setValue(val, true);
27545     },
27546
27547     /**
27548      * Sets the checked state of the checkbox.
27549      * On is always based on a string comparison between inputValue and the param.
27550      * @param {Boolean/String} value - the value to set 
27551      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
27552      */
27553     setValue : function(v,suppressEvent){
27554         if (!this.el.dom) {
27555             return;
27556         }
27557         var old = this.el.dom.value ;
27558         this.el.dom.value = v;
27559         if (suppressEvent) {
27560             return ;
27561         }
27562          
27563         // update display..
27564         this.viewEl.select('img',true).each(function(e,i,n)  {
27565             
27566             var on = e.is(".x-menu-item-checked");
27567             var newv = v.indexOf(String(n)) > -1;
27568             if (on != newv) {
27569                 e.toggleClass('x-menu-item-checked');
27570             }
27571             
27572         });
27573         
27574         
27575         this.fireEvent('change', this, v, old);
27576         
27577         
27578     },
27579    
27580     // handle setting of hidden value by some other method!!?!?
27581     setFromHidden: function()
27582     {
27583         if(!this.el){
27584             return;
27585         }
27586         //console.log("SET FROM HIDDEN");
27587         //alert('setFrom hidden');
27588         this.setValue(this.el.dom.value);
27589     },
27590     
27591     onDestroy : function()
27592     {
27593         if(this.viewEl){
27594             Roo.get(this.viewEl).remove();
27595         }
27596          
27597         Roo.form.DayPicker.superclass.onDestroy.call(this);
27598     }
27599
27600 });/*
27601  * RooJS Library 1.1.1
27602  * Copyright(c) 2008-2011  Alan Knowles
27603  *
27604  * License - LGPL
27605  */
27606  
27607
27608 /**
27609  * @class Roo.form.ComboCheck
27610  * @extends Roo.form.ComboBox
27611  * A combobox for multiple select items.
27612  *
27613  * FIXME - could do with a reset button..
27614  * 
27615  * @constructor
27616  * Create a new ComboCheck
27617  * @param {Object} config Configuration options
27618  */
27619 Roo.form.ComboCheck = function(config){
27620     Roo.form.ComboCheck.superclass.constructor.call(this, config);
27621     // should verify some data...
27622     // like
27623     // hiddenName = required..
27624     // displayField = required
27625     // valudField == required
27626     var req= [ 'hiddenName', 'displayField', 'valueField' ];
27627     var _t = this;
27628     Roo.each(req, function(e) {
27629         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
27630             throw "Roo.form.ComboCheck : missing value for: " + e;
27631         }
27632     });
27633     
27634     
27635 };
27636
27637 Roo.extend(Roo.form.ComboCheck, Roo.form.ComboBox, {
27638      
27639      
27640     editable : false,
27641      
27642     selectedClass: 'x-menu-item-checked', 
27643     
27644     // private
27645     onRender : function(ct, position){
27646         var _t = this;
27647         
27648         
27649         
27650         if(!this.tpl){
27651             var cls = 'x-combo-list';
27652
27653             
27654             this.tpl =  new Roo.Template({
27655                 html :  '<div class="'+cls+'-item x-menu-check-item">' +
27656                    '<img class="x-menu-item-icon" style="margin: 0px;" src="' + Roo.BLANK_IMAGE_URL + '">' + 
27657                    '<span>{' + this.displayField + '}</span>' +
27658                     '</div>' 
27659                 
27660             });
27661         }
27662  
27663         
27664         Roo.form.ComboCheck.superclass.onRender.call(this, ct, position);
27665         this.view.singleSelect = false;
27666         this.view.multiSelect = true;
27667         this.view.toggleSelect = true;
27668         this.pageTb.add(new Roo.Toolbar.Fill(), {
27669             
27670             text: 'Done',
27671             handler: function()
27672             {
27673                 _t.collapse();
27674             }
27675         });
27676     },
27677     
27678     onViewOver : function(e, t){
27679         // do nothing...
27680         return;
27681         
27682     },
27683     
27684     onViewClick : function(doFocus,index){
27685         return;
27686         
27687     },
27688     select: function () {
27689         //Roo.log("SELECT CALLED");
27690     },
27691      
27692     selectByValue : function(xv, scrollIntoView){
27693         var ar = this.getValueArray();
27694         var sels = [];
27695         
27696         Roo.each(ar, function(v) {
27697             if(v === undefined || v === null){
27698                 return;
27699             }
27700             var r = this.findRecord(this.valueField, v);
27701             if(r){
27702                 sels.push(this.store.indexOf(r))
27703                 
27704             }
27705         },this);
27706         this.view.select(sels);
27707         return false;
27708     },
27709     
27710     
27711     
27712     onSelect : function(record, index){
27713        // Roo.log("onselect Called");
27714        // this is only called by the clear button now..
27715         this.view.clearSelections();
27716         this.setValue('[]');
27717         if (this.value != this.valueBefore) {
27718             this.fireEvent('change', this, this.value, this.valueBefore);
27719             this.valueBefore = this.value;
27720         }
27721     },
27722     getValueArray : function()
27723     {
27724         var ar = [] ;
27725         
27726         try {
27727             //Roo.log(this.value);
27728             if (typeof(this.value) == 'undefined') {
27729                 return [];
27730             }
27731             var ar = Roo.decode(this.value);
27732             return  ar instanceof Array ? ar : []; //?? valid?
27733             
27734         } catch(e) {
27735             Roo.log(e + "\nRoo.form.ComboCheck:getValueArray  invalid data:" + this.getValue());
27736             return [];
27737         }
27738          
27739     },
27740     expand : function ()
27741     {
27742         
27743         Roo.form.ComboCheck.superclass.expand.call(this);
27744         this.valueBefore = typeof(this.value) == 'undefined' ? '' : this.value;
27745         //this.valueBefore = typeof(this.valueBefore) == 'undefined' ? '' : this.valueBefore;
27746         
27747
27748     },
27749     
27750     collapse : function(){
27751         Roo.form.ComboCheck.superclass.collapse.call(this);
27752         var sl = this.view.getSelectedIndexes();
27753         var st = this.store;
27754         var nv = [];
27755         var tv = [];
27756         var r;
27757         Roo.each(sl, function(i) {
27758             r = st.getAt(i);
27759             nv.push(r.get(this.valueField));
27760         },this);
27761         this.setValue(Roo.encode(nv));
27762         if (this.value != this.valueBefore) {
27763
27764             this.fireEvent('change', this, this.value, this.valueBefore);
27765             this.valueBefore = this.value;
27766         }
27767         
27768     },
27769     
27770     setValue : function(v){
27771         // Roo.log(v);
27772         this.value = v;
27773         
27774         var vals = this.getValueArray();
27775         var tv = [];
27776         Roo.each(vals, function(k) {
27777             var r = this.findRecord(this.valueField, k);
27778             if(r){
27779                 tv.push(r.data[this.displayField]);
27780             }else if(this.valueNotFoundText !== undefined){
27781                 tv.push( this.valueNotFoundText );
27782             }
27783         },this);
27784        // Roo.log(tv);
27785         
27786         Roo.form.ComboBox.superclass.setValue.call(this, tv.join(', '));
27787         this.hiddenField.value = v;
27788         this.value = v;
27789     }
27790     
27791 });/*
27792  * Based on:
27793  * Ext JS Library 1.1.1
27794  * Copyright(c) 2006-2007, Ext JS, LLC.
27795  *
27796  * Originally Released Under LGPL - original licence link has changed is not relivant.
27797  *
27798  * Fork - LGPL
27799  * <script type="text/javascript">
27800  */
27801  
27802 /**
27803  * @class Roo.form.Signature
27804  * @extends Roo.form.Field
27805  * Signature field.  
27806  * @constructor
27807  * 
27808  * @param {Object} config Configuration options
27809  */
27810
27811 Roo.form.Signature = function(config){
27812     Roo.form.Signature.superclass.constructor.call(this, config);
27813     
27814     this.addEvents({// not in used??
27815          /**
27816          * @event confirm
27817          * Fires when the 'confirm' icon is pressed (add a listener to enable add button)
27818              * @param {Roo.form.Signature} combo This combo box
27819              */
27820         'confirm' : true,
27821         /**
27822          * @event reset
27823          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
27824              * @param {Roo.form.ComboBox} combo This combo box
27825              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
27826              */
27827         'reset' : true
27828     });
27829 };
27830
27831 Roo.extend(Roo.form.Signature, Roo.form.Field,  {
27832     /**
27833      * @cfg {Object} labels Label to use when rendering a form.
27834      * defaults to 
27835      * labels : { 
27836      *      clear : "Clear",
27837      *      confirm : "Confirm"
27838      *  }
27839      */
27840     labels : { 
27841         clear : "Clear",
27842         confirm : "Confirm"
27843     },
27844     /**
27845      * @cfg {Number} width The signature panel width (defaults to 300)
27846      */
27847     width: 300,
27848     /**
27849      * @cfg {Number} height The signature panel height (defaults to 100)
27850      */
27851     height : 100,
27852     /**
27853      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to false)
27854      */
27855     allowBlank : false,
27856     
27857     //private
27858     // {Object} signPanel The signature SVG panel element (defaults to {})
27859     signPanel : {},
27860     // {Boolean} isMouseDown False to validate that the mouse down event (defaults to false)
27861     isMouseDown : false,
27862     // {Boolean} isConfirmed validate the signature is confirmed or not for submitting form (defaults to false)
27863     isConfirmed : false,
27864     // {String} signatureTmp SVG mapping string (defaults to empty string)
27865     signatureTmp : '',
27866     
27867     
27868     defaultAutoCreate : { // modified by initCompnoent..
27869         tag: "input",
27870         type:"hidden"
27871     },
27872
27873     // private
27874     onRender : function(ct, position){
27875         
27876         Roo.form.Signature.superclass.onRender.call(this, ct, position);
27877         
27878         this.wrap = this.el.wrap({
27879             cls:'x-form-signature-wrap', style : 'width: ' + this.width + 'px', cn:{cls:'x-form-signature'}
27880         });
27881         
27882         this.createToolbar(this);
27883         this.signPanel = this.wrap.createChild({
27884                 tag: 'div',
27885                 style: 'width: ' + this.width + 'px; height: ' + this.height + 'px; border: 0;'
27886             }, this.el
27887         );
27888             
27889         this.svgID = Roo.id();
27890         this.svgEl = this.signPanel.createChild({
27891               xmlns : 'http://www.w3.org/2000/svg',
27892               tag : 'svg',
27893               id : this.svgID + "-svg",
27894               width: this.width,
27895               height: this.height,
27896               viewBox: '0 0 '+this.width+' '+this.height,
27897               cn : [
27898                 {
27899                     tag: "rect",
27900                     id: this.svgID + "-svg-r",
27901                     width: this.width,
27902                     height: this.height,
27903                     fill: "#ffa"
27904                 },
27905                 {
27906                     tag: "line",
27907                     id: this.svgID + "-svg-l",
27908                     x1: "0", // start
27909                     y1: (this.height*0.8), // start set the line in 80% of height
27910                     x2: this.width, // end
27911                     y2: (this.height*0.8), // end set the line in 80% of height
27912                     'stroke': "#666",
27913                     'stroke-width': "1",
27914                     'stroke-dasharray': "3",
27915                     'shape-rendering': "crispEdges",
27916                     'pointer-events': "none"
27917                 },
27918                 {
27919                     tag: "path",
27920                     id: this.svgID + "-svg-p",
27921                     'stroke': "navy",
27922                     'stroke-width': "3",
27923                     'fill': "none",
27924                     'pointer-events': 'none'
27925                 }
27926               ]
27927         });
27928         this.createSVG();
27929         this.svgBox = this.svgEl.dom.getScreenCTM();
27930     },
27931     createSVG : function(){ 
27932         var svg = this.signPanel;
27933         var r = svg.select('#'+ this.svgID + '-svg-r', true).first().dom;
27934         var t = this;
27935
27936         r.addEventListener('mousedown', function(e) { return t.down(e); }, false);
27937         r.addEventListener('mousemove', function(e) { return t.move(e); }, false);
27938         r.addEventListener('mouseup', function(e) { return t.up(e); }, false);
27939         r.addEventListener('mouseout', function(e) { return t.up(e); }, false);
27940         r.addEventListener('touchstart', function(e) { return t.down(e); }, false);
27941         r.addEventListener('touchmove', function(e) { return t.move(e); }, false);
27942         r.addEventListener('touchend', function(e) { return t.up(e); }, false);
27943         
27944     },
27945     isTouchEvent : function(e){
27946         return e.type.match(/^touch/);
27947     },
27948     getCoords : function (e) {
27949         var pt    = this.svgEl.dom.createSVGPoint();
27950         pt.x = e.clientX; 
27951         pt.y = e.clientY;
27952         if (this.isTouchEvent(e)) {
27953             pt.x =  e.targetTouches[0].clientX;
27954             pt.y = e.targetTouches[0].clientY;
27955         }
27956         var a = this.svgEl.dom.getScreenCTM();
27957         var b = a.inverse();
27958         var mx = pt.matrixTransform(b);
27959         return mx.x + ',' + mx.y;
27960     },
27961     //mouse event headler 
27962     down : function (e) {
27963         this.signatureTmp += 'M' + this.getCoords(e) + ' ';
27964         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr('d', this.signatureTmp);
27965         
27966         this.isMouseDown = true;
27967         
27968         e.preventDefault();
27969     },
27970     move : function (e) {
27971         if (this.isMouseDown) {
27972             this.signatureTmp += 'L' + this.getCoords(e) + ' ';
27973             this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', this.signatureTmp);
27974         }
27975         
27976         e.preventDefault();
27977     },
27978     up : function (e) {
27979         this.isMouseDown = false;
27980         var sp = this.signatureTmp.split(' ');
27981         
27982         if(sp.length > 1){
27983             if(!sp[sp.length-2].match(/^L/)){
27984                 sp.pop();
27985                 sp.pop();
27986                 sp.push("");
27987                 this.signatureTmp = sp.join(" ");
27988             }
27989         }
27990         if(this.getValue() != this.signatureTmp){
27991             this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
27992             this.isConfirmed = false;
27993         }
27994         e.preventDefault();
27995     },
27996     
27997     /**
27998      * Protected method that will not generally be called directly. It
27999      * is called when the editor creates its toolbar. Override this method if you need to
28000      * add custom toolbar buttons.
28001      * @param {HtmlEditor} editor
28002      */
28003     createToolbar : function(editor){
28004          function btn(id, toggle, handler){
28005             var xid = fid + '-'+ id ;
28006             return {
28007                 id : xid,
28008                 cmd : id,
28009                 cls : 'x-btn-icon x-edit-'+id,
28010                 enableToggle:toggle !== false,
28011                 scope: editor, // was editor...
28012                 handler:handler||editor.relayBtnCmd,
28013                 clickEvent:'mousedown',
28014                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
28015                 tabIndex:-1
28016             };
28017         }
28018         
28019         
28020         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
28021         this.tb = tb;
28022         this.tb.add(
28023            {
28024                 cls : ' x-signature-btn x-signature-'+id,
28025                 scope: editor, // was editor...
28026                 handler: this.reset,
28027                 clickEvent:'mousedown',
28028                 text: this.labels.clear
28029             },
28030             {
28031                  xtype : 'Fill',
28032                  xns: Roo.Toolbar
28033             }, 
28034             {
28035                 cls : '  x-signature-btn x-signature-'+id,
28036                 scope: editor, // was editor...
28037                 handler: this.confirmHandler,
28038                 clickEvent:'mousedown',
28039                 text: this.labels.confirm
28040             }
28041         );
28042     
28043     },
28044     //public
28045     /**
28046      * when user is clicked confirm then show this image.....
28047      * 
28048      * @return {String} Image Data URI
28049      */
28050     getImageDataURI : function(){
28051         var svg = this.svgEl.dom.parentNode.innerHTML;
28052         var src = 'data:image/svg+xml;base64,'+window.btoa(svg);
28053         return src; 
28054     },
28055     /**
28056      * 
28057      * @return {Boolean} this.isConfirmed
28058      */
28059     getConfirmed : function(){
28060         return this.isConfirmed;
28061     },
28062     /**
28063      * 
28064      * @return {Number} this.width
28065      */
28066     getWidth : function(){
28067         return this.width;
28068     },
28069     /**
28070      * 
28071      * @return {Number} this.height
28072      */
28073     getHeight : function(){
28074         return this.height;
28075     },
28076     // private
28077     getSignature : function(){
28078         return this.signatureTmp;
28079     },
28080     // private
28081     reset : function(){
28082         this.signatureTmp = '';
28083         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
28084         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', '');
28085         this.isConfirmed = false;
28086         Roo.form.Signature.superclass.reset.call(this);
28087     },
28088     setSignature : function(s){
28089         this.signatureTmp = s;
28090         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
28091         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', s);
28092         this.setValue(s);
28093         this.isConfirmed = false;
28094         Roo.form.Signature.superclass.reset.call(this);
28095     }, 
28096     test : function(){
28097 //        Roo.log(this.signPanel.dom.contentWindow.up())
28098     },
28099     //private
28100     setConfirmed : function(){
28101         
28102         
28103         
28104 //        Roo.log(Roo.get(this.signPanel.dom.contentWindow.r).attr('fill', '#cfc'));
28105     },
28106     // private
28107     confirmHandler : function(){
28108         if(!this.getSignature()){
28109             return;
28110         }
28111         
28112         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#cfc');
28113         this.setValue(this.getSignature());
28114         this.isConfirmed = true;
28115         
28116         this.fireEvent('confirm', this);
28117     },
28118     // private
28119     // Subclasses should provide the validation implementation by overriding this
28120     validateValue : function(value){
28121         if(this.allowBlank){
28122             return true;
28123         }
28124         
28125         if(this.isConfirmed){
28126             return true;
28127         }
28128         return false;
28129     }
28130 });/*
28131  * Based on:
28132  * Ext JS Library 1.1.1
28133  * Copyright(c) 2006-2007, Ext JS, LLC.
28134  *
28135  * Originally Released Under LGPL - original licence link has changed is not relivant.
28136  *
28137  * Fork - LGPL
28138  * <script type="text/javascript">
28139  */
28140  
28141
28142 /**
28143  * @class Roo.form.ComboBox
28144  * @extends Roo.form.TriggerField
28145  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
28146  * @constructor
28147  * Create a new ComboBox.
28148  * @param {Object} config Configuration options
28149  */
28150 Roo.form.Select = function(config){
28151     Roo.form.Select.superclass.constructor.call(this, config);
28152      
28153 };
28154
28155 Roo.extend(Roo.form.Select , Roo.form.ComboBox, {
28156     /**
28157      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
28158      */
28159     /**
28160      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
28161      * rendering into an Roo.Editor, defaults to false)
28162      */
28163     /**
28164      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
28165      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
28166      */
28167     /**
28168      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
28169      */
28170     /**
28171      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
28172      * the dropdown list (defaults to undefined, with no header element)
28173      */
28174
28175      /**
28176      * @cfg {String/Roo.Template} tpl The template to use to render the output
28177      */
28178      
28179     // private
28180     defaultAutoCreate : {tag: "select"  },
28181     /**
28182      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
28183      */
28184     listWidth: undefined,
28185     /**
28186      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
28187      * mode = 'remote' or 'text' if mode = 'local')
28188      */
28189     displayField: undefined,
28190     /**
28191      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
28192      * mode = 'remote' or 'value' if mode = 'local'). 
28193      * Note: use of a valueField requires the user make a selection
28194      * in order for a value to be mapped.
28195      */
28196     valueField: undefined,
28197     
28198     
28199     /**
28200      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
28201      * field's data value (defaults to the underlying DOM element's name)
28202      */
28203     hiddenName: undefined,
28204     /**
28205      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
28206      */
28207     listClass: '',
28208     /**
28209      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
28210      */
28211     selectedClass: 'x-combo-selected',
28212     /**
28213      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
28214      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
28215      * which displays a downward arrow icon).
28216      */
28217     triggerClass : 'x-form-arrow-trigger',
28218     /**
28219      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
28220      */
28221     shadow:'sides',
28222     /**
28223      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
28224      * anchor positions (defaults to 'tl-bl')
28225      */
28226     listAlign: 'tl-bl?',
28227     /**
28228      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
28229      */
28230     maxHeight: 300,
28231     /**
28232      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
28233      * query specified by the allQuery config option (defaults to 'query')
28234      */
28235     triggerAction: 'query',
28236     /**
28237      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
28238      * (defaults to 4, does not apply if editable = false)
28239      */
28240     minChars : 4,
28241     /**
28242      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
28243      * delay (typeAheadDelay) if it matches a known value (defaults to false)
28244      */
28245     typeAhead: false,
28246     /**
28247      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
28248      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
28249      */
28250     queryDelay: 500,
28251     /**
28252      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
28253      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
28254      */
28255     pageSize: 0,
28256     /**
28257      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
28258      * when editable = true (defaults to false)
28259      */
28260     selectOnFocus:false,
28261     /**
28262      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
28263      */
28264     queryParam: 'query',
28265     /**
28266      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
28267      * when mode = 'remote' (defaults to 'Loading...')
28268      */
28269     loadingText: 'Loading...',
28270     /**
28271      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
28272      */
28273     resizable: false,
28274     /**
28275      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
28276      */
28277     handleHeight : 8,
28278     /**
28279      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
28280      * traditional select (defaults to true)
28281      */
28282     editable: true,
28283     /**
28284      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
28285      */
28286     allQuery: '',
28287     /**
28288      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
28289      */
28290     mode: 'remote',
28291     /**
28292      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
28293      * listWidth has a higher value)
28294      */
28295     minListWidth : 70,
28296     /**
28297      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
28298      * allow the user to set arbitrary text into the field (defaults to false)
28299      */
28300     forceSelection:false,
28301     /**
28302      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
28303      * if typeAhead = true (defaults to 250)
28304      */
28305     typeAheadDelay : 250,
28306     /**
28307      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
28308      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
28309      */
28310     valueNotFoundText : undefined,
28311     
28312     /**
28313      * @cfg {String} defaultValue The value displayed after loading the store.
28314      */
28315     defaultValue: '',
28316     
28317     /**
28318      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
28319      */
28320     blockFocus : false,
28321     
28322     /**
28323      * @cfg {Boolean} disableClear Disable showing of clear button.
28324      */
28325     disableClear : false,
28326     /**
28327      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
28328      */
28329     alwaysQuery : false,
28330     
28331     //private
28332     addicon : false,
28333     editicon: false,
28334     
28335     // element that contains real text value.. (when hidden is used..)
28336      
28337     // private
28338     onRender : function(ct, position){
28339         Roo.form.Field.prototype.onRender.call(this, ct, position);
28340         
28341         if(this.store){
28342             this.store.on('beforeload', this.onBeforeLoad, this);
28343             this.store.on('load', this.onLoad, this);
28344             this.store.on('loadexception', this.onLoadException, this);
28345             this.store.load({});
28346         }
28347         
28348         
28349         
28350     },
28351
28352     // private
28353     initEvents : function(){
28354         //Roo.form.ComboBox.superclass.initEvents.call(this);
28355  
28356     },
28357
28358     onDestroy : function(){
28359        
28360         if(this.store){
28361             this.store.un('beforeload', this.onBeforeLoad, this);
28362             this.store.un('load', this.onLoad, this);
28363             this.store.un('loadexception', this.onLoadException, this);
28364         }
28365         //Roo.form.ComboBox.superclass.onDestroy.call(this);
28366     },
28367
28368     // private
28369     fireKey : function(e){
28370         if(e.isNavKeyPress() && !this.list.isVisible()){
28371             this.fireEvent("specialkey", this, e);
28372         }
28373     },
28374
28375     // private
28376     onResize: function(w, h){
28377         
28378         return; 
28379     
28380         
28381     },
28382
28383     /**
28384      * Allow or prevent the user from directly editing the field text.  If false is passed,
28385      * the user will only be able to select from the items defined in the dropdown list.  This method
28386      * is the runtime equivalent of setting the 'editable' config option at config time.
28387      * @param {Boolean} value True to allow the user to directly edit the field text
28388      */
28389     setEditable : function(value){
28390          
28391     },
28392
28393     // private
28394     onBeforeLoad : function(){
28395         
28396         Roo.log("Select before load");
28397         return;
28398     
28399         this.innerList.update(this.loadingText ?
28400                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
28401         //this.restrictHeight();
28402         this.selectedIndex = -1;
28403     },
28404
28405     // private
28406     onLoad : function(){
28407
28408     
28409         var dom = this.el.dom;
28410         dom.innerHTML = '';
28411          var od = dom.ownerDocument;
28412          
28413         if (this.emptyText) {
28414             var op = od.createElement('option');
28415             op.setAttribute('value', '');
28416             op.innerHTML = String.format('{0}', this.emptyText);
28417             dom.appendChild(op);
28418         }
28419         if(this.store.getCount() > 0){
28420            
28421             var vf = this.valueField;
28422             var df = this.displayField;
28423             this.store.data.each(function(r) {
28424                 // which colmsn to use... testing - cdoe / title..
28425                 var op = od.createElement('option');
28426                 op.setAttribute('value', r.data[vf]);
28427                 op.innerHTML = String.format('{0}', r.data[df]);
28428                 dom.appendChild(op);
28429             });
28430             if (typeof(this.defaultValue != 'undefined')) {
28431                 this.setValue(this.defaultValue);
28432             }
28433             
28434              
28435         }else{
28436             //this.onEmptyResults();
28437         }
28438         //this.el.focus();
28439     },
28440     // private
28441     onLoadException : function()
28442     {
28443         dom.innerHTML = '';
28444             
28445         Roo.log("Select on load exception");
28446         return;
28447     
28448         this.collapse();
28449         Roo.log(this.store.reader.jsonData);
28450         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
28451             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
28452         }
28453         
28454         
28455     },
28456     // private
28457     onTypeAhead : function(){
28458          
28459     },
28460
28461     // private
28462     onSelect : function(record, index){
28463         Roo.log('on select?');
28464         return;
28465         if(this.fireEvent('beforeselect', this, record, index) !== false){
28466             this.setFromData(index > -1 ? record.data : false);
28467             this.collapse();
28468             this.fireEvent('select', this, record, index);
28469         }
28470     },
28471
28472     /**
28473      * Returns the currently selected field value or empty string if no value is set.
28474      * @return {String} value The selected value
28475      */
28476     getValue : function(){
28477         var dom = this.el.dom;
28478         this.value = dom.options[dom.selectedIndex].value;
28479         return this.value;
28480         
28481     },
28482
28483     /**
28484      * Clears any text/value currently set in the field
28485      */
28486     clearValue : function(){
28487         this.value = '';
28488         this.el.dom.selectedIndex = this.emptyText ? 0 : -1;
28489         
28490     },
28491
28492     /**
28493      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
28494      * will be displayed in the field.  If the value does not match the data value of an existing item,
28495      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
28496      * Otherwise the field will be blank (although the value will still be set).
28497      * @param {String} value The value to match
28498      */
28499     setValue : function(v){
28500         var d = this.el.dom;
28501         for (var i =0; i < d.options.length;i++) {
28502             if (v == d.options[i].value) {
28503                 d.selectedIndex = i;
28504                 this.value = v;
28505                 return;
28506             }
28507         }
28508         this.clearValue();
28509     },
28510     /**
28511      * @property {Object} the last set data for the element
28512      */
28513     
28514     lastData : false,
28515     /**
28516      * Sets the value of the field based on a object which is related to the record format for the store.
28517      * @param {Object} value the value to set as. or false on reset?
28518      */
28519     setFromData : function(o){
28520         Roo.log('setfrom data?');
28521          
28522         
28523         
28524     },
28525     // private
28526     reset : function(){
28527         this.clearValue();
28528     },
28529     // private
28530     findRecord : function(prop, value){
28531         
28532         return false;
28533     
28534         var record;
28535         if(this.store.getCount() > 0){
28536             this.store.each(function(r){
28537                 if(r.data[prop] == value){
28538                     record = r;
28539                     return false;
28540                 }
28541                 return true;
28542             });
28543         }
28544         return record;
28545     },
28546     
28547     getName: function()
28548     {
28549         // returns hidden if it's set..
28550         if (!this.rendered) {return ''};
28551         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
28552         
28553     },
28554      
28555
28556     
28557
28558     // private
28559     onEmptyResults : function(){
28560         Roo.log('empty results');
28561         //this.collapse();
28562     },
28563
28564     /**
28565      * Returns true if the dropdown list is expanded, else false.
28566      */
28567     isExpanded : function(){
28568         return false;
28569     },
28570
28571     /**
28572      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
28573      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
28574      * @param {String} value The data value of the item to select
28575      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
28576      * selected item if it is not currently in view (defaults to true)
28577      * @return {Boolean} True if the value matched an item in the list, else false
28578      */
28579     selectByValue : function(v, scrollIntoView){
28580         Roo.log('select By Value');
28581         return false;
28582     
28583         if(v !== undefined && v !== null){
28584             var r = this.findRecord(this.valueField || this.displayField, v);
28585             if(r){
28586                 this.select(this.store.indexOf(r), scrollIntoView);
28587                 return true;
28588             }
28589         }
28590         return false;
28591     },
28592
28593     /**
28594      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
28595      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
28596      * @param {Number} index The zero-based index of the list item to select
28597      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
28598      * selected item if it is not currently in view (defaults to true)
28599      */
28600     select : function(index, scrollIntoView){
28601         Roo.log('select ');
28602         return  ;
28603         
28604         this.selectedIndex = index;
28605         this.view.select(index);
28606         if(scrollIntoView !== false){
28607             var el = this.view.getNode(index);
28608             if(el){
28609                 this.innerList.scrollChildIntoView(el, false);
28610             }
28611         }
28612     },
28613
28614       
28615
28616     // private
28617     validateBlur : function(){
28618         
28619         return;
28620         
28621     },
28622
28623     // private
28624     initQuery : function(){
28625         this.doQuery(this.getRawValue());
28626     },
28627
28628     // private
28629     doForce : function(){
28630         if(this.el.dom.value.length > 0){
28631             this.el.dom.value =
28632                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
28633              
28634         }
28635     },
28636
28637     /**
28638      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
28639      * query allowing the query action to be canceled if needed.
28640      * @param {String} query The SQL query to execute
28641      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
28642      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
28643      * saved in the current store (defaults to false)
28644      */
28645     doQuery : function(q, forceAll){
28646         
28647         Roo.log('doQuery?');
28648         if(q === undefined || q === null){
28649             q = '';
28650         }
28651         var qe = {
28652             query: q,
28653             forceAll: forceAll,
28654             combo: this,
28655             cancel:false
28656         };
28657         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
28658             return false;
28659         }
28660         q = qe.query;
28661         forceAll = qe.forceAll;
28662         if(forceAll === true || (q.length >= this.minChars)){
28663             if(this.lastQuery != q || this.alwaysQuery){
28664                 this.lastQuery = q;
28665                 if(this.mode == 'local'){
28666                     this.selectedIndex = -1;
28667                     if(forceAll){
28668                         this.store.clearFilter();
28669                     }else{
28670                         this.store.filter(this.displayField, q);
28671                     }
28672                     this.onLoad();
28673                 }else{
28674                     this.store.baseParams[this.queryParam] = q;
28675                     this.store.load({
28676                         params: this.getParams(q)
28677                     });
28678                     this.expand();
28679                 }
28680             }else{
28681                 this.selectedIndex = -1;
28682                 this.onLoad();   
28683             }
28684         }
28685     },
28686
28687     // private
28688     getParams : function(q){
28689         var p = {};
28690         //p[this.queryParam] = q;
28691         if(this.pageSize){
28692             p.start = 0;
28693             p.limit = this.pageSize;
28694         }
28695         return p;
28696     },
28697
28698     /**
28699      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
28700      */
28701     collapse : function(){
28702         
28703     },
28704
28705     // private
28706     collapseIf : function(e){
28707         
28708     },
28709
28710     /**
28711      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
28712      */
28713     expand : function(){
28714         
28715     } ,
28716
28717     // private
28718      
28719
28720     /** 
28721     * @cfg {Boolean} grow 
28722     * @hide 
28723     */
28724     /** 
28725     * @cfg {Number} growMin 
28726     * @hide 
28727     */
28728     /** 
28729     * @cfg {Number} growMax 
28730     * @hide 
28731     */
28732     /**
28733      * @hide
28734      * @method autoSize
28735      */
28736     
28737     setWidth : function()
28738     {
28739         
28740     },
28741     getResizeEl : function(){
28742         return this.el;
28743     }
28744 });//<script type="text/javasscript">
28745  
28746
28747 /**
28748  * @class Roo.DDView
28749  * A DnD enabled version of Roo.View.
28750  * @param {Element/String} container The Element in which to create the View.
28751  * @param {String} tpl The template string used to create the markup for each element of the View
28752  * @param {Object} config The configuration properties. These include all the config options of
28753  * {@link Roo.View} plus some specific to this class.<br>
28754  * <p>
28755  * Drag/drop is implemented by adding {@link Roo.data.Record}s to the target DDView. If copying is
28756  * not being performed, the original {@link Roo.data.Record} is removed from the source DDView.<br>
28757  * <p>
28758  * The following extra CSS rules are needed to provide insertion point highlighting:<pre><code>
28759 .x-view-drag-insert-above {
28760         border-top:1px dotted #3366cc;
28761 }
28762 .x-view-drag-insert-below {
28763         border-bottom:1px dotted #3366cc;
28764 }
28765 </code></pre>
28766  * 
28767  */
28768  
28769 Roo.DDView = function(container, tpl, config) {
28770     Roo.DDView.superclass.constructor.apply(this, arguments);
28771     this.getEl().setStyle("outline", "0px none");
28772     this.getEl().unselectable();
28773     if (this.dragGroup) {
28774                 this.setDraggable(this.dragGroup.split(","));
28775     }
28776     if (this.dropGroup) {
28777                 this.setDroppable(this.dropGroup.split(","));
28778     }
28779     if (this.deletable) {
28780         this.setDeletable();
28781     }
28782     this.isDirtyFlag = false;
28783         this.addEvents({
28784                 "drop" : true
28785         });
28786 };
28787
28788 Roo.extend(Roo.DDView, Roo.View, {
28789 /**     @cfg {String/Array} dragGroup The ddgroup name(s) for the View's DragZone. */
28790 /**     @cfg {String/Array} dropGroup The ddgroup name(s) for the View's DropZone. */
28791 /**     @cfg {Boolean} copy Causes drag operations to copy nodes rather than move. */
28792 /**     @cfg {Boolean} allowCopy Causes ctrl/drag operations to copy nodes rather than move. */
28793
28794         isFormField: true,
28795
28796         reset: Roo.emptyFn,
28797         
28798         clearInvalid: Roo.form.Field.prototype.clearInvalid,
28799
28800         validate: function() {
28801                 return true;
28802         },
28803         
28804         destroy: function() {
28805                 this.purgeListeners();
28806                 this.getEl.removeAllListeners();
28807                 this.getEl().remove();
28808                 if (this.dragZone) {
28809                         if (this.dragZone.destroy) {
28810                                 this.dragZone.destroy();
28811                         }
28812                 }
28813                 if (this.dropZone) {
28814                         if (this.dropZone.destroy) {
28815                                 this.dropZone.destroy();
28816                         }
28817                 }
28818         },
28819
28820 /**     Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}. */
28821         getName: function() {
28822                 return this.name;
28823         },
28824
28825 /**     Loads the View from a JSON string representing the Records to put into the Store. */
28826         setValue: function(v) {
28827                 if (!this.store) {
28828                         throw "DDView.setValue(). DDView must be constructed with a valid Store";
28829                 }
28830                 var data = {};
28831                 data[this.store.reader.meta.root] = v ? [].concat(v) : [];
28832                 this.store.proxy = new Roo.data.MemoryProxy(data);
28833                 this.store.load();
28834         },
28835
28836 /**     @return {String} a parenthesised list of the ids of the Records in the View. */
28837         getValue: function() {
28838                 var result = '(';
28839                 this.store.each(function(rec) {
28840                         result += rec.id + ',';
28841                 });
28842                 return result.substr(0, result.length - 1) + ')';
28843         },
28844         
28845         getIds: function() {
28846                 var i = 0, result = new Array(this.store.getCount());
28847                 this.store.each(function(rec) {
28848                         result[i++] = rec.id;
28849                 });
28850                 return result;
28851         },
28852         
28853         isDirty: function() {
28854                 return this.isDirtyFlag;
28855         },
28856
28857 /**
28858  *      Part of the Roo.dd.DropZone interface. If no target node is found, the
28859  *      whole Element becomes the target, and this causes the drop gesture to append.
28860  */
28861     getTargetFromEvent : function(e) {
28862                 var target = e.getTarget();
28863                 while ((target !== null) && (target.parentNode != this.el.dom)) {
28864                 target = target.parentNode;
28865                 }
28866                 if (!target) {
28867                         target = this.el.dom.lastChild || this.el.dom;
28868                 }
28869                 return target;
28870     },
28871
28872 /**
28873  *      Create the drag data which consists of an object which has the property "ddel" as
28874  *      the drag proxy element. 
28875  */
28876     getDragData : function(e) {
28877         var target = this.findItemFromChild(e.getTarget());
28878                 if(target) {
28879                         this.handleSelection(e);
28880                         var selNodes = this.getSelectedNodes();
28881             var dragData = {
28882                 source: this,
28883                 copy: this.copy || (this.allowCopy && e.ctrlKey),
28884                 nodes: selNodes,
28885                 records: []
28886                         };
28887                         var selectedIndices = this.getSelectedIndexes();
28888                         for (var i = 0; i < selectedIndices.length; i++) {
28889                                 dragData.records.push(this.store.getAt(selectedIndices[i]));
28890                         }
28891                         if (selNodes.length == 1) {
28892                                 dragData.ddel = target.cloneNode(true); // the div element
28893                         } else {
28894                                 var div = document.createElement('div'); // create the multi element drag "ghost"
28895                                 div.className = 'multi-proxy';
28896                                 for (var i = 0, len = selNodes.length; i < len; i++) {
28897                                         div.appendChild(selNodes[i].cloneNode(true));
28898                                 }
28899                                 dragData.ddel = div;
28900                         }
28901             //console.log(dragData)
28902             //console.log(dragData.ddel.innerHTML)
28903                         return dragData;
28904                 }
28905         //console.log('nodragData')
28906                 return false;
28907     },
28908     
28909 /**     Specify to which ddGroup items in this DDView may be dragged. */
28910     setDraggable: function(ddGroup) {
28911         if (ddGroup instanceof Array) {
28912                 Roo.each(ddGroup, this.setDraggable, this);
28913                 return;
28914         }
28915         if (this.dragZone) {
28916                 this.dragZone.addToGroup(ddGroup);
28917         } else {
28918                         this.dragZone = new Roo.dd.DragZone(this.getEl(), {
28919                                 containerScroll: true,
28920                                 ddGroup: ddGroup 
28921
28922                         });
28923 //                      Draggability implies selection. DragZone's mousedown selects the element.
28924                         if (!this.multiSelect) { this.singleSelect = true; }
28925
28926 //                      Wire the DragZone's handlers up to methods in *this*
28927                         this.dragZone.getDragData = this.getDragData.createDelegate(this);
28928                 }
28929     },
28930
28931 /**     Specify from which ddGroup this DDView accepts drops. */
28932     setDroppable: function(ddGroup) {
28933         if (ddGroup instanceof Array) {
28934                 Roo.each(ddGroup, this.setDroppable, this);
28935                 return;
28936         }
28937         if (this.dropZone) {
28938                 this.dropZone.addToGroup(ddGroup);
28939         } else {
28940                         this.dropZone = new Roo.dd.DropZone(this.getEl(), {
28941                                 containerScroll: true,
28942                                 ddGroup: ddGroup
28943                         });
28944
28945 //                      Wire the DropZone's handlers up to methods in *this*
28946                         this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
28947                         this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
28948                         this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
28949                         this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
28950                         this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
28951                 }
28952     },
28953
28954 /**     Decide whether to drop above or below a View node. */
28955     getDropPoint : function(e, n, dd){
28956         if (n == this.el.dom) { return "above"; }
28957                 var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
28958                 var c = t + (b - t) / 2;
28959                 var y = Roo.lib.Event.getPageY(e);
28960                 if(y <= c) {
28961                         return "above";
28962                 }else{
28963                         return "below";
28964                 }
28965     },
28966
28967     onNodeEnter : function(n, dd, e, data){
28968                 return false;
28969     },
28970     
28971     onNodeOver : function(n, dd, e, data){
28972                 var pt = this.getDropPoint(e, n, dd);
28973                 // set the insert point style on the target node
28974                 var dragElClass = this.dropNotAllowed;
28975                 if (pt) {
28976                         var targetElClass;
28977                         if (pt == "above"){
28978                                 dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
28979                                 targetElClass = "x-view-drag-insert-above";
28980                         } else {
28981                                 dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
28982                                 targetElClass = "x-view-drag-insert-below";
28983                         }
28984                         if (this.lastInsertClass != targetElClass){
28985                                 Roo.fly(n).replaceClass(this.lastInsertClass, targetElClass);
28986                                 this.lastInsertClass = targetElClass;
28987                         }
28988                 }
28989                 return dragElClass;
28990         },
28991
28992     onNodeOut : function(n, dd, e, data){
28993                 this.removeDropIndicators(n);
28994     },
28995
28996     onNodeDrop : function(n, dd, e, data){
28997         if (this.fireEvent("drop", this, n, dd, e, data) === false) {
28998                 return false;
28999         }
29000         var pt = this.getDropPoint(e, n, dd);
29001                 var insertAt = (n == this.el.dom) ? this.nodes.length : n.nodeIndex;
29002                 if (pt == "below") { insertAt++; }
29003                 for (var i = 0; i < data.records.length; i++) {
29004                         var r = data.records[i];
29005                         var dup = this.store.getById(r.id);
29006                         if (dup && (dd != this.dragZone)) {
29007                                 Roo.fly(this.getNode(this.store.indexOf(dup))).frame("red", 1);
29008                         } else {
29009                                 if (data.copy) {
29010                                         this.store.insert(insertAt++, r.copy());
29011                                 } else {
29012                                         data.source.isDirtyFlag = true;
29013                                         r.store.remove(r);
29014                                         this.store.insert(insertAt++, r);
29015                                 }
29016                                 this.isDirtyFlag = true;
29017                         }
29018                 }
29019                 this.dragZone.cachedTarget = null;
29020                 return true;
29021     },
29022
29023     removeDropIndicators : function(n){
29024                 if(n){
29025                         Roo.fly(n).removeClass([
29026                                 "x-view-drag-insert-above",
29027                                 "x-view-drag-insert-below"]);
29028                         this.lastInsertClass = "_noclass";
29029                 }
29030     },
29031
29032 /**
29033  *      Utility method. Add a delete option to the DDView's context menu.
29034  *      @param {String} imageUrl The URL of the "delete" icon image.
29035  */
29036         setDeletable: function(imageUrl) {
29037                 if (!this.singleSelect && !this.multiSelect) {
29038                         this.singleSelect = true;
29039                 }
29040                 var c = this.getContextMenu();
29041                 this.contextMenu.on("itemclick", function(item) {
29042                         switch (item.id) {
29043                                 case "delete":
29044                                         this.remove(this.getSelectedIndexes());
29045                                         break;
29046                         }
29047                 }, this);
29048                 this.contextMenu.add({
29049                         icon: imageUrl,
29050                         id: "delete",
29051                         text: 'Delete'
29052                 });
29053         },
29054         
29055 /**     Return the context menu for this DDView. */
29056         getContextMenu: function() {
29057                 if (!this.contextMenu) {
29058 //                      Create the View's context menu
29059                         this.contextMenu = new Roo.menu.Menu({
29060                                 id: this.id + "-contextmenu"
29061                         });
29062                         this.el.on("contextmenu", this.showContextMenu, this);
29063                 }
29064                 return this.contextMenu;
29065         },
29066         
29067         disableContextMenu: function() {
29068                 if (this.contextMenu) {
29069                         this.el.un("contextmenu", this.showContextMenu, this);
29070                 }
29071         },
29072
29073         showContextMenu: function(e, item) {
29074         item = this.findItemFromChild(e.getTarget());
29075                 if (item) {
29076                         e.stopEvent();
29077                         this.select(this.getNode(item), this.multiSelect && e.ctrlKey, true);
29078                         this.contextMenu.showAt(e.getXY());
29079             }
29080     },
29081
29082 /**
29083  *      Remove {@link Roo.data.Record}s at the specified indices.
29084  *      @param {Array/Number} selectedIndices The index (or Array of indices) of Records to remove.
29085  */
29086     remove: function(selectedIndices) {
29087                 selectedIndices = [].concat(selectedIndices);
29088                 for (var i = 0; i < selectedIndices.length; i++) {
29089                         var rec = this.store.getAt(selectedIndices[i]);
29090                         this.store.remove(rec);
29091                 }
29092     },
29093
29094 /**
29095  *      Double click fires the event, but also, if this is draggable, and there is only one other
29096  *      related DropZone, it transfers the selected node.
29097  */
29098     onDblClick : function(e){
29099         var item = this.findItemFromChild(e.getTarget());
29100         if(item){
29101             if (this.fireEvent("dblclick", this, this.indexOf(item), item, e) === false) {
29102                 return false;
29103             }
29104             if (this.dragGroup) {
29105                     var targets = Roo.dd.DragDropMgr.getRelated(this.dragZone, true);
29106                     while (targets.indexOf(this.dropZone) > -1) {
29107                             targets.remove(this.dropZone);
29108                                 }
29109                     if (targets.length == 1) {
29110                                         this.dragZone.cachedTarget = null;
29111                         var el = Roo.get(targets[0].getEl());
29112                         var box = el.getBox(true);
29113                         targets[0].onNodeDrop(el.dom, {
29114                                 target: el.dom,
29115                                 xy: [box.x, box.y + box.height - 1]
29116                         }, null, this.getDragData(e));
29117                     }
29118                 }
29119         }
29120     },
29121     
29122     handleSelection: function(e) {
29123                 this.dragZone.cachedTarget = null;
29124         var item = this.findItemFromChild(e.getTarget());
29125         if (!item) {
29126                 this.clearSelections(true);
29127                 return;
29128         }
29129                 if (item && (this.multiSelect || this.singleSelect)){
29130                         if(this.multiSelect && e.shiftKey && (!e.ctrlKey) && this.lastSelection){
29131                                 this.select(this.getNodes(this.indexOf(this.lastSelection), item.nodeIndex), false);
29132                         }else if (this.isSelected(this.getNode(item)) && e.ctrlKey){
29133                                 this.unselect(item);
29134                         } else {
29135                                 this.select(item, this.multiSelect && e.ctrlKey);
29136                                 this.lastSelection = item;
29137                         }
29138                 }
29139     },
29140
29141     onItemClick : function(item, index, e){
29142                 if(this.fireEvent("beforeclick", this, index, item, e) === false){
29143                         return false;
29144                 }
29145                 return true;
29146     },
29147
29148     unselect : function(nodeInfo, suppressEvent){
29149                 var node = this.getNode(nodeInfo);
29150                 if(node && this.isSelected(node)){
29151                         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
29152                                 Roo.fly(node).removeClass(this.selectedClass);
29153                                 this.selections.remove(node);
29154                                 if(!suppressEvent){
29155                                         this.fireEvent("selectionchange", this, this.selections);
29156                                 }
29157                         }
29158                 }
29159     }
29160 });
29161 /*
29162  * Based on:
29163  * Ext JS Library 1.1.1
29164  * Copyright(c) 2006-2007, Ext JS, LLC.
29165  *
29166  * Originally Released Under LGPL - original licence link has changed is not relivant.
29167  *
29168  * Fork - LGPL
29169  * <script type="text/javascript">
29170  */
29171  
29172 /**
29173  * @class Roo.LayoutManager
29174  * @extends Roo.util.Observable
29175  * Base class for layout managers.
29176  */
29177 Roo.LayoutManager = function(container, config){
29178     Roo.LayoutManager.superclass.constructor.call(this);
29179     this.el = Roo.get(container);
29180     // ie scrollbar fix
29181     if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
29182         document.body.scroll = "no";
29183     }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
29184         this.el.position('relative');
29185     }
29186     this.id = this.el.id;
29187     this.el.addClass("x-layout-container");
29188     /** false to disable window resize monitoring @type Boolean */
29189     this.monitorWindowResize = true;
29190     this.regions = {};
29191     this.addEvents({
29192         /**
29193          * @event layout
29194          * Fires when a layout is performed. 
29195          * @param {Roo.LayoutManager} this
29196          */
29197         "layout" : true,
29198         /**
29199          * @event regionresized
29200          * Fires when the user resizes a region. 
29201          * @param {Roo.LayoutRegion} region The resized region
29202          * @param {Number} newSize The new size (width for east/west, height for north/south)
29203          */
29204         "regionresized" : true,
29205         /**
29206          * @event regioncollapsed
29207          * Fires when a region is collapsed. 
29208          * @param {Roo.LayoutRegion} region The collapsed region
29209          */
29210         "regioncollapsed" : true,
29211         /**
29212          * @event regionexpanded
29213          * Fires when a region is expanded.  
29214          * @param {Roo.LayoutRegion} region The expanded region
29215          */
29216         "regionexpanded" : true
29217     });
29218     this.updating = false;
29219     Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
29220 };
29221
29222 Roo.extend(Roo.LayoutManager, Roo.util.Observable, {
29223     /**
29224      * Returns true if this layout is currently being updated
29225      * @return {Boolean}
29226      */
29227     isUpdating : function(){
29228         return this.updating; 
29229     },
29230     
29231     /**
29232      * Suspend the LayoutManager from doing auto-layouts while
29233      * making multiple add or remove calls
29234      */
29235     beginUpdate : function(){
29236         this.updating = true;    
29237     },
29238     
29239     /**
29240      * Restore auto-layouts and optionally disable the manager from performing a layout
29241      * @param {Boolean} noLayout true to disable a layout update 
29242      */
29243     endUpdate : function(noLayout){
29244         this.updating = false;
29245         if(!noLayout){
29246             this.layout();
29247         }    
29248     },
29249     
29250     layout: function(){
29251         
29252     },
29253     
29254     onRegionResized : function(region, newSize){
29255         this.fireEvent("regionresized", region, newSize);
29256         this.layout();
29257     },
29258     
29259     onRegionCollapsed : function(region){
29260         this.fireEvent("regioncollapsed", region);
29261     },
29262     
29263     onRegionExpanded : function(region){
29264         this.fireEvent("regionexpanded", region);
29265     },
29266         
29267     /**
29268      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
29269      * performs box-model adjustments.
29270      * @return {Object} The size as an object {width: (the width), height: (the height)}
29271      */
29272     getViewSize : function(){
29273         var size;
29274         if(this.el.dom != document.body){
29275             size = this.el.getSize();
29276         }else{
29277             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
29278         }
29279         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
29280         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
29281         return size;
29282     },
29283     
29284     /**
29285      * Returns the Element this layout is bound to.
29286      * @return {Roo.Element}
29287      */
29288     getEl : function(){
29289         return this.el;
29290     },
29291     
29292     /**
29293      * Returns the specified region.
29294      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
29295      * @return {Roo.LayoutRegion}
29296      */
29297     getRegion : function(target){
29298         return this.regions[target.toLowerCase()];
29299     },
29300     
29301     onWindowResize : function(){
29302         if(this.monitorWindowResize){
29303             this.layout();
29304         }
29305     }
29306 });/*
29307  * Based on:
29308  * Ext JS Library 1.1.1
29309  * Copyright(c) 2006-2007, Ext JS, LLC.
29310  *
29311  * Originally Released Under LGPL - original licence link has changed is not relivant.
29312  *
29313  * Fork - LGPL
29314  * <script type="text/javascript">
29315  */
29316 /**
29317  * @class Roo.BorderLayout
29318  * @extends Roo.LayoutManager
29319  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
29320  * please see: <br><br>
29321  * <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>
29322  * <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>
29323  * Example:
29324  <pre><code>
29325  var layout = new Roo.BorderLayout(document.body, {
29326     north: {
29327         initialSize: 25,
29328         titlebar: false
29329     },
29330     west: {
29331         split:true,
29332         initialSize: 200,
29333         minSize: 175,
29334         maxSize: 400,
29335         titlebar: true,
29336         collapsible: true
29337     },
29338     east: {
29339         split:true,
29340         initialSize: 202,
29341         minSize: 175,
29342         maxSize: 400,
29343         titlebar: true,
29344         collapsible: true
29345     },
29346     south: {
29347         split:true,
29348         initialSize: 100,
29349         minSize: 100,
29350         maxSize: 200,
29351         titlebar: true,
29352         collapsible: true
29353     },
29354     center: {
29355         titlebar: true,
29356         autoScroll:true,
29357         resizeTabs: true,
29358         minTabWidth: 50,
29359         preferredTabWidth: 150
29360     }
29361 });
29362
29363 // shorthand
29364 var CP = Roo.ContentPanel;
29365
29366 layout.beginUpdate();
29367 layout.add("north", new CP("north", "North"));
29368 layout.add("south", new CP("south", {title: "South", closable: true}));
29369 layout.add("west", new CP("west", {title: "West"}));
29370 layout.add("east", new CP("autoTabs", {title: "Auto Tabs", closable: true}));
29371 layout.add("center", new CP("center1", {title: "Close Me", closable: true}));
29372 layout.add("center", new CP("center2", {title: "Center Panel", closable: false}));
29373 layout.getRegion("center").showPanel("center1");
29374 layout.endUpdate();
29375 </code></pre>
29376
29377 <b>The container the layout is rendered into can be either the body element or any other element.
29378 If it is not the body element, the container needs to either be an absolute positioned element,
29379 or you will need to add "position:relative" to the css of the container.  You will also need to specify
29380 the container size if it is not the body element.</b>
29381
29382 * @constructor
29383 * Create a new BorderLayout
29384 * @param {String/HTMLElement/Element} container The container this layout is bound to
29385 * @param {Object} config Configuration options
29386  */
29387 Roo.BorderLayout = function(container, config){
29388     config = config || {};
29389     Roo.BorderLayout.superclass.constructor.call(this, container, config);
29390     this.factory = config.factory || Roo.BorderLayout.RegionFactory;
29391     for(var i = 0, len = this.factory.validRegions.length; i < len; i++) {
29392         var target = this.factory.validRegions[i];
29393         if(config[target]){
29394             this.addRegion(target, config[target]);
29395         }
29396     }
29397 };
29398
29399 Roo.extend(Roo.BorderLayout, Roo.LayoutManager, {
29400     /**
29401      * Creates and adds a new region if it doesn't already exist.
29402      * @param {String} target The target region key (north, south, east, west or center).
29403      * @param {Object} config The regions config object
29404      * @return {BorderLayoutRegion} The new region
29405      */
29406     addRegion : function(target, config){
29407         if(!this.regions[target]){
29408             var r = this.factory.create(target, this, config);
29409             this.bindRegion(target, r);
29410         }
29411         return this.regions[target];
29412     },
29413
29414     // private (kinda)
29415     bindRegion : function(name, r){
29416         this.regions[name] = r;
29417         r.on("visibilitychange", this.layout, this);
29418         r.on("paneladded", this.layout, this);
29419         r.on("panelremoved", this.layout, this);
29420         r.on("invalidated", this.layout, this);
29421         r.on("resized", this.onRegionResized, this);
29422         r.on("collapsed", this.onRegionCollapsed, this);
29423         r.on("expanded", this.onRegionExpanded, this);
29424     },
29425
29426     /**
29427      * Performs a layout update.
29428      */
29429     layout : function(){
29430         if(this.updating) {
29431             return;
29432         }
29433         var size = this.getViewSize();
29434         var w = size.width;
29435         var h = size.height;
29436         var centerW = w;
29437         var centerH = h;
29438         var centerY = 0;
29439         var centerX = 0;
29440         //var x = 0, y = 0;
29441
29442         var rs = this.regions;
29443         var north = rs["north"];
29444         var south = rs["south"]; 
29445         var west = rs["west"];
29446         var east = rs["east"];
29447         var center = rs["center"];
29448         //if(this.hideOnLayout){ // not supported anymore
29449             //c.el.setStyle("display", "none");
29450         //}
29451         if(north && north.isVisible()){
29452             var b = north.getBox();
29453             var m = north.getMargins();
29454             b.width = w - (m.left+m.right);
29455             b.x = m.left;
29456             b.y = m.top;
29457             centerY = b.height + b.y + m.bottom;
29458             centerH -= centerY;
29459             north.updateBox(this.safeBox(b));
29460         }
29461         if(south && south.isVisible()){
29462             var b = south.getBox();
29463             var m = south.getMargins();
29464             b.width = w - (m.left+m.right);
29465             b.x = m.left;
29466             var totalHeight = (b.height + m.top + m.bottom);
29467             b.y = h - totalHeight + m.top;
29468             centerH -= totalHeight;
29469             south.updateBox(this.safeBox(b));
29470         }
29471         if(west && west.isVisible()){
29472             var b = west.getBox();
29473             var m = west.getMargins();
29474             b.height = centerH - (m.top+m.bottom);
29475             b.x = m.left;
29476             b.y = centerY + m.top;
29477             var totalWidth = (b.width + m.left + m.right);
29478             centerX += totalWidth;
29479             centerW -= totalWidth;
29480             west.updateBox(this.safeBox(b));
29481         }
29482         if(east && east.isVisible()){
29483             var b = east.getBox();
29484             var m = east.getMargins();
29485             b.height = centerH - (m.top+m.bottom);
29486             var totalWidth = (b.width + m.left + m.right);
29487             b.x = w - totalWidth + m.left;
29488             b.y = centerY + m.top;
29489             centerW -= totalWidth;
29490             east.updateBox(this.safeBox(b));
29491         }
29492         if(center){
29493             var m = center.getMargins();
29494             var centerBox = {
29495                 x: centerX + m.left,
29496                 y: centerY + m.top,
29497                 width: centerW - (m.left+m.right),
29498                 height: centerH - (m.top+m.bottom)
29499             };
29500             //if(this.hideOnLayout){
29501                 //center.el.setStyle("display", "block");
29502             //}
29503             center.updateBox(this.safeBox(centerBox));
29504         }
29505         this.el.repaint();
29506         this.fireEvent("layout", this);
29507     },
29508
29509     // private
29510     safeBox : function(box){
29511         box.width = Math.max(0, box.width);
29512         box.height = Math.max(0, box.height);
29513         return box;
29514     },
29515
29516     /**
29517      * Adds a ContentPanel (or subclass) to this layout.
29518      * @param {String} target The target region key (north, south, east, west or center).
29519      * @param {Roo.ContentPanel} panel The panel to add
29520      * @return {Roo.ContentPanel} The added panel
29521      */
29522     add : function(target, panel){
29523          
29524         target = target.toLowerCase();
29525         return this.regions[target].add(panel);
29526     },
29527
29528     /**
29529      * Remove a ContentPanel (or subclass) to this layout.
29530      * @param {String} target The target region key (north, south, east, west or center).
29531      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
29532      * @return {Roo.ContentPanel} The removed panel
29533      */
29534     remove : function(target, panel){
29535         target = target.toLowerCase();
29536         return this.regions[target].remove(panel);
29537     },
29538
29539     /**
29540      * Searches all regions for a panel with the specified id
29541      * @param {String} panelId
29542      * @return {Roo.ContentPanel} The panel or null if it wasn't found
29543      */
29544     findPanel : function(panelId){
29545         var rs = this.regions;
29546         for(var target in rs){
29547             if(typeof rs[target] != "function"){
29548                 var p = rs[target].getPanel(panelId);
29549                 if(p){
29550                     return p;
29551                 }
29552             }
29553         }
29554         return null;
29555     },
29556
29557     /**
29558      * Searches all regions for a panel with the specified id and activates (shows) it.
29559      * @param {String/ContentPanel} panelId The panels id or the panel itself
29560      * @return {Roo.ContentPanel} The shown panel or null
29561      */
29562     showPanel : function(panelId) {
29563       var rs = this.regions;
29564       for(var target in rs){
29565          var r = rs[target];
29566          if(typeof r != "function"){
29567             if(r.hasPanel(panelId)){
29568                return r.showPanel(panelId);
29569             }
29570          }
29571       }
29572       return null;
29573    },
29574
29575    /**
29576      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
29577      * @param {Roo.state.Provider} provider (optional) An alternate state provider
29578      */
29579     restoreState : function(provider){
29580         if(!provider){
29581             provider = Roo.state.Manager;
29582         }
29583         var sm = new Roo.LayoutStateManager();
29584         sm.init(this, provider);
29585     },
29586
29587     /**
29588      * Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config
29589      * object should contain properties for each region to add ContentPanels to, and each property's value should be
29590      * a valid ContentPanel config object.  Example:
29591      * <pre><code>
29592 // Create the main layout
29593 var layout = new Roo.BorderLayout('main-ct', {
29594     west: {
29595         split:true,
29596         minSize: 175,
29597         titlebar: true
29598     },
29599     center: {
29600         title:'Components'
29601     }
29602 }, 'main-ct');
29603
29604 // Create and add multiple ContentPanels at once via configs
29605 layout.batchAdd({
29606    west: {
29607        id: 'source-files',
29608        autoCreate:true,
29609        title:'Ext Source Files',
29610        autoScroll:true,
29611        fitToFrame:true
29612    },
29613    center : {
29614        el: cview,
29615        autoScroll:true,
29616        fitToFrame:true,
29617        toolbar: tb,
29618        resizeEl:'cbody'
29619    }
29620 });
29621 </code></pre>
29622      * @param {Object} regions An object containing ContentPanel configs by region name
29623      */
29624     batchAdd : function(regions){
29625         this.beginUpdate();
29626         for(var rname in regions){
29627             var lr = this.regions[rname];
29628             if(lr){
29629                 this.addTypedPanels(lr, regions[rname]);
29630             }
29631         }
29632         this.endUpdate();
29633     },
29634
29635     // private
29636     addTypedPanels : function(lr, ps){
29637         if(typeof ps == 'string'){
29638             lr.add(new Roo.ContentPanel(ps));
29639         }
29640         else if(ps instanceof Array){
29641             for(var i =0, len = ps.length; i < len; i++){
29642                 this.addTypedPanels(lr, ps[i]);
29643             }
29644         }
29645         else if(!ps.events){ // raw config?
29646             var el = ps.el;
29647             delete ps.el; // prevent conflict
29648             lr.add(new Roo.ContentPanel(el || Roo.id(), ps));
29649         }
29650         else {  // panel object assumed!
29651             lr.add(ps);
29652         }
29653     },
29654     /**
29655      * Adds a xtype elements to the layout.
29656      * <pre><code>
29657
29658 layout.addxtype({
29659        xtype : 'ContentPanel',
29660        region: 'west',
29661        items: [ .... ]
29662    }
29663 );
29664
29665 layout.addxtype({
29666         xtype : 'NestedLayoutPanel',
29667         region: 'west',
29668         layout: {
29669            center: { },
29670            west: { }   
29671         },
29672         items : [ ... list of content panels or nested layout panels.. ]
29673    }
29674 );
29675 </code></pre>
29676      * @param {Object} cfg Xtype definition of item to add.
29677      */
29678     addxtype : function(cfg)
29679     {
29680         // basically accepts a pannel...
29681         // can accept a layout region..!?!?
29682         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
29683         
29684         if (!cfg.xtype.match(/Panel$/)) {
29685             return false;
29686         }
29687         var ret = false;
29688         
29689         if (typeof(cfg.region) == 'undefined') {
29690             Roo.log("Failed to add Panel, region was not set");
29691             Roo.log(cfg);
29692             return false;
29693         }
29694         var region = cfg.region;
29695         delete cfg.region;
29696         
29697           
29698         var xitems = [];
29699         if (cfg.items) {
29700             xitems = cfg.items;
29701             delete cfg.items;
29702         }
29703         var nb = false;
29704         
29705         switch(cfg.xtype) 
29706         {
29707             case 'ContentPanel':  // ContentPanel (el, cfg)
29708             case 'ScrollPanel':  // ContentPanel (el, cfg)
29709             case 'ViewPanel': 
29710                 if(cfg.autoCreate) {
29711                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
29712                 } else {
29713                     var el = this.el.createChild();
29714                     ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
29715                 }
29716                 
29717                 this.add(region, ret);
29718                 break;
29719             
29720             
29721             case 'TreePanel': // our new panel!
29722                 cfg.el = this.el.createChild();
29723                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
29724                 this.add(region, ret);
29725                 break;
29726             
29727             case 'NestedLayoutPanel': 
29728                 // create a new Layout (which is  a Border Layout...
29729                 var el = this.el.createChild();
29730                 var clayout = cfg.layout;
29731                 delete cfg.layout;
29732                 clayout.items   = clayout.items  || [];
29733                 // replace this exitems with the clayout ones..
29734                 xitems = clayout.items;
29735                  
29736                 
29737                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
29738                     cfg.background = false;
29739                 }
29740                 var layout = new Roo.BorderLayout(el, clayout);
29741                 
29742                 ret = new Roo[cfg.xtype](layout, cfg); // new panel!!!!!
29743                 //console.log('adding nested layout panel '  + cfg.toSource());
29744                 this.add(region, ret);
29745                 nb = {}; /// find first...
29746                 break;
29747                 
29748             case 'GridPanel': 
29749             
29750                 // needs grid and region
29751                 
29752                 //var el = this.getRegion(region).el.createChild();
29753                 var el = this.el.createChild();
29754                 // create the grid first...
29755                 
29756                 var grid = new Roo.grid[cfg.grid.xtype](el, cfg.grid);
29757                 delete cfg.grid;
29758                 if (region == 'center' && this.active ) {
29759                     cfg.background = false;
29760                 }
29761                 ret = new Roo[cfg.xtype](grid, cfg); // new panel!!!!!
29762                 
29763                 this.add(region, ret);
29764                 if (cfg.background) {
29765                     ret.on('activate', function(gp) {
29766                         if (!gp.grid.rendered) {
29767                             gp.grid.render();
29768                         }
29769                     });
29770                 } else {
29771                     grid.render();
29772                 }
29773                 break;
29774            
29775            
29776            
29777                 
29778                 
29779                 
29780             default:
29781                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
29782                     
29783                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
29784                     this.add(region, ret);
29785                 } else {
29786                 
29787                     alert("Can not add '" + cfg.xtype + "' to BorderLayout");
29788                     return null;
29789                 }
29790                 
29791              // GridPanel (grid, cfg)
29792             
29793         }
29794         this.beginUpdate();
29795         // add children..
29796         var region = '';
29797         var abn = {};
29798         Roo.each(xitems, function(i)  {
29799             region = nb && i.region ? i.region : false;
29800             
29801             var add = ret.addxtype(i);
29802            
29803             if (region) {
29804                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
29805                 if (!i.background) {
29806                     abn[region] = nb[region] ;
29807                 }
29808             }
29809             
29810         });
29811         this.endUpdate();
29812
29813         // make the last non-background panel active..
29814         //if (nb) { Roo.log(abn); }
29815         if (nb) {
29816             
29817             for(var r in abn) {
29818                 region = this.getRegion(r);
29819                 if (region) {
29820                     // tried using nb[r], but it does not work..
29821                      
29822                     region.showPanel(abn[r]);
29823                    
29824                 }
29825             }
29826         }
29827         return ret;
29828         
29829     }
29830 });
29831
29832 /**
29833  * Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling
29834  * the beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be
29835  * provided with each region config, which allows you to add ContentPanel configs in addition to the region configs
29836  * during creation.  The following code is equivalent to the constructor-based example at the beginning of this class:
29837  * <pre><code>
29838 // shorthand
29839 var CP = Roo.ContentPanel;
29840
29841 var layout = Roo.BorderLayout.create({
29842     north: {
29843         initialSize: 25,
29844         titlebar: false,
29845         panels: [new CP("north", "North")]
29846     },
29847     west: {
29848         split:true,
29849         initialSize: 200,
29850         minSize: 175,
29851         maxSize: 400,
29852         titlebar: true,
29853         collapsible: true,
29854         panels: [new CP("west", {title: "West"})]
29855     },
29856     east: {
29857         split:true,
29858         initialSize: 202,
29859         minSize: 175,
29860         maxSize: 400,
29861         titlebar: true,
29862         collapsible: true,
29863         panels: [new CP("autoTabs", {title: "Auto Tabs", closable: true})]
29864     },
29865     south: {
29866         split:true,
29867         initialSize: 100,
29868         minSize: 100,
29869         maxSize: 200,
29870         titlebar: true,
29871         collapsible: true,
29872         panels: [new CP("south", {title: "South", closable: true})]
29873     },
29874     center: {
29875         titlebar: true,
29876         autoScroll:true,
29877         resizeTabs: true,
29878         minTabWidth: 50,
29879         preferredTabWidth: 150,
29880         panels: [
29881             new CP("center1", {title: "Close Me", closable: true}),
29882             new CP("center2", {title: "Center Panel", closable: false})
29883         ]
29884     }
29885 }, document.body);
29886
29887 layout.getRegion("center").showPanel("center1");
29888 </code></pre>
29889  * @param config
29890  * @param targetEl
29891  */
29892 Roo.BorderLayout.create = function(config, targetEl){
29893     var layout = new Roo.BorderLayout(targetEl || document.body, config);
29894     layout.beginUpdate();
29895     var regions = Roo.BorderLayout.RegionFactory.validRegions;
29896     for(var j = 0, jlen = regions.length; j < jlen; j++){
29897         var lr = regions[j];
29898         if(layout.regions[lr] && config[lr].panels){
29899             var r = layout.regions[lr];
29900             var ps = config[lr].panels;
29901             layout.addTypedPanels(r, ps);
29902         }
29903     }
29904     layout.endUpdate();
29905     return layout;
29906 };
29907
29908 // private
29909 Roo.BorderLayout.RegionFactory = {
29910     // private
29911     validRegions : ["north","south","east","west","center"],
29912
29913     // private
29914     create : function(target, mgr, config){
29915         target = target.toLowerCase();
29916         if(config.lightweight || config.basic){
29917             return new Roo.BasicLayoutRegion(mgr, config, target);
29918         }
29919         switch(target){
29920             case "north":
29921                 return new Roo.NorthLayoutRegion(mgr, config);
29922             case "south":
29923                 return new Roo.SouthLayoutRegion(mgr, config);
29924             case "east":
29925                 return new Roo.EastLayoutRegion(mgr, config);
29926             case "west":
29927                 return new Roo.WestLayoutRegion(mgr, config);
29928             case "center":
29929                 return new Roo.CenterLayoutRegion(mgr, config);
29930         }
29931         throw 'Layout region "'+target+'" not supported.';
29932     }
29933 };/*
29934  * Based on:
29935  * Ext JS Library 1.1.1
29936  * Copyright(c) 2006-2007, Ext JS, LLC.
29937  *
29938  * Originally Released Under LGPL - original licence link has changed is not relivant.
29939  *
29940  * Fork - LGPL
29941  * <script type="text/javascript">
29942  */
29943  
29944 /**
29945  * @class Roo.BasicLayoutRegion
29946  * @extends Roo.util.Observable
29947  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
29948  * and does not have a titlebar, tabs or any other features. All it does is size and position 
29949  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
29950  */
29951 Roo.BasicLayoutRegion = function(mgr, config, pos, skipConfig){
29952     this.mgr = mgr;
29953     this.position  = pos;
29954     this.events = {
29955         /**
29956          * @scope Roo.BasicLayoutRegion
29957          */
29958         
29959         /**
29960          * @event beforeremove
29961          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
29962          * @param {Roo.LayoutRegion} this
29963          * @param {Roo.ContentPanel} panel The panel
29964          * @param {Object} e The cancel event object
29965          */
29966         "beforeremove" : true,
29967         /**
29968          * @event invalidated
29969          * Fires when the layout for this region is changed.
29970          * @param {Roo.LayoutRegion} this
29971          */
29972         "invalidated" : true,
29973         /**
29974          * @event visibilitychange
29975          * Fires when this region is shown or hidden 
29976          * @param {Roo.LayoutRegion} this
29977          * @param {Boolean} visibility true or false
29978          */
29979         "visibilitychange" : true,
29980         /**
29981          * @event paneladded
29982          * Fires when a panel is added. 
29983          * @param {Roo.LayoutRegion} this
29984          * @param {Roo.ContentPanel} panel The panel
29985          */
29986         "paneladded" : true,
29987         /**
29988          * @event panelremoved
29989          * Fires when a panel is removed. 
29990          * @param {Roo.LayoutRegion} this
29991          * @param {Roo.ContentPanel} panel The panel
29992          */
29993         "panelremoved" : true,
29994         /**
29995          * @event beforecollapse
29996          * Fires when this region before collapse.
29997          * @param {Roo.LayoutRegion} this
29998          */
29999         "beforecollapse" : true,
30000         /**
30001          * @event collapsed
30002          * Fires when this region is collapsed.
30003          * @param {Roo.LayoutRegion} this
30004          */
30005         "collapsed" : true,
30006         /**
30007          * @event expanded
30008          * Fires when this region is expanded.
30009          * @param {Roo.LayoutRegion} this
30010          */
30011         "expanded" : true,
30012         /**
30013          * @event slideshow
30014          * Fires when this region is slid into view.
30015          * @param {Roo.LayoutRegion} this
30016          */
30017         "slideshow" : true,
30018         /**
30019          * @event slidehide
30020          * Fires when this region slides out of view. 
30021          * @param {Roo.LayoutRegion} this
30022          */
30023         "slidehide" : true,
30024         /**
30025          * @event panelactivated
30026          * Fires when a panel is activated. 
30027          * @param {Roo.LayoutRegion} this
30028          * @param {Roo.ContentPanel} panel The activated panel
30029          */
30030         "panelactivated" : true,
30031         /**
30032          * @event resized
30033          * Fires when the user resizes this region. 
30034          * @param {Roo.LayoutRegion} this
30035          * @param {Number} newSize The new size (width for east/west, height for north/south)
30036          */
30037         "resized" : true
30038     };
30039     /** A collection of panels in this region. @type Roo.util.MixedCollection */
30040     this.panels = new Roo.util.MixedCollection();
30041     this.panels.getKey = this.getPanelId.createDelegate(this);
30042     this.box = null;
30043     this.activePanel = null;
30044     // ensure listeners are added...
30045     
30046     if (config.listeners || config.events) {
30047         Roo.BasicLayoutRegion.superclass.constructor.call(this, {
30048             listeners : config.listeners || {},
30049             events : config.events || {}
30050         });
30051     }
30052     
30053     if(skipConfig !== true){
30054         this.applyConfig(config);
30055     }
30056 };
30057
30058 Roo.extend(Roo.BasicLayoutRegion, Roo.util.Observable, {
30059     getPanelId : function(p){
30060         return p.getId();
30061     },
30062     
30063     applyConfig : function(config){
30064         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
30065         this.config = config;
30066         
30067     },
30068     
30069     /**
30070      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
30071      * the width, for horizontal (north, south) the height.
30072      * @param {Number} newSize The new width or height
30073      */
30074     resizeTo : function(newSize){
30075         var el = this.el ? this.el :
30076                  (this.activePanel ? this.activePanel.getEl() : null);
30077         if(el){
30078             switch(this.position){
30079                 case "east":
30080                 case "west":
30081                     el.setWidth(newSize);
30082                     this.fireEvent("resized", this, newSize);
30083                 break;
30084                 case "north":
30085                 case "south":
30086                     el.setHeight(newSize);
30087                     this.fireEvent("resized", this, newSize);
30088                 break;                
30089             }
30090         }
30091     },
30092     
30093     getBox : function(){
30094         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
30095     },
30096     
30097     getMargins : function(){
30098         return this.margins;
30099     },
30100     
30101     updateBox : function(box){
30102         this.box = box;
30103         var el = this.activePanel.getEl();
30104         el.dom.style.left = box.x + "px";
30105         el.dom.style.top = box.y + "px";
30106         this.activePanel.setSize(box.width, box.height);
30107     },
30108     
30109     /**
30110      * Returns the container element for this region.
30111      * @return {Roo.Element}
30112      */
30113     getEl : function(){
30114         return this.activePanel;
30115     },
30116     
30117     /**
30118      * Returns true if this region is currently visible.
30119      * @return {Boolean}
30120      */
30121     isVisible : function(){
30122         return this.activePanel ? true : false;
30123     },
30124     
30125     setActivePanel : function(panel){
30126         panel = this.getPanel(panel);
30127         if(this.activePanel && this.activePanel != panel){
30128             this.activePanel.setActiveState(false);
30129             this.activePanel.getEl().setLeftTop(-10000,-10000);
30130         }
30131         this.activePanel = panel;
30132         panel.setActiveState(true);
30133         if(this.box){
30134             panel.setSize(this.box.width, this.box.height);
30135         }
30136         this.fireEvent("panelactivated", this, panel);
30137         this.fireEvent("invalidated");
30138     },
30139     
30140     /**
30141      * Show the specified panel.
30142      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
30143      * @return {Roo.ContentPanel} The shown panel or null
30144      */
30145     showPanel : function(panel){
30146         if(panel = this.getPanel(panel)){
30147             this.setActivePanel(panel);
30148         }
30149         return panel;
30150     },
30151     
30152     /**
30153      * Get the active panel for this region.
30154      * @return {Roo.ContentPanel} The active panel or null
30155      */
30156     getActivePanel : function(){
30157         return this.activePanel;
30158     },
30159     
30160     /**
30161      * Add the passed ContentPanel(s)
30162      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
30163      * @return {Roo.ContentPanel} The panel added (if only one was added)
30164      */
30165     add : function(panel){
30166         if(arguments.length > 1){
30167             for(var i = 0, len = arguments.length; i < len; i++) {
30168                 this.add(arguments[i]);
30169             }
30170             return null;
30171         }
30172         if(this.hasPanel(panel)){
30173             this.showPanel(panel);
30174             return panel;
30175         }
30176         var el = panel.getEl();
30177         if(el.dom.parentNode != this.mgr.el.dom){
30178             this.mgr.el.dom.appendChild(el.dom);
30179         }
30180         if(panel.setRegion){
30181             panel.setRegion(this);
30182         }
30183         this.panels.add(panel);
30184         el.setStyle("position", "absolute");
30185         if(!panel.background){
30186             this.setActivePanel(panel);
30187             if(this.config.initialSize && this.panels.getCount()==1){
30188                 this.resizeTo(this.config.initialSize);
30189             }
30190         }
30191         this.fireEvent("paneladded", this, panel);
30192         return panel;
30193     },
30194     
30195     /**
30196      * Returns true if the panel is in this region.
30197      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
30198      * @return {Boolean}
30199      */
30200     hasPanel : function(panel){
30201         if(typeof panel == "object"){ // must be panel obj
30202             panel = panel.getId();
30203         }
30204         return this.getPanel(panel) ? true : false;
30205     },
30206     
30207     /**
30208      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
30209      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
30210      * @param {Boolean} preservePanel Overrides the config preservePanel option
30211      * @return {Roo.ContentPanel} The panel that was removed
30212      */
30213     remove : function(panel, preservePanel){
30214         panel = this.getPanel(panel);
30215         if(!panel){
30216             return null;
30217         }
30218         var e = {};
30219         this.fireEvent("beforeremove", this, panel, e);
30220         if(e.cancel === true){
30221             return null;
30222         }
30223         var panelId = panel.getId();
30224         this.panels.removeKey(panelId);
30225         return panel;
30226     },
30227     
30228     /**
30229      * Returns the panel specified or null if it's not in this region.
30230      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
30231      * @return {Roo.ContentPanel}
30232      */
30233     getPanel : function(id){
30234         if(typeof id == "object"){ // must be panel obj
30235             return id;
30236         }
30237         return this.panels.get(id);
30238     },
30239     
30240     /**
30241      * Returns this regions position (north/south/east/west/center).
30242      * @return {String} 
30243      */
30244     getPosition: function(){
30245         return this.position;    
30246     }
30247 });/*
30248  * Based on:
30249  * Ext JS Library 1.1.1
30250  * Copyright(c) 2006-2007, Ext JS, LLC.
30251  *
30252  * Originally Released Under LGPL - original licence link has changed is not relivant.
30253  *
30254  * Fork - LGPL
30255  * <script type="text/javascript">
30256  */
30257  
30258 /**
30259  * @class Roo.LayoutRegion
30260  * @extends Roo.BasicLayoutRegion
30261  * This class represents a region in a layout manager.
30262  * @cfg {Boolean}   collapsible     False to disable collapsing (defaults to true)
30263  * @cfg {Boolean}   collapsed       True to set the initial display to collapsed (defaults to false)
30264  * @cfg {Boolean}   floatable       False to disable floating (defaults to true)
30265  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
30266  * @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})
30267  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
30268  * @cfg {String}    collapsedTitle  Optional string message to display in the collapsed block of a north or south region
30269  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
30270  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
30271  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
30272  * @cfg {String}    title           The title for the region (overrides panel titles)
30273  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
30274  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
30275  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
30276  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
30277  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
30278  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
30279  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
30280  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
30281  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
30282  * @cfg {Boolean}   showPin         True to show a pin button
30283  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
30284  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
30285  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
30286  * @cfg {Number}    width           For East/West panels
30287  * @cfg {Number}    height          For North/South panels
30288  * @cfg {Boolean}   split           To show the splitter
30289  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
30290  */
30291 Roo.LayoutRegion = function(mgr, config, pos){
30292     Roo.LayoutRegion.superclass.constructor.call(this, mgr, config, pos, true);
30293     var dh = Roo.DomHelper;
30294     /** This region's container element 
30295     * @type Roo.Element */
30296     this.el = dh.append(mgr.el.dom, {tag: "div", cls: "x-layout-panel x-layout-panel-" + this.position}, true);
30297     /** This region's title element 
30298     * @type Roo.Element */
30299
30300     this.titleEl = dh.append(this.el.dom, {tag: "div", unselectable: "on", cls: "x-unselectable x-layout-panel-hd x-layout-title-"+this.position, children:[
30301         {tag: "span", cls: "x-unselectable x-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
30302         {tag: "div", cls: "x-unselectable x-layout-panel-hd-tools", unselectable: "on"}
30303     ]}, true);
30304     this.titleEl.enableDisplayMode();
30305     /** This region's title text element 
30306     * @type HTMLElement */
30307     this.titleTextEl = this.titleEl.dom.firstChild;
30308     this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
30309     this.closeBtn = this.createTool(this.tools.dom, "x-layout-close");
30310     this.closeBtn.enableDisplayMode();
30311     this.closeBtn.on("click", this.closeClicked, this);
30312     this.closeBtn.hide();
30313
30314     this.createBody(config);
30315     this.visible = true;
30316     this.collapsed = false;
30317
30318     if(config.hideWhenEmpty){
30319         this.hide();
30320         this.on("paneladded", this.validateVisibility, this);
30321         this.on("panelremoved", this.validateVisibility, this);
30322     }
30323     this.applyConfig(config);
30324 };
30325
30326 Roo.extend(Roo.LayoutRegion, Roo.BasicLayoutRegion, {
30327
30328     createBody : function(){
30329         /** This region's body element 
30330         * @type Roo.Element */
30331         this.bodyEl = this.el.createChild({tag: "div", cls: "x-layout-panel-body"});
30332     },
30333
30334     applyConfig : function(c){
30335         if(c.collapsible && this.position != "center" && !this.collapsedEl){
30336             var dh = Roo.DomHelper;
30337             if(c.titlebar !== false){
30338                 this.collapseBtn = this.createTool(this.tools.dom, "x-layout-collapse-"+this.position);
30339                 this.collapseBtn.on("click", this.collapse, this);
30340                 this.collapseBtn.enableDisplayMode();
30341
30342                 if(c.showPin === true || this.showPin){
30343                     this.stickBtn = this.createTool(this.tools.dom, "x-layout-stick");
30344                     this.stickBtn.enableDisplayMode();
30345                     this.stickBtn.on("click", this.expand, this);
30346                     this.stickBtn.hide();
30347                 }
30348             }
30349             /** This region's collapsed element
30350             * @type Roo.Element */
30351             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
30352                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
30353             ]}, true);
30354             if(c.floatable !== false){
30355                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
30356                this.collapsedEl.on("click", this.collapseClick, this);
30357             }
30358
30359             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
30360                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
30361                    id: "message", unselectable: "on", style:{"float":"left"}});
30362                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
30363              }
30364             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
30365             this.expandBtn.on("click", this.expand, this);
30366         }
30367         if(this.collapseBtn){
30368             this.collapseBtn.setVisible(c.collapsible == true);
30369         }
30370         this.cmargins = c.cmargins || this.cmargins ||
30371                          (this.position == "west" || this.position == "east" ?
30372                              {top: 0, left: 2, right:2, bottom: 0} :
30373                              {top: 2, left: 0, right:0, bottom: 2});
30374         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
30375         this.bottomTabs = c.tabPosition != "top";
30376         this.autoScroll = c.autoScroll || false;
30377         if(this.autoScroll){
30378             this.bodyEl.setStyle("overflow", "auto");
30379         }else{
30380             this.bodyEl.setStyle("overflow", "hidden");
30381         }
30382         //if(c.titlebar !== false){
30383             if((!c.titlebar && !c.title) || c.titlebar === false){
30384                 this.titleEl.hide();
30385             }else{
30386                 this.titleEl.show();
30387                 if(c.title){
30388                     this.titleTextEl.innerHTML = c.title;
30389                 }
30390             }
30391         //}
30392         this.duration = c.duration || .30;
30393         this.slideDuration = c.slideDuration || .45;
30394         this.config = c;
30395         if(c.collapsed){
30396             this.collapse(true);
30397         }
30398         if(c.hidden){
30399             this.hide();
30400         }
30401     },
30402     /**
30403      * Returns true if this region is currently visible.
30404      * @return {Boolean}
30405      */
30406     isVisible : function(){
30407         return this.visible;
30408     },
30409
30410     /**
30411      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
30412      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
30413      */
30414     setCollapsedTitle : function(title){
30415         title = title || "&#160;";
30416         if(this.collapsedTitleTextEl){
30417             this.collapsedTitleTextEl.innerHTML = title;
30418         }
30419     },
30420
30421     getBox : function(){
30422         var b;
30423         if(!this.collapsed){
30424             b = this.el.getBox(false, true);
30425         }else{
30426             b = this.collapsedEl.getBox(false, true);
30427         }
30428         return b;
30429     },
30430
30431     getMargins : function(){
30432         return this.collapsed ? this.cmargins : this.margins;
30433     },
30434
30435     highlight : function(){
30436         this.el.addClass("x-layout-panel-dragover");
30437     },
30438
30439     unhighlight : function(){
30440         this.el.removeClass("x-layout-panel-dragover");
30441     },
30442
30443     updateBox : function(box){
30444         this.box = box;
30445         if(!this.collapsed){
30446             this.el.dom.style.left = box.x + "px";
30447             this.el.dom.style.top = box.y + "px";
30448             this.updateBody(box.width, box.height);
30449         }else{
30450             this.collapsedEl.dom.style.left = box.x + "px";
30451             this.collapsedEl.dom.style.top = box.y + "px";
30452             this.collapsedEl.setSize(box.width, box.height);
30453         }
30454         if(this.tabs){
30455             this.tabs.autoSizeTabs();
30456         }
30457     },
30458
30459     updateBody : function(w, h){
30460         if(w !== null){
30461             this.el.setWidth(w);
30462             w -= this.el.getBorderWidth("rl");
30463             if(this.config.adjustments){
30464                 w += this.config.adjustments[0];
30465             }
30466         }
30467         if(h !== null){
30468             this.el.setHeight(h);
30469             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
30470             h -= this.el.getBorderWidth("tb");
30471             if(this.config.adjustments){
30472                 h += this.config.adjustments[1];
30473             }
30474             this.bodyEl.setHeight(h);
30475             if(this.tabs){
30476                 h = this.tabs.syncHeight(h);
30477             }
30478         }
30479         if(this.panelSize){
30480             w = w !== null ? w : this.panelSize.width;
30481             h = h !== null ? h : this.panelSize.height;
30482         }
30483         if(this.activePanel){
30484             var el = this.activePanel.getEl();
30485             w = w !== null ? w : el.getWidth();
30486             h = h !== null ? h : el.getHeight();
30487             this.panelSize = {width: w, height: h};
30488             this.activePanel.setSize(w, h);
30489         }
30490         if(Roo.isIE && this.tabs){
30491             this.tabs.el.repaint();
30492         }
30493     },
30494
30495     /**
30496      * Returns the container element for this region.
30497      * @return {Roo.Element}
30498      */
30499     getEl : function(){
30500         return this.el;
30501     },
30502
30503     /**
30504      * Hides this region.
30505      */
30506     hide : function(){
30507         if(!this.collapsed){
30508             this.el.dom.style.left = "-2000px";
30509             this.el.hide();
30510         }else{
30511             this.collapsedEl.dom.style.left = "-2000px";
30512             this.collapsedEl.hide();
30513         }
30514         this.visible = false;
30515         this.fireEvent("visibilitychange", this, false);
30516     },
30517
30518     /**
30519      * Shows this region if it was previously hidden.
30520      */
30521     show : function(){
30522         if(!this.collapsed){
30523             this.el.show();
30524         }else{
30525             this.collapsedEl.show();
30526         }
30527         this.visible = true;
30528         this.fireEvent("visibilitychange", this, true);
30529     },
30530
30531     closeClicked : function(){
30532         if(this.activePanel){
30533             this.remove(this.activePanel);
30534         }
30535     },
30536
30537     collapseClick : function(e){
30538         if(this.isSlid){
30539            e.stopPropagation();
30540            this.slideIn();
30541         }else{
30542            e.stopPropagation();
30543            this.slideOut();
30544         }
30545     },
30546
30547     /**
30548      * Collapses this region.
30549      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
30550      */
30551     collapse : function(skipAnim, skipCheck){
30552         if(this.collapsed) {
30553             return;
30554         }
30555         
30556         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
30557             
30558             this.collapsed = true;
30559             if(this.split){
30560                 this.split.el.hide();
30561             }
30562             if(this.config.animate && skipAnim !== true){
30563                 this.fireEvent("invalidated", this);
30564                 this.animateCollapse();
30565             }else{
30566                 this.el.setLocation(-20000,-20000);
30567                 this.el.hide();
30568                 this.collapsedEl.show();
30569                 this.fireEvent("collapsed", this);
30570                 this.fireEvent("invalidated", this);
30571             }
30572         }
30573         
30574     },
30575
30576     animateCollapse : function(){
30577         // overridden
30578     },
30579
30580     /**
30581      * Expands this region if it was previously collapsed.
30582      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
30583      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
30584      */
30585     expand : function(e, skipAnim){
30586         if(e) {
30587             e.stopPropagation();
30588         }
30589         if(!this.collapsed || this.el.hasActiveFx()) {
30590             return;
30591         }
30592         if(this.isSlid){
30593             this.afterSlideIn();
30594             skipAnim = true;
30595         }
30596         this.collapsed = false;
30597         if(this.config.animate && skipAnim !== true){
30598             this.animateExpand();
30599         }else{
30600             this.el.show();
30601             if(this.split){
30602                 this.split.el.show();
30603             }
30604             this.collapsedEl.setLocation(-2000,-2000);
30605             this.collapsedEl.hide();
30606             this.fireEvent("invalidated", this);
30607             this.fireEvent("expanded", this);
30608         }
30609     },
30610
30611     animateExpand : function(){
30612         // overridden
30613     },
30614
30615     initTabs : function()
30616     {
30617         this.bodyEl.setStyle("overflow", "hidden");
30618         var ts = new Roo.TabPanel(
30619                 this.bodyEl.dom,
30620                 {
30621                     tabPosition: this.bottomTabs ? 'bottom' : 'top',
30622                     disableTooltips: this.config.disableTabTips,
30623                     toolbar : this.config.toolbar
30624                 }
30625         );
30626         if(this.config.hideTabs){
30627             ts.stripWrap.setDisplayed(false);
30628         }
30629         this.tabs = ts;
30630         ts.resizeTabs = this.config.resizeTabs === true;
30631         ts.minTabWidth = this.config.minTabWidth || 40;
30632         ts.maxTabWidth = this.config.maxTabWidth || 250;
30633         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
30634         ts.monitorResize = false;
30635         ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
30636         ts.bodyEl.addClass('x-layout-tabs-body');
30637         this.panels.each(this.initPanelAsTab, this);
30638     },
30639
30640     initPanelAsTab : function(panel){
30641         var ti = this.tabs.addTab(panel.getEl().id, panel.getTitle(), null,
30642                     this.config.closeOnTab && panel.isClosable());
30643         if(panel.tabTip !== undefined){
30644             ti.setTooltip(panel.tabTip);
30645         }
30646         ti.on("activate", function(){
30647               this.setActivePanel(panel);
30648         }, this);
30649         if(this.config.closeOnTab){
30650             ti.on("beforeclose", function(t, e){
30651                 e.cancel = true;
30652                 this.remove(panel);
30653             }, this);
30654         }
30655         return ti;
30656     },
30657
30658     updatePanelTitle : function(panel, title){
30659         if(this.activePanel == panel){
30660             this.updateTitle(title);
30661         }
30662         if(this.tabs){
30663             var ti = this.tabs.getTab(panel.getEl().id);
30664             ti.setText(title);
30665             if(panel.tabTip !== undefined){
30666                 ti.setTooltip(panel.tabTip);
30667             }
30668         }
30669     },
30670
30671     updateTitle : function(title){
30672         if(this.titleTextEl && !this.config.title){
30673             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
30674         }
30675     },
30676
30677     setActivePanel : function(panel){
30678         panel = this.getPanel(panel);
30679         if(this.activePanel && this.activePanel != panel){
30680             this.activePanel.setActiveState(false);
30681         }
30682         this.activePanel = panel;
30683         panel.setActiveState(true);
30684         if(this.panelSize){
30685             panel.setSize(this.panelSize.width, this.panelSize.height);
30686         }
30687         if(this.closeBtn){
30688             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
30689         }
30690         this.updateTitle(panel.getTitle());
30691         if(this.tabs){
30692             this.fireEvent("invalidated", this);
30693         }
30694         this.fireEvent("panelactivated", this, panel);
30695     },
30696
30697     /**
30698      * Shows the specified panel.
30699      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
30700      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
30701      */
30702     showPanel : function(panel)
30703     {
30704         panel = this.getPanel(panel);
30705         if(panel){
30706             if(this.tabs){
30707                 var tab = this.tabs.getTab(panel.getEl().id);
30708                 if(tab.isHidden()){
30709                     this.tabs.unhideTab(tab.id);
30710                 }
30711                 tab.activate();
30712             }else{
30713                 this.setActivePanel(panel);
30714             }
30715         }
30716         return panel;
30717     },
30718
30719     /**
30720      * Get the active panel for this region.
30721      * @return {Roo.ContentPanel} The active panel or null
30722      */
30723     getActivePanel : function(){
30724         return this.activePanel;
30725     },
30726
30727     validateVisibility : function(){
30728         if(this.panels.getCount() < 1){
30729             this.updateTitle("&#160;");
30730             this.closeBtn.hide();
30731             this.hide();
30732         }else{
30733             if(!this.isVisible()){
30734                 this.show();
30735             }
30736         }
30737     },
30738
30739     /**
30740      * Adds the passed ContentPanel(s) to this region.
30741      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
30742      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
30743      */
30744     add : function(panel){
30745         if(arguments.length > 1){
30746             for(var i = 0, len = arguments.length; i < len; i++) {
30747                 this.add(arguments[i]);
30748             }
30749             return null;
30750         }
30751         if(this.hasPanel(panel)){
30752             this.showPanel(panel);
30753             return panel;
30754         }
30755         panel.setRegion(this);
30756         this.panels.add(panel);
30757         if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
30758             this.bodyEl.dom.appendChild(panel.getEl().dom);
30759             if(panel.background !== true){
30760                 this.setActivePanel(panel);
30761             }
30762             this.fireEvent("paneladded", this, panel);
30763             return panel;
30764         }
30765         if(!this.tabs){
30766             this.initTabs();
30767         }else{
30768             this.initPanelAsTab(panel);
30769         }
30770         if(panel.background !== true){
30771             this.tabs.activate(panel.getEl().id);
30772         }
30773         this.fireEvent("paneladded", this, panel);
30774         return panel;
30775     },
30776
30777     /**
30778      * Hides the tab for the specified panel.
30779      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
30780      */
30781     hidePanel : function(panel){
30782         if(this.tabs && (panel = this.getPanel(panel))){
30783             this.tabs.hideTab(panel.getEl().id);
30784         }
30785     },
30786
30787     /**
30788      * Unhides the tab for a previously hidden panel.
30789      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
30790      */
30791     unhidePanel : function(panel){
30792         if(this.tabs && (panel = this.getPanel(panel))){
30793             this.tabs.unhideTab(panel.getEl().id);
30794         }
30795     },
30796
30797     clearPanels : function(){
30798         while(this.panels.getCount() > 0){
30799              this.remove(this.panels.first());
30800         }
30801     },
30802
30803     /**
30804      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
30805      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
30806      * @param {Boolean} preservePanel Overrides the config preservePanel option
30807      * @return {Roo.ContentPanel} The panel that was removed
30808      */
30809     remove : function(panel, preservePanel){
30810         panel = this.getPanel(panel);
30811         if(!panel){
30812             return null;
30813         }
30814         var e = {};
30815         this.fireEvent("beforeremove", this, panel, e);
30816         if(e.cancel === true){
30817             return null;
30818         }
30819         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
30820         var panelId = panel.getId();
30821         this.panels.removeKey(panelId);
30822         if(preservePanel){
30823             document.body.appendChild(panel.getEl().dom);
30824         }
30825         if(this.tabs){
30826             this.tabs.removeTab(panel.getEl().id);
30827         }else if (!preservePanel){
30828             this.bodyEl.dom.removeChild(panel.getEl().dom);
30829         }
30830         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
30831             var p = this.panels.first();
30832             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
30833             tempEl.appendChild(p.getEl().dom);
30834             this.bodyEl.update("");
30835             this.bodyEl.dom.appendChild(p.getEl().dom);
30836             tempEl = null;
30837             this.updateTitle(p.getTitle());
30838             this.tabs = null;
30839             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
30840             this.setActivePanel(p);
30841         }
30842         panel.setRegion(null);
30843         if(this.activePanel == panel){
30844             this.activePanel = null;
30845         }
30846         if(this.config.autoDestroy !== false && preservePanel !== true){
30847             try{panel.destroy();}catch(e){}
30848         }
30849         this.fireEvent("panelremoved", this, panel);
30850         return panel;
30851     },
30852
30853     /**
30854      * Returns the TabPanel component used by this region
30855      * @return {Roo.TabPanel}
30856      */
30857     getTabs : function(){
30858         return this.tabs;
30859     },
30860
30861     createTool : function(parentEl, className){
30862         var btn = Roo.DomHelper.append(parentEl, {tag: "div", cls: "x-layout-tools-button",
30863             children: [{tag: "div", cls: "x-layout-tools-button-inner " + className, html: "&#160;"}]}, true);
30864         btn.addClassOnOver("x-layout-tools-button-over");
30865         return btn;
30866     }
30867 });/*
30868  * Based on:
30869  * Ext JS Library 1.1.1
30870  * Copyright(c) 2006-2007, Ext JS, LLC.
30871  *
30872  * Originally Released Under LGPL - original licence link has changed is not relivant.
30873  *
30874  * Fork - LGPL
30875  * <script type="text/javascript">
30876  */
30877  
30878
30879
30880 /**
30881  * @class Roo.SplitLayoutRegion
30882  * @extends Roo.LayoutRegion
30883  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
30884  */
30885 Roo.SplitLayoutRegion = function(mgr, config, pos, cursor){
30886     this.cursor = cursor;
30887     Roo.SplitLayoutRegion.superclass.constructor.call(this, mgr, config, pos);
30888 };
30889
30890 Roo.extend(Roo.SplitLayoutRegion, Roo.LayoutRegion, {
30891     splitTip : "Drag to resize.",
30892     collapsibleSplitTip : "Drag to resize. Double click to hide.",
30893     useSplitTips : false,
30894
30895     applyConfig : function(config){
30896         Roo.SplitLayoutRegion.superclass.applyConfig.call(this, config);
30897         if(config.split){
30898             if(!this.split){
30899                 var splitEl = Roo.DomHelper.append(this.mgr.el.dom, 
30900                         {tag: "div", id: this.el.id + "-split", cls: "x-layout-split x-layout-split-"+this.position, html: "&#160;"});
30901                 /** The SplitBar for this region 
30902                 * @type Roo.SplitBar */
30903                 this.split = new Roo.SplitBar(splitEl, this.el, this.orientation);
30904                 this.split.on("moved", this.onSplitMove, this);
30905                 this.split.useShim = config.useShim === true;
30906                 this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
30907                 if(this.useSplitTips){
30908                     this.split.el.dom.title = config.collapsible ? this.collapsibleSplitTip : this.splitTip;
30909                 }
30910                 if(config.collapsible){
30911                     this.split.el.on("dblclick", this.collapse,  this);
30912                 }
30913             }
30914             if(typeof config.minSize != "undefined"){
30915                 this.split.minSize = config.minSize;
30916             }
30917             if(typeof config.maxSize != "undefined"){
30918                 this.split.maxSize = config.maxSize;
30919             }
30920             if(config.hideWhenEmpty || config.hidden || config.collapsed){
30921                 this.hideSplitter();
30922             }
30923         }
30924     },
30925
30926     getHMaxSize : function(){
30927          var cmax = this.config.maxSize || 10000;
30928          var center = this.mgr.getRegion("center");
30929          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
30930     },
30931
30932     getVMaxSize : function(){
30933          var cmax = this.config.maxSize || 10000;
30934          var center = this.mgr.getRegion("center");
30935          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
30936     },
30937
30938     onSplitMove : function(split, newSize){
30939         this.fireEvent("resized", this, newSize);
30940     },
30941     
30942     /** 
30943      * Returns the {@link Roo.SplitBar} for this region.
30944      * @return {Roo.SplitBar}
30945      */
30946     getSplitBar : function(){
30947         return this.split;
30948     },
30949     
30950     hide : function(){
30951         this.hideSplitter();
30952         Roo.SplitLayoutRegion.superclass.hide.call(this);
30953     },
30954
30955     hideSplitter : function(){
30956         if(this.split){
30957             this.split.el.setLocation(-2000,-2000);
30958             this.split.el.hide();
30959         }
30960     },
30961
30962     show : function(){
30963         if(this.split){
30964             this.split.el.show();
30965         }
30966         Roo.SplitLayoutRegion.superclass.show.call(this);
30967     },
30968     
30969     beforeSlide: function(){
30970         if(Roo.isGecko){// firefox overflow auto bug workaround
30971             this.bodyEl.clip();
30972             if(this.tabs) {
30973                 this.tabs.bodyEl.clip();
30974             }
30975             if(this.activePanel){
30976                 this.activePanel.getEl().clip();
30977                 
30978                 if(this.activePanel.beforeSlide){
30979                     this.activePanel.beforeSlide();
30980                 }
30981             }
30982         }
30983     },
30984     
30985     afterSlide : function(){
30986         if(Roo.isGecko){// firefox overflow auto bug workaround
30987             this.bodyEl.unclip();
30988             if(this.tabs) {
30989                 this.tabs.bodyEl.unclip();
30990             }
30991             if(this.activePanel){
30992                 this.activePanel.getEl().unclip();
30993                 if(this.activePanel.afterSlide){
30994                     this.activePanel.afterSlide();
30995                 }
30996             }
30997         }
30998     },
30999
31000     initAutoHide : function(){
31001         if(this.autoHide !== false){
31002             if(!this.autoHideHd){
31003                 var st = new Roo.util.DelayedTask(this.slideIn, this);
31004                 this.autoHideHd = {
31005                     "mouseout": function(e){
31006                         if(!e.within(this.el, true)){
31007                             st.delay(500);
31008                         }
31009                     },
31010                     "mouseover" : function(e){
31011                         st.cancel();
31012                     },
31013                     scope : this
31014                 };
31015             }
31016             this.el.on(this.autoHideHd);
31017         }
31018     },
31019
31020     clearAutoHide : function(){
31021         if(this.autoHide !== false){
31022             this.el.un("mouseout", this.autoHideHd.mouseout);
31023             this.el.un("mouseover", this.autoHideHd.mouseover);
31024         }
31025     },
31026
31027     clearMonitor : function(){
31028         Roo.get(document).un("click", this.slideInIf, this);
31029     },
31030
31031     // these names are backwards but not changed for compat
31032     slideOut : function(){
31033         if(this.isSlid || this.el.hasActiveFx()){
31034             return;
31035         }
31036         this.isSlid = true;
31037         if(this.collapseBtn){
31038             this.collapseBtn.hide();
31039         }
31040         this.closeBtnState = this.closeBtn.getStyle('display');
31041         this.closeBtn.hide();
31042         if(this.stickBtn){
31043             this.stickBtn.show();
31044         }
31045         this.el.show();
31046         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
31047         this.beforeSlide();
31048         this.el.setStyle("z-index", 10001);
31049         this.el.slideIn(this.getSlideAnchor(), {
31050             callback: function(){
31051                 this.afterSlide();
31052                 this.initAutoHide();
31053                 Roo.get(document).on("click", this.slideInIf, this);
31054                 this.fireEvent("slideshow", this);
31055             },
31056             scope: this,
31057             block: true
31058         });
31059     },
31060
31061     afterSlideIn : function(){
31062         this.clearAutoHide();
31063         this.isSlid = false;
31064         this.clearMonitor();
31065         this.el.setStyle("z-index", "");
31066         if(this.collapseBtn){
31067             this.collapseBtn.show();
31068         }
31069         this.closeBtn.setStyle('display', this.closeBtnState);
31070         if(this.stickBtn){
31071             this.stickBtn.hide();
31072         }
31073         this.fireEvent("slidehide", this);
31074     },
31075
31076     slideIn : function(cb){
31077         if(!this.isSlid || this.el.hasActiveFx()){
31078             Roo.callback(cb);
31079             return;
31080         }
31081         this.isSlid = false;
31082         this.beforeSlide();
31083         this.el.slideOut(this.getSlideAnchor(), {
31084             callback: function(){
31085                 this.el.setLeftTop(-10000, -10000);
31086                 this.afterSlide();
31087                 this.afterSlideIn();
31088                 Roo.callback(cb);
31089             },
31090             scope: this,
31091             block: true
31092         });
31093     },
31094     
31095     slideInIf : function(e){
31096         if(!e.within(this.el)){
31097             this.slideIn();
31098         }
31099     },
31100
31101     animateCollapse : function(){
31102         this.beforeSlide();
31103         this.el.setStyle("z-index", 20000);
31104         var anchor = this.getSlideAnchor();
31105         this.el.slideOut(anchor, {
31106             callback : function(){
31107                 this.el.setStyle("z-index", "");
31108                 this.collapsedEl.slideIn(anchor, {duration:.3});
31109                 this.afterSlide();
31110                 this.el.setLocation(-10000,-10000);
31111                 this.el.hide();
31112                 this.fireEvent("collapsed", this);
31113             },
31114             scope: this,
31115             block: true
31116         });
31117     },
31118
31119     animateExpand : function(){
31120         this.beforeSlide();
31121         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
31122         this.el.setStyle("z-index", 20000);
31123         this.collapsedEl.hide({
31124             duration:.1
31125         });
31126         this.el.slideIn(this.getSlideAnchor(), {
31127             callback : function(){
31128                 this.el.setStyle("z-index", "");
31129                 this.afterSlide();
31130                 if(this.split){
31131                     this.split.el.show();
31132                 }
31133                 this.fireEvent("invalidated", this);
31134                 this.fireEvent("expanded", this);
31135             },
31136             scope: this,
31137             block: true
31138         });
31139     },
31140
31141     anchors : {
31142         "west" : "left",
31143         "east" : "right",
31144         "north" : "top",
31145         "south" : "bottom"
31146     },
31147
31148     sanchors : {
31149         "west" : "l",
31150         "east" : "r",
31151         "north" : "t",
31152         "south" : "b"
31153     },
31154
31155     canchors : {
31156         "west" : "tl-tr",
31157         "east" : "tr-tl",
31158         "north" : "tl-bl",
31159         "south" : "bl-tl"
31160     },
31161
31162     getAnchor : function(){
31163         return this.anchors[this.position];
31164     },
31165
31166     getCollapseAnchor : function(){
31167         return this.canchors[this.position];
31168     },
31169
31170     getSlideAnchor : function(){
31171         return this.sanchors[this.position];
31172     },
31173
31174     getAlignAdj : function(){
31175         var cm = this.cmargins;
31176         switch(this.position){
31177             case "west":
31178                 return [0, 0];
31179             break;
31180             case "east":
31181                 return [0, 0];
31182             break;
31183             case "north":
31184                 return [0, 0];
31185             break;
31186             case "south":
31187                 return [0, 0];
31188             break;
31189         }
31190     },
31191
31192     getExpandAdj : function(){
31193         var c = this.collapsedEl, cm = this.cmargins;
31194         switch(this.position){
31195             case "west":
31196                 return [-(cm.right+c.getWidth()+cm.left), 0];
31197             break;
31198             case "east":
31199                 return [cm.right+c.getWidth()+cm.left, 0];
31200             break;
31201             case "north":
31202                 return [0, -(cm.top+cm.bottom+c.getHeight())];
31203             break;
31204             case "south":
31205                 return [0, cm.top+cm.bottom+c.getHeight()];
31206             break;
31207         }
31208     }
31209 });/*
31210  * Based on:
31211  * Ext JS Library 1.1.1
31212  * Copyright(c) 2006-2007, Ext JS, LLC.
31213  *
31214  * Originally Released Under LGPL - original licence link has changed is not relivant.
31215  *
31216  * Fork - LGPL
31217  * <script type="text/javascript">
31218  */
31219 /*
31220  * These classes are private internal classes
31221  */
31222 Roo.CenterLayoutRegion = function(mgr, config){
31223     Roo.LayoutRegion.call(this, mgr, config, "center");
31224     this.visible = true;
31225     this.minWidth = config.minWidth || 20;
31226     this.minHeight = config.minHeight || 20;
31227 };
31228
31229 Roo.extend(Roo.CenterLayoutRegion, Roo.LayoutRegion, {
31230     hide : function(){
31231         // center panel can't be hidden
31232     },
31233     
31234     show : function(){
31235         // center panel can't be hidden
31236     },
31237     
31238     getMinWidth: function(){
31239         return this.minWidth;
31240     },
31241     
31242     getMinHeight: function(){
31243         return this.minHeight;
31244     }
31245 });
31246
31247
31248 Roo.NorthLayoutRegion = function(mgr, config){
31249     Roo.LayoutRegion.call(this, mgr, config, "north", "n-resize");
31250     if(this.split){
31251         this.split.placement = Roo.SplitBar.TOP;
31252         this.split.orientation = Roo.SplitBar.VERTICAL;
31253         this.split.el.addClass("x-layout-split-v");
31254     }
31255     var size = config.initialSize || config.height;
31256     if(typeof size != "undefined"){
31257         this.el.setHeight(size);
31258     }
31259 };
31260 Roo.extend(Roo.NorthLayoutRegion, Roo.SplitLayoutRegion, {
31261     orientation: Roo.SplitBar.VERTICAL,
31262     getBox : function(){
31263         if(this.collapsed){
31264             return this.collapsedEl.getBox();
31265         }
31266         var box = this.el.getBox();
31267         if(this.split){
31268             box.height += this.split.el.getHeight();
31269         }
31270         return box;
31271     },
31272     
31273     updateBox : function(box){
31274         if(this.split && !this.collapsed){
31275             box.height -= this.split.el.getHeight();
31276             this.split.el.setLeft(box.x);
31277             this.split.el.setTop(box.y+box.height);
31278             this.split.el.setWidth(box.width);
31279         }
31280         if(this.collapsed){
31281             this.updateBody(box.width, null);
31282         }
31283         Roo.LayoutRegion.prototype.updateBox.call(this, box);
31284     }
31285 });
31286
31287 Roo.SouthLayoutRegion = function(mgr, config){
31288     Roo.SplitLayoutRegion.call(this, mgr, config, "south", "s-resize");
31289     if(this.split){
31290         this.split.placement = Roo.SplitBar.BOTTOM;
31291         this.split.orientation = Roo.SplitBar.VERTICAL;
31292         this.split.el.addClass("x-layout-split-v");
31293     }
31294     var size = config.initialSize || config.height;
31295     if(typeof size != "undefined"){
31296         this.el.setHeight(size);
31297     }
31298 };
31299 Roo.extend(Roo.SouthLayoutRegion, Roo.SplitLayoutRegion, {
31300     orientation: Roo.SplitBar.VERTICAL,
31301     getBox : function(){
31302         if(this.collapsed){
31303             return this.collapsedEl.getBox();
31304         }
31305         var box = this.el.getBox();
31306         if(this.split){
31307             var sh = this.split.el.getHeight();
31308             box.height += sh;
31309             box.y -= sh;
31310         }
31311         return box;
31312     },
31313     
31314     updateBox : function(box){
31315         if(this.split && !this.collapsed){
31316             var sh = this.split.el.getHeight();
31317             box.height -= sh;
31318             box.y += sh;
31319             this.split.el.setLeft(box.x);
31320             this.split.el.setTop(box.y-sh);
31321             this.split.el.setWidth(box.width);
31322         }
31323         if(this.collapsed){
31324             this.updateBody(box.width, null);
31325         }
31326         Roo.LayoutRegion.prototype.updateBox.call(this, box);
31327     }
31328 });
31329
31330 Roo.EastLayoutRegion = function(mgr, config){
31331     Roo.SplitLayoutRegion.call(this, mgr, config, "east", "e-resize");
31332     if(this.split){
31333         this.split.placement = Roo.SplitBar.RIGHT;
31334         this.split.orientation = Roo.SplitBar.HORIZONTAL;
31335         this.split.el.addClass("x-layout-split-h");
31336     }
31337     var size = config.initialSize || config.width;
31338     if(typeof size != "undefined"){
31339         this.el.setWidth(size);
31340     }
31341 };
31342 Roo.extend(Roo.EastLayoutRegion, Roo.SplitLayoutRegion, {
31343     orientation: Roo.SplitBar.HORIZONTAL,
31344     getBox : function(){
31345         if(this.collapsed){
31346             return this.collapsedEl.getBox();
31347         }
31348         var box = this.el.getBox();
31349         if(this.split){
31350             var sw = this.split.el.getWidth();
31351             box.width += sw;
31352             box.x -= sw;
31353         }
31354         return box;
31355     },
31356
31357     updateBox : function(box){
31358         if(this.split && !this.collapsed){
31359             var sw = this.split.el.getWidth();
31360             box.width -= sw;
31361             this.split.el.setLeft(box.x);
31362             this.split.el.setTop(box.y);
31363             this.split.el.setHeight(box.height);
31364             box.x += sw;
31365         }
31366         if(this.collapsed){
31367             this.updateBody(null, box.height);
31368         }
31369         Roo.LayoutRegion.prototype.updateBox.call(this, box);
31370     }
31371 });
31372
31373 Roo.WestLayoutRegion = function(mgr, config){
31374     Roo.SplitLayoutRegion.call(this, mgr, config, "west", "w-resize");
31375     if(this.split){
31376         this.split.placement = Roo.SplitBar.LEFT;
31377         this.split.orientation = Roo.SplitBar.HORIZONTAL;
31378         this.split.el.addClass("x-layout-split-h");
31379     }
31380     var size = config.initialSize || config.width;
31381     if(typeof size != "undefined"){
31382         this.el.setWidth(size);
31383     }
31384 };
31385 Roo.extend(Roo.WestLayoutRegion, Roo.SplitLayoutRegion, {
31386     orientation: Roo.SplitBar.HORIZONTAL,
31387     getBox : function(){
31388         if(this.collapsed){
31389             return this.collapsedEl.getBox();
31390         }
31391         var box = this.el.getBox();
31392         if(this.split){
31393             box.width += this.split.el.getWidth();
31394         }
31395         return box;
31396     },
31397     
31398     updateBox : function(box){
31399         if(this.split && !this.collapsed){
31400             var sw = this.split.el.getWidth();
31401             box.width -= sw;
31402             this.split.el.setLeft(box.x+box.width);
31403             this.split.el.setTop(box.y);
31404             this.split.el.setHeight(box.height);
31405         }
31406         if(this.collapsed){
31407             this.updateBody(null, box.height);
31408         }
31409         Roo.LayoutRegion.prototype.updateBox.call(this, box);
31410     }
31411 });
31412 /*
31413  * Based on:
31414  * Ext JS Library 1.1.1
31415  * Copyright(c) 2006-2007, Ext JS, LLC.
31416  *
31417  * Originally Released Under LGPL - original licence link has changed is not relivant.
31418  *
31419  * Fork - LGPL
31420  * <script type="text/javascript">
31421  */
31422  
31423  
31424 /*
31425  * Private internal class for reading and applying state
31426  */
31427 Roo.LayoutStateManager = function(layout){
31428      // default empty state
31429      this.state = {
31430         north: {},
31431         south: {},
31432         east: {},
31433         west: {}       
31434     };
31435 };
31436
31437 Roo.LayoutStateManager.prototype = {
31438     init : function(layout, provider){
31439         this.provider = provider;
31440         var state = provider.get(layout.id+"-layout-state");
31441         if(state){
31442             var wasUpdating = layout.isUpdating();
31443             if(!wasUpdating){
31444                 layout.beginUpdate();
31445             }
31446             for(var key in state){
31447                 if(typeof state[key] != "function"){
31448                     var rstate = state[key];
31449                     var r = layout.getRegion(key);
31450                     if(r && rstate){
31451                         if(rstate.size){
31452                             r.resizeTo(rstate.size);
31453                         }
31454                         if(rstate.collapsed == true){
31455                             r.collapse(true);
31456                         }else{
31457                             r.expand(null, true);
31458                         }
31459                     }
31460                 }
31461             }
31462             if(!wasUpdating){
31463                 layout.endUpdate();
31464             }
31465             this.state = state; 
31466         }
31467         this.layout = layout;
31468         layout.on("regionresized", this.onRegionResized, this);
31469         layout.on("regioncollapsed", this.onRegionCollapsed, this);
31470         layout.on("regionexpanded", this.onRegionExpanded, this);
31471     },
31472     
31473     storeState : function(){
31474         this.provider.set(this.layout.id+"-layout-state", this.state);
31475     },
31476     
31477     onRegionResized : function(region, newSize){
31478         this.state[region.getPosition()].size = newSize;
31479         this.storeState();
31480     },
31481     
31482     onRegionCollapsed : function(region){
31483         this.state[region.getPosition()].collapsed = true;
31484         this.storeState();
31485     },
31486     
31487     onRegionExpanded : function(region){
31488         this.state[region.getPosition()].collapsed = false;
31489         this.storeState();
31490     }
31491 };/*
31492  * Based on:
31493  * Ext JS Library 1.1.1
31494  * Copyright(c) 2006-2007, Ext JS, LLC.
31495  *
31496  * Originally Released Under LGPL - original licence link has changed is not relivant.
31497  *
31498  * Fork - LGPL
31499  * <script type="text/javascript">
31500  */
31501 /**
31502  * @class Roo.ContentPanel
31503  * @extends Roo.util.Observable
31504  * A basic ContentPanel element.
31505  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
31506  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
31507  * @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
31508  * @cfg {Boolean}   closable      True if the panel can be closed/removed
31509  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
31510  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
31511  * @cfg {Toolbar}   toolbar       A toolbar for this panel
31512  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
31513  * @cfg {String} title          The title for this panel
31514  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
31515  * @cfg {String} url            Calls {@link #setUrl} with this value
31516  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
31517  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
31518  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
31519  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
31520
31521  * @constructor
31522  * Create a new ContentPanel.
31523  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
31524  * @param {String/Object} config A string to set only the title or a config object
31525  * @param {String} content (optional) Set the HTML content for this panel
31526  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
31527  */
31528 Roo.ContentPanel = function(el, config, content){
31529     
31530      
31531     /*
31532     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
31533         config = el;
31534         el = Roo.id();
31535     }
31536     if (config && config.parentLayout) { 
31537         el = config.parentLayout.el.createChild(); 
31538     }
31539     */
31540     if(el.autoCreate){ // xtype is available if this is called from factory
31541         config = el;
31542         el = Roo.id();
31543     }
31544     this.el = Roo.get(el);
31545     if(!this.el && config && config.autoCreate){
31546         if(typeof config.autoCreate == "object"){
31547             if(!config.autoCreate.id){
31548                 config.autoCreate.id = config.id||el;
31549             }
31550             this.el = Roo.DomHelper.append(document.body,
31551                         config.autoCreate, true);
31552         }else{
31553             this.el = Roo.DomHelper.append(document.body,
31554                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
31555         }
31556     }
31557     this.closable = false;
31558     this.loaded = false;
31559     this.active = false;
31560     if(typeof config == "string"){
31561         this.title = config;
31562     }else{
31563         Roo.apply(this, config);
31564     }
31565     
31566     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
31567         this.wrapEl = this.el.wrap();
31568         this.toolbar.container = this.el.insertSibling(false, 'before');
31569         this.toolbar = new Roo.Toolbar(this.toolbar);
31570     }
31571     
31572     // xtype created footer. - not sure if will work as we normally have to render first..
31573     if (this.footer && !this.footer.el && this.footer.xtype) {
31574         if (!this.wrapEl) {
31575             this.wrapEl = this.el.wrap();
31576         }
31577     
31578         this.footer.container = this.wrapEl.createChild();
31579          
31580         this.footer = Roo.factory(this.footer, Roo);
31581         
31582     }
31583     
31584     if(this.resizeEl){
31585         this.resizeEl = Roo.get(this.resizeEl, true);
31586     }else{
31587         this.resizeEl = this.el;
31588     }
31589     // handle view.xtype
31590     
31591  
31592     
31593     
31594     this.addEvents({
31595         /**
31596          * @event activate
31597          * Fires when this panel is activated. 
31598          * @param {Roo.ContentPanel} this
31599          */
31600         "activate" : true,
31601         /**
31602          * @event deactivate
31603          * Fires when this panel is activated. 
31604          * @param {Roo.ContentPanel} this
31605          */
31606         "deactivate" : true,
31607
31608         /**
31609          * @event resize
31610          * Fires when this panel is resized if fitToFrame is true.
31611          * @param {Roo.ContentPanel} this
31612          * @param {Number} width The width after any component adjustments
31613          * @param {Number} height The height after any component adjustments
31614          */
31615         "resize" : true,
31616         
31617          /**
31618          * @event render
31619          * Fires when this tab is created
31620          * @param {Roo.ContentPanel} this
31621          */
31622         "render" : true
31623          
31624         
31625     });
31626     
31627
31628     
31629     
31630     if(this.autoScroll){
31631         this.resizeEl.setStyle("overflow", "auto");
31632     } else {
31633         // fix randome scrolling
31634         this.el.on('scroll', function() {
31635             Roo.log('fix random scolling');
31636             this.scrollTo('top',0); 
31637         });
31638     }
31639     content = content || this.content;
31640     if(content){
31641         this.setContent(content);
31642     }
31643     if(config && config.url){
31644         this.setUrl(this.url, this.params, this.loadOnce);
31645     }
31646     
31647     
31648     
31649     Roo.ContentPanel.superclass.constructor.call(this);
31650     
31651     if (this.view && typeof(this.view.xtype) != 'undefined') {
31652         this.view.el = this.el.appendChild(document.createElement("div"));
31653         this.view = Roo.factory(this.view); 
31654         this.view.render  &&  this.view.render(false, '');  
31655     }
31656     
31657     
31658     this.fireEvent('render', this);
31659 };
31660
31661 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
31662     tabTip:'',
31663     setRegion : function(region){
31664         this.region = region;
31665         if(region){
31666            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
31667         }else{
31668            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
31669         } 
31670     },
31671     
31672     /**
31673      * Returns the toolbar for this Panel if one was configured. 
31674      * @return {Roo.Toolbar} 
31675      */
31676     getToolbar : function(){
31677         return this.toolbar;
31678     },
31679     
31680     setActiveState : function(active){
31681         this.active = active;
31682         if(!active){
31683             this.fireEvent("deactivate", this);
31684         }else{
31685             this.fireEvent("activate", this);
31686         }
31687     },
31688     /**
31689      * Updates this panel's element
31690      * @param {String} content The new content
31691      * @param {Boolean} loadScripts (optional) true to look for and process scripts
31692     */
31693     setContent : function(content, loadScripts){
31694         this.el.update(content, loadScripts);
31695     },
31696
31697     ignoreResize : function(w, h){
31698         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
31699             return true;
31700         }else{
31701             this.lastSize = {width: w, height: h};
31702             return false;
31703         }
31704     },
31705     /**
31706      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
31707      * @return {Roo.UpdateManager} The UpdateManager
31708      */
31709     getUpdateManager : function(){
31710         return this.el.getUpdateManager();
31711     },
31712      /**
31713      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
31714      * @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:
31715 <pre><code>
31716 panel.load({
31717     url: "your-url.php",
31718     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
31719     callback: yourFunction,
31720     scope: yourObject, //(optional scope)
31721     discardUrl: false,
31722     nocache: false,
31723     text: "Loading...",
31724     timeout: 30,
31725     scripts: false
31726 });
31727 </code></pre>
31728      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
31729      * 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.
31730      * @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}
31731      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
31732      * @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.
31733      * @return {Roo.ContentPanel} this
31734      */
31735     load : function(){
31736         var um = this.el.getUpdateManager();
31737         um.update.apply(um, arguments);
31738         return this;
31739     },
31740
31741
31742     /**
31743      * 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.
31744      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
31745      * @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)
31746      * @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)
31747      * @return {Roo.UpdateManager} The UpdateManager
31748      */
31749     setUrl : function(url, params, loadOnce){
31750         if(this.refreshDelegate){
31751             this.removeListener("activate", this.refreshDelegate);
31752         }
31753         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
31754         this.on("activate", this.refreshDelegate);
31755         return this.el.getUpdateManager();
31756     },
31757     
31758     _handleRefresh : function(url, params, loadOnce){
31759         if(!loadOnce || !this.loaded){
31760             var updater = this.el.getUpdateManager();
31761             updater.update(url, params, this._setLoaded.createDelegate(this));
31762         }
31763     },
31764     
31765     _setLoaded : function(){
31766         this.loaded = true;
31767     }, 
31768     
31769     /**
31770      * Returns this panel's id
31771      * @return {String} 
31772      */
31773     getId : function(){
31774         return this.el.id;
31775     },
31776     
31777     /** 
31778      * Returns this panel's element - used by regiosn to add.
31779      * @return {Roo.Element} 
31780      */
31781     getEl : function(){
31782         return this.wrapEl || this.el;
31783     },
31784     
31785     adjustForComponents : function(width, height)
31786     {
31787         //Roo.log('adjustForComponents ');
31788         if(this.resizeEl != this.el){
31789             width -= this.el.getFrameWidth('lr');
31790             height -= this.el.getFrameWidth('tb');
31791         }
31792         if(this.toolbar){
31793             var te = this.toolbar.getEl();
31794             height -= te.getHeight();
31795             te.setWidth(width);
31796         }
31797         if(this.footer){
31798             var te = this.footer.getEl();
31799             //Roo.log("footer:" + te.getHeight());
31800             
31801             height -= te.getHeight();
31802             te.setWidth(width);
31803         }
31804         
31805         
31806         if(this.adjustments){
31807             width += this.adjustments[0];
31808             height += this.adjustments[1];
31809         }
31810         return {"width": width, "height": height};
31811     },
31812     
31813     setSize : function(width, height){
31814         if(this.fitToFrame && !this.ignoreResize(width, height)){
31815             if(this.fitContainer && this.resizeEl != this.el){
31816                 this.el.setSize(width, height);
31817             }
31818             var size = this.adjustForComponents(width, height);
31819             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
31820             this.fireEvent('resize', this, size.width, size.height);
31821         }
31822     },
31823     
31824     /**
31825      * Returns this panel's title
31826      * @return {String} 
31827      */
31828     getTitle : function(){
31829         return this.title;
31830     },
31831     
31832     /**
31833      * Set this panel's title
31834      * @param {String} title
31835      */
31836     setTitle : function(title){
31837         this.title = title;
31838         if(this.region){
31839             this.region.updatePanelTitle(this, title);
31840         }
31841     },
31842     
31843     /**
31844      * Returns true is this panel was configured to be closable
31845      * @return {Boolean} 
31846      */
31847     isClosable : function(){
31848         return this.closable;
31849     },
31850     
31851     beforeSlide : function(){
31852         this.el.clip();
31853         this.resizeEl.clip();
31854     },
31855     
31856     afterSlide : function(){
31857         this.el.unclip();
31858         this.resizeEl.unclip();
31859     },
31860     
31861     /**
31862      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
31863      *   Will fail silently if the {@link #setUrl} method has not been called.
31864      *   This does not activate the panel, just updates its content.
31865      */
31866     refresh : function(){
31867         if(this.refreshDelegate){
31868            this.loaded = false;
31869            this.refreshDelegate();
31870         }
31871     },
31872     
31873     /**
31874      * Destroys this panel
31875      */
31876     destroy : function(){
31877         this.el.removeAllListeners();
31878         var tempEl = document.createElement("span");
31879         tempEl.appendChild(this.el.dom);
31880         tempEl.innerHTML = "";
31881         this.el.remove();
31882         this.el = null;
31883     },
31884     
31885     /**
31886      * form - if the content panel contains a form - this is a reference to it.
31887      * @type {Roo.form.Form}
31888      */
31889     form : false,
31890     /**
31891      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
31892      *    This contains a reference to it.
31893      * @type {Roo.View}
31894      */
31895     view : false,
31896     
31897       /**
31898      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
31899      * <pre><code>
31900
31901 layout.addxtype({
31902        xtype : 'Form',
31903        items: [ .... ]
31904    }
31905 );
31906
31907 </code></pre>
31908      * @param {Object} cfg Xtype definition of item to add.
31909      */
31910     
31911     addxtype : function(cfg) {
31912         // add form..
31913         if (cfg.xtype.match(/^Form$/)) {
31914             
31915             var el;
31916             //if (this.footer) {
31917             //    el = this.footer.container.insertSibling(false, 'before');
31918             //} else {
31919                 el = this.el.createChild();
31920             //}
31921
31922             this.form = new  Roo.form.Form(cfg);
31923             
31924             
31925             if ( this.form.allItems.length) {
31926                 this.form.render(el.dom);
31927             }
31928             return this.form;
31929         }
31930         // should only have one of theses..
31931         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
31932             // views.. should not be just added - used named prop 'view''
31933             
31934             cfg.el = this.el.appendChild(document.createElement("div"));
31935             // factory?
31936             
31937             var ret = new Roo.factory(cfg);
31938              
31939              ret.render && ret.render(false, ''); // render blank..
31940             this.view = ret;
31941             return ret;
31942         }
31943         return false;
31944     }
31945 });
31946
31947 /**
31948  * @class Roo.GridPanel
31949  * @extends Roo.ContentPanel
31950  * @constructor
31951  * Create a new GridPanel.
31952  * @param {Roo.grid.Grid} grid The grid for this panel
31953  * @param {String/Object} config A string to set only the panel's title, or a config object
31954  */
31955 Roo.GridPanel = function(grid, config){
31956     
31957   
31958     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
31959         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
31960         
31961     this.wrapper.dom.appendChild(grid.getGridEl().dom);
31962     
31963     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
31964     
31965     if(this.toolbar){
31966         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
31967     }
31968     // xtype created footer. - not sure if will work as we normally have to render first..
31969     if (this.footer && !this.footer.el && this.footer.xtype) {
31970         
31971         this.footer.container = this.grid.getView().getFooterPanel(true);
31972         this.footer.dataSource = this.grid.dataSource;
31973         this.footer = Roo.factory(this.footer, Roo);
31974         
31975     }
31976     
31977     grid.monitorWindowResize = false; // turn off autosizing
31978     grid.autoHeight = false;
31979     grid.autoWidth = false;
31980     this.grid = grid;
31981     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
31982 };
31983
31984 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
31985     getId : function(){
31986         return this.grid.id;
31987     },
31988     
31989     /**
31990      * Returns the grid for this panel
31991      * @return {Roo.grid.Grid} 
31992      */
31993     getGrid : function(){
31994         return this.grid;    
31995     },
31996     
31997     setSize : function(width, height){
31998         if(!this.ignoreResize(width, height)){
31999             var grid = this.grid;
32000             var size = this.adjustForComponents(width, height);
32001             grid.getGridEl().setSize(size.width, size.height);
32002             grid.autoSize();
32003         }
32004     },
32005     
32006     beforeSlide : function(){
32007         this.grid.getView().scroller.clip();
32008     },
32009     
32010     afterSlide : function(){
32011         this.grid.getView().scroller.unclip();
32012     },
32013     
32014     destroy : function(){
32015         this.grid.destroy();
32016         delete this.grid;
32017         Roo.GridPanel.superclass.destroy.call(this); 
32018     }
32019 });
32020
32021
32022 /**
32023  * @class Roo.NestedLayoutPanel
32024  * @extends Roo.ContentPanel
32025  * @constructor
32026  * Create a new NestedLayoutPanel.
32027  * 
32028  * 
32029  * @param {Roo.BorderLayout} layout The layout for this panel
32030  * @param {String/Object} config A string to set only the title or a config object
32031  */
32032 Roo.NestedLayoutPanel = function(layout, config)
32033 {
32034     // construct with only one argument..
32035     /* FIXME - implement nicer consturctors
32036     if (layout.layout) {
32037         config = layout;
32038         layout = config.layout;
32039         delete config.layout;
32040     }
32041     if (layout.xtype && !layout.getEl) {
32042         // then layout needs constructing..
32043         layout = Roo.factory(layout, Roo);
32044     }
32045     */
32046     
32047     
32048     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
32049     
32050     layout.monitorWindowResize = false; // turn off autosizing
32051     this.layout = layout;
32052     this.layout.getEl().addClass("x-layout-nested-layout");
32053     
32054     
32055     
32056     
32057 };
32058
32059 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
32060
32061     setSize : function(width, height){
32062         if(!this.ignoreResize(width, height)){
32063             var size = this.adjustForComponents(width, height);
32064             var el = this.layout.getEl();
32065             el.setSize(size.width, size.height);
32066             var touch = el.dom.offsetWidth;
32067             this.layout.layout();
32068             // ie requires a double layout on the first pass
32069             if(Roo.isIE && !this.initialized){
32070                 this.initialized = true;
32071                 this.layout.layout();
32072             }
32073         }
32074     },
32075     
32076     // activate all subpanels if not currently active..
32077     
32078     setActiveState : function(active){
32079         this.active = active;
32080         if(!active){
32081             this.fireEvent("deactivate", this);
32082             return;
32083         }
32084         
32085         this.fireEvent("activate", this);
32086         // not sure if this should happen before or after..
32087         if (!this.layout) {
32088             return; // should not happen..
32089         }
32090         var reg = false;
32091         for (var r in this.layout.regions) {
32092             reg = this.layout.getRegion(r);
32093             if (reg.getActivePanel()) {
32094                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
32095                 reg.setActivePanel(reg.getActivePanel());
32096                 continue;
32097             }
32098             if (!reg.panels.length) {
32099                 continue;
32100             }
32101             reg.showPanel(reg.getPanel(0));
32102         }
32103         
32104         
32105         
32106         
32107     },
32108     
32109     /**
32110      * Returns the nested BorderLayout for this panel
32111      * @return {Roo.BorderLayout} 
32112      */
32113     getLayout : function(){
32114         return this.layout;
32115     },
32116     
32117      /**
32118      * Adds a xtype elements to the layout of the nested panel
32119      * <pre><code>
32120
32121 panel.addxtype({
32122        xtype : 'ContentPanel',
32123        region: 'west',
32124        items: [ .... ]
32125    }
32126 );
32127
32128 panel.addxtype({
32129         xtype : 'NestedLayoutPanel',
32130         region: 'west',
32131         layout: {
32132            center: { },
32133            west: { }   
32134         },
32135         items : [ ... list of content panels or nested layout panels.. ]
32136    }
32137 );
32138 </code></pre>
32139      * @param {Object} cfg Xtype definition of item to add.
32140      */
32141     addxtype : function(cfg) {
32142         return this.layout.addxtype(cfg);
32143     
32144     }
32145 });
32146
32147 Roo.ScrollPanel = function(el, config, content){
32148     config = config || {};
32149     config.fitToFrame = true;
32150     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
32151     
32152     this.el.dom.style.overflow = "hidden";
32153     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
32154     this.el.removeClass("x-layout-inactive-content");
32155     this.el.on("mousewheel", this.onWheel, this);
32156
32157     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
32158     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
32159     up.unselectable(); down.unselectable();
32160     up.on("click", this.scrollUp, this);
32161     down.on("click", this.scrollDown, this);
32162     up.addClassOnOver("x-scroller-btn-over");
32163     down.addClassOnOver("x-scroller-btn-over");
32164     up.addClassOnClick("x-scroller-btn-click");
32165     down.addClassOnClick("x-scroller-btn-click");
32166     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
32167
32168     this.resizeEl = this.el;
32169     this.el = wrap; this.up = up; this.down = down;
32170 };
32171
32172 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
32173     increment : 100,
32174     wheelIncrement : 5,
32175     scrollUp : function(){
32176         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
32177     },
32178
32179     scrollDown : function(){
32180         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
32181     },
32182
32183     afterScroll : function(){
32184         var el = this.resizeEl;
32185         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
32186         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
32187         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
32188     },
32189
32190     setSize : function(){
32191         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
32192         this.afterScroll();
32193     },
32194
32195     onWheel : function(e){
32196         var d = e.getWheelDelta();
32197         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
32198         this.afterScroll();
32199         e.stopEvent();
32200     },
32201
32202     setContent : function(content, loadScripts){
32203         this.resizeEl.update(content, loadScripts);
32204     }
32205
32206 });
32207
32208
32209
32210
32211
32212
32213
32214
32215
32216 /**
32217  * @class Roo.TreePanel
32218  * @extends Roo.ContentPanel
32219  * @constructor
32220  * Create a new TreePanel. - defaults to fit/scoll contents.
32221  * @param {String/Object} config A string to set only the panel's title, or a config object
32222  * @cfg {Roo.tree.TreePanel} tree The tree TreePanel, with config etc.
32223  */
32224 Roo.TreePanel = function(config){
32225     var el = config.el;
32226     var tree = config.tree;
32227     delete config.tree; 
32228     delete config.el; // hopefull!
32229     
32230     // wrapper for IE7 strict & safari scroll issue
32231     
32232     var treeEl = el.createChild();
32233     config.resizeEl = treeEl;
32234     
32235     
32236     
32237     Roo.TreePanel.superclass.constructor.call(this, el, config);
32238  
32239  
32240     this.tree = new Roo.tree.TreePanel(treeEl , tree);
32241     //console.log(tree);
32242     this.on('activate', function()
32243     {
32244         if (this.tree.rendered) {
32245             return;
32246         }
32247         //console.log('render tree');
32248         this.tree.render();
32249     });
32250     // this should not be needed.. - it's actually the 'el' that resizes?
32251     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
32252     
32253     //this.on('resize',  function (cp, w, h) {
32254     //        this.tree.innerCt.setWidth(w);
32255     //        this.tree.innerCt.setHeight(h);
32256     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
32257     //});
32258
32259         
32260     
32261 };
32262
32263 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
32264     fitToFrame : true,
32265     autoScroll : true
32266 });
32267
32268
32269
32270
32271
32272
32273
32274
32275
32276
32277
32278 /*
32279  * Based on:
32280  * Ext JS Library 1.1.1
32281  * Copyright(c) 2006-2007, Ext JS, LLC.
32282  *
32283  * Originally Released Under LGPL - original licence link has changed is not relivant.
32284  *
32285  * Fork - LGPL
32286  * <script type="text/javascript">
32287  */
32288  
32289
32290 /**
32291  * @class Roo.ReaderLayout
32292  * @extends Roo.BorderLayout
32293  * This is a pre-built layout that represents a classic, 5-pane application.  It consists of a header, a primary
32294  * center region containing two nested regions (a top one for a list view and one for item preview below),
32295  * and regions on either side that can be used for navigation, application commands, informational displays, etc.
32296  * The setup and configuration work exactly the same as it does for a {@link Roo.BorderLayout} - this class simply
32297  * expedites the setup of the overall layout and regions for this common application style.
32298  * Example:
32299  <pre><code>
32300 var reader = new Roo.ReaderLayout();
32301 var CP = Roo.ContentPanel;  // shortcut for adding
32302
32303 reader.beginUpdate();
32304 reader.add("north", new CP("north", "North"));
32305 reader.add("west", new CP("west", {title: "West"}));
32306 reader.add("east", new CP("east", {title: "East"}));
32307
32308 reader.regions.listView.add(new CP("listView", "List"));
32309 reader.regions.preview.add(new CP("preview", "Preview"));
32310 reader.endUpdate();
32311 </code></pre>
32312 * @constructor
32313 * Create a new ReaderLayout
32314 * @param {Object} config Configuration options
32315 * @param {String/HTMLElement/Element} container (optional) The container this layout is bound to (defaults to
32316 * document.body if omitted)
32317 */
32318 Roo.ReaderLayout = function(config, renderTo){
32319     var c = config || {size:{}};
32320     Roo.ReaderLayout.superclass.constructor.call(this, renderTo || document.body, {
32321         north: c.north !== false ? Roo.apply({
32322             split:false,
32323             initialSize: 32,
32324             titlebar: false
32325         }, c.north) : false,
32326         west: c.west !== false ? Roo.apply({
32327             split:true,
32328             initialSize: 200,
32329             minSize: 175,
32330             maxSize: 400,
32331             titlebar: true,
32332             collapsible: true,
32333             animate: true,
32334             margins:{left:5,right:0,bottom:5,top:5},
32335             cmargins:{left:5,right:5,bottom:5,top:5}
32336         }, c.west) : false,
32337         east: c.east !== false ? Roo.apply({
32338             split:true,
32339             initialSize: 200,
32340             minSize: 175,
32341             maxSize: 400,
32342             titlebar: true,
32343             collapsible: true,
32344             animate: true,
32345             margins:{left:0,right:5,bottom:5,top:5},
32346             cmargins:{left:5,right:5,bottom:5,top:5}
32347         }, c.east) : false,
32348         center: Roo.apply({
32349             tabPosition: 'top',
32350             autoScroll:false,
32351             closeOnTab: true,
32352             titlebar:false,
32353             margins:{left:c.west!==false ? 0 : 5,right:c.east!==false ? 0 : 5,bottom:5,top:2}
32354         }, c.center)
32355     });
32356
32357     this.el.addClass('x-reader');
32358
32359     this.beginUpdate();
32360
32361     var inner = new Roo.BorderLayout(Roo.get(document.body).createChild(), {
32362         south: c.preview !== false ? Roo.apply({
32363             split:true,
32364             initialSize: 200,
32365             minSize: 100,
32366             autoScroll:true,
32367             collapsible:true,
32368             titlebar: true,
32369             cmargins:{top:5,left:0, right:0, bottom:0}
32370         }, c.preview) : false,
32371         center: Roo.apply({
32372             autoScroll:false,
32373             titlebar:false,
32374             minHeight:200
32375         }, c.listView)
32376     });
32377     this.add('center', new Roo.NestedLayoutPanel(inner,
32378             Roo.apply({title: c.mainTitle || '',tabTip:''},c.innerPanelCfg)));
32379
32380     this.endUpdate();
32381
32382     this.regions.preview = inner.getRegion('south');
32383     this.regions.listView = inner.getRegion('center');
32384 };
32385
32386 Roo.extend(Roo.ReaderLayout, Roo.BorderLayout);/*
32387  * Based on:
32388  * Ext JS Library 1.1.1
32389  * Copyright(c) 2006-2007, Ext JS, LLC.
32390  *
32391  * Originally Released Under LGPL - original licence link has changed is not relivant.
32392  *
32393  * Fork - LGPL
32394  * <script type="text/javascript">
32395  */
32396  
32397 /**
32398  * @class Roo.grid.Grid
32399  * @extends Roo.util.Observable
32400  * This class represents the primary interface of a component based grid control.
32401  * <br><br>Usage:<pre><code>
32402  var grid = new Roo.grid.Grid("my-container-id", {
32403      ds: myDataStore,
32404      cm: myColModel,
32405      selModel: mySelectionModel,
32406      autoSizeColumns: true,
32407      monitorWindowResize: false,
32408      trackMouseOver: true
32409  });
32410  // set any options
32411  grid.render();
32412  * </code></pre>
32413  * <b>Common Problems:</b><br/>
32414  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
32415  * element will correct this<br/>
32416  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
32417  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
32418  * are unpredictable.<br/>
32419  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
32420  * grid to calculate dimensions/offsets.<br/>
32421   * @constructor
32422  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
32423  * The container MUST have some type of size defined for the grid to fill. The container will be
32424  * automatically set to position relative if it isn't already.
32425  * @param {Object} config A config object that sets properties on this grid.
32426  */
32427 Roo.grid.Grid = function(container, config){
32428         // initialize the container
32429         this.container = Roo.get(container);
32430         this.container.update("");
32431         this.container.setStyle("overflow", "hidden");
32432     this.container.addClass('x-grid-container');
32433
32434     this.id = this.container.id;
32435
32436     Roo.apply(this, config);
32437     // check and correct shorthanded configs
32438     if(this.ds){
32439         this.dataSource = this.ds;
32440         delete this.ds;
32441     }
32442     if(this.cm){
32443         this.colModel = this.cm;
32444         delete this.cm;
32445     }
32446     if(this.sm){
32447         this.selModel = this.sm;
32448         delete this.sm;
32449     }
32450
32451     if (this.selModel) {
32452         this.selModel = Roo.factory(this.selModel, Roo.grid);
32453         this.sm = this.selModel;
32454         this.sm.xmodule = this.xmodule || false;
32455     }
32456     if (typeof(this.colModel.config) == 'undefined') {
32457         this.colModel = new Roo.grid.ColumnModel(this.colModel);
32458         this.cm = this.colModel;
32459         this.cm.xmodule = this.xmodule || false;
32460     }
32461     if (this.dataSource) {
32462         this.dataSource= Roo.factory(this.dataSource, Roo.data);
32463         this.ds = this.dataSource;
32464         this.ds.xmodule = this.xmodule || false;
32465          
32466     }
32467     
32468     
32469     
32470     if(this.width){
32471         this.container.setWidth(this.width);
32472     }
32473
32474     if(this.height){
32475         this.container.setHeight(this.height);
32476     }
32477     /** @private */
32478         this.addEvents({
32479         // raw events
32480         /**
32481          * @event click
32482          * The raw click event for the entire grid.
32483          * @param {Roo.EventObject} e
32484          */
32485         "click" : true,
32486         /**
32487          * @event dblclick
32488          * The raw dblclick event for the entire grid.
32489          * @param {Roo.EventObject} e
32490          */
32491         "dblclick" : true,
32492         /**
32493          * @event contextmenu
32494          * The raw contextmenu event for the entire grid.
32495          * @param {Roo.EventObject} e
32496          */
32497         "contextmenu" : true,
32498         /**
32499          * @event mousedown
32500          * The raw mousedown event for the entire grid.
32501          * @param {Roo.EventObject} e
32502          */
32503         "mousedown" : true,
32504         /**
32505          * @event mouseup
32506          * The raw mouseup event for the entire grid.
32507          * @param {Roo.EventObject} e
32508          */
32509         "mouseup" : true,
32510         /**
32511          * @event mouseover
32512          * The raw mouseover event for the entire grid.
32513          * @param {Roo.EventObject} e
32514          */
32515         "mouseover" : true,
32516         /**
32517          * @event mouseout
32518          * The raw mouseout event for the entire grid.
32519          * @param {Roo.EventObject} e
32520          */
32521         "mouseout" : true,
32522         /**
32523          * @event keypress
32524          * The raw keypress event for the entire grid.
32525          * @param {Roo.EventObject} e
32526          */
32527         "keypress" : true,
32528         /**
32529          * @event keydown
32530          * The raw keydown event for the entire grid.
32531          * @param {Roo.EventObject} e
32532          */
32533         "keydown" : true,
32534
32535         // custom events
32536
32537         /**
32538          * @event cellclick
32539          * Fires when a cell is clicked
32540          * @param {Grid} this
32541          * @param {Number} rowIndex
32542          * @param {Number} columnIndex
32543          * @param {Roo.EventObject} e
32544          */
32545         "cellclick" : true,
32546         /**
32547          * @event celldblclick
32548          * Fires when a cell is double clicked
32549          * @param {Grid} this
32550          * @param {Number} rowIndex
32551          * @param {Number} columnIndex
32552          * @param {Roo.EventObject} e
32553          */
32554         "celldblclick" : true,
32555         /**
32556          * @event rowclick
32557          * Fires when a row is clicked
32558          * @param {Grid} this
32559          * @param {Number} rowIndex
32560          * @param {Roo.EventObject} e
32561          */
32562         "rowclick" : true,
32563         /**
32564          * @event rowdblclick
32565          * Fires when a row is double clicked
32566          * @param {Grid} this
32567          * @param {Number} rowIndex
32568          * @param {Roo.EventObject} e
32569          */
32570         "rowdblclick" : true,
32571         /**
32572          * @event headerclick
32573          * Fires when a header is clicked
32574          * @param {Grid} this
32575          * @param {Number} columnIndex
32576          * @param {Roo.EventObject} e
32577          */
32578         "headerclick" : true,
32579         /**
32580          * @event headerdblclick
32581          * Fires when a header cell is double clicked
32582          * @param {Grid} this
32583          * @param {Number} columnIndex
32584          * @param {Roo.EventObject} e
32585          */
32586         "headerdblclick" : true,
32587         /**
32588          * @event rowcontextmenu
32589          * Fires when a row is right clicked
32590          * @param {Grid} this
32591          * @param {Number} rowIndex
32592          * @param {Roo.EventObject} e
32593          */
32594         "rowcontextmenu" : true,
32595         /**
32596          * @event cellcontextmenu
32597          * Fires when a cell is right clicked
32598          * @param {Grid} this
32599          * @param {Number} rowIndex
32600          * @param {Number} cellIndex
32601          * @param {Roo.EventObject} e
32602          */
32603          "cellcontextmenu" : true,
32604         /**
32605          * @event headercontextmenu
32606          * Fires when a header is right clicked
32607          * @param {Grid} this
32608          * @param {Number} columnIndex
32609          * @param {Roo.EventObject} e
32610          */
32611         "headercontextmenu" : true,
32612         /**
32613          * @event bodyscroll
32614          * Fires when the body element is scrolled
32615          * @param {Number} scrollLeft
32616          * @param {Number} scrollTop
32617          */
32618         "bodyscroll" : true,
32619         /**
32620          * @event columnresize
32621          * Fires when the user resizes a column
32622          * @param {Number} columnIndex
32623          * @param {Number} newSize
32624          */
32625         "columnresize" : true,
32626         /**
32627          * @event columnmove
32628          * Fires when the user moves a column
32629          * @param {Number} oldIndex
32630          * @param {Number} newIndex
32631          */
32632         "columnmove" : true,
32633         /**
32634          * @event startdrag
32635          * Fires when row(s) start being dragged
32636          * @param {Grid} this
32637          * @param {Roo.GridDD} dd The drag drop object
32638          * @param {event} e The raw browser event
32639          */
32640         "startdrag" : true,
32641         /**
32642          * @event enddrag
32643          * Fires when a drag operation is complete
32644          * @param {Grid} this
32645          * @param {Roo.GridDD} dd The drag drop object
32646          * @param {event} e The raw browser event
32647          */
32648         "enddrag" : true,
32649         /**
32650          * @event dragdrop
32651          * Fires when dragged row(s) are dropped on a valid DD target
32652          * @param {Grid} this
32653          * @param {Roo.GridDD} dd The drag drop object
32654          * @param {String} targetId The target drag drop object
32655          * @param {event} e The raw browser event
32656          */
32657         "dragdrop" : true,
32658         /**
32659          * @event dragover
32660          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
32661          * @param {Grid} this
32662          * @param {Roo.GridDD} dd The drag drop object
32663          * @param {String} targetId The target drag drop object
32664          * @param {event} e The raw browser event
32665          */
32666         "dragover" : true,
32667         /**
32668          * @event dragenter
32669          *  Fires when the dragged row(s) first cross another DD target while being dragged
32670          * @param {Grid} this
32671          * @param {Roo.GridDD} dd The drag drop object
32672          * @param {String} targetId The target drag drop object
32673          * @param {event} e The raw browser event
32674          */
32675         "dragenter" : true,
32676         /**
32677          * @event dragout
32678          * Fires when the dragged row(s) leave another DD target while being dragged
32679          * @param {Grid} this
32680          * @param {Roo.GridDD} dd The drag drop object
32681          * @param {String} targetId The target drag drop object
32682          * @param {event} e The raw browser event
32683          */
32684         "dragout" : true,
32685         /**
32686          * @event rowclass
32687          * Fires when a row is rendered, so you can change add a style to it.
32688          * @param {GridView} gridview   The grid view
32689          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
32690          */
32691         'rowclass' : true,
32692
32693         /**
32694          * @event render
32695          * Fires when the grid is rendered
32696          * @param {Grid} grid
32697          */
32698         'render' : true
32699     });
32700
32701     Roo.grid.Grid.superclass.constructor.call(this);
32702 };
32703 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
32704     
32705     /**
32706      * @cfg {String} ddGroup - drag drop group.
32707      */
32708
32709     /**
32710      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
32711      */
32712     minColumnWidth : 25,
32713
32714     /**
32715      * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
32716      * <b>on initial render.</b> It is more efficient to explicitly size the columns
32717      * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
32718      */
32719     autoSizeColumns : false,
32720
32721     /**
32722      * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
32723      */
32724     autoSizeHeaders : true,
32725
32726     /**
32727      * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
32728      */
32729     monitorWindowResize : true,
32730
32731     /**
32732      * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
32733      * rows measured to get a columns size. Default is 0 (all rows).
32734      */
32735     maxRowsToMeasure : 0,
32736
32737     /**
32738      * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
32739      */
32740     trackMouseOver : true,
32741
32742     /**
32743     * @cfg {Boolean} enableDrag  True to enable drag of rows. Default is false. (double check if this is needed?)
32744     */
32745     
32746     /**
32747     * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
32748     */
32749     enableDragDrop : false,
32750     
32751     /**
32752     * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
32753     */
32754     enableColumnMove : true,
32755     
32756     /**
32757     * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
32758     */
32759     enableColumnHide : true,
32760     
32761     /**
32762     * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
32763     */
32764     enableRowHeightSync : false,
32765     
32766     /**
32767     * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
32768     */
32769     stripeRows : true,
32770     
32771     /**
32772     * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
32773     */
32774     autoHeight : false,
32775
32776     /**
32777      * @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.
32778      */
32779     autoExpandColumn : false,
32780
32781     /**
32782     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
32783     * Default is 50.
32784     */
32785     autoExpandMin : 50,
32786
32787     /**
32788     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
32789     */
32790     autoExpandMax : 1000,
32791
32792     /**
32793     * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
32794     */
32795     view : null,
32796
32797     /**
32798     * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
32799     */
32800     loadMask : false,
32801     /**
32802     * @cfg {Roo.dd.DropTarget} dropTarget An {@link Roo.dd.DropTarget} config
32803     */
32804     dropTarget: false,
32805     
32806    
32807     
32808     // private
32809     rendered : false,
32810
32811     /**
32812     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
32813     * of a fixed width. Default is false.
32814     */
32815     /**
32816     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
32817     */
32818     /**
32819      * Called once after all setup has been completed and the grid is ready to be rendered.
32820      * @return {Roo.grid.Grid} this
32821      */
32822     render : function()
32823     {
32824         var c = this.container;
32825         // try to detect autoHeight/width mode
32826         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
32827             this.autoHeight = true;
32828         }
32829         var view = this.getView();
32830         view.init(this);
32831
32832         c.on("click", this.onClick, this);
32833         c.on("dblclick", this.onDblClick, this);
32834         c.on("contextmenu", this.onContextMenu, this);
32835         c.on("keydown", this.onKeyDown, this);
32836         if (Roo.isTouch) {
32837             c.on("touchstart", this.onTouchStart, this);
32838         }
32839
32840         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
32841
32842         this.getSelectionModel().init(this);
32843
32844         view.render();
32845
32846         if(this.loadMask){
32847             this.loadMask = new Roo.LoadMask(this.container,
32848                     Roo.apply({store:this.dataSource}, this.loadMask));
32849         }
32850         
32851         
32852         if (this.toolbar && this.toolbar.xtype) {
32853             this.toolbar.container = this.getView().getHeaderPanel(true);
32854             this.toolbar = new Roo.Toolbar(this.toolbar);
32855         }
32856         if (this.footer && this.footer.xtype) {
32857             this.footer.dataSource = this.getDataSource();
32858             this.footer.container = this.getView().getFooterPanel(true);
32859             this.footer = Roo.factory(this.footer, Roo);
32860         }
32861         if (this.dropTarget && this.dropTarget.xtype) {
32862             delete this.dropTarget.xtype;
32863             this.dropTarget =  new Roo.dd.DropTarget(this.getView().mainBody, this.dropTarget);
32864         }
32865         
32866         
32867         this.rendered = true;
32868         this.fireEvent('render', this);
32869         return this;
32870     },
32871
32872         /**
32873          * Reconfigures the grid to use a different Store and Column Model.
32874          * The View will be bound to the new objects and refreshed.
32875          * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
32876          * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
32877          */
32878     reconfigure : function(dataSource, colModel){
32879         if(this.loadMask){
32880             this.loadMask.destroy();
32881             this.loadMask = new Roo.LoadMask(this.container,
32882                     Roo.apply({store:dataSource}, this.loadMask));
32883         }
32884         this.view.bind(dataSource, colModel);
32885         this.dataSource = dataSource;
32886         this.colModel = colModel;
32887         this.view.refresh(true);
32888     },
32889
32890     // private
32891     onKeyDown : function(e){
32892         this.fireEvent("keydown", e);
32893     },
32894
32895     /**
32896      * Destroy this grid.
32897      * @param {Boolean} removeEl True to remove the element
32898      */
32899     destroy : function(removeEl, keepListeners){
32900         if(this.loadMask){
32901             this.loadMask.destroy();
32902         }
32903         var c = this.container;
32904         c.removeAllListeners();
32905         this.view.destroy();
32906         this.colModel.purgeListeners();
32907         if(!keepListeners){
32908             this.purgeListeners();
32909         }
32910         c.update("");
32911         if(removeEl === true){
32912             c.remove();
32913         }
32914     },
32915
32916     // private
32917     processEvent : function(name, e){
32918         // does this fire select???
32919         //Roo.log('grid:processEvent '  + name);
32920         
32921         if (name != 'touchstart' ) {
32922             this.fireEvent(name, e);    
32923         }
32924         
32925         var t = e.getTarget();
32926         var v = this.view;
32927         var header = v.findHeaderIndex(t);
32928         if(header !== false){
32929             var ename = name == 'touchstart' ? 'click' : name;
32930              
32931             this.fireEvent("header" + ename, this, header, e);
32932         }else{
32933             var row = v.findRowIndex(t);
32934             var cell = v.findCellIndex(t);
32935             if (name == 'touchstart') {
32936                 // first touch is always a click.
32937                 // hopefull this happens after selection is updated.?
32938                 name = false;
32939                 
32940                 if (typeof(this.selModel.getSelectedCell) != 'undefined') {
32941                     var cs = this.selModel.getSelectedCell();
32942                     if (row == cs[0] && cell == cs[1]){
32943                         name = 'dblclick';
32944                     }
32945                 }
32946                 if (typeof(this.selModel.getSelections) != 'undefined') {
32947                     var cs = this.selModel.getSelections();
32948                     var ds = this.dataSource;
32949                     if (cs.length == 1 && ds.getAt(row) == cs[0]){
32950                         name = 'dblclick';
32951                     }
32952                 }
32953                 if (!name) {
32954                     return;
32955                 }
32956             }
32957             
32958             
32959             if(row !== false){
32960                 this.fireEvent("row" + name, this, row, e);
32961                 if(cell !== false){
32962                     this.fireEvent("cell" + name, this, row, cell, e);
32963                 }
32964             }
32965         }
32966     },
32967
32968     // private
32969     onClick : function(e){
32970         this.processEvent("click", e);
32971     },
32972    // private
32973     onTouchStart : function(e){
32974         this.processEvent("touchstart", e);
32975     },
32976
32977     // private
32978     onContextMenu : function(e, t){
32979         this.processEvent("contextmenu", e);
32980     },
32981
32982     // private
32983     onDblClick : function(e){
32984         this.processEvent("dblclick", e);
32985     },
32986
32987     // private
32988     walkCells : function(row, col, step, fn, scope){
32989         var cm = this.colModel, clen = cm.getColumnCount();
32990         var ds = this.dataSource, rlen = ds.getCount(), first = true;
32991         if(step < 0){
32992             if(col < 0){
32993                 row--;
32994                 first = false;
32995             }
32996             while(row >= 0){
32997                 if(!first){
32998                     col = clen-1;
32999                 }
33000                 first = false;
33001                 while(col >= 0){
33002                     if(fn.call(scope || this, row, col, cm) === true){
33003                         return [row, col];
33004                     }
33005                     col--;
33006                 }
33007                 row--;
33008             }
33009         } else {
33010             if(col >= clen){
33011                 row++;
33012                 first = false;
33013             }
33014             while(row < rlen){
33015                 if(!first){
33016                     col = 0;
33017                 }
33018                 first = false;
33019                 while(col < clen){
33020                     if(fn.call(scope || this, row, col, cm) === true){
33021                         return [row, col];
33022                     }
33023                     col++;
33024                 }
33025                 row++;
33026             }
33027         }
33028         return null;
33029     },
33030
33031     // private
33032     getSelections : function(){
33033         return this.selModel.getSelections();
33034     },
33035
33036     /**
33037      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
33038      * but if manual update is required this method will initiate it.
33039      */
33040     autoSize : function(){
33041         if(this.rendered){
33042             this.view.layout();
33043             if(this.view.adjustForScroll){
33044                 this.view.adjustForScroll();
33045             }
33046         }
33047     },
33048
33049     /**
33050      * Returns the grid's underlying element.
33051      * @return {Element} The element
33052      */
33053     getGridEl : function(){
33054         return this.container;
33055     },
33056
33057     // private for compatibility, overridden by editor grid
33058     stopEditing : function(){},
33059
33060     /**
33061      * Returns the grid's SelectionModel.
33062      * @return {SelectionModel}
33063      */
33064     getSelectionModel : function(){
33065         if(!this.selModel){
33066             this.selModel = new Roo.grid.RowSelectionModel();
33067         }
33068         return this.selModel;
33069     },
33070
33071     /**
33072      * Returns the grid's DataSource.
33073      * @return {DataSource}
33074      */
33075     getDataSource : function(){
33076         return this.dataSource;
33077     },
33078
33079     /**
33080      * Returns the grid's ColumnModel.
33081      * @return {ColumnModel}
33082      */
33083     getColumnModel : function(){
33084         return this.colModel;
33085     },
33086
33087     /**
33088      * Returns the grid's GridView object.
33089      * @return {GridView}
33090      */
33091     getView : function(){
33092         if(!this.view){
33093             this.view = new Roo.grid.GridView(this.viewConfig);
33094         }
33095         return this.view;
33096     },
33097     /**
33098      * Called to get grid's drag proxy text, by default returns this.ddText.
33099      * @return {String}
33100      */
33101     getDragDropText : function(){
33102         var count = this.selModel.getCount();
33103         return String.format(this.ddText, count, count == 1 ? '' : 's');
33104     }
33105 });
33106 /**
33107  * Configures the text is the drag proxy (defaults to "%0 selected row(s)").
33108  * %0 is replaced with the number of selected rows.
33109  * @type String
33110  */
33111 Roo.grid.Grid.prototype.ddText = "{0} selected row{1}";/*
33112  * Based on:
33113  * Ext JS Library 1.1.1
33114  * Copyright(c) 2006-2007, Ext JS, LLC.
33115  *
33116  * Originally Released Under LGPL - original licence link has changed is not relivant.
33117  *
33118  * Fork - LGPL
33119  * <script type="text/javascript">
33120  */
33121  
33122 Roo.grid.AbstractGridView = function(){
33123         this.grid = null;
33124         
33125         this.events = {
33126             "beforerowremoved" : true,
33127             "beforerowsinserted" : true,
33128             "beforerefresh" : true,
33129             "rowremoved" : true,
33130             "rowsinserted" : true,
33131             "rowupdated" : true,
33132             "refresh" : true
33133         };
33134     Roo.grid.AbstractGridView.superclass.constructor.call(this);
33135 };
33136
33137 Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
33138     rowClass : "x-grid-row",
33139     cellClass : "x-grid-cell",
33140     tdClass : "x-grid-td",
33141     hdClass : "x-grid-hd",
33142     splitClass : "x-grid-hd-split",
33143     
33144     init: function(grid){
33145         this.grid = grid;
33146                 var cid = this.grid.getGridEl().id;
33147         this.colSelector = "#" + cid + " ." + this.cellClass + "-";
33148         this.tdSelector = "#" + cid + " ." + this.tdClass + "-";
33149         this.hdSelector = "#" + cid + " ." + this.hdClass + "-";
33150         this.splitSelector = "#" + cid + " ." + this.splitClass + "-";
33151         },
33152         
33153     getColumnRenderers : function(){
33154         var renderers = [];
33155         var cm = this.grid.colModel;
33156         var colCount = cm.getColumnCount();
33157         for(var i = 0; i < colCount; i++){
33158             renderers[i] = cm.getRenderer(i);
33159         }
33160         return renderers;
33161     },
33162     
33163     getColumnIds : function(){
33164         var ids = [];
33165         var cm = this.grid.colModel;
33166         var colCount = cm.getColumnCount();
33167         for(var i = 0; i < colCount; i++){
33168             ids[i] = cm.getColumnId(i);
33169         }
33170         return ids;
33171     },
33172     
33173     getDataIndexes : function(){
33174         if(!this.indexMap){
33175             this.indexMap = this.buildIndexMap();
33176         }
33177         return this.indexMap.colToData;
33178     },
33179     
33180     getColumnIndexByDataIndex : function(dataIndex){
33181         if(!this.indexMap){
33182             this.indexMap = this.buildIndexMap();
33183         }
33184         return this.indexMap.dataToCol[dataIndex];
33185     },
33186     
33187     /**
33188      * Set a css style for a column dynamically. 
33189      * @param {Number} colIndex The index of the column
33190      * @param {String} name The css property name
33191      * @param {String} value The css value
33192      */
33193     setCSSStyle : function(colIndex, name, value){
33194         var selector = "#" + this.grid.id + " .x-grid-col-" + colIndex;
33195         Roo.util.CSS.updateRule(selector, name, value);
33196     },
33197     
33198     generateRules : function(cm){
33199         var ruleBuf = [], rulesId = this.grid.id + '-cssrules';
33200         Roo.util.CSS.removeStyleSheet(rulesId);
33201         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
33202             var cid = cm.getColumnId(i);
33203             ruleBuf.push(this.colSelector, cid, " {\n", cm.config[i].css, "}\n",
33204                          this.tdSelector, cid, " {\n}\n",
33205                          this.hdSelector, cid, " {\n}\n",
33206                          this.splitSelector, cid, " {\n}\n");
33207         }
33208         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
33209     }
33210 });/*
33211  * Based on:
33212  * Ext JS Library 1.1.1
33213  * Copyright(c) 2006-2007, Ext JS, LLC.
33214  *
33215  * Originally Released Under LGPL - original licence link has changed is not relivant.
33216  *
33217  * Fork - LGPL
33218  * <script type="text/javascript">
33219  */
33220
33221 // private
33222 // This is a support class used internally by the Grid components
33223 Roo.grid.HeaderDragZone = function(grid, hd, hd2){
33224     this.grid = grid;
33225     this.view = grid.getView();
33226     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
33227     Roo.grid.HeaderDragZone.superclass.constructor.call(this, hd);
33228     if(hd2){
33229         this.setHandleElId(Roo.id(hd));
33230         this.setOuterHandleElId(Roo.id(hd2));
33231     }
33232     this.scroll = false;
33233 };
33234 Roo.extend(Roo.grid.HeaderDragZone, Roo.dd.DragZone, {
33235     maxDragWidth: 120,
33236     getDragData : function(e){
33237         var t = Roo.lib.Event.getTarget(e);
33238         var h = this.view.findHeaderCell(t);
33239         if(h){
33240             return {ddel: h.firstChild, header:h};
33241         }
33242         return false;
33243     },
33244
33245     onInitDrag : function(e){
33246         this.view.headersDisabled = true;
33247         var clone = this.dragData.ddel.cloneNode(true);
33248         clone.id = Roo.id();
33249         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
33250         this.proxy.update(clone);
33251         return true;
33252     },
33253
33254     afterValidDrop : function(){
33255         var v = this.view;
33256         setTimeout(function(){
33257             v.headersDisabled = false;
33258         }, 50);
33259     },
33260
33261     afterInvalidDrop : function(){
33262         var v = this.view;
33263         setTimeout(function(){
33264             v.headersDisabled = false;
33265         }, 50);
33266     }
33267 });
33268 /*
33269  * Based on:
33270  * Ext JS Library 1.1.1
33271  * Copyright(c) 2006-2007, Ext JS, LLC.
33272  *
33273  * Originally Released Under LGPL - original licence link has changed is not relivant.
33274  *
33275  * Fork - LGPL
33276  * <script type="text/javascript">
33277  */
33278 // private
33279 // This is a support class used internally by the Grid components
33280 Roo.grid.HeaderDropZone = function(grid, hd, hd2){
33281     this.grid = grid;
33282     this.view = grid.getView();
33283     // split the proxies so they don't interfere with mouse events
33284     this.proxyTop = Roo.DomHelper.append(document.body, {
33285         cls:"col-move-top", html:"&#160;"
33286     }, true);
33287     this.proxyBottom = Roo.DomHelper.append(document.body, {
33288         cls:"col-move-bottom", html:"&#160;"
33289     }, true);
33290     this.proxyTop.hide = this.proxyBottom.hide = function(){
33291         this.setLeftTop(-100,-100);
33292         this.setStyle("visibility", "hidden");
33293     };
33294     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
33295     // temporarily disabled
33296     //Roo.dd.ScrollManager.register(this.view.scroller.dom);
33297     Roo.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
33298 };
33299 Roo.extend(Roo.grid.HeaderDropZone, Roo.dd.DropZone, {
33300     proxyOffsets : [-4, -9],
33301     fly: Roo.Element.fly,
33302
33303     getTargetFromEvent : function(e){
33304         var t = Roo.lib.Event.getTarget(e);
33305         var cindex = this.view.findCellIndex(t);
33306         if(cindex !== false){
33307             return this.view.getHeaderCell(cindex);
33308         }
33309         return null;
33310     },
33311
33312     nextVisible : function(h){
33313         var v = this.view, cm = this.grid.colModel;
33314         h = h.nextSibling;
33315         while(h){
33316             if(!cm.isHidden(v.getCellIndex(h))){
33317                 return h;
33318             }
33319             h = h.nextSibling;
33320         }
33321         return null;
33322     },
33323
33324     prevVisible : function(h){
33325         var v = this.view, cm = this.grid.colModel;
33326         h = h.prevSibling;
33327         while(h){
33328             if(!cm.isHidden(v.getCellIndex(h))){
33329                 return h;
33330             }
33331             h = h.prevSibling;
33332         }
33333         return null;
33334     },
33335
33336     positionIndicator : function(h, n, e){
33337         var x = Roo.lib.Event.getPageX(e);
33338         var r = Roo.lib.Dom.getRegion(n.firstChild);
33339         var px, pt, py = r.top + this.proxyOffsets[1];
33340         if((r.right - x) <= (r.right-r.left)/2){
33341             px = r.right+this.view.borderWidth;
33342             pt = "after";
33343         }else{
33344             px = r.left;
33345             pt = "before";
33346         }
33347         var oldIndex = this.view.getCellIndex(h);
33348         var newIndex = this.view.getCellIndex(n);
33349
33350         if(this.grid.colModel.isFixed(newIndex)){
33351             return false;
33352         }
33353
33354         var locked = this.grid.colModel.isLocked(newIndex);
33355
33356         if(pt == "after"){
33357             newIndex++;
33358         }
33359         if(oldIndex < newIndex){
33360             newIndex--;
33361         }
33362         if(oldIndex == newIndex && (locked == this.grid.colModel.isLocked(oldIndex))){
33363             return false;
33364         }
33365         px +=  this.proxyOffsets[0];
33366         this.proxyTop.setLeftTop(px, py);
33367         this.proxyTop.show();
33368         if(!this.bottomOffset){
33369             this.bottomOffset = this.view.mainHd.getHeight();
33370         }
33371         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
33372         this.proxyBottom.show();
33373         return pt;
33374     },
33375
33376     onNodeEnter : function(n, dd, e, data){
33377         if(data.header != n){
33378             this.positionIndicator(data.header, n, e);
33379         }
33380     },
33381
33382     onNodeOver : function(n, dd, e, data){
33383         var result = false;
33384         if(data.header != n){
33385             result = this.positionIndicator(data.header, n, e);
33386         }
33387         if(!result){
33388             this.proxyTop.hide();
33389             this.proxyBottom.hide();
33390         }
33391         return result ? this.dropAllowed : this.dropNotAllowed;
33392     },
33393
33394     onNodeOut : function(n, dd, e, data){
33395         this.proxyTop.hide();
33396         this.proxyBottom.hide();
33397     },
33398
33399     onNodeDrop : function(n, dd, e, data){
33400         var h = data.header;
33401         if(h != n){
33402             var cm = this.grid.colModel;
33403             var x = Roo.lib.Event.getPageX(e);
33404             var r = Roo.lib.Dom.getRegion(n.firstChild);
33405             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
33406             var oldIndex = this.view.getCellIndex(h);
33407             var newIndex = this.view.getCellIndex(n);
33408             var locked = cm.isLocked(newIndex);
33409             if(pt == "after"){
33410                 newIndex++;
33411             }
33412             if(oldIndex < newIndex){
33413                 newIndex--;
33414             }
33415             if(oldIndex == newIndex && (locked == cm.isLocked(oldIndex))){
33416                 return false;
33417             }
33418             cm.setLocked(oldIndex, locked, true);
33419             cm.moveColumn(oldIndex, newIndex);
33420             this.grid.fireEvent("columnmove", oldIndex, newIndex);
33421             return true;
33422         }
33423         return false;
33424     }
33425 });
33426 /*
33427  * Based on:
33428  * Ext JS Library 1.1.1
33429  * Copyright(c) 2006-2007, Ext JS, LLC.
33430  *
33431  * Originally Released Under LGPL - original licence link has changed is not relivant.
33432  *
33433  * Fork - LGPL
33434  * <script type="text/javascript">
33435  */
33436   
33437 /**
33438  * @class Roo.grid.GridView
33439  * @extends Roo.util.Observable
33440  *
33441  * @constructor
33442  * @param {Object} config
33443  */
33444 Roo.grid.GridView = function(config){
33445     Roo.grid.GridView.superclass.constructor.call(this);
33446     this.el = null;
33447
33448     Roo.apply(this, config);
33449 };
33450
33451 Roo.extend(Roo.grid.GridView, Roo.grid.AbstractGridView, {
33452
33453     unselectable :  'unselectable="on"',
33454     unselectableCls :  'x-unselectable',
33455     
33456     
33457     rowClass : "x-grid-row",
33458
33459     cellClass : "x-grid-col",
33460
33461     tdClass : "x-grid-td",
33462
33463     hdClass : "x-grid-hd",
33464
33465     splitClass : "x-grid-split",
33466
33467     sortClasses : ["sort-asc", "sort-desc"],
33468
33469     enableMoveAnim : false,
33470
33471     hlColor: "C3DAF9",
33472
33473     dh : Roo.DomHelper,
33474
33475     fly : Roo.Element.fly,
33476
33477     css : Roo.util.CSS,
33478
33479     borderWidth: 1,
33480
33481     splitOffset: 3,
33482
33483     scrollIncrement : 22,
33484
33485     cellRE: /(?:.*?)x-grid-(?:hd|cell|csplit)-(?:[\d]+)-([\d]+)(?:.*?)/,
33486
33487     findRE: /\s?(?:x-grid-hd|x-grid-col|x-grid-csplit)\s/,
33488
33489     bind : function(ds, cm){
33490         if(this.ds){
33491             this.ds.un("load", this.onLoad, this);
33492             this.ds.un("datachanged", this.onDataChange, this);
33493             this.ds.un("add", this.onAdd, this);
33494             this.ds.un("remove", this.onRemove, this);
33495             this.ds.un("update", this.onUpdate, this);
33496             this.ds.un("clear", this.onClear, this);
33497         }
33498         if(ds){
33499             ds.on("load", this.onLoad, this);
33500             ds.on("datachanged", this.onDataChange, this);
33501             ds.on("add", this.onAdd, this);
33502             ds.on("remove", this.onRemove, this);
33503             ds.on("update", this.onUpdate, this);
33504             ds.on("clear", this.onClear, this);
33505         }
33506         this.ds = ds;
33507
33508         if(this.cm){
33509             this.cm.un("widthchange", this.onColWidthChange, this);
33510             this.cm.un("headerchange", this.onHeaderChange, this);
33511             this.cm.un("hiddenchange", this.onHiddenChange, this);
33512             this.cm.un("columnmoved", this.onColumnMove, this);
33513             this.cm.un("columnlockchange", this.onColumnLock, this);
33514         }
33515         if(cm){
33516             this.generateRules(cm);
33517             cm.on("widthchange", this.onColWidthChange, this);
33518             cm.on("headerchange", this.onHeaderChange, this);
33519             cm.on("hiddenchange", this.onHiddenChange, this);
33520             cm.on("columnmoved", this.onColumnMove, this);
33521             cm.on("columnlockchange", this.onColumnLock, this);
33522         }
33523         this.cm = cm;
33524     },
33525
33526     init: function(grid){
33527         Roo.grid.GridView.superclass.init.call(this, grid);
33528
33529         this.bind(grid.dataSource, grid.colModel);
33530
33531         grid.on("headerclick", this.handleHeaderClick, this);
33532
33533         if(grid.trackMouseOver){
33534             grid.on("mouseover", this.onRowOver, this);
33535             grid.on("mouseout", this.onRowOut, this);
33536         }
33537         grid.cancelTextSelection = function(){};
33538         this.gridId = grid.id;
33539
33540         var tpls = this.templates || {};
33541
33542         if(!tpls.master){
33543             tpls.master = new Roo.Template(
33544                '<div class="x-grid" hidefocus="true">',
33545                 '<a href="#" class="x-grid-focus" tabIndex="-1"></a>',
33546                   '<div class="x-grid-topbar"></div>',
33547                   '<div class="x-grid-scroller"><div></div></div>',
33548                   '<div class="x-grid-locked">',
33549                       '<div class="x-grid-header">{lockedHeader}</div>',
33550                       '<div class="x-grid-body">{lockedBody}</div>',
33551                   "</div>",
33552                   '<div class="x-grid-viewport">',
33553                       '<div class="x-grid-header">{header}</div>',
33554                       '<div class="x-grid-body">{body}</div>',
33555                   "</div>",
33556                   '<div class="x-grid-bottombar"></div>',
33557                  
33558                   '<div class="x-grid-resize-proxy">&#160;</div>',
33559                "</div>"
33560             );
33561             tpls.master.disableformats = true;
33562         }
33563
33564         if(!tpls.header){
33565             tpls.header = new Roo.Template(
33566                '<table border="0" cellspacing="0" cellpadding="0">',
33567                '<tbody><tr class="x-grid-hd-row">{cells}</tr></tbody>',
33568                "</table>{splits}"
33569             );
33570             tpls.header.disableformats = true;
33571         }
33572         tpls.header.compile();
33573
33574         if(!tpls.hcell){
33575             tpls.hcell = new Roo.Template(
33576                 '<td class="x-grid-hd x-grid-td-{id} {cellId}"><div title="{title}" class="x-grid-hd-inner x-grid-hd-{id}">',
33577                 '<div class="x-grid-hd-text ' + this.unselectableCls +  '" ' + this.unselectable +'>{value}<img class="x-grid-sort-icon" src="', Roo.BLANK_IMAGE_URL, '" /></div>',
33578                 "</div></td>"
33579              );
33580              tpls.hcell.disableFormats = true;
33581         }
33582         tpls.hcell.compile();
33583
33584         if(!tpls.hsplit){
33585             tpls.hsplit = new Roo.Template('<div class="x-grid-split {splitId} x-grid-split-{id}" style="{style} ' +
33586                                             this.unselectableCls +  '" ' + this.unselectable +'>&#160;</div>');
33587             tpls.hsplit.disableFormats = true;
33588         }
33589         tpls.hsplit.compile();
33590
33591         if(!tpls.body){
33592             tpls.body = new Roo.Template(
33593                '<table border="0" cellspacing="0" cellpadding="0">',
33594                "<tbody>{rows}</tbody>",
33595                "</table>"
33596             );
33597             tpls.body.disableFormats = true;
33598         }
33599         tpls.body.compile();
33600
33601         if(!tpls.row){
33602             tpls.row = new Roo.Template('<tr class="x-grid-row {alt}">{cells}</tr>');
33603             tpls.row.disableFormats = true;
33604         }
33605         tpls.row.compile();
33606
33607         if(!tpls.cell){
33608             tpls.cell = new Roo.Template(
33609                 '<td class="x-grid-col x-grid-td-{id} {cellId} {css}" tabIndex="0">',
33610                 '<div class="x-grid-col-{id} x-grid-cell-inner"><div class="x-grid-cell-text ' +
33611                     this.unselectableCls +  '" ' + this.unselectable +'" {attr}>{value}</div></div>',
33612                 "</td>"
33613             );
33614             tpls.cell.disableFormats = true;
33615         }
33616         tpls.cell.compile();
33617
33618         this.templates = tpls;
33619     },
33620
33621     // remap these for backwards compat
33622     onColWidthChange : function(){
33623         this.updateColumns.apply(this, arguments);
33624     },
33625     onHeaderChange : function(){
33626         this.updateHeaders.apply(this, arguments);
33627     }, 
33628     onHiddenChange : function(){
33629         this.handleHiddenChange.apply(this, arguments);
33630     },
33631     onColumnMove : function(){
33632         this.handleColumnMove.apply(this, arguments);
33633     },
33634     onColumnLock : function(){
33635         this.handleLockChange.apply(this, arguments);
33636     },
33637
33638     onDataChange : function(){
33639         this.refresh();
33640         this.updateHeaderSortState();
33641     },
33642
33643     onClear : function(){
33644         this.refresh();
33645     },
33646
33647     onUpdate : function(ds, record){
33648         this.refreshRow(record);
33649     },
33650
33651     refreshRow : function(record){
33652         var ds = this.ds, index;
33653         if(typeof record == 'number'){
33654             index = record;
33655             record = ds.getAt(index);
33656         }else{
33657             index = ds.indexOf(record);
33658         }
33659         this.insertRows(ds, index, index, true);
33660         this.onRemove(ds, record, index+1, true);
33661         this.syncRowHeights(index, index);
33662         this.layout();
33663         this.fireEvent("rowupdated", this, index, record);
33664     },
33665
33666     onAdd : function(ds, records, index){
33667         this.insertRows(ds, index, index + (records.length-1));
33668     },
33669
33670     onRemove : function(ds, record, index, isUpdate){
33671         if(isUpdate !== true){
33672             this.fireEvent("beforerowremoved", this, index, record);
33673         }
33674         var bt = this.getBodyTable(), lt = this.getLockedTable();
33675         if(bt.rows[index]){
33676             bt.firstChild.removeChild(bt.rows[index]);
33677         }
33678         if(lt.rows[index]){
33679             lt.firstChild.removeChild(lt.rows[index]);
33680         }
33681         if(isUpdate !== true){
33682             this.stripeRows(index);
33683             this.syncRowHeights(index, index);
33684             this.layout();
33685             this.fireEvent("rowremoved", this, index, record);
33686         }
33687     },
33688
33689     onLoad : function(){
33690         this.scrollToTop();
33691     },
33692
33693     /**
33694      * Scrolls the grid to the top
33695      */
33696     scrollToTop : function(){
33697         if(this.scroller){
33698             this.scroller.dom.scrollTop = 0;
33699             this.syncScroll();
33700         }
33701     },
33702
33703     /**
33704      * Gets a panel in the header of the grid that can be used for toolbars etc.
33705      * After modifying the contents of this panel a call to grid.autoSize() may be
33706      * required to register any changes in size.
33707      * @param {Boolean} doShow By default the header is hidden. Pass true to show the panel
33708      * @return Roo.Element
33709      */
33710     getHeaderPanel : function(doShow){
33711         if(doShow){
33712             this.headerPanel.show();
33713         }
33714         return this.headerPanel;
33715     },
33716
33717     /**
33718      * Gets a panel in the footer of the grid that can be used for toolbars etc.
33719      * After modifying the contents of this panel a call to grid.autoSize() may be
33720      * required to register any changes in size.
33721      * @param {Boolean} doShow By default the footer is hidden. Pass true to show the panel
33722      * @return Roo.Element
33723      */
33724     getFooterPanel : function(doShow){
33725         if(doShow){
33726             this.footerPanel.show();
33727         }
33728         return this.footerPanel;
33729     },
33730
33731     initElements : function(){
33732         var E = Roo.Element;
33733         var el = this.grid.getGridEl().dom.firstChild;
33734         var cs = el.childNodes;
33735
33736         this.el = new E(el);
33737         
33738          this.focusEl = new E(el.firstChild);
33739         this.focusEl.swallowEvent("click", true);
33740         
33741         this.headerPanel = new E(cs[1]);
33742         this.headerPanel.enableDisplayMode("block");
33743
33744         this.scroller = new E(cs[2]);
33745         this.scrollSizer = new E(this.scroller.dom.firstChild);
33746
33747         this.lockedWrap = new E(cs[3]);
33748         this.lockedHd = new E(this.lockedWrap.dom.firstChild);
33749         this.lockedBody = new E(this.lockedWrap.dom.childNodes[1]);
33750
33751         this.mainWrap = new E(cs[4]);
33752         this.mainHd = new E(this.mainWrap.dom.firstChild);
33753         this.mainBody = new E(this.mainWrap.dom.childNodes[1]);
33754
33755         this.footerPanel = new E(cs[5]);
33756         this.footerPanel.enableDisplayMode("block");
33757
33758         this.resizeProxy = new E(cs[6]);
33759
33760         this.headerSelector = String.format(
33761            '#{0} td.x-grid-hd, #{1} td.x-grid-hd',
33762            this.lockedHd.id, this.mainHd.id
33763         );
33764
33765         this.splitterSelector = String.format(
33766            '#{0} div.x-grid-split, #{1} div.x-grid-split',
33767            this.idToCssName(this.lockedHd.id), this.idToCssName(this.mainHd.id)
33768         );
33769     },
33770     idToCssName : function(s)
33771     {
33772         return s.replace(/[^a-z0-9]+/ig, '-');
33773     },
33774
33775     getHeaderCell : function(index){
33776         return Roo.DomQuery.select(this.headerSelector)[index];
33777     },
33778
33779     getHeaderCellMeasure : function(index){
33780         return this.getHeaderCell(index).firstChild;
33781     },
33782
33783     getHeaderCellText : function(index){
33784         return this.getHeaderCell(index).firstChild.firstChild;
33785     },
33786
33787     getLockedTable : function(){
33788         return this.lockedBody.dom.firstChild;
33789     },
33790
33791     getBodyTable : function(){
33792         return this.mainBody.dom.firstChild;
33793     },
33794
33795     getLockedRow : function(index){
33796         return this.getLockedTable().rows[index];
33797     },
33798
33799     getRow : function(index){
33800         return this.getBodyTable().rows[index];
33801     },
33802
33803     getRowComposite : function(index){
33804         if(!this.rowEl){
33805             this.rowEl = new Roo.CompositeElementLite();
33806         }
33807         var els = [], lrow, mrow;
33808         if(lrow = this.getLockedRow(index)){
33809             els.push(lrow);
33810         }
33811         if(mrow = this.getRow(index)){
33812             els.push(mrow);
33813         }
33814         this.rowEl.elements = els;
33815         return this.rowEl;
33816     },
33817     /**
33818      * Gets the 'td' of the cell
33819      * 
33820      * @param {Integer} rowIndex row to select
33821      * @param {Integer} colIndex column to select
33822      * 
33823      * @return {Object} 
33824      */
33825     getCell : function(rowIndex, colIndex){
33826         var locked = this.cm.getLockedCount();
33827         var source;
33828         if(colIndex < locked){
33829             source = this.lockedBody.dom.firstChild;
33830         }else{
33831             source = this.mainBody.dom.firstChild;
33832             colIndex -= locked;
33833         }
33834         return source.rows[rowIndex].childNodes[colIndex];
33835     },
33836
33837     getCellText : function(rowIndex, colIndex){
33838         return this.getCell(rowIndex, colIndex).firstChild.firstChild;
33839     },
33840
33841     getCellBox : function(cell){
33842         var b = this.fly(cell).getBox();
33843         if(Roo.isOpera){ // opera fails to report the Y
33844             b.y = cell.offsetTop + this.mainBody.getY();
33845         }
33846         return b;
33847     },
33848
33849     getCellIndex : function(cell){
33850         var id = String(cell.className).match(this.cellRE);
33851         if(id){
33852             return parseInt(id[1], 10);
33853         }
33854         return 0;
33855     },
33856
33857     findHeaderIndex : function(n){
33858         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
33859         return r ? this.getCellIndex(r) : false;
33860     },
33861
33862     findHeaderCell : function(n){
33863         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
33864         return r ? r : false;
33865     },
33866
33867     findRowIndex : function(n){
33868         if(!n){
33869             return false;
33870         }
33871         var r = Roo.fly(n).findParent("tr." + this.rowClass, 6);
33872         return r ? r.rowIndex : false;
33873     },
33874
33875     findCellIndex : function(node){
33876         var stop = this.el.dom;
33877         while(node && node != stop){
33878             if(this.findRE.test(node.className)){
33879                 return this.getCellIndex(node);
33880             }
33881             node = node.parentNode;
33882         }
33883         return false;
33884     },
33885
33886     getColumnId : function(index){
33887         return this.cm.getColumnId(index);
33888     },
33889
33890     getSplitters : function()
33891     {
33892         if(this.splitterSelector){
33893            return Roo.DomQuery.select(this.splitterSelector);
33894         }else{
33895             return null;
33896       }
33897     },
33898
33899     getSplitter : function(index){
33900         return this.getSplitters()[index];
33901     },
33902
33903     onRowOver : function(e, t){
33904         var row;
33905         if((row = this.findRowIndex(t)) !== false){
33906             this.getRowComposite(row).addClass("x-grid-row-over");
33907         }
33908     },
33909
33910     onRowOut : function(e, t){
33911         var row;
33912         if((row = this.findRowIndex(t)) !== false && row !== this.findRowIndex(e.getRelatedTarget())){
33913             this.getRowComposite(row).removeClass("x-grid-row-over");
33914         }
33915     },
33916
33917     renderHeaders : function(){
33918         var cm = this.cm;
33919         var ct = this.templates.hcell, ht = this.templates.header, st = this.templates.hsplit;
33920         var cb = [], lb = [], sb = [], lsb = [], p = {};
33921         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
33922             p.cellId = "x-grid-hd-0-" + i;
33923             p.splitId = "x-grid-csplit-0-" + i;
33924             p.id = cm.getColumnId(i);
33925             p.value = cm.getColumnHeader(i) || "";
33926             p.title = cm.getColumnTooltip(i) || (''+p.value).match(/\</)  ? '' :  p.value  || "";
33927             p.style = (this.grid.enableColumnResize === false || !cm.isResizable(i) || cm.isFixed(i)) ? 'cursor:default' : '';
33928             if(!cm.isLocked(i)){
33929                 cb[cb.length] = ct.apply(p);
33930                 sb[sb.length] = st.apply(p);
33931             }else{
33932                 lb[lb.length] = ct.apply(p);
33933                 lsb[lsb.length] = st.apply(p);
33934             }
33935         }
33936         return [ht.apply({cells: lb.join(""), splits:lsb.join("")}),
33937                 ht.apply({cells: cb.join(""), splits:sb.join("")})];
33938     },
33939
33940     updateHeaders : function(){
33941         var html = this.renderHeaders();
33942         this.lockedHd.update(html[0]);
33943         this.mainHd.update(html[1]);
33944     },
33945
33946     /**
33947      * Focuses the specified row.
33948      * @param {Number} row The row index
33949      */
33950     focusRow : function(row)
33951     {
33952         //Roo.log('GridView.focusRow');
33953         var x = this.scroller.dom.scrollLeft;
33954         this.focusCell(row, 0, false);
33955         this.scroller.dom.scrollLeft = x;
33956     },
33957
33958     /**
33959      * Focuses the specified cell.
33960      * @param {Number} row The row index
33961      * @param {Number} col The column index
33962      * @param {Boolean} hscroll false to disable horizontal scrolling
33963      */
33964     focusCell : function(row, col, hscroll)
33965     {
33966         //Roo.log('GridView.focusCell');
33967         var el = this.ensureVisible(row, col, hscroll);
33968         this.focusEl.alignTo(el, "tl-tl");
33969         if(Roo.isGecko){
33970             this.focusEl.focus();
33971         }else{
33972             this.focusEl.focus.defer(1, this.focusEl);
33973         }
33974     },
33975
33976     /**
33977      * Scrolls the specified cell into view
33978      * @param {Number} row The row index
33979      * @param {Number} col The column index
33980      * @param {Boolean} hscroll false to disable horizontal scrolling
33981      */
33982     ensureVisible : function(row, col, hscroll)
33983     {
33984         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
33985         //return null; //disable for testing.
33986         if(typeof row != "number"){
33987             row = row.rowIndex;
33988         }
33989         if(row < 0 && row >= this.ds.getCount()){
33990             return  null;
33991         }
33992         col = (col !== undefined ? col : 0);
33993         var cm = this.grid.colModel;
33994         while(cm.isHidden(col)){
33995             col++;
33996         }
33997
33998         var el = this.getCell(row, col);
33999         if(!el){
34000             return null;
34001         }
34002         var c = this.scroller.dom;
34003
34004         var ctop = parseInt(el.offsetTop, 10);
34005         var cleft = parseInt(el.offsetLeft, 10);
34006         var cbot = ctop + el.offsetHeight;
34007         var cright = cleft + el.offsetWidth;
34008         
34009         var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
34010         var stop = parseInt(c.scrollTop, 10);
34011         var sleft = parseInt(c.scrollLeft, 10);
34012         var sbot = stop + ch;
34013         var sright = sleft + c.clientWidth;
34014         /*
34015         Roo.log('GridView.ensureVisible:' +
34016                 ' ctop:' + ctop +
34017                 ' c.clientHeight:' + c.clientHeight +
34018                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
34019                 ' stop:' + stop +
34020                 ' cbot:' + cbot +
34021                 ' sbot:' + sbot +
34022                 ' ch:' + ch  
34023                 );
34024         */
34025         if(ctop < stop){
34026              c.scrollTop = ctop;
34027             //Roo.log("set scrolltop to ctop DISABLE?");
34028         }else if(cbot > sbot){
34029             //Roo.log("set scrolltop to cbot-ch");
34030             c.scrollTop = cbot-ch;
34031         }
34032         
34033         if(hscroll !== false){
34034             if(cleft < sleft){
34035                 c.scrollLeft = cleft;
34036             }else if(cright > sright){
34037                 c.scrollLeft = cright-c.clientWidth;
34038             }
34039         }
34040          
34041         return el;
34042     },
34043
34044     updateColumns : function(){
34045         this.grid.stopEditing();
34046         var cm = this.grid.colModel, colIds = this.getColumnIds();
34047         //var totalWidth = cm.getTotalWidth();
34048         var pos = 0;
34049         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
34050             //if(cm.isHidden(i)) continue;
34051             var w = cm.getColumnWidth(i);
34052             this.css.updateRule(this.colSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
34053             this.css.updateRule(this.hdSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
34054         }
34055         this.updateSplitters();
34056     },
34057
34058     generateRules : function(cm){
34059         var ruleBuf = [], rulesId = this.idToCssName(this.grid.id)+ '-cssrules';
34060         Roo.util.CSS.removeStyleSheet(rulesId);
34061         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
34062             var cid = cm.getColumnId(i);
34063             var align = '';
34064             if(cm.config[i].align){
34065                 align = 'text-align:'+cm.config[i].align+';';
34066             }
34067             var hidden = '';
34068             if(cm.isHidden(i)){
34069                 hidden = 'display:none;';
34070             }
34071             var width = "width:" + (cm.getColumnWidth(i) - this.borderWidth) + "px;";
34072             ruleBuf.push(
34073                     this.colSelector, cid, " {\n", cm.config[i].css, align, width, "\n}\n",
34074                     this.hdSelector, cid, " {\n", align, width, "}\n",
34075                     this.tdSelector, cid, " {\n",hidden,"\n}\n",
34076                     this.splitSelector, cid, " {\n", hidden , "\n}\n");
34077         }
34078         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
34079     },
34080
34081     updateSplitters : function(){
34082         var cm = this.cm, s = this.getSplitters();
34083         if(s){ // splitters not created yet
34084             var pos = 0, locked = true;
34085             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
34086                 if(cm.isHidden(i)) {
34087                     continue;
34088                 }
34089                 var w = cm.getColumnWidth(i); // make sure it's a number
34090                 if(!cm.isLocked(i) && locked){
34091                     pos = 0;
34092                     locked = false;
34093                 }
34094                 pos += w;
34095                 s[i].style.left = (pos-this.splitOffset) + "px";
34096             }
34097         }
34098     },
34099
34100     handleHiddenChange : function(colModel, colIndex, hidden){
34101         if(hidden){
34102             this.hideColumn(colIndex);
34103         }else{
34104             this.unhideColumn(colIndex);
34105         }
34106     },
34107
34108     hideColumn : function(colIndex){
34109         var cid = this.getColumnId(colIndex);
34110         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "none");
34111         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "none");
34112         if(Roo.isSafari){
34113             this.updateHeaders();
34114         }
34115         this.updateSplitters();
34116         this.layout();
34117     },
34118
34119     unhideColumn : function(colIndex){
34120         var cid = this.getColumnId(colIndex);
34121         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "");
34122         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "");
34123
34124         if(Roo.isSafari){
34125             this.updateHeaders();
34126         }
34127         this.updateSplitters();
34128         this.layout();
34129     },
34130
34131     insertRows : function(dm, firstRow, lastRow, isUpdate){
34132         if(firstRow == 0 && lastRow == dm.getCount()-1){
34133             this.refresh();
34134         }else{
34135             if(!isUpdate){
34136                 this.fireEvent("beforerowsinserted", this, firstRow, lastRow);
34137             }
34138             var s = this.getScrollState();
34139             var markup = this.renderRows(firstRow, lastRow);
34140             this.bufferRows(markup[0], this.getLockedTable(), firstRow);
34141             this.bufferRows(markup[1], this.getBodyTable(), firstRow);
34142             this.restoreScroll(s);
34143             if(!isUpdate){
34144                 this.fireEvent("rowsinserted", this, firstRow, lastRow);
34145                 this.syncRowHeights(firstRow, lastRow);
34146                 this.stripeRows(firstRow);
34147                 this.layout();
34148             }
34149         }
34150     },
34151
34152     bufferRows : function(markup, target, index){
34153         var before = null, trows = target.rows, tbody = target.tBodies[0];
34154         if(index < trows.length){
34155             before = trows[index];
34156         }
34157         var b = document.createElement("div");
34158         b.innerHTML = "<table><tbody>"+markup+"</tbody></table>";
34159         var rows = b.firstChild.rows;
34160         for(var i = 0, len = rows.length; i < len; i++){
34161             if(before){
34162                 tbody.insertBefore(rows[0], before);
34163             }else{
34164                 tbody.appendChild(rows[0]);
34165             }
34166         }
34167         b.innerHTML = "";
34168         b = null;
34169     },
34170
34171     deleteRows : function(dm, firstRow, lastRow){
34172         if(dm.getRowCount()<1){
34173             this.fireEvent("beforerefresh", this);
34174             this.mainBody.update("");
34175             this.lockedBody.update("");
34176             this.fireEvent("refresh", this);
34177         }else{
34178             this.fireEvent("beforerowsdeleted", this, firstRow, lastRow);
34179             var bt = this.getBodyTable();
34180             var tbody = bt.firstChild;
34181             var rows = bt.rows;
34182             for(var rowIndex = firstRow; rowIndex <= lastRow; rowIndex++){
34183                 tbody.removeChild(rows[firstRow]);
34184             }
34185             this.stripeRows(firstRow);
34186             this.fireEvent("rowsdeleted", this, firstRow, lastRow);
34187         }
34188     },
34189
34190     updateRows : function(dataSource, firstRow, lastRow){
34191         var s = this.getScrollState();
34192         this.refresh();
34193         this.restoreScroll(s);
34194     },
34195
34196     handleSort : function(dataSource, sortColumnIndex, sortDir, noRefresh){
34197         if(!noRefresh){
34198            this.refresh();
34199         }
34200         this.updateHeaderSortState();
34201     },
34202
34203     getScrollState : function(){
34204         
34205         var sb = this.scroller.dom;
34206         return {left: sb.scrollLeft, top: sb.scrollTop};
34207     },
34208
34209     stripeRows : function(startRow){
34210         if(!this.grid.stripeRows || this.ds.getCount() < 1){
34211             return;
34212         }
34213         startRow = startRow || 0;
34214         var rows = this.getBodyTable().rows;
34215         var lrows = this.getLockedTable().rows;
34216         var cls = ' x-grid-row-alt ';
34217         for(var i = startRow, len = rows.length; i < len; i++){
34218             var row = rows[i], lrow = lrows[i];
34219             var isAlt = ((i+1) % 2 == 0);
34220             var hasAlt = (' '+row.className + ' ').indexOf(cls) != -1;
34221             if(isAlt == hasAlt){
34222                 continue;
34223             }
34224             if(isAlt){
34225                 row.className += " x-grid-row-alt";
34226             }else{
34227                 row.className = row.className.replace("x-grid-row-alt", "");
34228             }
34229             if(lrow){
34230                 lrow.className = row.className;
34231             }
34232         }
34233     },
34234
34235     restoreScroll : function(state){
34236         //Roo.log('GridView.restoreScroll');
34237         var sb = this.scroller.dom;
34238         sb.scrollLeft = state.left;
34239         sb.scrollTop = state.top;
34240         this.syncScroll();
34241     },
34242
34243     syncScroll : function(){
34244         //Roo.log('GridView.syncScroll');
34245         var sb = this.scroller.dom;
34246         var sh = this.mainHd.dom;
34247         var bs = this.mainBody.dom;
34248         var lv = this.lockedBody.dom;
34249         sh.scrollLeft = bs.scrollLeft = sb.scrollLeft;
34250         lv.scrollTop = bs.scrollTop = sb.scrollTop;
34251     },
34252
34253     handleScroll : function(e){
34254         this.syncScroll();
34255         var sb = this.scroller.dom;
34256         this.grid.fireEvent("bodyscroll", sb.scrollLeft, sb.scrollTop);
34257         e.stopEvent();
34258     },
34259
34260     handleWheel : function(e){
34261         var d = e.getWheelDelta();
34262         this.scroller.dom.scrollTop -= d*22;
34263         // set this here to prevent jumpy scrolling on large tables
34264         this.lockedBody.dom.scrollTop = this.mainBody.dom.scrollTop = this.scroller.dom.scrollTop;
34265         e.stopEvent();
34266     },
34267
34268     renderRows : function(startRow, endRow){
34269         // pull in all the crap needed to render rows
34270         var g = this.grid, cm = g.colModel, ds = g.dataSource, stripe = g.stripeRows;
34271         var colCount = cm.getColumnCount();
34272
34273         if(ds.getCount() < 1){
34274             return ["", ""];
34275         }
34276
34277         // build a map for all the columns
34278         var cs = [];
34279         for(var i = 0; i < colCount; i++){
34280             var name = cm.getDataIndex(i);
34281             cs[i] = {
34282                 name : typeof name == 'undefined' ? ds.fields.get(i).name : name,
34283                 renderer : cm.getRenderer(i),
34284                 id : cm.getColumnId(i),
34285                 locked : cm.isLocked(i),
34286                 has_editor : cm.isCellEditable(i)
34287             };
34288         }
34289
34290         startRow = startRow || 0;
34291         endRow = typeof endRow == "undefined"? ds.getCount()-1 : endRow;
34292
34293         // records to render
34294         var rs = ds.getRange(startRow, endRow);
34295
34296         return this.doRender(cs, rs, ds, startRow, colCount, stripe);
34297     },
34298
34299     // As much as I hate to duplicate code, this was branched because FireFox really hates
34300     // [].join("") on strings. The performance difference was substantial enough to
34301     // branch this function
34302     doRender : Roo.isGecko ?
34303             function(cs, rs, ds, startRow, colCount, stripe){
34304                 var ts = this.templates, ct = ts.cell, rt = ts.row;
34305                 // buffers
34306                 var buf = "", lbuf = "", cb, lcb, c, p = {}, rp = {}, r, rowIndex;
34307                 
34308                 var hasListener = this.grid.hasListener('rowclass');
34309                 var rowcfg = {};
34310                 for(var j = 0, len = rs.length; j < len; j++){
34311                     r = rs[j]; cb = ""; lcb = ""; rowIndex = (j+startRow);
34312                     for(var i = 0; i < colCount; i++){
34313                         c = cs[i];
34314                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
34315                         p.id = c.id;
34316                         p.css = p.attr = "";
34317                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
34318                         if(p.value == undefined || p.value === "") {
34319                             p.value = "&#160;";
34320                         }
34321                         if(c.has_editor){
34322                             p.css += ' x-grid-editable-cell';
34323                         }
34324                         if(c.dirty && typeof r.modified[c.name] !== 'undefined'){
34325                             p.css +=  ' x-grid-dirty-cell';
34326                         }
34327                         var markup = ct.apply(p);
34328                         if(!c.locked){
34329                             cb+= markup;
34330                         }else{
34331                             lcb+= markup;
34332                         }
34333                     }
34334                     var alt = [];
34335                     if(stripe && ((rowIndex+1) % 2 == 0)){
34336                         alt.push("x-grid-row-alt")
34337                     }
34338                     if(r.dirty){
34339                         alt.push(  " x-grid-dirty-row");
34340                     }
34341                     rp.cells = lcb;
34342                     if(this.getRowClass){
34343                         alt.push(this.getRowClass(r, rowIndex));
34344                     }
34345                     if (hasListener) {
34346                         rowcfg = {
34347                              
34348                             record: r,
34349                             rowIndex : rowIndex,
34350                             rowClass : ''
34351                         };
34352                         this.grid.fireEvent('rowclass', this, rowcfg);
34353                         alt.push(rowcfg.rowClass);
34354                     }
34355                     rp.alt = alt.join(" ");
34356                     lbuf+= rt.apply(rp);
34357                     rp.cells = cb;
34358                     buf+=  rt.apply(rp);
34359                 }
34360                 return [lbuf, buf];
34361             } :
34362             function(cs, rs, ds, startRow, colCount, stripe){
34363                 var ts = this.templates, ct = ts.cell, rt = ts.row;
34364                 // buffers
34365                 var buf = [], lbuf = [], cb, lcb, c, p = {}, rp = {}, r, rowIndex;
34366                 var hasListener = this.grid.hasListener('rowclass');
34367  
34368                 var rowcfg = {};
34369                 for(var j = 0, len = rs.length; j < len; j++){
34370                     r = rs[j]; cb = []; lcb = []; rowIndex = (j+startRow);
34371                     for(var i = 0; i < colCount; i++){
34372                         c = cs[i];
34373                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
34374                         p.id = c.id;
34375                         p.css = p.attr = "";
34376                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
34377                         if(p.value == undefined || p.value === "") {
34378                             p.value = "&#160;";
34379                         }
34380                         //Roo.log(c);
34381                          if(c.has_editor){
34382                             p.css += ' x-grid-editable-cell';
34383                         }
34384                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
34385                             p.css += ' x-grid-dirty-cell' 
34386                         }
34387                         
34388                         var markup = ct.apply(p);
34389                         if(!c.locked){
34390                             cb[cb.length] = markup;
34391                         }else{
34392                             lcb[lcb.length] = markup;
34393                         }
34394                     }
34395                     var alt = [];
34396                     if(stripe && ((rowIndex+1) % 2 == 0)){
34397                         alt.push( "x-grid-row-alt");
34398                     }
34399                     if(r.dirty){
34400                         alt.push(" x-grid-dirty-row");
34401                     }
34402                     rp.cells = lcb;
34403                     if(this.getRowClass){
34404                         alt.push( this.getRowClass(r, rowIndex));
34405                     }
34406                     if (hasListener) {
34407                         rowcfg = {
34408                              
34409                             record: r,
34410                             rowIndex : rowIndex,
34411                             rowClass : ''
34412                         };
34413                         this.grid.fireEvent('rowclass', this, rowcfg);
34414                         alt.push(rowcfg.rowClass);
34415                     }
34416                     
34417                     rp.alt = alt.join(" ");
34418                     rp.cells = lcb.join("");
34419                     lbuf[lbuf.length] = rt.apply(rp);
34420                     rp.cells = cb.join("");
34421                     buf[buf.length] =  rt.apply(rp);
34422                 }
34423                 return [lbuf.join(""), buf.join("")];
34424             },
34425
34426     renderBody : function(){
34427         var markup = this.renderRows();
34428         var bt = this.templates.body;
34429         return [bt.apply({rows: markup[0]}), bt.apply({rows: markup[1]})];
34430     },
34431
34432     /**
34433      * Refreshes the grid
34434      * @param {Boolean} headersToo
34435      */
34436     refresh : function(headersToo){
34437         this.fireEvent("beforerefresh", this);
34438         this.grid.stopEditing();
34439         var result = this.renderBody();
34440         this.lockedBody.update(result[0]);
34441         this.mainBody.update(result[1]);
34442         if(headersToo === true){
34443             this.updateHeaders();
34444             this.updateColumns();
34445             this.updateSplitters();
34446             this.updateHeaderSortState();
34447         }
34448         this.syncRowHeights();
34449         this.layout();
34450         this.fireEvent("refresh", this);
34451     },
34452
34453     handleColumnMove : function(cm, oldIndex, newIndex){
34454         this.indexMap = null;
34455         var s = this.getScrollState();
34456         this.refresh(true);
34457         this.restoreScroll(s);
34458         this.afterMove(newIndex);
34459     },
34460
34461     afterMove : function(colIndex){
34462         if(this.enableMoveAnim && Roo.enableFx){
34463             this.fly(this.getHeaderCell(colIndex).firstChild).highlight(this.hlColor);
34464         }
34465         // if multisort - fix sortOrder, and reload..
34466         if (this.grid.dataSource.multiSort) {
34467             // the we can call sort again..
34468             var dm = this.grid.dataSource;
34469             var cm = this.grid.colModel;
34470             var so = [];
34471             for(var i = 0; i < cm.config.length; i++ ) {
34472                 
34473                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined')) {
34474                     continue; // dont' bother, it's not in sort list or being set.
34475                 }
34476                 
34477                 so.push(cm.config[i].dataIndex);
34478             };
34479             dm.sortOrder = so;
34480             dm.load(dm.lastOptions);
34481             
34482             
34483         }
34484         
34485     },
34486
34487     updateCell : function(dm, rowIndex, dataIndex){
34488         var colIndex = this.getColumnIndexByDataIndex(dataIndex);
34489         if(typeof colIndex == "undefined"){ // not present in grid
34490             return;
34491         }
34492         var cm = this.grid.colModel;
34493         var cell = this.getCell(rowIndex, colIndex);
34494         var cellText = this.getCellText(rowIndex, colIndex);
34495
34496         var p = {
34497             cellId : "x-grid-cell-" + rowIndex + "-" + colIndex,
34498             id : cm.getColumnId(colIndex),
34499             css: colIndex == cm.getColumnCount()-1 ? "x-grid-col-last" : ""
34500         };
34501         var renderer = cm.getRenderer(colIndex);
34502         var val = renderer(dm.getValueAt(rowIndex, dataIndex), p, rowIndex, colIndex, dm);
34503         if(typeof val == "undefined" || val === "") {
34504             val = "&#160;";
34505         }
34506         cellText.innerHTML = val;
34507         cell.className = this.cellClass + " " + this.idToCssName(p.cellId) + " " + p.css;
34508         this.syncRowHeights(rowIndex, rowIndex);
34509     },
34510
34511     calcColumnWidth : function(colIndex, maxRowsToMeasure){
34512         var maxWidth = 0;
34513         if(this.grid.autoSizeHeaders){
34514             var h = this.getHeaderCellMeasure(colIndex);
34515             maxWidth = Math.max(maxWidth, h.scrollWidth);
34516         }
34517         var tb, index;
34518         if(this.cm.isLocked(colIndex)){
34519             tb = this.getLockedTable();
34520             index = colIndex;
34521         }else{
34522             tb = this.getBodyTable();
34523             index = colIndex - this.cm.getLockedCount();
34524         }
34525         if(tb && tb.rows){
34526             var rows = tb.rows;
34527             var stopIndex = Math.min(maxRowsToMeasure || rows.length, rows.length);
34528             for(var i = 0; i < stopIndex; i++){
34529                 var cell = rows[i].childNodes[index].firstChild;
34530                 maxWidth = Math.max(maxWidth, cell.scrollWidth);
34531             }
34532         }
34533         return maxWidth + /*margin for error in IE*/ 5;
34534     },
34535     /**
34536      * Autofit a column to its content.
34537      * @param {Number} colIndex
34538      * @param {Boolean} forceMinSize true to force the column to go smaller if possible
34539      */
34540      autoSizeColumn : function(colIndex, forceMinSize, suppressEvent){
34541          if(this.cm.isHidden(colIndex)){
34542              return; // can't calc a hidden column
34543          }
34544         if(forceMinSize){
34545             var cid = this.cm.getColumnId(colIndex);
34546             this.css.updateRule(this.colSelector +this.idToCssName( cid), "width", this.grid.minColumnWidth + "px");
34547            if(this.grid.autoSizeHeaders){
34548                this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", this.grid.minColumnWidth + "px");
34549            }
34550         }
34551         var newWidth = this.calcColumnWidth(colIndex);
34552         this.cm.setColumnWidth(colIndex,
34553             Math.max(this.grid.minColumnWidth, newWidth), suppressEvent);
34554         if(!suppressEvent){
34555             this.grid.fireEvent("columnresize", colIndex, newWidth);
34556         }
34557     },
34558
34559     /**
34560      * Autofits all columns to their content and then expands to fit any extra space in the grid
34561      */
34562      autoSizeColumns : function(){
34563         var cm = this.grid.colModel;
34564         var colCount = cm.getColumnCount();
34565         for(var i = 0; i < colCount; i++){
34566             this.autoSizeColumn(i, true, true);
34567         }
34568         if(cm.getTotalWidth() < this.scroller.dom.clientWidth){
34569             this.fitColumns();
34570         }else{
34571             this.updateColumns();
34572             this.layout();
34573         }
34574     },
34575
34576     /**
34577      * Autofits all columns to the grid's width proportionate with their current size
34578      * @param {Boolean} reserveScrollSpace Reserve space for a scrollbar
34579      */
34580     fitColumns : function(reserveScrollSpace){
34581         var cm = this.grid.colModel;
34582         var colCount = cm.getColumnCount();
34583         var cols = [];
34584         var width = 0;
34585         var i, w;
34586         for (i = 0; i < colCount; i++){
34587             if(!cm.isHidden(i) && !cm.isFixed(i)){
34588                 w = cm.getColumnWidth(i);
34589                 cols.push(i);
34590                 cols.push(w);
34591                 width += w;
34592             }
34593         }
34594         var avail = Math.min(this.scroller.dom.clientWidth, this.el.getWidth());
34595         if(reserveScrollSpace){
34596             avail -= 17;
34597         }
34598         var frac = (avail - cm.getTotalWidth())/width;
34599         while (cols.length){
34600             w = cols.pop();
34601             i = cols.pop();
34602             cm.setColumnWidth(i, Math.floor(w + w*frac), true);
34603         }
34604         this.updateColumns();
34605         this.layout();
34606     },
34607
34608     onRowSelect : function(rowIndex){
34609         var row = this.getRowComposite(rowIndex);
34610         row.addClass("x-grid-row-selected");
34611     },
34612
34613     onRowDeselect : function(rowIndex){
34614         var row = this.getRowComposite(rowIndex);
34615         row.removeClass("x-grid-row-selected");
34616     },
34617
34618     onCellSelect : function(row, col){
34619         var cell = this.getCell(row, col);
34620         if(cell){
34621             Roo.fly(cell).addClass("x-grid-cell-selected");
34622         }
34623     },
34624
34625     onCellDeselect : function(row, col){
34626         var cell = this.getCell(row, col);
34627         if(cell){
34628             Roo.fly(cell).removeClass("x-grid-cell-selected");
34629         }
34630     },
34631
34632     updateHeaderSortState : function(){
34633         
34634         // sort state can be single { field: xxx, direction : yyy}
34635         // or   { xxx=>ASC , yyy : DESC ..... }
34636         
34637         var mstate = {};
34638         if (!this.ds.multiSort) { 
34639             var state = this.ds.getSortState();
34640             if(!state){
34641                 return;
34642             }
34643             mstate[state.field] = state.direction;
34644             // FIXME... - this is not used here.. but might be elsewhere..
34645             this.sortState = state;
34646             
34647         } else {
34648             mstate = this.ds.sortToggle;
34649         }
34650         //remove existing sort classes..
34651         
34652         var sc = this.sortClasses;
34653         var hds = this.el.select(this.headerSelector).removeClass(sc);
34654         
34655         for(var f in mstate) {
34656         
34657             var sortColumn = this.cm.findColumnIndex(f);
34658             
34659             if(sortColumn != -1){
34660                 var sortDir = mstate[f];        
34661                 hds.item(sortColumn).addClass(sc[sortDir == "DESC" ? 1 : 0]);
34662             }
34663         }
34664         
34665          
34666         
34667     },
34668
34669
34670     handleHeaderClick : function(g, index,e){
34671         
34672         Roo.log("header click");
34673         
34674         if (Roo.isTouch) {
34675             // touch events on header are handled by context
34676             this.handleHdCtx(g,index,e);
34677             return;
34678         }
34679         
34680         
34681         if(this.headersDisabled){
34682             return;
34683         }
34684         var dm = g.dataSource, cm = g.colModel;
34685         if(!cm.isSortable(index)){
34686             return;
34687         }
34688         g.stopEditing();
34689         
34690         if (dm.multiSort) {
34691             // update the sortOrder
34692             var so = [];
34693             for(var i = 0; i < cm.config.length; i++ ) {
34694                 
34695                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined') && (index != i)) {
34696                     continue; // dont' bother, it's not in sort list or being set.
34697                 }
34698                 
34699                 so.push(cm.config[i].dataIndex);
34700             };
34701             dm.sortOrder = so;
34702         }
34703         
34704         
34705         dm.sort(cm.getDataIndex(index));
34706     },
34707
34708
34709     destroy : function(){
34710         if(this.colMenu){
34711             this.colMenu.removeAll();
34712             Roo.menu.MenuMgr.unregister(this.colMenu);
34713             this.colMenu.getEl().remove();
34714             delete this.colMenu;
34715         }
34716         if(this.hmenu){
34717             this.hmenu.removeAll();
34718             Roo.menu.MenuMgr.unregister(this.hmenu);
34719             this.hmenu.getEl().remove();
34720             delete this.hmenu;
34721         }
34722         if(this.grid.enableColumnMove){
34723             var dds = Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
34724             if(dds){
34725                 for(var dd in dds){
34726                     if(!dds[dd].config.isTarget && dds[dd].dragElId){
34727                         var elid = dds[dd].dragElId;
34728                         dds[dd].unreg();
34729                         Roo.get(elid).remove();
34730                     } else if(dds[dd].config.isTarget){
34731                         dds[dd].proxyTop.remove();
34732                         dds[dd].proxyBottom.remove();
34733                         dds[dd].unreg();
34734                     }
34735                     if(Roo.dd.DDM.locationCache[dd]){
34736                         delete Roo.dd.DDM.locationCache[dd];
34737                     }
34738                 }
34739                 delete Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
34740             }
34741         }
34742         Roo.util.CSS.removeStyleSheet(this.idToCssName(this.grid.id) + '-cssrules');
34743         this.bind(null, null);
34744         Roo.EventManager.removeResizeListener(this.onWindowResize, this);
34745     },
34746
34747     handleLockChange : function(){
34748         this.refresh(true);
34749     },
34750
34751     onDenyColumnLock : function(){
34752
34753     },
34754
34755     onDenyColumnHide : function(){
34756
34757     },
34758
34759     handleHdMenuClick : function(item){
34760         var index = this.hdCtxIndex;
34761         var cm = this.cm, ds = this.ds;
34762         switch(item.id){
34763             case "asc":
34764                 ds.sort(cm.getDataIndex(index), "ASC");
34765                 break;
34766             case "desc":
34767                 ds.sort(cm.getDataIndex(index), "DESC");
34768                 break;
34769             case "lock":
34770                 var lc = cm.getLockedCount();
34771                 if(cm.getColumnCount(true) <= lc+1){
34772                     this.onDenyColumnLock();
34773                     return;
34774                 }
34775                 if(lc != index){
34776                     cm.setLocked(index, true, true);
34777                     cm.moveColumn(index, lc);
34778                     this.grid.fireEvent("columnmove", index, lc);
34779                 }else{
34780                     cm.setLocked(index, true);
34781                 }
34782             break;
34783             case "unlock":
34784                 var lc = cm.getLockedCount();
34785                 if((lc-1) != index){
34786                     cm.setLocked(index, false, true);
34787                     cm.moveColumn(index, lc-1);
34788                     this.grid.fireEvent("columnmove", index, lc-1);
34789                 }else{
34790                     cm.setLocked(index, false);
34791                 }
34792             break;
34793             case 'wider': // used to expand cols on touch..
34794             case 'narrow':
34795                 var cw = cm.getColumnWidth(index);
34796                 cw += (item.id == 'wider' ? 1 : -1) * 50;
34797                 cw = Math.max(0, cw);
34798                 cw = Math.min(cw,4000);
34799                 cm.setColumnWidth(index, cw);
34800                 break;
34801                 
34802             default:
34803                 index = cm.getIndexById(item.id.substr(4));
34804                 if(index != -1){
34805                     if(item.checked && cm.getColumnCount(true) <= 1){
34806                         this.onDenyColumnHide();
34807                         return false;
34808                     }
34809                     cm.setHidden(index, item.checked);
34810                 }
34811         }
34812         return true;
34813     },
34814
34815     beforeColMenuShow : function(){
34816         var cm = this.cm,  colCount = cm.getColumnCount();
34817         this.colMenu.removeAll();
34818         for(var i = 0; i < colCount; i++){
34819             this.colMenu.add(new Roo.menu.CheckItem({
34820                 id: "col-"+cm.getColumnId(i),
34821                 text: cm.getColumnHeader(i),
34822                 checked: !cm.isHidden(i),
34823                 hideOnClick:false
34824             }));
34825         }
34826     },
34827
34828     handleHdCtx : function(g, index, e){
34829         e.stopEvent();
34830         var hd = this.getHeaderCell(index);
34831         this.hdCtxIndex = index;
34832         var ms = this.hmenu.items, cm = this.cm;
34833         ms.get("asc").setDisabled(!cm.isSortable(index));
34834         ms.get("desc").setDisabled(!cm.isSortable(index));
34835         if(this.grid.enableColLock !== false){
34836             ms.get("lock").setDisabled(cm.isLocked(index));
34837             ms.get("unlock").setDisabled(!cm.isLocked(index));
34838         }
34839         this.hmenu.show(hd, "tl-bl");
34840     },
34841
34842     handleHdOver : function(e){
34843         var hd = this.findHeaderCell(e.getTarget());
34844         if(hd && !this.headersDisabled){
34845             if(this.grid.colModel.isSortable(this.getCellIndex(hd))){
34846                this.fly(hd).addClass("x-grid-hd-over");
34847             }
34848         }
34849     },
34850
34851     handleHdOut : function(e){
34852         var hd = this.findHeaderCell(e.getTarget());
34853         if(hd){
34854             this.fly(hd).removeClass("x-grid-hd-over");
34855         }
34856     },
34857
34858     handleSplitDblClick : function(e, t){
34859         var i = this.getCellIndex(t);
34860         if(this.grid.enableColumnResize !== false && this.cm.isResizable(i) && !this.cm.isFixed(i)){
34861             this.autoSizeColumn(i, true);
34862             this.layout();
34863         }
34864     },
34865
34866     render : function(){
34867
34868         var cm = this.cm;
34869         var colCount = cm.getColumnCount();
34870
34871         if(this.grid.monitorWindowResize === true){
34872             Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
34873         }
34874         var header = this.renderHeaders();
34875         var body = this.templates.body.apply({rows:""});
34876         var html = this.templates.master.apply({
34877             lockedBody: body,
34878             body: body,
34879             lockedHeader: header[0],
34880             header: header[1]
34881         });
34882
34883         //this.updateColumns();
34884
34885         this.grid.getGridEl().dom.innerHTML = html;
34886
34887         this.initElements();
34888         
34889         // a kludge to fix the random scolling effect in webkit
34890         this.el.on("scroll", function() {
34891             this.el.dom.scrollTop=0; // hopefully not recursive..
34892         },this);
34893
34894         this.scroller.on("scroll", this.handleScroll, this);
34895         this.lockedBody.on("mousewheel", this.handleWheel, this);
34896         this.mainBody.on("mousewheel", this.handleWheel, this);
34897
34898         this.mainHd.on("mouseover", this.handleHdOver, this);
34899         this.mainHd.on("mouseout", this.handleHdOut, this);
34900         this.mainHd.on("dblclick", this.handleSplitDblClick, this,
34901                 {delegate: "."+this.splitClass});
34902
34903         this.lockedHd.on("mouseover", this.handleHdOver, this);
34904         this.lockedHd.on("mouseout", this.handleHdOut, this);
34905         this.lockedHd.on("dblclick", this.handleSplitDblClick, this,
34906                 {delegate: "."+this.splitClass});
34907
34908         if(this.grid.enableColumnResize !== false && Roo.grid.SplitDragZone){
34909             new Roo.grid.SplitDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
34910         }
34911
34912         this.updateSplitters();
34913
34914         if(this.grid.enableColumnMove && Roo.grid.HeaderDragZone){
34915             new Roo.grid.HeaderDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
34916             new Roo.grid.HeaderDropZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
34917         }
34918
34919         if(this.grid.enableCtxMenu !== false && Roo.menu.Menu){
34920             this.hmenu = new Roo.menu.Menu({id: this.grid.id + "-hctx"});
34921             this.hmenu.add(
34922                 {id:"asc", text: this.sortAscText, cls: "xg-hmenu-sort-asc"},
34923                 {id:"desc", text: this.sortDescText, cls: "xg-hmenu-sort-desc"}
34924             );
34925             if(this.grid.enableColLock !== false){
34926                 this.hmenu.add('-',
34927                     {id:"lock", text: this.lockText, cls: "xg-hmenu-lock"},
34928                     {id:"unlock", text: this.unlockText, cls: "xg-hmenu-unlock"}
34929                 );
34930             }
34931             if (Roo.isTouch) {
34932                  this.hmenu.add('-',
34933                     {id:"wider", text: this.columnsWiderText},
34934                     {id:"narrow", text: this.columnsNarrowText }
34935                 );
34936                 
34937                  
34938             }
34939             
34940             if(this.grid.enableColumnHide !== false){
34941
34942                 this.colMenu = new Roo.menu.Menu({id:this.grid.id + "-hcols-menu"});
34943                 this.colMenu.on("beforeshow", this.beforeColMenuShow, this);
34944                 this.colMenu.on("itemclick", this.handleHdMenuClick, this);
34945
34946                 this.hmenu.add('-',
34947                     {id:"columns", text: this.columnsText, menu: this.colMenu}
34948                 );
34949             }
34950             this.hmenu.on("itemclick", this.handleHdMenuClick, this);
34951
34952             this.grid.on("headercontextmenu", this.handleHdCtx, this);
34953         }
34954
34955         if((this.grid.enableDragDrop || this.grid.enableDrag) && Roo.grid.GridDragZone){
34956             this.dd = new Roo.grid.GridDragZone(this.grid, {
34957                 ddGroup : this.grid.ddGroup || 'GridDD'
34958             });
34959             
34960         }
34961
34962         /*
34963         for(var i = 0; i < colCount; i++){
34964             if(cm.isHidden(i)){
34965                 this.hideColumn(i);
34966             }
34967             if(cm.config[i].align){
34968                 this.css.updateRule(this.colSelector + i, "textAlign", cm.config[i].align);
34969                 this.css.updateRule(this.hdSelector + i, "textAlign", cm.config[i].align);
34970             }
34971         }*/
34972         
34973         this.updateHeaderSortState();
34974
34975         this.beforeInitialResize();
34976         this.layout(true);
34977
34978         // two part rendering gives faster view to the user
34979         this.renderPhase2.defer(1, this);
34980     },
34981
34982     renderPhase2 : function(){
34983         // render the rows now
34984         this.refresh();
34985         if(this.grid.autoSizeColumns){
34986             this.autoSizeColumns();
34987         }
34988     },
34989
34990     beforeInitialResize : function(){
34991
34992     },
34993
34994     onColumnSplitterMoved : function(i, w){
34995         this.userResized = true;
34996         var cm = this.grid.colModel;
34997         cm.setColumnWidth(i, w, true);
34998         var cid = cm.getColumnId(i);
34999         this.css.updateRule(this.colSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
35000         this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
35001         this.updateSplitters();
35002         this.layout();
35003         this.grid.fireEvent("columnresize", i, w);
35004     },
35005
35006     syncRowHeights : function(startIndex, endIndex){
35007         if(this.grid.enableRowHeightSync === true && this.cm.getLockedCount() > 0){
35008             startIndex = startIndex || 0;
35009             var mrows = this.getBodyTable().rows;
35010             var lrows = this.getLockedTable().rows;
35011             var len = mrows.length-1;
35012             endIndex = Math.min(endIndex || len, len);
35013             for(var i = startIndex; i <= endIndex; i++){
35014                 var m = mrows[i], l = lrows[i];
35015                 var h = Math.max(m.offsetHeight, l.offsetHeight);
35016                 m.style.height = l.style.height = h + "px";
35017             }
35018         }
35019     },
35020
35021     layout : function(initialRender, is2ndPass){
35022         var g = this.grid;
35023         var auto = g.autoHeight;
35024         var scrollOffset = 16;
35025         var c = g.getGridEl(), cm = this.cm,
35026                 expandCol = g.autoExpandColumn,
35027                 gv = this;
35028         //c.beginMeasure();
35029
35030         if(!c.dom.offsetWidth){ // display:none?
35031             if(initialRender){
35032                 this.lockedWrap.show();
35033                 this.mainWrap.show();
35034             }
35035             return;
35036         }
35037
35038         var hasLock = this.cm.isLocked(0);
35039
35040         var tbh = this.headerPanel.getHeight();
35041         var bbh = this.footerPanel.getHeight();
35042
35043         if(auto){
35044             var ch = this.getBodyTable().offsetHeight + tbh + bbh + this.mainHd.getHeight();
35045             var newHeight = ch + c.getBorderWidth("tb");
35046             if(g.maxHeight){
35047                 newHeight = Math.min(g.maxHeight, newHeight);
35048             }
35049             c.setHeight(newHeight);
35050         }
35051
35052         if(g.autoWidth){
35053             c.setWidth(cm.getTotalWidth()+c.getBorderWidth('lr'));
35054         }
35055
35056         var s = this.scroller;
35057
35058         var csize = c.getSize(true);
35059
35060         this.el.setSize(csize.width, csize.height);
35061
35062         this.headerPanel.setWidth(csize.width);
35063         this.footerPanel.setWidth(csize.width);
35064
35065         var hdHeight = this.mainHd.getHeight();
35066         var vw = csize.width;
35067         var vh = csize.height - (tbh + bbh);
35068
35069         s.setSize(vw, vh);
35070
35071         var bt = this.getBodyTable();
35072         
35073         if(cm.getLockedCount() == cm.config.length){
35074             bt = this.getLockedTable();
35075         }
35076         
35077         var ltWidth = hasLock ?
35078                       Math.max(this.getLockedTable().offsetWidth, this.lockedHd.dom.firstChild.offsetWidth) : 0;
35079
35080         var scrollHeight = bt.offsetHeight;
35081         var scrollWidth = ltWidth + bt.offsetWidth;
35082         var vscroll = false, hscroll = false;
35083
35084         this.scrollSizer.setSize(scrollWidth, scrollHeight+hdHeight);
35085
35086         var lw = this.lockedWrap, mw = this.mainWrap;
35087         var lb = this.lockedBody, mb = this.mainBody;
35088
35089         setTimeout(function(){
35090             var t = s.dom.offsetTop;
35091             var w = s.dom.clientWidth,
35092                 h = s.dom.clientHeight;
35093
35094             lw.setTop(t);
35095             lw.setSize(ltWidth, h);
35096
35097             mw.setLeftTop(ltWidth, t);
35098             mw.setSize(w-ltWidth, h);
35099
35100             lb.setHeight(h-hdHeight);
35101             mb.setHeight(h-hdHeight);
35102
35103             if(is2ndPass !== true && !gv.userResized && expandCol){
35104                 // high speed resize without full column calculation
35105                 
35106                 var ci = cm.getIndexById(expandCol);
35107                 if (ci < 0) {
35108                     ci = cm.findColumnIndex(expandCol);
35109                 }
35110                 ci = Math.max(0, ci); // make sure it's got at least the first col.
35111                 var expandId = cm.getColumnId(ci);
35112                 var  tw = cm.getTotalWidth(false);
35113                 var currentWidth = cm.getColumnWidth(ci);
35114                 var cw = Math.min(Math.max(((w-tw)+currentWidth-2)-/*scrollbar*/(w <= s.dom.offsetWidth ? 0 : 18), g.autoExpandMin), g.autoExpandMax);
35115                 if(currentWidth != cw){
35116                     cm.setColumnWidth(ci, cw, true);
35117                     gv.css.updateRule(gv.colSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
35118                     gv.css.updateRule(gv.hdSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
35119                     gv.updateSplitters();
35120                     gv.layout(false, true);
35121                 }
35122             }
35123
35124             if(initialRender){
35125                 lw.show();
35126                 mw.show();
35127             }
35128             //c.endMeasure();
35129         }, 10);
35130     },
35131
35132     onWindowResize : function(){
35133         if(!this.grid.monitorWindowResize || this.grid.autoHeight){
35134             return;
35135         }
35136         this.layout();
35137     },
35138
35139     appendFooter : function(parentEl){
35140         return null;
35141     },
35142
35143     sortAscText : "Sort Ascending",
35144     sortDescText : "Sort Descending",
35145     lockText : "Lock Column",
35146     unlockText : "Unlock Column",
35147     columnsText : "Columns",
35148  
35149     columnsWiderText : "Wider",
35150     columnsNarrowText : "Thinner"
35151 });
35152
35153
35154 Roo.grid.GridView.ColumnDragZone = function(grid, hd){
35155     Roo.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
35156     this.proxy.el.addClass('x-grid3-col-dd');
35157 };
35158
35159 Roo.extend(Roo.grid.GridView.ColumnDragZone, Roo.grid.HeaderDragZone, {
35160     handleMouseDown : function(e){
35161
35162     },
35163
35164     callHandleMouseDown : function(e){
35165         Roo.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
35166     }
35167 });
35168 /*
35169  * Based on:
35170  * Ext JS Library 1.1.1
35171  * Copyright(c) 2006-2007, Ext JS, LLC.
35172  *
35173  * Originally Released Under LGPL - original licence link has changed is not relivant.
35174  *
35175  * Fork - LGPL
35176  * <script type="text/javascript">
35177  */
35178  
35179 // private
35180 // This is a support class used internally by the Grid components
35181 Roo.grid.SplitDragZone = function(grid, hd, hd2){
35182     this.grid = grid;
35183     this.view = grid.getView();
35184     this.proxy = this.view.resizeProxy;
35185     Roo.grid.SplitDragZone.superclass.constructor.call(this, hd,
35186         "gridSplitters" + this.grid.getGridEl().id, {
35187         dragElId : Roo.id(this.proxy.dom), resizeFrame:false
35188     });
35189     this.setHandleElId(Roo.id(hd));
35190     this.setOuterHandleElId(Roo.id(hd2));
35191     this.scroll = false;
35192 };
35193 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
35194     fly: Roo.Element.fly,
35195
35196     b4StartDrag : function(x, y){
35197         this.view.headersDisabled = true;
35198         this.proxy.setHeight(this.view.mainWrap.getHeight());
35199         var w = this.cm.getColumnWidth(this.cellIndex);
35200         var minw = Math.max(w-this.grid.minColumnWidth, 0);
35201         this.resetConstraints();
35202         this.setXConstraint(minw, 1000);
35203         this.setYConstraint(0, 0);
35204         this.minX = x - minw;
35205         this.maxX = x + 1000;
35206         this.startPos = x;
35207         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
35208     },
35209
35210
35211     handleMouseDown : function(e){
35212         ev = Roo.EventObject.setEvent(e);
35213         var t = this.fly(ev.getTarget());
35214         if(t.hasClass("x-grid-split")){
35215             this.cellIndex = this.view.getCellIndex(t.dom);
35216             this.split = t.dom;
35217             this.cm = this.grid.colModel;
35218             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
35219                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
35220             }
35221         }
35222     },
35223
35224     endDrag : function(e){
35225         this.view.headersDisabled = false;
35226         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
35227         var diff = endX - this.startPos;
35228         this.view.onColumnSplitterMoved(this.cellIndex, this.cm.getColumnWidth(this.cellIndex)+diff);
35229     },
35230
35231     autoOffset : function(){
35232         this.setDelta(0,0);
35233     }
35234 });/*
35235  * Based on:
35236  * Ext JS Library 1.1.1
35237  * Copyright(c) 2006-2007, Ext JS, LLC.
35238  *
35239  * Originally Released Under LGPL - original licence link has changed is not relivant.
35240  *
35241  * Fork - LGPL
35242  * <script type="text/javascript">
35243  */
35244  
35245 // private
35246 // This is a support class used internally by the Grid components
35247 Roo.grid.GridDragZone = function(grid, config){
35248     this.view = grid.getView();
35249     Roo.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, config);
35250     if(this.view.lockedBody){
35251         this.setHandleElId(Roo.id(this.view.mainBody.dom));
35252         this.setOuterHandleElId(Roo.id(this.view.lockedBody.dom));
35253     }
35254     this.scroll = false;
35255     this.grid = grid;
35256     this.ddel = document.createElement('div');
35257     this.ddel.className = 'x-grid-dd-wrap';
35258 };
35259
35260 Roo.extend(Roo.grid.GridDragZone, Roo.dd.DragZone, {
35261     ddGroup : "GridDD",
35262
35263     getDragData : function(e){
35264         var t = Roo.lib.Event.getTarget(e);
35265         var rowIndex = this.view.findRowIndex(t);
35266         var sm = this.grid.selModel;
35267             
35268         //Roo.log(rowIndex);
35269         
35270         if (sm.getSelectedCell) {
35271             // cell selection..
35272             if (!sm.getSelectedCell()) {
35273                 return false;
35274             }
35275             if (rowIndex != sm.getSelectedCell()[0]) {
35276                 return false;
35277             }
35278         
35279         }
35280         
35281         if(rowIndex !== false){
35282             
35283             // if editorgrid.. 
35284             
35285             
35286             //Roo.log([ sm.getSelectedCell() ? sm.getSelectedCell()[0] : 'NO' , rowIndex ]);
35287                
35288             //if(!sm.isSelected(rowIndex) || e.hasModifier()){
35289               //  
35290             //}
35291             if (e.hasModifier()){
35292                 sm.handleMouseDown(e, t); // non modifier buttons are handled by row select.
35293             }
35294             
35295             Roo.log("getDragData");
35296             
35297             return {
35298                 grid: this.grid,
35299                 ddel: this.ddel,
35300                 rowIndex: rowIndex,
35301                 selections:sm.getSelections ? sm.getSelections() : (
35302                     sm.getSelectedCell() ? [ this.grid.ds.getAt(sm.getSelectedCell()[0]) ] : []
35303                 )
35304             };
35305         }
35306         return false;
35307     },
35308
35309     onInitDrag : function(e){
35310         var data = this.dragData;
35311         this.ddel.innerHTML = this.grid.getDragDropText();
35312         this.proxy.update(this.ddel);
35313         // fire start drag?
35314     },
35315
35316     afterRepair : function(){
35317         this.dragging = false;
35318     },
35319
35320     getRepairXY : function(e, data){
35321         return false;
35322     },
35323
35324     onEndDrag : function(data, e){
35325         // fire end drag?
35326     },
35327
35328     onValidDrop : function(dd, e, id){
35329         // fire drag drop?
35330         this.hideProxy();
35331     },
35332
35333     beforeInvalidDrop : function(e, id){
35334
35335     }
35336 });/*
35337  * Based on:
35338  * Ext JS Library 1.1.1
35339  * Copyright(c) 2006-2007, Ext JS, LLC.
35340  *
35341  * Originally Released Under LGPL - original licence link has changed is not relivant.
35342  *
35343  * Fork - LGPL
35344  * <script type="text/javascript">
35345  */
35346  
35347
35348 /**
35349  * @class Roo.grid.ColumnModel
35350  * @extends Roo.util.Observable
35351  * This is the default implementation of a ColumnModel used by the Grid. It defines
35352  * the columns in the grid.
35353  * <br>Usage:<br>
35354  <pre><code>
35355  var colModel = new Roo.grid.ColumnModel([
35356         {header: "Ticker", width: 60, sortable: true, locked: true},
35357         {header: "Company Name", width: 150, sortable: true},
35358         {header: "Market Cap.", width: 100, sortable: true},
35359         {header: "$ Sales", width: 100, sortable: true, renderer: money},
35360         {header: "Employees", width: 100, sortable: true, resizable: false}
35361  ]);
35362  </code></pre>
35363  * <p>
35364  
35365  * The config options listed for this class are options which may appear in each
35366  * individual column definition.
35367  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
35368  * @constructor
35369  * @param {Object} config An Array of column config objects. See this class's
35370  * config objects for details.
35371 */
35372 Roo.grid.ColumnModel = function(config){
35373         /**
35374      * The config passed into the constructor
35375      */
35376     this.config = config;
35377     this.lookup = {};
35378
35379     // if no id, create one
35380     // if the column does not have a dataIndex mapping,
35381     // map it to the order it is in the config
35382     for(var i = 0, len = config.length; i < len; i++){
35383         var c = config[i];
35384         if(typeof c.dataIndex == "undefined"){
35385             c.dataIndex = i;
35386         }
35387         if(typeof c.renderer == "string"){
35388             c.renderer = Roo.util.Format[c.renderer];
35389         }
35390         if(typeof c.id == "undefined"){
35391             c.id = Roo.id();
35392         }
35393         if(c.editor && c.editor.xtype){
35394             c.editor  = Roo.factory(c.editor, Roo.grid);
35395         }
35396         if(c.editor && c.editor.isFormField){
35397             c.editor = new Roo.grid.GridEditor(c.editor);
35398         }
35399         this.lookup[c.id] = c;
35400     }
35401
35402     /**
35403      * The width of columns which have no width specified (defaults to 100)
35404      * @type Number
35405      */
35406     this.defaultWidth = 100;
35407
35408     /**
35409      * Default sortable of columns which have no sortable specified (defaults to false)
35410      * @type Boolean
35411      */
35412     this.defaultSortable = false;
35413
35414     this.addEvents({
35415         /**
35416              * @event widthchange
35417              * Fires when the width of a column changes.
35418              * @param {ColumnModel} this
35419              * @param {Number} columnIndex The column index
35420              * @param {Number} newWidth The new width
35421              */
35422             "widthchange": true,
35423         /**
35424              * @event headerchange
35425              * Fires when the text of a header changes.
35426              * @param {ColumnModel} this
35427              * @param {Number} columnIndex The column index
35428              * @param {Number} newText The new header text
35429              */
35430             "headerchange": true,
35431         /**
35432              * @event hiddenchange
35433              * Fires when a column is hidden or "unhidden".
35434              * @param {ColumnModel} this
35435              * @param {Number} columnIndex The column index
35436              * @param {Boolean} hidden true if hidden, false otherwise
35437              */
35438             "hiddenchange": true,
35439             /**
35440          * @event columnmoved
35441          * Fires when a column is moved.
35442          * @param {ColumnModel} this
35443          * @param {Number} oldIndex
35444          * @param {Number} newIndex
35445          */
35446         "columnmoved" : true,
35447         /**
35448          * @event columlockchange
35449          * Fires when a column's locked state is changed
35450          * @param {ColumnModel} this
35451          * @param {Number} colIndex
35452          * @param {Boolean} locked true if locked
35453          */
35454         "columnlockchange" : true
35455     });
35456     Roo.grid.ColumnModel.superclass.constructor.call(this);
35457 };
35458 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
35459     /**
35460      * @cfg {String} header The header text to display in the Grid view.
35461      */
35462     /**
35463      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
35464      * {@link Roo.data.Record} definition from which to draw the column's value. If not
35465      * specified, the column's index is used as an index into the Record's data Array.
35466      */
35467     /**
35468      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
35469      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
35470      */
35471     /**
35472      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
35473      * Defaults to the value of the {@link #defaultSortable} property.
35474      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
35475      */
35476     /**
35477      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
35478      */
35479     /**
35480      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
35481      */
35482     /**
35483      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
35484      */
35485     /**
35486      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
35487      */
35488     /**
35489      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
35490      * given the cell's data value. See {@link #setRenderer}. If not specified, the
35491      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
35492      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
35493      */
35494        /**
35495      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
35496      */
35497     /**
35498      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
35499      */
35500     /**
35501      * @cfg {String} valign (Optional) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined.
35502      */
35503     /**
35504      * @cfg {String} cursor (Optional)
35505      */
35506     /**
35507      * @cfg {String} tooltip (Optional)
35508      */
35509     /**
35510      * @cfg {Number} xs (Optional)
35511      */
35512     /**
35513      * @cfg {Number} sm (Optional)
35514      */
35515     /**
35516      * @cfg {Number} md (Optional)
35517      */
35518     /**
35519      * @cfg {Number} lg (Optional)
35520      */
35521     /**
35522      * Returns the id of the column at the specified index.
35523      * @param {Number} index The column index
35524      * @return {String} the id
35525      */
35526     getColumnId : function(index){
35527         return this.config[index].id;
35528     },
35529
35530     /**
35531      * Returns the column for a specified id.
35532      * @param {String} id The column id
35533      * @return {Object} the column
35534      */
35535     getColumnById : function(id){
35536         return this.lookup[id];
35537     },
35538
35539     
35540     /**
35541      * Returns the column for a specified dataIndex.
35542      * @param {String} dataIndex The column dataIndex
35543      * @return {Object|Boolean} the column or false if not found
35544      */
35545     getColumnByDataIndex: function(dataIndex){
35546         var index = this.findColumnIndex(dataIndex);
35547         return index > -1 ? this.config[index] : false;
35548     },
35549     
35550     /**
35551      * Returns the index for a specified column id.
35552      * @param {String} id The column id
35553      * @return {Number} the index, or -1 if not found
35554      */
35555     getIndexById : function(id){
35556         for(var i = 0, len = this.config.length; i < len; i++){
35557             if(this.config[i].id == id){
35558                 return i;
35559             }
35560         }
35561         return -1;
35562     },
35563     
35564     /**
35565      * Returns the index for a specified column dataIndex.
35566      * @param {String} dataIndex The column dataIndex
35567      * @return {Number} the index, or -1 if not found
35568      */
35569     
35570     findColumnIndex : function(dataIndex){
35571         for(var i = 0, len = this.config.length; i < len; i++){
35572             if(this.config[i].dataIndex == dataIndex){
35573                 return i;
35574             }
35575         }
35576         return -1;
35577     },
35578     
35579     
35580     moveColumn : function(oldIndex, newIndex){
35581         var c = this.config[oldIndex];
35582         this.config.splice(oldIndex, 1);
35583         this.config.splice(newIndex, 0, c);
35584         this.dataMap = null;
35585         this.fireEvent("columnmoved", this, oldIndex, newIndex);
35586     },
35587
35588     isLocked : function(colIndex){
35589         return this.config[colIndex].locked === true;
35590     },
35591
35592     setLocked : function(colIndex, value, suppressEvent){
35593         if(this.isLocked(colIndex) == value){
35594             return;
35595         }
35596         this.config[colIndex].locked = value;
35597         if(!suppressEvent){
35598             this.fireEvent("columnlockchange", this, colIndex, value);
35599         }
35600     },
35601
35602     getTotalLockedWidth : function(){
35603         var totalWidth = 0;
35604         for(var i = 0; i < this.config.length; i++){
35605             if(this.isLocked(i) && !this.isHidden(i)){
35606                 this.totalWidth += this.getColumnWidth(i);
35607             }
35608         }
35609         return totalWidth;
35610     },
35611
35612     getLockedCount : function(){
35613         for(var i = 0, len = this.config.length; i < len; i++){
35614             if(!this.isLocked(i)){
35615                 return i;
35616             }
35617         }
35618         
35619         return this.config.length;
35620     },
35621
35622     /**
35623      * Returns the number of columns.
35624      * @return {Number}
35625      */
35626     getColumnCount : function(visibleOnly){
35627         if(visibleOnly === true){
35628             var c = 0;
35629             for(var i = 0, len = this.config.length; i < len; i++){
35630                 if(!this.isHidden(i)){
35631                     c++;
35632                 }
35633             }
35634             return c;
35635         }
35636         return this.config.length;
35637     },
35638
35639     /**
35640      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
35641      * @param {Function} fn
35642      * @param {Object} scope (optional)
35643      * @return {Array} result
35644      */
35645     getColumnsBy : function(fn, scope){
35646         var r = [];
35647         for(var i = 0, len = this.config.length; i < len; i++){
35648             var c = this.config[i];
35649             if(fn.call(scope||this, c, i) === true){
35650                 r[r.length] = c;
35651             }
35652         }
35653         return r;
35654     },
35655
35656     /**
35657      * Returns true if the specified column is sortable.
35658      * @param {Number} col The column index
35659      * @return {Boolean}
35660      */
35661     isSortable : function(col){
35662         if(typeof this.config[col].sortable == "undefined"){
35663             return this.defaultSortable;
35664         }
35665         return this.config[col].sortable;
35666     },
35667
35668     /**
35669      * Returns the rendering (formatting) function defined for the column.
35670      * @param {Number} col The column index.
35671      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
35672      */
35673     getRenderer : function(col){
35674         if(!this.config[col].renderer){
35675             return Roo.grid.ColumnModel.defaultRenderer;
35676         }
35677         return this.config[col].renderer;
35678     },
35679
35680     /**
35681      * Sets the rendering (formatting) function for a column.
35682      * @param {Number} col The column index
35683      * @param {Function} fn The function to use to process the cell's raw data
35684      * to return HTML markup for the grid view. The render function is called with
35685      * the following parameters:<ul>
35686      * <li>Data value.</li>
35687      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
35688      * <li>css A CSS style string to apply to the table cell.</li>
35689      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
35690      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
35691      * <li>Row index</li>
35692      * <li>Column index</li>
35693      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
35694      */
35695     setRenderer : function(col, fn){
35696         this.config[col].renderer = fn;
35697     },
35698
35699     /**
35700      * Returns the width for the specified column.
35701      * @param {Number} col The column index
35702      * @return {Number}
35703      */
35704     getColumnWidth : function(col){
35705         return this.config[col].width * 1 || this.defaultWidth;
35706     },
35707
35708     /**
35709      * Sets the width for a column.
35710      * @param {Number} col The column index
35711      * @param {Number} width The new width
35712      */
35713     setColumnWidth : function(col, width, suppressEvent){
35714         this.config[col].width = width;
35715         this.totalWidth = null;
35716         if(!suppressEvent){
35717              this.fireEvent("widthchange", this, col, width);
35718         }
35719     },
35720
35721     /**
35722      * Returns the total width of all columns.
35723      * @param {Boolean} includeHidden True to include hidden column widths
35724      * @return {Number}
35725      */
35726     getTotalWidth : function(includeHidden){
35727         if(!this.totalWidth){
35728             this.totalWidth = 0;
35729             for(var i = 0, len = this.config.length; i < len; i++){
35730                 if(includeHidden || !this.isHidden(i)){
35731                     this.totalWidth += this.getColumnWidth(i);
35732                 }
35733             }
35734         }
35735         return this.totalWidth;
35736     },
35737
35738     /**
35739      * Returns the header for the specified column.
35740      * @param {Number} col The column index
35741      * @return {String}
35742      */
35743     getColumnHeader : function(col){
35744         return this.config[col].header;
35745     },
35746
35747     /**
35748      * Sets the header for a column.
35749      * @param {Number} col The column index
35750      * @param {String} header The new header
35751      */
35752     setColumnHeader : function(col, header){
35753         this.config[col].header = header;
35754         this.fireEvent("headerchange", this, col, header);
35755     },
35756
35757     /**
35758      * Returns the tooltip for the specified column.
35759      * @param {Number} col The column index
35760      * @return {String}
35761      */
35762     getColumnTooltip : function(col){
35763             return this.config[col].tooltip;
35764     },
35765     /**
35766      * Sets the tooltip for a column.
35767      * @param {Number} col The column index
35768      * @param {String} tooltip The new tooltip
35769      */
35770     setColumnTooltip : function(col, tooltip){
35771             this.config[col].tooltip = tooltip;
35772     },
35773
35774     /**
35775      * Returns the dataIndex for the specified column.
35776      * @param {Number} col The column index
35777      * @return {Number}
35778      */
35779     getDataIndex : function(col){
35780         return this.config[col].dataIndex;
35781     },
35782
35783     /**
35784      * Sets the dataIndex for a column.
35785      * @param {Number} col The column index
35786      * @param {Number} dataIndex The new dataIndex
35787      */
35788     setDataIndex : function(col, dataIndex){
35789         this.config[col].dataIndex = dataIndex;
35790     },
35791
35792     
35793     
35794     /**
35795      * Returns true if the cell is editable.
35796      * @param {Number} colIndex The column index
35797      * @param {Number} rowIndex The row index - this is nto actually used..?
35798      * @return {Boolean}
35799      */
35800     isCellEditable : function(colIndex, rowIndex){
35801         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
35802     },
35803
35804     /**
35805      * Returns the editor defined for the cell/column.
35806      * return false or null to disable editing.
35807      * @param {Number} colIndex The column index
35808      * @param {Number} rowIndex The row index
35809      * @return {Object}
35810      */
35811     getCellEditor : function(colIndex, rowIndex){
35812         return this.config[colIndex].editor;
35813     },
35814
35815     /**
35816      * Sets if a column is editable.
35817      * @param {Number} col The column index
35818      * @param {Boolean} editable True if the column is editable
35819      */
35820     setEditable : function(col, editable){
35821         this.config[col].editable = editable;
35822     },
35823
35824
35825     /**
35826      * Returns true if the column is hidden.
35827      * @param {Number} colIndex The column index
35828      * @return {Boolean}
35829      */
35830     isHidden : function(colIndex){
35831         return this.config[colIndex].hidden;
35832     },
35833
35834
35835     /**
35836      * Returns true if the column width cannot be changed
35837      */
35838     isFixed : function(colIndex){
35839         return this.config[colIndex].fixed;
35840     },
35841
35842     /**
35843      * Returns true if the column can be resized
35844      * @return {Boolean}
35845      */
35846     isResizable : function(colIndex){
35847         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
35848     },
35849     /**
35850      * Sets if a column is hidden.
35851      * @param {Number} colIndex The column index
35852      * @param {Boolean} hidden True if the column is hidden
35853      */
35854     setHidden : function(colIndex, hidden){
35855         this.config[colIndex].hidden = hidden;
35856         this.totalWidth = null;
35857         this.fireEvent("hiddenchange", this, colIndex, hidden);
35858     },
35859
35860     /**
35861      * Sets the editor for a column.
35862      * @param {Number} col The column index
35863      * @param {Object} editor The editor object
35864      */
35865     setEditor : function(col, editor){
35866         this.config[col].editor = editor;
35867     }
35868 });
35869
35870 Roo.grid.ColumnModel.defaultRenderer = function(value)
35871 {
35872     if(typeof value == "object") {
35873         return value;
35874     }
35875         if(typeof value == "string" && value.length < 1){
35876             return "&#160;";
35877         }
35878     
35879         return String.format("{0}", value);
35880 };
35881
35882 // Alias for backwards compatibility
35883 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
35884 /*
35885  * Based on:
35886  * Ext JS Library 1.1.1
35887  * Copyright(c) 2006-2007, Ext JS, LLC.
35888  *
35889  * Originally Released Under LGPL - original licence link has changed is not relivant.
35890  *
35891  * Fork - LGPL
35892  * <script type="text/javascript">
35893  */
35894
35895 /**
35896  * @class Roo.grid.AbstractSelectionModel
35897  * @extends Roo.util.Observable
35898  * Abstract base class for grid SelectionModels.  It provides the interface that should be
35899  * implemented by descendant classes.  This class should not be directly instantiated.
35900  * @constructor
35901  */
35902 Roo.grid.AbstractSelectionModel = function(){
35903     this.locked = false;
35904     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
35905 };
35906
35907 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
35908     /** @ignore Called by the grid automatically. Do not call directly. */
35909     init : function(grid){
35910         this.grid = grid;
35911         this.initEvents();
35912     },
35913
35914     /**
35915      * Locks the selections.
35916      */
35917     lock : function(){
35918         this.locked = true;
35919     },
35920
35921     /**
35922      * Unlocks the selections.
35923      */
35924     unlock : function(){
35925         this.locked = false;
35926     },
35927
35928     /**
35929      * Returns true if the selections are locked.
35930      * @return {Boolean}
35931      */
35932     isLocked : function(){
35933         return this.locked;
35934     }
35935 });/*
35936  * Based on:
35937  * Ext JS Library 1.1.1
35938  * Copyright(c) 2006-2007, Ext JS, LLC.
35939  *
35940  * Originally Released Under LGPL - original licence link has changed is not relivant.
35941  *
35942  * Fork - LGPL
35943  * <script type="text/javascript">
35944  */
35945 /**
35946  * @extends Roo.grid.AbstractSelectionModel
35947  * @class Roo.grid.RowSelectionModel
35948  * The default SelectionModel used by {@link Roo.grid.Grid}.
35949  * It supports multiple selections and keyboard selection/navigation. 
35950  * @constructor
35951  * @param {Object} config
35952  */
35953 Roo.grid.RowSelectionModel = function(config){
35954     Roo.apply(this, config);
35955     this.selections = new Roo.util.MixedCollection(false, function(o){
35956         return o.id;
35957     });
35958
35959     this.last = false;
35960     this.lastActive = false;
35961
35962     this.addEvents({
35963         /**
35964              * @event selectionchange
35965              * Fires when the selection changes
35966              * @param {SelectionModel} this
35967              */
35968             "selectionchange" : true,
35969         /**
35970              * @event afterselectionchange
35971              * Fires after the selection changes (eg. by key press or clicking)
35972              * @param {SelectionModel} this
35973              */
35974             "afterselectionchange" : true,
35975         /**
35976              * @event beforerowselect
35977              * Fires when a row is selected being selected, return false to cancel.
35978              * @param {SelectionModel} this
35979              * @param {Number} rowIndex The selected index
35980              * @param {Boolean} keepExisting False if other selections will be cleared
35981              */
35982             "beforerowselect" : true,
35983         /**
35984              * @event rowselect
35985              * Fires when a row is selected.
35986              * @param {SelectionModel} this
35987              * @param {Number} rowIndex The selected index
35988              * @param {Roo.data.Record} r The record
35989              */
35990             "rowselect" : true,
35991         /**
35992              * @event rowdeselect
35993              * Fires when a row is deselected.
35994              * @param {SelectionModel} this
35995              * @param {Number} rowIndex The selected index
35996              */
35997         "rowdeselect" : true
35998     });
35999     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
36000     this.locked = false;
36001 };
36002
36003 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
36004     /**
36005      * @cfg {Boolean} singleSelect
36006      * True to allow selection of only one row at a time (defaults to false)
36007      */
36008     singleSelect : false,
36009
36010     // private
36011     initEvents : function(){
36012
36013         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
36014             this.grid.on("mousedown", this.handleMouseDown, this);
36015         }else{ // allow click to work like normal
36016             this.grid.on("rowclick", this.handleDragableRowClick, this);
36017         }
36018
36019         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
36020             "up" : function(e){
36021                 if(!e.shiftKey){
36022                     this.selectPrevious(e.shiftKey);
36023                 }else if(this.last !== false && this.lastActive !== false){
36024                     var last = this.last;
36025                     this.selectRange(this.last,  this.lastActive-1);
36026                     this.grid.getView().focusRow(this.lastActive);
36027                     if(last !== false){
36028                         this.last = last;
36029                     }
36030                 }else{
36031                     this.selectFirstRow();
36032                 }
36033                 this.fireEvent("afterselectionchange", this);
36034             },
36035             "down" : function(e){
36036                 if(!e.shiftKey){
36037                     this.selectNext(e.shiftKey);
36038                 }else if(this.last !== false && this.lastActive !== false){
36039                     var last = this.last;
36040                     this.selectRange(this.last,  this.lastActive+1);
36041                     this.grid.getView().focusRow(this.lastActive);
36042                     if(last !== false){
36043                         this.last = last;
36044                     }
36045                 }else{
36046                     this.selectFirstRow();
36047                 }
36048                 this.fireEvent("afterselectionchange", this);
36049             },
36050             scope: this
36051         });
36052
36053         var view = this.grid.view;
36054         view.on("refresh", this.onRefresh, this);
36055         view.on("rowupdated", this.onRowUpdated, this);
36056         view.on("rowremoved", this.onRemove, this);
36057     },
36058
36059     // private
36060     onRefresh : function(){
36061         var ds = this.grid.dataSource, i, v = this.grid.view;
36062         var s = this.selections;
36063         s.each(function(r){
36064             if((i = ds.indexOfId(r.id)) != -1){
36065                 v.onRowSelect(i);
36066                 s.add(ds.getAt(i)); // updating the selection relate data
36067             }else{
36068                 s.remove(r);
36069             }
36070         });
36071     },
36072
36073     // private
36074     onRemove : function(v, index, r){
36075         this.selections.remove(r);
36076     },
36077
36078     // private
36079     onRowUpdated : function(v, index, r){
36080         if(this.isSelected(r)){
36081             v.onRowSelect(index);
36082         }
36083     },
36084
36085     /**
36086      * Select records.
36087      * @param {Array} records The records to select
36088      * @param {Boolean} keepExisting (optional) True to keep existing selections
36089      */
36090     selectRecords : function(records, keepExisting){
36091         if(!keepExisting){
36092             this.clearSelections();
36093         }
36094         var ds = this.grid.dataSource;
36095         for(var i = 0, len = records.length; i < len; i++){
36096             this.selectRow(ds.indexOf(records[i]), true);
36097         }
36098     },
36099
36100     /**
36101      * Gets the number of selected rows.
36102      * @return {Number}
36103      */
36104     getCount : function(){
36105         return this.selections.length;
36106     },
36107
36108     /**
36109      * Selects the first row in the grid.
36110      */
36111     selectFirstRow : function(){
36112         this.selectRow(0);
36113     },
36114
36115     /**
36116      * Select the last row.
36117      * @param {Boolean} keepExisting (optional) True to keep existing selections
36118      */
36119     selectLastRow : function(keepExisting){
36120         this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
36121     },
36122
36123     /**
36124      * Selects the row immediately following the last selected row.
36125      * @param {Boolean} keepExisting (optional) True to keep existing selections
36126      */
36127     selectNext : function(keepExisting){
36128         if(this.last !== false && (this.last+1) < this.grid.dataSource.getCount()){
36129             this.selectRow(this.last+1, keepExisting);
36130             this.grid.getView().focusRow(this.last);
36131         }
36132     },
36133
36134     /**
36135      * Selects the row that precedes the last selected row.
36136      * @param {Boolean} keepExisting (optional) True to keep existing selections
36137      */
36138     selectPrevious : function(keepExisting){
36139         if(this.last){
36140             this.selectRow(this.last-1, keepExisting);
36141             this.grid.getView().focusRow(this.last);
36142         }
36143     },
36144
36145     /**
36146      * Returns the selected records
36147      * @return {Array} Array of selected records
36148      */
36149     getSelections : function(){
36150         return [].concat(this.selections.items);
36151     },
36152
36153     /**
36154      * Returns the first selected record.
36155      * @return {Record}
36156      */
36157     getSelected : function(){
36158         return this.selections.itemAt(0);
36159     },
36160
36161
36162     /**
36163      * Clears all selections.
36164      */
36165     clearSelections : function(fast){
36166         if(this.locked) {
36167             return;
36168         }
36169         if(fast !== true){
36170             var ds = this.grid.dataSource;
36171             var s = this.selections;
36172             s.each(function(r){
36173                 this.deselectRow(ds.indexOfId(r.id));
36174             }, this);
36175             s.clear();
36176         }else{
36177             this.selections.clear();
36178         }
36179         this.last = false;
36180     },
36181
36182
36183     /**
36184      * Selects all rows.
36185      */
36186     selectAll : function(){
36187         if(this.locked) {
36188             return;
36189         }
36190         this.selections.clear();
36191         for(var i = 0, len = this.grid.dataSource.getCount(); i < len; i++){
36192             this.selectRow(i, true);
36193         }
36194     },
36195
36196     /**
36197      * Returns True if there is a selection.
36198      * @return {Boolean}
36199      */
36200     hasSelection : function(){
36201         return this.selections.length > 0;
36202     },
36203
36204     /**
36205      * Returns True if the specified row is selected.
36206      * @param {Number/Record} record The record or index of the record to check
36207      * @return {Boolean}
36208      */
36209     isSelected : function(index){
36210         var r = typeof index == "number" ? this.grid.dataSource.getAt(index) : index;
36211         return (r && this.selections.key(r.id) ? true : false);
36212     },
36213
36214     /**
36215      * Returns True if the specified record id is selected.
36216      * @param {String} id The id of record to check
36217      * @return {Boolean}
36218      */
36219     isIdSelected : function(id){
36220         return (this.selections.key(id) ? true : false);
36221     },
36222
36223     // private
36224     handleMouseDown : function(e, t){
36225         var view = this.grid.getView(), rowIndex;
36226         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
36227             return;
36228         };
36229         if(e.shiftKey && this.last !== false){
36230             var last = this.last;
36231             this.selectRange(last, rowIndex, e.ctrlKey);
36232             this.last = last; // reset the last
36233             view.focusRow(rowIndex);
36234         }else{
36235             var isSelected = this.isSelected(rowIndex);
36236             if(e.button !== 0 && isSelected){
36237                 view.focusRow(rowIndex);
36238             }else if(e.ctrlKey && isSelected){
36239                 this.deselectRow(rowIndex);
36240             }else if(!isSelected){
36241                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
36242                 view.focusRow(rowIndex);
36243             }
36244         }
36245         this.fireEvent("afterselectionchange", this);
36246     },
36247     // private
36248     handleDragableRowClick :  function(grid, rowIndex, e) 
36249     {
36250         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
36251             this.selectRow(rowIndex, false);
36252             grid.view.focusRow(rowIndex);
36253              this.fireEvent("afterselectionchange", this);
36254         }
36255     },
36256     
36257     /**
36258      * Selects multiple rows.
36259      * @param {Array} rows Array of the indexes of the row to select
36260      * @param {Boolean} keepExisting (optional) True to keep existing selections
36261      */
36262     selectRows : function(rows, keepExisting){
36263         if(!keepExisting){
36264             this.clearSelections();
36265         }
36266         for(var i = 0, len = rows.length; i < len; i++){
36267             this.selectRow(rows[i], true);
36268         }
36269     },
36270
36271     /**
36272      * Selects a range of rows. All rows in between startRow and endRow are also selected.
36273      * @param {Number} startRow The index of the first row in the range
36274      * @param {Number} endRow The index of the last row in the range
36275      * @param {Boolean} keepExisting (optional) True to retain existing selections
36276      */
36277     selectRange : function(startRow, endRow, keepExisting){
36278         if(this.locked) {
36279             return;
36280         }
36281         if(!keepExisting){
36282             this.clearSelections();
36283         }
36284         if(startRow <= endRow){
36285             for(var i = startRow; i <= endRow; i++){
36286                 this.selectRow(i, true);
36287             }
36288         }else{
36289             for(var i = startRow; i >= endRow; i--){
36290                 this.selectRow(i, true);
36291             }
36292         }
36293     },
36294
36295     /**
36296      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
36297      * @param {Number} startRow The index of the first row in the range
36298      * @param {Number} endRow The index of the last row in the range
36299      */
36300     deselectRange : function(startRow, endRow, preventViewNotify){
36301         if(this.locked) {
36302             return;
36303         }
36304         for(var i = startRow; i <= endRow; i++){
36305             this.deselectRow(i, preventViewNotify);
36306         }
36307     },
36308
36309     /**
36310      * Selects a row.
36311      * @param {Number} row The index of the row to select
36312      * @param {Boolean} keepExisting (optional) True to keep existing selections
36313      */
36314     selectRow : function(index, keepExisting, preventViewNotify){
36315         if(this.locked || (index < 0 || index >= this.grid.dataSource.getCount())) {
36316             return;
36317         }
36318         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
36319             if(!keepExisting || this.singleSelect){
36320                 this.clearSelections();
36321             }
36322             var r = this.grid.dataSource.getAt(index);
36323             this.selections.add(r);
36324             this.last = this.lastActive = index;
36325             if(!preventViewNotify){
36326                 this.grid.getView().onRowSelect(index);
36327             }
36328             this.fireEvent("rowselect", this, index, r);
36329             this.fireEvent("selectionchange", this);
36330         }
36331     },
36332
36333     /**
36334      * Deselects a row.
36335      * @param {Number} row The index of the row to deselect
36336      */
36337     deselectRow : function(index, preventViewNotify){
36338         if(this.locked) {
36339             return;
36340         }
36341         if(this.last == index){
36342             this.last = false;
36343         }
36344         if(this.lastActive == index){
36345             this.lastActive = false;
36346         }
36347         var r = this.grid.dataSource.getAt(index);
36348         this.selections.remove(r);
36349         if(!preventViewNotify){
36350             this.grid.getView().onRowDeselect(index);
36351         }
36352         this.fireEvent("rowdeselect", this, index);
36353         this.fireEvent("selectionchange", this);
36354     },
36355
36356     // private
36357     restoreLast : function(){
36358         if(this._last){
36359             this.last = this._last;
36360         }
36361     },
36362
36363     // private
36364     acceptsNav : function(row, col, cm){
36365         return !cm.isHidden(col) && cm.isCellEditable(col, row);
36366     },
36367
36368     // private
36369     onEditorKey : function(field, e){
36370         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
36371         if(k == e.TAB){
36372             e.stopEvent();
36373             ed.completeEdit();
36374             if(e.shiftKey){
36375                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
36376             }else{
36377                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
36378             }
36379         }else if(k == e.ENTER && !e.ctrlKey){
36380             e.stopEvent();
36381             ed.completeEdit();
36382             if(e.shiftKey){
36383                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
36384             }else{
36385                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
36386             }
36387         }else if(k == e.ESC){
36388             ed.cancelEdit();
36389         }
36390         if(newCell){
36391             g.startEditing(newCell[0], newCell[1]);
36392         }
36393     }
36394 });/*
36395  * Based on:
36396  * Ext JS Library 1.1.1
36397  * Copyright(c) 2006-2007, Ext JS, LLC.
36398  *
36399  * Originally Released Under LGPL - original licence link has changed is not relivant.
36400  *
36401  * Fork - LGPL
36402  * <script type="text/javascript">
36403  */
36404 /**
36405  * @class Roo.grid.CellSelectionModel
36406  * @extends Roo.grid.AbstractSelectionModel
36407  * This class provides the basic implementation for cell selection in a grid.
36408  * @constructor
36409  * @param {Object} config The object containing the configuration of this model.
36410  * @cfg {Boolean} enter_is_tab Enter behaves the same as tab. (eg. goes to next cell) default: false
36411  */
36412 Roo.grid.CellSelectionModel = function(config){
36413     Roo.apply(this, config);
36414
36415     this.selection = null;
36416
36417     this.addEvents({
36418         /**
36419              * @event beforerowselect
36420              * Fires before a cell is selected.
36421              * @param {SelectionModel} this
36422              * @param {Number} rowIndex The selected row index
36423              * @param {Number} colIndex The selected cell index
36424              */
36425             "beforecellselect" : true,
36426         /**
36427              * @event cellselect
36428              * Fires when a cell is selected.
36429              * @param {SelectionModel} this
36430              * @param {Number} rowIndex The selected row index
36431              * @param {Number} colIndex The selected cell index
36432              */
36433             "cellselect" : true,
36434         /**
36435              * @event selectionchange
36436              * Fires when the active selection changes.
36437              * @param {SelectionModel} this
36438              * @param {Object} selection null for no selection or an object (o) with two properties
36439                 <ul>
36440                 <li>o.record: the record object for the row the selection is in</li>
36441                 <li>o.cell: An array of [rowIndex, columnIndex]</li>
36442                 </ul>
36443              */
36444             "selectionchange" : true,
36445         /**
36446              * @event tabend
36447              * Fires when the tab (or enter) was pressed on the last editable cell
36448              * You can use this to trigger add new row.
36449              * @param {SelectionModel} this
36450              */
36451             "tabend" : true,
36452          /**
36453              * @event beforeeditnext
36454              * Fires before the next editable sell is made active
36455              * You can use this to skip to another cell or fire the tabend
36456              *    if you set cell to false
36457              * @param {Object} eventdata object : { cell : [ row, col ] } 
36458              */
36459             "beforeeditnext" : true
36460     });
36461     Roo.grid.CellSelectionModel.superclass.constructor.call(this);
36462 };
36463
36464 Roo.extend(Roo.grid.CellSelectionModel, Roo.grid.AbstractSelectionModel,  {
36465     
36466     enter_is_tab: false,
36467
36468     /** @ignore */
36469     initEvents : function(){
36470         this.grid.on("mousedown", this.handleMouseDown, this);
36471         this.grid.getGridEl().on(Roo.isIE ? "keydown" : "keypress", this.handleKeyDown, this);
36472         var view = this.grid.view;
36473         view.on("refresh", this.onViewChange, this);
36474         view.on("rowupdated", this.onRowUpdated, this);
36475         view.on("beforerowremoved", this.clearSelections, this);
36476         view.on("beforerowsinserted", this.clearSelections, this);
36477         if(this.grid.isEditor){
36478             this.grid.on("beforeedit", this.beforeEdit,  this);
36479         }
36480     },
36481
36482         //private
36483     beforeEdit : function(e){
36484         this.select(e.row, e.column, false, true, e.record);
36485     },
36486
36487         //private
36488     onRowUpdated : function(v, index, r){
36489         if(this.selection && this.selection.record == r){
36490             v.onCellSelect(index, this.selection.cell[1]);
36491         }
36492     },
36493
36494         //private
36495     onViewChange : function(){
36496         this.clearSelections(true);
36497     },
36498
36499         /**
36500          * Returns the currently selected cell,.
36501          * @return {Array} The selected cell (row, column) or null if none selected.
36502          */
36503     getSelectedCell : function(){
36504         return this.selection ? this.selection.cell : null;
36505     },
36506
36507     /**
36508      * Clears all selections.
36509      * @param {Boolean} true to prevent the gridview from being notified about the change.
36510      */
36511     clearSelections : function(preventNotify){
36512         var s = this.selection;
36513         if(s){
36514             if(preventNotify !== true){
36515                 this.grid.view.onCellDeselect(s.cell[0], s.cell[1]);
36516             }
36517             this.selection = null;
36518             this.fireEvent("selectionchange", this, null);
36519         }
36520     },
36521
36522     /**
36523      * Returns true if there is a selection.
36524      * @return {Boolean}
36525      */
36526     hasSelection : function(){
36527         return this.selection ? true : false;
36528     },
36529
36530     /** @ignore */
36531     handleMouseDown : function(e, t){
36532         var v = this.grid.getView();
36533         if(this.isLocked()){
36534             return;
36535         };
36536         var row = v.findRowIndex(t);
36537         var cell = v.findCellIndex(t);
36538         if(row !== false && cell !== false){
36539             this.select(row, cell);
36540         }
36541     },
36542
36543     /**
36544      * Selects a cell.
36545      * @param {Number} rowIndex
36546      * @param {Number} collIndex
36547      */
36548     select : function(rowIndex, colIndex, preventViewNotify, preventFocus, /*internal*/ r){
36549         if(this.fireEvent("beforecellselect", this, rowIndex, colIndex) !== false){
36550             this.clearSelections();
36551             r = r || this.grid.dataSource.getAt(rowIndex);
36552             this.selection = {
36553                 record : r,
36554                 cell : [rowIndex, colIndex]
36555             };
36556             if(!preventViewNotify){
36557                 var v = this.grid.getView();
36558                 v.onCellSelect(rowIndex, colIndex);
36559                 if(preventFocus !== true){
36560                     v.focusCell(rowIndex, colIndex);
36561                 }
36562             }
36563             this.fireEvent("cellselect", this, rowIndex, colIndex);
36564             this.fireEvent("selectionchange", this, this.selection);
36565         }
36566     },
36567
36568         //private
36569     isSelectable : function(rowIndex, colIndex, cm){
36570         return !cm.isHidden(colIndex);
36571     },
36572
36573     /** @ignore */
36574     handleKeyDown : function(e){
36575         //Roo.log('Cell Sel Model handleKeyDown');
36576         if(!e.isNavKeyPress()){
36577             return;
36578         }
36579         var g = this.grid, s = this.selection;
36580         if(!s){
36581             e.stopEvent();
36582             var cell = g.walkCells(0, 0, 1, this.isSelectable,  this);
36583             if(cell){
36584                 this.select(cell[0], cell[1]);
36585             }
36586             return;
36587         }
36588         var sm = this;
36589         var walk = function(row, col, step){
36590             return g.walkCells(row, col, step, sm.isSelectable,  sm);
36591         };
36592         var k = e.getKey(), r = s.cell[0], c = s.cell[1];
36593         var newCell;
36594
36595       
36596
36597         switch(k){
36598             case e.TAB:
36599                 // handled by onEditorKey
36600                 if (g.isEditor && g.editing) {
36601                     return;
36602                 }
36603                 if(e.shiftKey) {
36604                     newCell = walk(r, c-1, -1);
36605                 } else {
36606                     newCell = walk(r, c+1, 1);
36607                 }
36608                 break;
36609             
36610             case e.DOWN:
36611                newCell = walk(r+1, c, 1);
36612                 break;
36613             
36614             case e.UP:
36615                 newCell = walk(r-1, c, -1);
36616                 break;
36617             
36618             case e.RIGHT:
36619                 newCell = walk(r, c+1, 1);
36620                 break;
36621             
36622             case e.LEFT:
36623                 newCell = walk(r, c-1, -1);
36624                 break;
36625             
36626             case e.ENTER:
36627                 
36628                 if(g.isEditor && !g.editing){
36629                    g.startEditing(r, c);
36630                    e.stopEvent();
36631                    return;
36632                 }
36633                 
36634                 
36635              break;
36636         };
36637         if(newCell){
36638             this.select(newCell[0], newCell[1]);
36639             e.stopEvent();
36640             
36641         }
36642     },
36643
36644     acceptsNav : function(row, col, cm){
36645         return !cm.isHidden(col) && cm.isCellEditable(col, row);
36646     },
36647     /**
36648      * Selects a cell.
36649      * @param {Number} field (not used) - as it's normally used as a listener
36650      * @param {Number} e - event - fake it by using
36651      *
36652      * var e = Roo.EventObjectImpl.prototype;
36653      * e.keyCode = e.TAB
36654      *
36655      * 
36656      */
36657     onEditorKey : function(field, e){
36658         
36659         var k = e.getKey(),
36660             newCell,
36661             g = this.grid,
36662             ed = g.activeEditor,
36663             forward = false;
36664         ///Roo.log('onEditorKey' + k);
36665         
36666         
36667         if (this.enter_is_tab && k == e.ENTER) {
36668             k = e.TAB;
36669         }
36670         
36671         if(k == e.TAB){
36672             if(e.shiftKey){
36673                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
36674             }else{
36675                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
36676                 forward = true;
36677             }
36678             
36679             e.stopEvent();
36680             
36681         } else if(k == e.ENTER &&  !e.ctrlKey){
36682             ed.completeEdit();
36683             e.stopEvent();
36684             newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
36685         
36686                 } else if(k == e.ESC){
36687             ed.cancelEdit();
36688         }
36689                 
36690         if (newCell) {
36691             var ecall = { cell : newCell, forward : forward };
36692             this.fireEvent('beforeeditnext', ecall );
36693             newCell = ecall.cell;
36694                         forward = ecall.forward;
36695         }
36696                 
36697         if(newCell){
36698             //Roo.log('next cell after edit');
36699             g.startEditing.defer(100, g, [newCell[0], newCell[1]]);
36700         } else if (forward) {
36701             // tabbed past last
36702             this.fireEvent.defer(100, this, ['tabend',this]);
36703         }
36704     }
36705 });/*
36706  * Based on:
36707  * Ext JS Library 1.1.1
36708  * Copyright(c) 2006-2007, Ext JS, LLC.
36709  *
36710  * Originally Released Under LGPL - original licence link has changed is not relivant.
36711  *
36712  * Fork - LGPL
36713  * <script type="text/javascript">
36714  */
36715  
36716 /**
36717  * @class Roo.grid.EditorGrid
36718  * @extends Roo.grid.Grid
36719  * Class for creating and editable grid.
36720  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered - 
36721  * The container MUST have some type of size defined for the grid to fill. The container will be 
36722  * automatically set to position relative if it isn't already.
36723  * @param {Object} dataSource The data model to bind to
36724  * @param {Object} colModel The column model with info about this grid's columns
36725  */
36726 Roo.grid.EditorGrid = function(container, config){
36727     Roo.grid.EditorGrid.superclass.constructor.call(this, container, config);
36728     this.getGridEl().addClass("xedit-grid");
36729
36730     if(!this.selModel){
36731         this.selModel = new Roo.grid.CellSelectionModel();
36732     }
36733
36734     this.activeEditor = null;
36735
36736         this.addEvents({
36737             /**
36738              * @event beforeedit
36739              * Fires before cell editing is triggered. The edit event object has the following properties <br />
36740              * <ul style="padding:5px;padding-left:16px;">
36741              * <li>grid - This grid</li>
36742              * <li>record - The record being edited</li>
36743              * <li>field - The field name being edited</li>
36744              * <li>value - The value for the field being edited.</li>
36745              * <li>row - The grid row index</li>
36746              * <li>column - The grid column index</li>
36747              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
36748              * </ul>
36749              * @param {Object} e An edit event (see above for description)
36750              */
36751             "beforeedit" : true,
36752             /**
36753              * @event afteredit
36754              * Fires after a cell is edited. <br />
36755              * <ul style="padding:5px;padding-left:16px;">
36756              * <li>grid - This grid</li>
36757              * <li>record - The record being edited</li>
36758              * <li>field - The field name being edited</li>
36759              * <li>value - The value being set</li>
36760              * <li>originalValue - The original value for the field, before the edit.</li>
36761              * <li>row - The grid row index</li>
36762              * <li>column - The grid column index</li>
36763              * </ul>
36764              * @param {Object} e An edit event (see above for description)
36765              */
36766             "afteredit" : true,
36767             /**
36768              * @event validateedit
36769              * Fires after a cell is edited, but before the value is set in the record. 
36770          * You can use this to modify the value being set in the field, Return false
36771              * to cancel the change. The edit event object has the following properties <br />
36772              * <ul style="padding:5px;padding-left:16px;">
36773          * <li>editor - This editor</li>
36774              * <li>grid - This grid</li>
36775              * <li>record - The record being edited</li>
36776              * <li>field - The field name being edited</li>
36777              * <li>value - The value being set</li>
36778              * <li>originalValue - The original value for the field, before the edit.</li>
36779              * <li>row - The grid row index</li>
36780              * <li>column - The grid column index</li>
36781              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
36782              * </ul>
36783              * @param {Object} e An edit event (see above for description)
36784              */
36785             "validateedit" : true
36786         });
36787     this.on("bodyscroll", this.stopEditing,  this);
36788     this.on(this.clicksToEdit == 1 ? "cellclick" : "celldblclick", this.onCellDblClick,  this);
36789 };
36790
36791 Roo.extend(Roo.grid.EditorGrid, Roo.grid.Grid, {
36792     /**
36793      * @cfg {Number} clicksToEdit
36794      * The number of clicks on a cell required to display the cell's editor (defaults to 2)
36795      */
36796     clicksToEdit: 2,
36797
36798     // private
36799     isEditor : true,
36800     // private
36801     trackMouseOver: false, // causes very odd FF errors
36802
36803     onCellDblClick : function(g, row, col){
36804         this.startEditing(row, col);
36805     },
36806
36807     onEditComplete : function(ed, value, startValue){
36808         this.editing = false;
36809         this.activeEditor = null;
36810         ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
36811         var r = ed.record;
36812         var field = this.colModel.getDataIndex(ed.col);
36813         var e = {
36814             grid: this,
36815             record: r,
36816             field: field,
36817             originalValue: startValue,
36818             value: value,
36819             row: ed.row,
36820             column: ed.col,
36821             cancel:false,
36822             editor: ed
36823         };
36824         var cell = Roo.get(this.view.getCell(ed.row,ed.col));
36825         cell.show();
36826           
36827         if(String(value) !== String(startValue)){
36828             
36829             if(this.fireEvent("validateedit", e) !== false && !e.cancel){
36830                 r.set(field, e.value);
36831                 // if we are dealing with a combo box..
36832                 // then we also set the 'name' colum to be the displayField
36833                 if (ed.field.displayField && ed.field.name) {
36834                     r.set(ed.field.name, ed.field.el.dom.value);
36835                 }
36836                 
36837                 delete e.cancel; //?? why!!!
36838                 this.fireEvent("afteredit", e);
36839             }
36840         } else {
36841             this.fireEvent("afteredit", e); // always fire it!
36842         }
36843         this.view.focusCell(ed.row, ed.col);
36844     },
36845
36846     /**
36847      * Starts editing the specified for the specified row/column
36848      * @param {Number} rowIndex
36849      * @param {Number} colIndex
36850      */
36851     startEditing : function(row, col){
36852         this.stopEditing();
36853         if(this.colModel.isCellEditable(col, row)){
36854             this.view.ensureVisible(row, col, true);
36855           
36856             var r = this.dataSource.getAt(row);
36857             var field = this.colModel.getDataIndex(col);
36858             var cell = Roo.get(this.view.getCell(row,col));
36859             var e = {
36860                 grid: this,
36861                 record: r,
36862                 field: field,
36863                 value: r.data[field],
36864                 row: row,
36865                 column: col,
36866                 cancel:false 
36867             };
36868             if(this.fireEvent("beforeedit", e) !== false && !e.cancel){
36869                 this.editing = true;
36870                 var ed = this.colModel.getCellEditor(col, row);
36871                 
36872                 if (!ed) {
36873                     return;
36874                 }
36875                 if(!ed.rendered){
36876                     ed.render(ed.parentEl || document.body);
36877                 }
36878                 ed.field.reset();
36879                
36880                 cell.hide();
36881                 
36882                 (function(){ // complex but required for focus issues in safari, ie and opera
36883                     ed.row = row;
36884                     ed.col = col;
36885                     ed.record = r;
36886                     ed.on("complete",   this.onEditComplete,        this,       {single: true});
36887                     ed.on("specialkey", this.selModel.onEditorKey,  this.selModel);
36888                     this.activeEditor = ed;
36889                     var v = r.data[field];
36890                     ed.startEdit(this.view.getCell(row, col), v);
36891                     // combo's with 'displayField and name set
36892                     if (ed.field.displayField && ed.field.name) {
36893                         ed.field.el.dom.value = r.data[ed.field.name];
36894                     }
36895                     
36896                     
36897                 }).defer(50, this);
36898             }
36899         }
36900     },
36901         
36902     /**
36903      * Stops any active editing
36904      */
36905     stopEditing : function(){
36906         if(this.activeEditor){
36907             this.activeEditor.completeEdit();
36908         }
36909         this.activeEditor = null;
36910     },
36911         
36912          /**
36913      * Called to get grid's drag proxy text, by default returns this.ddText.
36914      * @return {String}
36915      */
36916     getDragDropText : function(){
36917         var count = this.selModel.getSelectedCell() ? 1 : 0;
36918         return String.format(this.ddText, count, count == 1 ? '' : 's');
36919     }
36920         
36921 });/*
36922  * Based on:
36923  * Ext JS Library 1.1.1
36924  * Copyright(c) 2006-2007, Ext JS, LLC.
36925  *
36926  * Originally Released Under LGPL - original licence link has changed is not relivant.
36927  *
36928  * Fork - LGPL
36929  * <script type="text/javascript">
36930  */
36931
36932 // private - not really -- you end up using it !
36933 // This is a support class used internally by the Grid components
36934
36935 /**
36936  * @class Roo.grid.GridEditor
36937  * @extends Roo.Editor
36938  * Class for creating and editable grid elements.
36939  * @param {Object} config any settings (must include field)
36940  */
36941 Roo.grid.GridEditor = function(field, config){
36942     if (!config && field.field) {
36943         config = field;
36944         field = Roo.factory(config.field, Roo.form);
36945     }
36946     Roo.grid.GridEditor.superclass.constructor.call(this, field, config);
36947     field.monitorTab = false;
36948 };
36949
36950 Roo.extend(Roo.grid.GridEditor, Roo.Editor, {
36951     
36952     /**
36953      * @cfg {Roo.form.Field} field Field to wrap (or xtyped)
36954      */
36955     
36956     alignment: "tl-tl",
36957     autoSize: "width",
36958     hideEl : false,
36959     cls: "x-small-editor x-grid-editor",
36960     shim:false,
36961     shadow:"frame"
36962 });/*
36963  * Based on:
36964  * Ext JS Library 1.1.1
36965  * Copyright(c) 2006-2007, Ext JS, LLC.
36966  *
36967  * Originally Released Under LGPL - original licence link has changed is not relivant.
36968  *
36969  * Fork - LGPL
36970  * <script type="text/javascript">
36971  */
36972   
36973
36974   
36975 Roo.grid.PropertyRecord = Roo.data.Record.create([
36976     {name:'name',type:'string'},  'value'
36977 ]);
36978
36979
36980 Roo.grid.PropertyStore = function(grid, source){
36981     this.grid = grid;
36982     this.store = new Roo.data.Store({
36983         recordType : Roo.grid.PropertyRecord
36984     });
36985     this.store.on('update', this.onUpdate,  this);
36986     if(source){
36987         this.setSource(source);
36988     }
36989     Roo.grid.PropertyStore.superclass.constructor.call(this);
36990 };
36991
36992
36993
36994 Roo.extend(Roo.grid.PropertyStore, Roo.util.Observable, {
36995     setSource : function(o){
36996         this.source = o;
36997         this.store.removeAll();
36998         var data = [];
36999         for(var k in o){
37000             if(this.isEditableValue(o[k])){
37001                 data.push(new Roo.grid.PropertyRecord({name: k, value: o[k]}, k));
37002             }
37003         }
37004         this.store.loadRecords({records: data}, {}, true);
37005     },
37006
37007     onUpdate : function(ds, record, type){
37008         if(type == Roo.data.Record.EDIT){
37009             var v = record.data['value'];
37010             var oldValue = record.modified['value'];
37011             if(this.grid.fireEvent('beforepropertychange', this.source, record.id, v, oldValue) !== false){
37012                 this.source[record.id] = v;
37013                 record.commit();
37014                 this.grid.fireEvent('propertychange', this.source, record.id, v, oldValue);
37015             }else{
37016                 record.reject();
37017             }
37018         }
37019     },
37020
37021     getProperty : function(row){
37022        return this.store.getAt(row);
37023     },
37024
37025     isEditableValue: function(val){
37026         if(val && val instanceof Date){
37027             return true;
37028         }else if(typeof val == 'object' || typeof val == 'function'){
37029             return false;
37030         }
37031         return true;
37032     },
37033
37034     setValue : function(prop, value){
37035         this.source[prop] = value;
37036         this.store.getById(prop).set('value', value);
37037     },
37038
37039     getSource : function(){
37040         return this.source;
37041     }
37042 });
37043
37044 Roo.grid.PropertyColumnModel = function(grid, store){
37045     this.grid = grid;
37046     var g = Roo.grid;
37047     g.PropertyColumnModel.superclass.constructor.call(this, [
37048         {header: this.nameText, sortable: true, dataIndex:'name', id: 'name'},
37049         {header: this.valueText, resizable:false, dataIndex: 'value', id: 'value'}
37050     ]);
37051     this.store = store;
37052     this.bselect = Roo.DomHelper.append(document.body, {
37053         tag: 'select', style:'display:none', cls: 'x-grid-editor', children: [
37054             {tag: 'option', value: 'true', html: 'true'},
37055             {tag: 'option', value: 'false', html: 'false'}
37056         ]
37057     });
37058     Roo.id(this.bselect);
37059     var f = Roo.form;
37060     this.editors = {
37061         'date' : new g.GridEditor(new f.DateField({selectOnFocus:true})),
37062         'string' : new g.GridEditor(new f.TextField({selectOnFocus:true})),
37063         'number' : new g.GridEditor(new f.NumberField({selectOnFocus:true, style:'text-align:left;'})),
37064         'int' : new g.GridEditor(new f.NumberField({selectOnFocus:true, allowDecimals:false, style:'text-align:left;'})),
37065         'boolean' : new g.GridEditor(new f.Field({el:this.bselect,selectOnFocus:true}))
37066     };
37067     this.renderCellDelegate = this.renderCell.createDelegate(this);
37068     this.renderPropDelegate = this.renderProp.createDelegate(this);
37069 };
37070
37071 Roo.extend(Roo.grid.PropertyColumnModel, Roo.grid.ColumnModel, {
37072     
37073     
37074     nameText : 'Name',
37075     valueText : 'Value',
37076     
37077     dateFormat : 'm/j/Y',
37078     
37079     
37080     renderDate : function(dateVal){
37081         return dateVal.dateFormat(this.dateFormat);
37082     },
37083
37084     renderBool : function(bVal){
37085         return bVal ? 'true' : 'false';
37086     },
37087
37088     isCellEditable : function(colIndex, rowIndex){
37089         return colIndex == 1;
37090     },
37091
37092     getRenderer : function(col){
37093         return col == 1 ?
37094             this.renderCellDelegate : this.renderPropDelegate;
37095     },
37096
37097     renderProp : function(v){
37098         return this.getPropertyName(v);
37099     },
37100
37101     renderCell : function(val){
37102         var rv = val;
37103         if(val instanceof Date){
37104             rv = this.renderDate(val);
37105         }else if(typeof val == 'boolean'){
37106             rv = this.renderBool(val);
37107         }
37108         return Roo.util.Format.htmlEncode(rv);
37109     },
37110
37111     getPropertyName : function(name){
37112         var pn = this.grid.propertyNames;
37113         return pn && pn[name] ? pn[name] : name;
37114     },
37115
37116     getCellEditor : function(colIndex, rowIndex){
37117         var p = this.store.getProperty(rowIndex);
37118         var n = p.data['name'], val = p.data['value'];
37119         
37120         if(typeof(this.grid.customEditors[n]) == 'string'){
37121             return this.editors[this.grid.customEditors[n]];
37122         }
37123         if(typeof(this.grid.customEditors[n]) != 'undefined'){
37124             return this.grid.customEditors[n];
37125         }
37126         if(val instanceof Date){
37127             return this.editors['date'];
37128         }else if(typeof val == 'number'){
37129             return this.editors['number'];
37130         }else if(typeof val == 'boolean'){
37131             return this.editors['boolean'];
37132         }else{
37133             return this.editors['string'];
37134         }
37135     }
37136 });
37137
37138 /**
37139  * @class Roo.grid.PropertyGrid
37140  * @extends Roo.grid.EditorGrid
37141  * This class represents the  interface of a component based property grid control.
37142  * <br><br>Usage:<pre><code>
37143  var grid = new Roo.grid.PropertyGrid("my-container-id", {
37144       
37145  });
37146  // set any options
37147  grid.render();
37148  * </code></pre>
37149   
37150  * @constructor
37151  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
37152  * The container MUST have some type of size defined for the grid to fill. The container will be
37153  * automatically set to position relative if it isn't already.
37154  * @param {Object} config A config object that sets properties on this grid.
37155  */
37156 Roo.grid.PropertyGrid = function(container, config){
37157     config = config || {};
37158     var store = new Roo.grid.PropertyStore(this);
37159     this.store = store;
37160     var cm = new Roo.grid.PropertyColumnModel(this, store);
37161     store.store.sort('name', 'ASC');
37162     Roo.grid.PropertyGrid.superclass.constructor.call(this, container, Roo.apply({
37163         ds: store.store,
37164         cm: cm,
37165         enableColLock:false,
37166         enableColumnMove:false,
37167         stripeRows:false,
37168         trackMouseOver: false,
37169         clicksToEdit:1
37170     }, config));
37171     this.getGridEl().addClass('x-props-grid');
37172     this.lastEditRow = null;
37173     this.on('columnresize', this.onColumnResize, this);
37174     this.addEvents({
37175          /**
37176              * @event beforepropertychange
37177              * Fires before a property changes (return false to stop?)
37178              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
37179              * @param {String} id Record Id
37180              * @param {String} newval New Value
37181          * @param {String} oldval Old Value
37182              */
37183         "beforepropertychange": true,
37184         /**
37185              * @event propertychange
37186              * Fires after a property changes
37187              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
37188              * @param {String} id Record Id
37189              * @param {String} newval New Value
37190          * @param {String} oldval Old Value
37191              */
37192         "propertychange": true
37193     });
37194     this.customEditors = this.customEditors || {};
37195 };
37196 Roo.extend(Roo.grid.PropertyGrid, Roo.grid.EditorGrid, {
37197     
37198      /**
37199      * @cfg {Object} customEditors map of colnames=> custom editors.
37200      * the custom editor can be one of the standard ones (date|string|number|int|boolean), or a
37201      * grid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),
37202      * false disables editing of the field.
37203          */
37204     
37205       /**
37206      * @cfg {Object} propertyNames map of property Names to their displayed value
37207          */
37208     
37209     render : function(){
37210         Roo.grid.PropertyGrid.superclass.render.call(this);
37211         this.autoSize.defer(100, this);
37212     },
37213
37214     autoSize : function(){
37215         Roo.grid.PropertyGrid.superclass.autoSize.call(this);
37216         if(this.view){
37217             this.view.fitColumns();
37218         }
37219     },
37220
37221     onColumnResize : function(){
37222         this.colModel.setColumnWidth(1, this.container.getWidth(true)-this.colModel.getColumnWidth(0));
37223         this.autoSize();
37224     },
37225     /**
37226      * Sets the data for the Grid
37227      * accepts a Key => Value object of all the elements avaiable.
37228      * @param {Object} data  to appear in grid.
37229      */
37230     setSource : function(source){
37231         this.store.setSource(source);
37232         //this.autoSize();
37233     },
37234     /**
37235      * Gets all the data from the grid.
37236      * @return {Object} data  data stored in grid
37237      */
37238     getSource : function(){
37239         return this.store.getSource();
37240     }
37241 });/*
37242   
37243  * Licence LGPL
37244  
37245  */
37246  
37247 /**
37248  * @class Roo.grid.Calendar
37249  * @extends Roo.util.Grid
37250  * This class extends the Grid to provide a calendar widget
37251  * <br><br>Usage:<pre><code>
37252  var grid = new Roo.grid.Calendar("my-container-id", {
37253      ds: myDataStore,
37254      cm: myColModel,
37255      selModel: mySelectionModel,
37256      autoSizeColumns: true,
37257      monitorWindowResize: false,
37258      trackMouseOver: true
37259      eventstore : real data store..
37260  });
37261  // set any options
37262  grid.render();
37263   
37264   * @constructor
37265  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
37266  * The container MUST have some type of size defined for the grid to fill. The container will be
37267  * automatically set to position relative if it isn't already.
37268  * @param {Object} config A config object that sets properties on this grid.
37269  */
37270 Roo.grid.Calendar = function(container, config){
37271         // initialize the container
37272         this.container = Roo.get(container);
37273         this.container.update("");
37274         this.container.setStyle("overflow", "hidden");
37275     this.container.addClass('x-grid-container');
37276
37277     this.id = this.container.id;
37278
37279     Roo.apply(this, config);
37280     // check and correct shorthanded configs
37281     
37282     var rows = [];
37283     var d =1;
37284     for (var r = 0;r < 6;r++) {
37285         
37286         rows[r]=[];
37287         for (var c =0;c < 7;c++) {
37288             rows[r][c]= '';
37289         }
37290     }
37291     if (this.eventStore) {
37292         this.eventStore= Roo.factory(this.eventStore, Roo.data);
37293         this.eventStore.on('load',this.onLoad, this);
37294         this.eventStore.on('beforeload',this.clearEvents, this);
37295          
37296     }
37297     
37298     this.dataSource = new Roo.data.Store({
37299             proxy: new Roo.data.MemoryProxy(rows),
37300             reader: new Roo.data.ArrayReader({}, [
37301                    'weekday0', 'weekday1', 'weekday2', 'weekday3', 'weekday4', 'weekday5', 'weekday6' ])
37302     });
37303
37304     this.dataSource.load();
37305     this.ds = this.dataSource;
37306     this.ds.xmodule = this.xmodule || false;
37307     
37308     
37309     var cellRender = function(v,x,r)
37310     {
37311         return String.format(
37312             '<div class="fc-day  fc-widget-content"><div>' +
37313                 '<div class="fc-event-container"></div>' +
37314                 '<div class="fc-day-number">{0}</div>'+
37315                 
37316                 '<div class="fc-day-content"><div style="position:relative"></div></div>' +
37317             '</div></div>', v);
37318     
37319     }
37320     
37321     
37322     this.colModel = new Roo.grid.ColumnModel( [
37323         {
37324             xtype: 'ColumnModel',
37325             xns: Roo.grid,
37326             dataIndex : 'weekday0',
37327             header : 'Sunday',
37328             renderer : cellRender
37329         },
37330         {
37331             xtype: 'ColumnModel',
37332             xns: Roo.grid,
37333             dataIndex : 'weekday1',
37334             header : 'Monday',
37335             renderer : cellRender
37336         },
37337         {
37338             xtype: 'ColumnModel',
37339             xns: Roo.grid,
37340             dataIndex : 'weekday2',
37341             header : 'Tuesday',
37342             renderer : cellRender
37343         },
37344         {
37345             xtype: 'ColumnModel',
37346             xns: Roo.grid,
37347             dataIndex : 'weekday3',
37348             header : 'Wednesday',
37349             renderer : cellRender
37350         },
37351         {
37352             xtype: 'ColumnModel',
37353             xns: Roo.grid,
37354             dataIndex : 'weekday4',
37355             header : 'Thursday',
37356             renderer : cellRender
37357         },
37358         {
37359             xtype: 'ColumnModel',
37360             xns: Roo.grid,
37361             dataIndex : 'weekday5',
37362             header : 'Friday',
37363             renderer : cellRender
37364         },
37365         {
37366             xtype: 'ColumnModel',
37367             xns: Roo.grid,
37368             dataIndex : 'weekday6',
37369             header : 'Saturday',
37370             renderer : cellRender
37371         }
37372     ]);
37373     this.cm = this.colModel;
37374     this.cm.xmodule = this.xmodule || false;
37375  
37376         
37377           
37378     //this.selModel = new Roo.grid.CellSelectionModel();
37379     //this.sm = this.selModel;
37380     //this.selModel.init(this);
37381     
37382     
37383     if(this.width){
37384         this.container.setWidth(this.width);
37385     }
37386
37387     if(this.height){
37388         this.container.setHeight(this.height);
37389     }
37390     /** @private */
37391         this.addEvents({
37392         // raw events
37393         /**
37394          * @event click
37395          * The raw click event for the entire grid.
37396          * @param {Roo.EventObject} e
37397          */
37398         "click" : true,
37399         /**
37400          * @event dblclick
37401          * The raw dblclick event for the entire grid.
37402          * @param {Roo.EventObject} e
37403          */
37404         "dblclick" : true,
37405         /**
37406          * @event contextmenu
37407          * The raw contextmenu event for the entire grid.
37408          * @param {Roo.EventObject} e
37409          */
37410         "contextmenu" : true,
37411         /**
37412          * @event mousedown
37413          * The raw mousedown event for the entire grid.
37414          * @param {Roo.EventObject} e
37415          */
37416         "mousedown" : true,
37417         /**
37418          * @event mouseup
37419          * The raw mouseup event for the entire grid.
37420          * @param {Roo.EventObject} e
37421          */
37422         "mouseup" : true,
37423         /**
37424          * @event mouseover
37425          * The raw mouseover event for the entire grid.
37426          * @param {Roo.EventObject} e
37427          */
37428         "mouseover" : true,
37429         /**
37430          * @event mouseout
37431          * The raw mouseout event for the entire grid.
37432          * @param {Roo.EventObject} e
37433          */
37434         "mouseout" : true,
37435         /**
37436          * @event keypress
37437          * The raw keypress event for the entire grid.
37438          * @param {Roo.EventObject} e
37439          */
37440         "keypress" : true,
37441         /**
37442          * @event keydown
37443          * The raw keydown event for the entire grid.
37444          * @param {Roo.EventObject} e
37445          */
37446         "keydown" : true,
37447
37448         // custom events
37449
37450         /**
37451          * @event cellclick
37452          * Fires when a cell is clicked
37453          * @param {Grid} this
37454          * @param {Number} rowIndex
37455          * @param {Number} columnIndex
37456          * @param {Roo.EventObject} e
37457          */
37458         "cellclick" : true,
37459         /**
37460          * @event celldblclick
37461          * Fires when a cell is double clicked
37462          * @param {Grid} this
37463          * @param {Number} rowIndex
37464          * @param {Number} columnIndex
37465          * @param {Roo.EventObject} e
37466          */
37467         "celldblclick" : true,
37468         /**
37469          * @event rowclick
37470          * Fires when a row is clicked
37471          * @param {Grid} this
37472          * @param {Number} rowIndex
37473          * @param {Roo.EventObject} e
37474          */
37475         "rowclick" : true,
37476         /**
37477          * @event rowdblclick
37478          * Fires when a row is double clicked
37479          * @param {Grid} this
37480          * @param {Number} rowIndex
37481          * @param {Roo.EventObject} e
37482          */
37483         "rowdblclick" : true,
37484         /**
37485          * @event headerclick
37486          * Fires when a header is clicked
37487          * @param {Grid} this
37488          * @param {Number} columnIndex
37489          * @param {Roo.EventObject} e
37490          */
37491         "headerclick" : true,
37492         /**
37493          * @event headerdblclick
37494          * Fires when a header cell is double clicked
37495          * @param {Grid} this
37496          * @param {Number} columnIndex
37497          * @param {Roo.EventObject} e
37498          */
37499         "headerdblclick" : true,
37500         /**
37501          * @event rowcontextmenu
37502          * Fires when a row is right clicked
37503          * @param {Grid} this
37504          * @param {Number} rowIndex
37505          * @param {Roo.EventObject} e
37506          */
37507         "rowcontextmenu" : true,
37508         /**
37509          * @event cellcontextmenu
37510          * Fires when a cell is right clicked
37511          * @param {Grid} this
37512          * @param {Number} rowIndex
37513          * @param {Number} cellIndex
37514          * @param {Roo.EventObject} e
37515          */
37516          "cellcontextmenu" : true,
37517         /**
37518          * @event headercontextmenu
37519          * Fires when a header is right clicked
37520          * @param {Grid} this
37521          * @param {Number} columnIndex
37522          * @param {Roo.EventObject} e
37523          */
37524         "headercontextmenu" : true,
37525         /**
37526          * @event bodyscroll
37527          * Fires when the body element is scrolled
37528          * @param {Number} scrollLeft
37529          * @param {Number} scrollTop
37530          */
37531         "bodyscroll" : true,
37532         /**
37533          * @event columnresize
37534          * Fires when the user resizes a column
37535          * @param {Number} columnIndex
37536          * @param {Number} newSize
37537          */
37538         "columnresize" : true,
37539         /**
37540          * @event columnmove
37541          * Fires when the user moves a column
37542          * @param {Number} oldIndex
37543          * @param {Number} newIndex
37544          */
37545         "columnmove" : true,
37546         /**
37547          * @event startdrag
37548          * Fires when row(s) start being dragged
37549          * @param {Grid} this
37550          * @param {Roo.GridDD} dd The drag drop object
37551          * @param {event} e The raw browser event
37552          */
37553         "startdrag" : true,
37554         /**
37555          * @event enddrag
37556          * Fires when a drag operation is complete
37557          * @param {Grid} this
37558          * @param {Roo.GridDD} dd The drag drop object
37559          * @param {event} e The raw browser event
37560          */
37561         "enddrag" : true,
37562         /**
37563          * @event dragdrop
37564          * Fires when dragged row(s) are dropped on a valid DD target
37565          * @param {Grid} this
37566          * @param {Roo.GridDD} dd The drag drop object
37567          * @param {String} targetId The target drag drop object
37568          * @param {event} e The raw browser event
37569          */
37570         "dragdrop" : true,
37571         /**
37572          * @event dragover
37573          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
37574          * @param {Grid} this
37575          * @param {Roo.GridDD} dd The drag drop object
37576          * @param {String} targetId The target drag drop object
37577          * @param {event} e The raw browser event
37578          */
37579         "dragover" : true,
37580         /**
37581          * @event dragenter
37582          *  Fires when the dragged row(s) first cross another DD target while being dragged
37583          * @param {Grid} this
37584          * @param {Roo.GridDD} dd The drag drop object
37585          * @param {String} targetId The target drag drop object
37586          * @param {event} e The raw browser event
37587          */
37588         "dragenter" : true,
37589         /**
37590          * @event dragout
37591          * Fires when the dragged row(s) leave another DD target while being dragged
37592          * @param {Grid} this
37593          * @param {Roo.GridDD} dd The drag drop object
37594          * @param {String} targetId The target drag drop object
37595          * @param {event} e The raw browser event
37596          */
37597         "dragout" : true,
37598         /**
37599          * @event rowclass
37600          * Fires when a row is rendered, so you can change add a style to it.
37601          * @param {GridView} gridview   The grid view
37602          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
37603          */
37604         'rowclass' : true,
37605
37606         /**
37607          * @event render
37608          * Fires when the grid is rendered
37609          * @param {Grid} grid
37610          */
37611         'render' : true,
37612             /**
37613              * @event select
37614              * Fires when a date is selected
37615              * @param {DatePicker} this
37616              * @param {Date} date The selected date
37617              */
37618         'select': true,
37619         /**
37620              * @event monthchange
37621              * Fires when the displayed month changes 
37622              * @param {DatePicker} this
37623              * @param {Date} date The selected month
37624              */
37625         'monthchange': true,
37626         /**
37627              * @event evententer
37628              * Fires when mouse over an event
37629              * @param {Calendar} this
37630              * @param {event} Event
37631              */
37632         'evententer': true,
37633         /**
37634              * @event eventleave
37635              * Fires when the mouse leaves an
37636              * @param {Calendar} this
37637              * @param {event}
37638              */
37639         'eventleave': true,
37640         /**
37641              * @event eventclick
37642              * Fires when the mouse click an
37643              * @param {Calendar} this
37644              * @param {event}
37645              */
37646         'eventclick': true,
37647         /**
37648              * @event eventrender
37649              * Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip
37650              * @param {Calendar} this
37651              * @param {data} data to be modified
37652              */
37653         'eventrender': true
37654         
37655     });
37656
37657     Roo.grid.Grid.superclass.constructor.call(this);
37658     this.on('render', function() {
37659         this.view.el.addClass('x-grid-cal'); 
37660         
37661         (function() { this.setDate(new Date()); }).defer(100,this); //default today..
37662
37663     },this);
37664     
37665     if (!Roo.grid.Calendar.style) {
37666         Roo.grid.Calendar.style = Roo.util.CSS.createStyleSheet({
37667             
37668             
37669             '.x-grid-cal .x-grid-col' :  {
37670                 height: 'auto !important',
37671                 'vertical-align': 'top'
37672             },
37673             '.x-grid-cal  .fc-event-hori' : {
37674                 height: '14px'
37675             }
37676              
37677             
37678         }, Roo.id());
37679     }
37680
37681     
37682     
37683 };
37684 Roo.extend(Roo.grid.Calendar, Roo.grid.Grid, {
37685     /**
37686      * @cfg {Store} eventStore The store that loads events.
37687      */
37688     eventStore : 25,
37689
37690      
37691     activeDate : false,
37692     startDay : 0,
37693     autoWidth : true,
37694     monitorWindowResize : false,
37695
37696     
37697     resizeColumns : function() {
37698         var col = (this.view.el.getWidth() / 7) - 3;
37699         // loop through cols, and setWidth
37700         for(var i =0 ; i < 7 ; i++){
37701             this.cm.setColumnWidth(i, col);
37702         }
37703     },
37704      setDate :function(date) {
37705         
37706         Roo.log('setDate?');
37707         
37708         this.resizeColumns();
37709         var vd = this.activeDate;
37710         this.activeDate = date;
37711 //        if(vd && this.el){
37712 //            var t = date.getTime();
37713 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
37714 //                Roo.log('using add remove');
37715 //                
37716 //                this.fireEvent('monthchange', this, date);
37717 //                
37718 //                this.cells.removeClass("fc-state-highlight");
37719 //                this.cells.each(function(c){
37720 //                   if(c.dateValue == t){
37721 //                       c.addClass("fc-state-highlight");
37722 //                       setTimeout(function(){
37723 //                            try{c.dom.firstChild.focus();}catch(e){}
37724 //                       }, 50);
37725 //                       return false;
37726 //                   }
37727 //                   return true;
37728 //                });
37729 //                return;
37730 //            }
37731 //        }
37732         
37733         var days = date.getDaysInMonth();
37734         
37735         var firstOfMonth = date.getFirstDateOfMonth();
37736         var startingPos = firstOfMonth.getDay()-this.startDay;
37737         
37738         if(startingPos < this.startDay){
37739             startingPos += 7;
37740         }
37741         
37742         var pm = date.add(Date.MONTH, -1);
37743         var prevStart = pm.getDaysInMonth()-startingPos;
37744 //        
37745         
37746         
37747         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
37748         
37749         this.textNodes = this.view.el.query('.x-grid-row .x-grid-col .x-grid-cell-text');
37750         //this.cells.addClassOnOver('fc-state-hover');
37751         
37752         var cells = this.cells.elements;
37753         var textEls = this.textNodes;
37754         
37755         //Roo.each(cells, function(cell){
37756         //    cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
37757         //});
37758         
37759         days += startingPos;
37760
37761         // convert everything to numbers so it's fast
37762         var day = 86400000;
37763         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
37764         //Roo.log(d);
37765         //Roo.log(pm);
37766         //Roo.log(prevStart);
37767         
37768         var today = new Date().clearTime().getTime();
37769         var sel = date.clearTime().getTime();
37770         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
37771         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
37772         var ddMatch = this.disabledDatesRE;
37773         var ddText = this.disabledDatesText;
37774         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
37775         var ddaysText = this.disabledDaysText;
37776         var format = this.format;
37777         
37778         var setCellClass = function(cal, cell){
37779             
37780             //Roo.log('set Cell Class');
37781             cell.title = "";
37782             var t = d.getTime();
37783             
37784             //Roo.log(d);
37785             
37786             
37787             cell.dateValue = t;
37788             if(t == today){
37789                 cell.className += " fc-today";
37790                 cell.className += " fc-state-highlight";
37791                 cell.title = cal.todayText;
37792             }
37793             if(t == sel){
37794                 // disable highlight in other month..
37795                 cell.className += " fc-state-highlight";
37796                 
37797             }
37798             // disabling
37799             if(t < min) {
37800                 //cell.className = " fc-state-disabled";
37801                 cell.title = cal.minText;
37802                 return;
37803             }
37804             if(t > max) {
37805                 //cell.className = " fc-state-disabled";
37806                 cell.title = cal.maxText;
37807                 return;
37808             }
37809             if(ddays){
37810                 if(ddays.indexOf(d.getDay()) != -1){
37811                     // cell.title = ddaysText;
37812                    // cell.className = " fc-state-disabled";
37813                 }
37814             }
37815             if(ddMatch && format){
37816                 var fvalue = d.dateFormat(format);
37817                 if(ddMatch.test(fvalue)){
37818                     cell.title = ddText.replace("%0", fvalue);
37819                    cell.className = " fc-state-disabled";
37820                 }
37821             }
37822             
37823             if (!cell.initialClassName) {
37824                 cell.initialClassName = cell.dom.className;
37825             }
37826             
37827             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
37828         };
37829
37830         var i = 0;
37831         
37832         for(; i < startingPos; i++) {
37833             cells[i].dayName =  (++prevStart);
37834             Roo.log(textEls[i]);
37835             d.setDate(d.getDate()+1);
37836             
37837             //cells[i].className = "fc-past fc-other-month";
37838             setCellClass(this, cells[i]);
37839         }
37840         
37841         var intDay = 0;
37842         
37843         for(; i < days; i++){
37844             intDay = i - startingPos + 1;
37845             cells[i].dayName =  (intDay);
37846             d.setDate(d.getDate()+1);
37847             
37848             cells[i].className = ''; // "x-date-active";
37849             setCellClass(this, cells[i]);
37850         }
37851         var extraDays = 0;
37852         
37853         for(; i < 42; i++) {
37854             //textEls[i].innerHTML = (++extraDays);
37855             
37856             d.setDate(d.getDate()+1);
37857             cells[i].dayName = (++extraDays);
37858             cells[i].className = "fc-future fc-other-month";
37859             setCellClass(this, cells[i]);
37860         }
37861         
37862         //this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
37863         
37864         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
37865         
37866         // this will cause all the cells to mis
37867         var rows= [];
37868         var i =0;
37869         for (var r = 0;r < 6;r++) {
37870             for (var c =0;c < 7;c++) {
37871                 this.ds.getAt(r).set('weekday' + c ,cells[i++].dayName );
37872             }    
37873         }
37874         
37875         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
37876         for(i=0;i<cells.length;i++) {
37877             
37878             this.cells.elements[i].dayName = cells[i].dayName ;
37879             this.cells.elements[i].className = cells[i].className;
37880             this.cells.elements[i].initialClassName = cells[i].initialClassName ;
37881             this.cells.elements[i].title = cells[i].title ;
37882             this.cells.elements[i].dateValue = cells[i].dateValue ;
37883         }
37884         
37885         
37886         
37887         
37888         //this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
37889         //this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
37890         
37891         ////if(totalRows != 6){
37892             //this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
37893            // this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
37894        // }
37895         
37896         this.fireEvent('monthchange', this, date);
37897         
37898         
37899     },
37900  /**
37901      * Returns the grid's SelectionModel.
37902      * @return {SelectionModel}
37903      */
37904     getSelectionModel : function(){
37905         if(!this.selModel){
37906             this.selModel = new Roo.grid.CellSelectionModel();
37907         }
37908         return this.selModel;
37909     },
37910
37911     load: function() {
37912         this.eventStore.load()
37913         
37914         
37915         
37916     },
37917     
37918     findCell : function(dt) {
37919         dt = dt.clearTime().getTime();
37920         var ret = false;
37921         this.cells.each(function(c){
37922             //Roo.log("check " +c.dateValue + '?=' + dt);
37923             if(c.dateValue == dt){
37924                 ret = c;
37925                 return false;
37926             }
37927             return true;
37928         });
37929         
37930         return ret;
37931     },
37932     
37933     findCells : function(rec) {
37934         var s = rec.data.start_dt.clone().clearTime().getTime();
37935        // Roo.log(s);
37936         var e= rec.data.end_dt.clone().clearTime().getTime();
37937        // Roo.log(e);
37938         var ret = [];
37939         this.cells.each(function(c){
37940              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
37941             
37942             if(c.dateValue > e){
37943                 return ;
37944             }
37945             if(c.dateValue < s){
37946                 return ;
37947             }
37948             ret.push(c);
37949         });
37950         
37951         return ret;    
37952     },
37953     
37954     findBestRow: function(cells)
37955     {
37956         var ret = 0;
37957         
37958         for (var i =0 ; i < cells.length;i++) {
37959             ret  = Math.max(cells[i].rows || 0,ret);
37960         }
37961         return ret;
37962         
37963     },
37964     
37965     
37966     addItem : function(rec)
37967     {
37968         // look for vertical location slot in
37969         var cells = this.findCells(rec);
37970         
37971         rec.row = this.findBestRow(cells);
37972         
37973         // work out the location.
37974         
37975         var crow = false;
37976         var rows = [];
37977         for(var i =0; i < cells.length; i++) {
37978             if (!crow) {
37979                 crow = {
37980                     start : cells[i],
37981                     end :  cells[i]
37982                 };
37983                 continue;
37984             }
37985             if (crow.start.getY() == cells[i].getY()) {
37986                 // on same row.
37987                 crow.end = cells[i];
37988                 continue;
37989             }
37990             // different row.
37991             rows.push(crow);
37992             crow = {
37993                 start: cells[i],
37994                 end : cells[i]
37995             };
37996             
37997         }
37998         
37999         rows.push(crow);
38000         rec.els = [];
38001         rec.rows = rows;
38002         rec.cells = cells;
38003         for (var i = 0; i < cells.length;i++) {
38004             cells[i].rows = Math.max(cells[i].rows || 0 , rec.row + 1 );
38005             
38006         }
38007         
38008         
38009     },
38010     
38011     clearEvents: function() {
38012         
38013         if (!this.eventStore.getCount()) {
38014             return;
38015         }
38016         // reset number of rows in cells.
38017         Roo.each(this.cells.elements, function(c){
38018             c.rows = 0;
38019         });
38020         
38021         this.eventStore.each(function(e) {
38022             this.clearEvent(e);
38023         },this);
38024         
38025     },
38026     
38027     clearEvent : function(ev)
38028     {
38029         if (ev.els) {
38030             Roo.each(ev.els, function(el) {
38031                 el.un('mouseenter' ,this.onEventEnter, this);
38032                 el.un('mouseleave' ,this.onEventLeave, this);
38033                 el.remove();
38034             },this);
38035             ev.els = [];
38036         }
38037     },
38038     
38039     
38040     renderEvent : function(ev,ctr) {
38041         if (!ctr) {
38042              ctr = this.view.el.select('.fc-event-container',true).first();
38043         }
38044         
38045          
38046         this.clearEvent(ev);
38047             //code
38048        
38049         
38050         
38051         ev.els = [];
38052         var cells = ev.cells;
38053         var rows = ev.rows;
38054         this.fireEvent('eventrender', this, ev);
38055         
38056         for(var i =0; i < rows.length; i++) {
38057             
38058             cls = '';
38059             if (i == 0) {
38060                 cls += ' fc-event-start';
38061             }
38062             if ((i+1) == rows.length) {
38063                 cls += ' fc-event-end';
38064             }
38065             
38066             //Roo.log(ev.data);
38067             // how many rows should it span..
38068             var cg = this.eventTmpl.append(ctr,Roo.apply({
38069                 fccls : cls
38070                 
38071             }, ev.data) , true);
38072             
38073             
38074             cg.on('mouseenter' ,this.onEventEnter, this, ev);
38075             cg.on('mouseleave' ,this.onEventLeave, this, ev);
38076             cg.on('click', this.onEventClick, this, ev);
38077             
38078             ev.els.push(cg);
38079             
38080             var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
38081             var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
38082             //Roo.log(cg);
38083              
38084             cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
38085             cg.setWidth(ebox.right - sbox.x -2);
38086         }
38087     },
38088     
38089     renderEvents: function()
38090     {   
38091         // first make sure there is enough space..
38092         
38093         if (!this.eventTmpl) {
38094             this.eventTmpl = new Roo.Template(
38095                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
38096                     '<div class="fc-event-inner">' +
38097                         '<span class="fc-event-time">{time}</span>' +
38098                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>' +
38099                     '</div>' +
38100                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
38101                 '</div>'
38102             );
38103                 
38104         }
38105                
38106         
38107         
38108         this.cells.each(function(c) {
38109             //Roo.log(c.select('.fc-day-content div',true).first());
38110             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
38111         });
38112         
38113         var ctr = this.view.el.select('.fc-event-container',true).first();
38114         
38115         var cls;
38116         this.eventStore.each(function(ev){
38117             
38118             this.renderEvent(ev);
38119              
38120              
38121         }, this);
38122         this.view.layout();
38123         
38124     },
38125     
38126     onEventEnter: function (e, el,event,d) {
38127         this.fireEvent('evententer', this, el, event);
38128     },
38129     
38130     onEventLeave: function (e, el,event,d) {
38131         this.fireEvent('eventleave', this, el, event);
38132     },
38133     
38134     onEventClick: function (e, el,event,d) {
38135         this.fireEvent('eventclick', this, el, event);
38136     },
38137     
38138     onMonthChange: function () {
38139         this.store.load();
38140     },
38141     
38142     onLoad: function () {
38143         
38144         //Roo.log('calendar onload');
38145 //         
38146         if(this.eventStore.getCount() > 0){
38147             
38148            
38149             
38150             this.eventStore.each(function(d){
38151                 
38152                 
38153                 // FIXME..
38154                 var add =   d.data;
38155                 if (typeof(add.end_dt) == 'undefined')  {
38156                     Roo.log("Missing End time in calendar data: ");
38157                     Roo.log(d);
38158                     return;
38159                 }
38160                 if (typeof(add.start_dt) == 'undefined')  {
38161                     Roo.log("Missing Start time in calendar data: ");
38162                     Roo.log(d);
38163                     return;
38164                 }
38165                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
38166                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
38167                 add.id = add.id || d.id;
38168                 add.title = add.title || '??';
38169                 
38170                 this.addItem(d);
38171                 
38172              
38173             },this);
38174         }
38175         
38176         this.renderEvents();
38177     }
38178     
38179
38180 });
38181 /*
38182  grid : {
38183                 xtype: 'Grid',
38184                 xns: Roo.grid,
38185                 listeners : {
38186                     render : function ()
38187                     {
38188                         _this.grid = this;
38189                         
38190                         if (!this.view.el.hasClass('course-timesheet')) {
38191                             this.view.el.addClass('course-timesheet');
38192                         }
38193                         if (this.tsStyle) {
38194                             this.ds.load({});
38195                             return; 
38196                         }
38197                         Roo.log('width');
38198                         Roo.log(_this.grid.view.el.getWidth());
38199                         
38200                         
38201                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
38202                             '.course-timesheet .x-grid-row' : {
38203                                 height: '80px'
38204                             },
38205                             '.x-grid-row td' : {
38206                                 'vertical-align' : 0
38207                             },
38208                             '.course-edit-link' : {
38209                                 'color' : 'blue',
38210                                 'text-overflow' : 'ellipsis',
38211                                 'overflow' : 'hidden',
38212                                 'white-space' : 'nowrap',
38213                                 'cursor' : 'pointer'
38214                             },
38215                             '.sub-link' : {
38216                                 'color' : 'green'
38217                             },
38218                             '.de-act-sup-link' : {
38219                                 'color' : 'purple',
38220                                 'text-decoration' : 'line-through'
38221                             },
38222                             '.de-act-link' : {
38223                                 'color' : 'red',
38224                                 'text-decoration' : 'line-through'
38225                             },
38226                             '.course-timesheet .course-highlight' : {
38227                                 'border-top-style': 'dashed !important',
38228                                 'border-bottom-bottom': 'dashed !important'
38229                             },
38230                             '.course-timesheet .course-item' : {
38231                                 'font-family'   : 'tahoma, arial, helvetica',
38232                                 'font-size'     : '11px',
38233                                 'overflow'      : 'hidden',
38234                                 'padding-left'  : '10px',
38235                                 'padding-right' : '10px',
38236                                 'padding-top' : '10px' 
38237                             }
38238                             
38239                         }, Roo.id());
38240                                 this.ds.load({});
38241                     }
38242                 },
38243                 autoWidth : true,
38244                 monitorWindowResize : false,
38245                 cellrenderer : function(v,x,r)
38246                 {
38247                     return v;
38248                 },
38249                 sm : {
38250                     xtype: 'CellSelectionModel',
38251                     xns: Roo.grid
38252                 },
38253                 dataSource : {
38254                     xtype: 'Store',
38255                     xns: Roo.data,
38256                     listeners : {
38257                         beforeload : function (_self, options)
38258                         {
38259                             options.params = options.params || {};
38260                             options.params._month = _this.monthField.getValue();
38261                             options.params.limit = 9999;
38262                             options.params['sort'] = 'when_dt';    
38263                             options.params['dir'] = 'ASC';    
38264                             this.proxy.loadResponse = this.loadResponse;
38265                             Roo.log("load?");
38266                             //this.addColumns();
38267                         },
38268                         load : function (_self, records, options)
38269                         {
38270                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
38271                                 // if you click on the translation.. you can edit it...
38272                                 var el = Roo.get(this);
38273                                 var id = el.dom.getAttribute('data-id');
38274                                 var d = el.dom.getAttribute('data-date');
38275                                 var t = el.dom.getAttribute('data-time');
38276                                 //var id = this.child('span').dom.textContent;
38277                                 
38278                                 //Roo.log(this);
38279                                 Pman.Dialog.CourseCalendar.show({
38280                                     id : id,
38281                                     when_d : d,
38282                                     when_t : t,
38283                                     productitem_active : id ? 1 : 0
38284                                 }, function() {
38285                                     _this.grid.ds.load({});
38286                                 });
38287                            
38288                            });
38289                            
38290                            _this.panel.fireEvent('resize', [ '', '' ]);
38291                         }
38292                     },
38293                     loadResponse : function(o, success, response){
38294                             // this is overridden on before load..
38295                             
38296                             Roo.log("our code?");       
38297                             //Roo.log(success);
38298                             //Roo.log(response)
38299                             delete this.activeRequest;
38300                             if(!success){
38301                                 this.fireEvent("loadexception", this, o, response);
38302                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
38303                                 return;
38304                             }
38305                             var result;
38306                             try {
38307                                 result = o.reader.read(response);
38308                             }catch(e){
38309                                 Roo.log("load exception?");
38310                                 this.fireEvent("loadexception", this, o, response, e);
38311                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
38312                                 return;
38313                             }
38314                             Roo.log("ready...");        
38315                             // loop through result.records;
38316                             // and set this.tdate[date] = [] << array of records..
38317                             _this.tdata  = {};
38318                             Roo.each(result.records, function(r){
38319                                 //Roo.log(r.data);
38320                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
38321                                     _this.tdata[r.data.when_dt.format('j')] = [];
38322                                 }
38323                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
38324                             });
38325                             
38326                             //Roo.log(_this.tdata);
38327                             
38328                             result.records = [];
38329                             result.totalRecords = 6;
38330                     
38331                             // let's generate some duumy records for the rows.
38332                             //var st = _this.dateField.getValue();
38333                             
38334                             // work out monday..
38335                             //st = st.add(Date.DAY, -1 * st.format('w'));
38336                             
38337                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
38338                             
38339                             var firstOfMonth = date.getFirstDayOfMonth();
38340                             var days = date.getDaysInMonth();
38341                             var d = 1;
38342                             var firstAdded = false;
38343                             for (var i = 0; i < result.totalRecords ; i++) {
38344                                 //var d= st.add(Date.DAY, i);
38345                                 var row = {};
38346                                 var added = 0;
38347                                 for(var w = 0 ; w < 7 ; w++){
38348                                     if(!firstAdded && firstOfMonth != w){
38349                                         continue;
38350                                     }
38351                                     if(d > days){
38352                                         continue;
38353                                     }
38354                                     firstAdded = true;
38355                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
38356                                     row['weekday'+w] = String.format(
38357                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
38358                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
38359                                                     d,
38360                                                     date.format('Y-m-')+dd
38361                                                 );
38362                                     added++;
38363                                     if(typeof(_this.tdata[d]) != 'undefined'){
38364                                         Roo.each(_this.tdata[d], function(r){
38365                                             var is_sub = '';
38366                                             var deactive = '';
38367                                             var id = r.id;
38368                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
38369                                             if(r.parent_id*1>0){
38370                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
38371                                                 id = r.parent_id;
38372                                             }
38373                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
38374                                                 deactive = 'de-act-link';
38375                                             }
38376                                             
38377                                             row['weekday'+w] += String.format(
38378                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
38379                                                     id, //0
38380                                                     r.product_id_name, //1
38381                                                     r.when_dt.format('h:ia'), //2
38382                                                     is_sub, //3
38383                                                     deactive, //4
38384                                                     desc // 5
38385                                             );
38386                                         });
38387                                     }
38388                                     d++;
38389                                 }
38390                                 
38391                                 // only do this if something added..
38392                                 if(added > 0){ 
38393                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
38394                                 }
38395                                 
38396                                 
38397                                 // push it twice. (second one with an hour..
38398                                 
38399                             }
38400                             //Roo.log(result);
38401                             this.fireEvent("load", this, o, o.request.arg);
38402                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
38403                         },
38404                     sortInfo : {field: 'when_dt', direction : 'ASC' },
38405                     proxy : {
38406                         xtype: 'HttpProxy',
38407                         xns: Roo.data,
38408                         method : 'GET',
38409                         url : baseURL + '/Roo/Shop_course.php'
38410                     },
38411                     reader : {
38412                         xtype: 'JsonReader',
38413                         xns: Roo.data,
38414                         id : 'id',
38415                         fields : [
38416                             {
38417                                 'name': 'id',
38418                                 'type': 'int'
38419                             },
38420                             {
38421                                 'name': 'when_dt',
38422                                 'type': 'string'
38423                             },
38424                             {
38425                                 'name': 'end_dt',
38426                                 'type': 'string'
38427                             },
38428                             {
38429                                 'name': 'parent_id',
38430                                 'type': 'int'
38431                             },
38432                             {
38433                                 'name': 'product_id',
38434                                 'type': 'int'
38435                             },
38436                             {
38437                                 'name': 'productitem_id',
38438                                 'type': 'int'
38439                             },
38440                             {
38441                                 'name': 'guid',
38442                                 'type': 'int'
38443                             }
38444                         ]
38445                     }
38446                 },
38447                 toolbar : {
38448                     xtype: 'Toolbar',
38449                     xns: Roo,
38450                     items : [
38451                         {
38452                             xtype: 'Button',
38453                             xns: Roo.Toolbar,
38454                             listeners : {
38455                                 click : function (_self, e)
38456                                 {
38457                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
38458                                     sd.setMonth(sd.getMonth()-1);
38459                                     _this.monthField.setValue(sd.format('Y-m-d'));
38460                                     _this.grid.ds.load({});
38461                                 }
38462                             },
38463                             text : "Back"
38464                         },
38465                         {
38466                             xtype: 'Separator',
38467                             xns: Roo.Toolbar
38468                         },
38469                         {
38470                             xtype: 'MonthField',
38471                             xns: Roo.form,
38472                             listeners : {
38473                                 render : function (_self)
38474                                 {
38475                                     _this.monthField = _self;
38476                                    // _this.monthField.set  today
38477                                 },
38478                                 select : function (combo, date)
38479                                 {
38480                                     _this.grid.ds.load({});
38481                                 }
38482                             },
38483                             value : (function() { return new Date(); })()
38484                         },
38485                         {
38486                             xtype: 'Separator',
38487                             xns: Roo.Toolbar
38488                         },
38489                         {
38490                             xtype: 'TextItem',
38491                             xns: Roo.Toolbar,
38492                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
38493                         },
38494                         {
38495                             xtype: 'Fill',
38496                             xns: Roo.Toolbar
38497                         },
38498                         {
38499                             xtype: 'Button',
38500                             xns: Roo.Toolbar,
38501                             listeners : {
38502                                 click : function (_self, e)
38503                                 {
38504                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
38505                                     sd.setMonth(sd.getMonth()+1);
38506                                     _this.monthField.setValue(sd.format('Y-m-d'));
38507                                     _this.grid.ds.load({});
38508                                 }
38509                             },
38510                             text : "Next"
38511                         }
38512                     ]
38513                 },
38514                  
38515             }
38516         };
38517         
38518         *//*
38519  * Based on:
38520  * Ext JS Library 1.1.1
38521  * Copyright(c) 2006-2007, Ext JS, LLC.
38522  *
38523  * Originally Released Under LGPL - original licence link has changed is not relivant.
38524  *
38525  * Fork - LGPL
38526  * <script type="text/javascript">
38527  */
38528  
38529 /**
38530  * @class Roo.LoadMask
38531  * A simple utility class for generically masking elements while loading data.  If the element being masked has
38532  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
38533  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
38534  * element's UpdateManager load indicator and will be destroyed after the initial load.
38535  * @constructor
38536  * Create a new LoadMask
38537  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
38538  * @param {Object} config The config object
38539  */
38540 Roo.LoadMask = function(el, config){
38541     this.el = Roo.get(el);
38542     Roo.apply(this, config);
38543     if(this.store){
38544         this.store.on('beforeload', this.onBeforeLoad, this);
38545         this.store.on('load', this.onLoad, this);
38546         this.store.on('loadexception', this.onLoadException, this);
38547         this.removeMask = false;
38548     }else{
38549         var um = this.el.getUpdateManager();
38550         um.showLoadIndicator = false; // disable the default indicator
38551         um.on('beforeupdate', this.onBeforeLoad, this);
38552         um.on('update', this.onLoad, this);
38553         um.on('failure', this.onLoad, this);
38554         this.removeMask = true;
38555     }
38556 };
38557
38558 Roo.LoadMask.prototype = {
38559     /**
38560      * @cfg {Boolean} removeMask
38561      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
38562      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
38563      */
38564     /**
38565      * @cfg {String} msg
38566      * The text to display in a centered loading message box (defaults to 'Loading...')
38567      */
38568     msg : 'Loading...',
38569     /**
38570      * @cfg {String} msgCls
38571      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
38572      */
38573     msgCls : 'x-mask-loading',
38574
38575     /**
38576      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
38577      * @type Boolean
38578      */
38579     disabled: false,
38580
38581     /**
38582      * Disables the mask to prevent it from being displayed
38583      */
38584     disable : function(){
38585        this.disabled = true;
38586     },
38587
38588     /**
38589      * Enables the mask so that it can be displayed
38590      */
38591     enable : function(){
38592         this.disabled = false;
38593     },
38594     
38595     onLoadException : function()
38596     {
38597         Roo.log(arguments);
38598         
38599         if (typeof(arguments[3]) != 'undefined') {
38600             Roo.MessageBox.alert("Error loading",arguments[3]);
38601         } 
38602         /*
38603         try {
38604             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
38605                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
38606             }   
38607         } catch(e) {
38608             
38609         }
38610         */
38611     
38612         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
38613     },
38614     // private
38615     onLoad : function()
38616     {
38617         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
38618     },
38619
38620     // private
38621     onBeforeLoad : function(){
38622         if(!this.disabled){
38623             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
38624         }
38625     },
38626
38627     // private
38628     destroy : function(){
38629         if(this.store){
38630             this.store.un('beforeload', this.onBeforeLoad, this);
38631             this.store.un('load', this.onLoad, this);
38632             this.store.un('loadexception', this.onLoadException, this);
38633         }else{
38634             var um = this.el.getUpdateManager();
38635             um.un('beforeupdate', this.onBeforeLoad, this);
38636             um.un('update', this.onLoad, this);
38637             um.un('failure', this.onLoad, this);
38638         }
38639     }
38640 };/*
38641  * Based on:
38642  * Ext JS Library 1.1.1
38643  * Copyright(c) 2006-2007, Ext JS, LLC.
38644  *
38645  * Originally Released Under LGPL - original licence link has changed is not relivant.
38646  *
38647  * Fork - LGPL
38648  * <script type="text/javascript">
38649  */
38650
38651
38652 /**
38653  * @class Roo.XTemplate
38654  * @extends Roo.Template
38655  * Provides a template that can have nested templates for loops or conditionals. The syntax is:
38656 <pre><code>
38657 var t = new Roo.XTemplate(
38658         '&lt;select name="{name}"&gt;',
38659                 '&lt;tpl for="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
38660         '&lt;/select&gt;'
38661 );
38662  
38663 // then append, applying the master template values
38664  </code></pre>
38665  *
38666  * Supported features:
38667  *
38668  *  Tags:
38669
38670 <pre><code>
38671       {a_variable} - output encoded.
38672       {a_variable.format:("Y-m-d")} - call a method on the variable
38673       {a_variable:raw} - unencoded output
38674       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
38675       {a_variable:this.method_on_template(...)} - call a method on the template object.
38676  
38677 </code></pre>
38678  *  The tpl tag:
38679 <pre><code>
38680         &lt;tpl for="a_variable or condition.."&gt;&lt;/tpl&gt;
38681         &lt;tpl if="a_variable or condition"&gt;&lt;/tpl&gt;
38682         &lt;tpl exec="some javascript"&gt;&lt;/tpl&gt;
38683         &lt;tpl name="named_template"&gt;&lt;/tpl&gt; (experimental)
38684   
38685         &lt;tpl for="."&gt;&lt;/tpl&gt; - just iterate the property..
38686         &lt;tpl for=".."&gt;&lt;/tpl&gt; - iterates with the parent (probably the template) 
38687 </code></pre>
38688  *      
38689  */
38690 Roo.XTemplate = function()
38691 {
38692     Roo.XTemplate.superclass.constructor.apply(this, arguments);
38693     if (this.html) {
38694         this.compile();
38695     }
38696 };
38697
38698
38699 Roo.extend(Roo.XTemplate, Roo.Template, {
38700
38701     /**
38702      * The various sub templates
38703      */
38704     tpls : false,
38705     /**
38706      *
38707      * basic tag replacing syntax
38708      * WORD:WORD()
38709      *
38710      * // you can fake an object call by doing this
38711      *  x.t:(test,tesT) 
38712      * 
38713      */
38714     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
38715
38716     /**
38717      * compile the template
38718      *
38719      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
38720      *
38721      */
38722     compile: function()
38723     {
38724         var s = this.html;
38725      
38726         s = ['<tpl>', s, '</tpl>'].join('');
38727     
38728         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
38729             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
38730             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
38731             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
38732             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
38733             m,
38734             id     = 0,
38735             tpls   = [];
38736     
38737         while(true == !!(m = s.match(re))){
38738             var forMatch   = m[0].match(nameRe),
38739                 ifMatch   = m[0].match(ifRe),
38740                 execMatch   = m[0].match(execRe),
38741                 namedMatch   = m[0].match(namedRe),
38742                 
38743                 exp  = null, 
38744                 fn   = null,
38745                 exec = null,
38746                 name = forMatch && forMatch[1] ? forMatch[1] : '';
38747                 
38748             if (ifMatch) {
38749                 // if - puts fn into test..
38750                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
38751                 if(exp){
38752                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
38753                 }
38754             }
38755             
38756             if (execMatch) {
38757                 // exec - calls a function... returns empty if true is  returned.
38758                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
38759                 if(exp){
38760                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
38761                 }
38762             }
38763             
38764             
38765             if (name) {
38766                 // for = 
38767                 switch(name){
38768                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
38769                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
38770                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
38771                 }
38772             }
38773             var uid = namedMatch ? namedMatch[1] : id;
38774             
38775             
38776             tpls.push({
38777                 id:     namedMatch ? namedMatch[1] : id,
38778                 target: name,
38779                 exec:   exec,
38780                 test:   fn,
38781                 body:   m[1] || ''
38782             });
38783             if (namedMatch) {
38784                 s = s.replace(m[0], '');
38785             } else { 
38786                 s = s.replace(m[0], '{xtpl'+ id + '}');
38787             }
38788             ++id;
38789         }
38790         this.tpls = [];
38791         for(var i = tpls.length-1; i >= 0; --i){
38792             this.compileTpl(tpls[i]);
38793             this.tpls[tpls[i].id] = tpls[i];
38794         }
38795         this.master = tpls[tpls.length-1];
38796         return this;
38797     },
38798     /**
38799      * same as applyTemplate, except it's done to one of the subTemplates
38800      * when using named templates, you can do:
38801      *
38802      * var str = pl.applySubTemplate('your-name', values);
38803      *
38804      * 
38805      * @param {Number} id of the template
38806      * @param {Object} values to apply to template
38807      * @param {Object} parent (normaly the instance of this object)
38808      */
38809     applySubTemplate : function(id, values, parent)
38810     {
38811         
38812         
38813         var t = this.tpls[id];
38814         
38815         
38816         try { 
38817             if(t.test && !t.test.call(this, values, parent)){
38818                 return '';
38819             }
38820         } catch(e) {
38821             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
38822             Roo.log(e.toString());
38823             Roo.log(t.test);
38824             return ''
38825         }
38826         try { 
38827             
38828             if(t.exec && t.exec.call(this, values, parent)){
38829                 return '';
38830             }
38831         } catch(e) {
38832             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
38833             Roo.log(e.toString());
38834             Roo.log(t.exec);
38835             return ''
38836         }
38837         try {
38838             var vs = t.target ? t.target.call(this, values, parent) : values;
38839             parent = t.target ? values : parent;
38840             if(t.target && vs instanceof Array){
38841                 var buf = [];
38842                 for(var i = 0, len = vs.length; i < len; i++){
38843                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
38844                 }
38845                 return buf.join('');
38846             }
38847             return t.compiled.call(this, vs, parent);
38848         } catch (e) {
38849             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
38850             Roo.log(e.toString());
38851             Roo.log(t.compiled);
38852             return '';
38853         }
38854     },
38855
38856     compileTpl : function(tpl)
38857     {
38858         var fm = Roo.util.Format;
38859         var useF = this.disableFormats !== true;
38860         var sep = Roo.isGecko ? "+" : ",";
38861         var undef = function(str) {
38862             Roo.log("Property not found :"  + str);
38863             return '';
38864         };
38865         
38866         var fn = function(m, name, format, args)
38867         {
38868             //Roo.log(arguments);
38869             args = args ? args.replace(/\\'/g,"'") : args;
38870             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
38871             if (typeof(format) == 'undefined') {
38872                 format= 'htmlEncode';
38873             }
38874             if (format == 'raw' ) {
38875                 format = false;
38876             }
38877             
38878             if(name.substr(0, 4) == 'xtpl'){
38879                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
38880             }
38881             
38882             // build an array of options to determine if value is undefined..
38883             
38884             // basically get 'xxxx.yyyy' then do
38885             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
38886             //    (function () { Roo.log("Property not found"); return ''; })() :
38887             //    ......
38888             
38889             var udef_ar = [];
38890             var lookfor = '';
38891             Roo.each(name.split('.'), function(st) {
38892                 lookfor += (lookfor.length ? '.': '') + st;
38893                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
38894             });
38895             
38896             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
38897             
38898             
38899             if(format && useF){
38900                 
38901                 args = args ? ',' + args : "";
38902                  
38903                 if(format.substr(0, 5) != "this."){
38904                     format = "fm." + format + '(';
38905                 }else{
38906                     format = 'this.call("'+ format.substr(5) + '", ';
38907                     args = ", values";
38908                 }
38909                 
38910                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
38911             }
38912              
38913             if (args.length) {
38914                 // called with xxyx.yuu:(test,test)
38915                 // change to ()
38916                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
38917             }
38918             // raw.. - :raw modifier..
38919             return "'"+ sep + udef_st  + name + ")"+sep+"'";
38920             
38921         };
38922         var body;
38923         // branched to use + in gecko and [].join() in others
38924         if(Roo.isGecko){
38925             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
38926                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
38927                     "';};};";
38928         }else{
38929             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
38930             body.push(tpl.body.replace(/(\r\n|\n)/g,
38931                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
38932             body.push("'].join('');};};");
38933             body = body.join('');
38934         }
38935         
38936         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
38937        
38938         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
38939         eval(body);
38940         
38941         return this;
38942     },
38943
38944     applyTemplate : function(values){
38945         return this.master.compiled.call(this, values, {});
38946         //var s = this.subs;
38947     },
38948
38949     apply : function(){
38950         return this.applyTemplate.apply(this, arguments);
38951     }
38952
38953  });
38954
38955 Roo.XTemplate.from = function(el){
38956     el = Roo.getDom(el);
38957     return new Roo.XTemplate(el.value || el.innerHTML);
38958 };